Skip to content

Commit

Permalink
Release 1.2.0 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtreminio-dropbox committed Oct 11, 2023
1 parent a5a07bd commit 6792afd
Show file tree
Hide file tree
Showing 207 changed files with 5,840 additions and 2,165 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ To install the bindings via [Composer](https://getcomposer.org/), add the follow
```json
{
"require": {
"dropbox/sign": "^1.1.0"
"dropbox/sign": "^1.2.0"
},
"minimum-stability": "dev"
}
Expand All @@ -64,7 +64,7 @@ Then run `composer install`.
Alternatively, install directly with

```
composer require dropbox/sign:^1.1.0
composer require dropbox/sign:^1.2.0
```

## Getting Started
Expand Down Expand Up @@ -190,6 +190,7 @@ All URIs are relative to *https://api.hellosign.com/v3*
| *TeamApi* | [**teamSubTeams**](docs/Api/TeamApi.md#teamsubteams) | **GET** /team/sub_teams/{team_id} | List Sub Teams |
| *TeamApi* | [**teamUpdate**](docs/Api/TeamApi.md#teamupdate) | **PUT** /team | Update Team |
| *TemplateApi* | [**templateAddUser**](docs/Api/TemplateApi.md#templateadduser) | **POST** /template/add_user/{template_id} | Add User to Template |
| *TemplateApi* | [**templateCreate**](docs/Api/TemplateApi.md#templatecreate) | **POST** /template/create | Create Template |
| *TemplateApi* | [**templateCreateEmbeddedDraft**](docs/Api/TemplateApi.md#templatecreateembeddeddraft) | **POST** /template/create_embedded_draft | Create Embedded Template Draft |
| *TemplateApi* | [**templateDelete**](docs/Api/TemplateApi.md#templatedelete) | **POST** /template/delete/{template_id} | Delete Template |
| *TemplateApi* | [**templateFiles**](docs/Api/TemplateApi.md#templatefiles) | **GET** /template/files/{template_id} | Get Template Files |
Expand Down Expand Up @@ -292,6 +293,7 @@ All URIs are relative to *https://api.hellosign.com/v3*
- [SubFormFieldsPerDocumentCheckboxMerge](docs/Model/SubFormFieldsPerDocumentCheckboxMerge.md)
- [SubFormFieldsPerDocumentDateSigned](docs/Model/SubFormFieldsPerDocumentDateSigned.md)
- [SubFormFieldsPerDocumentDropdown](docs/Model/SubFormFieldsPerDocumentDropdown.md)
- [SubFormFieldsPerDocumentFontEnum](docs/Model/SubFormFieldsPerDocumentFontEnum.md)
- [SubFormFieldsPerDocumentHyperlink](docs/Model/SubFormFieldsPerDocumentHyperlink.md)
- [SubFormFieldsPerDocumentInitials](docs/Model/SubFormFieldsPerDocumentInitials.md)
- [SubFormFieldsPerDocumentRadio](docs/Model/SubFormFieldsPerDocumentRadio.md)
Expand Down Expand Up @@ -329,6 +331,9 @@ All URIs are relative to *https://api.hellosign.com/v3*
- [TemplateCreateEmbeddedDraftRequest](docs/Model/TemplateCreateEmbeddedDraftRequest.md)
- [TemplateCreateEmbeddedDraftResponse](docs/Model/TemplateCreateEmbeddedDraftResponse.md)
- [TemplateCreateEmbeddedDraftResponseTemplate](docs/Model/TemplateCreateEmbeddedDraftResponseTemplate.md)
- [TemplateCreateRequest](docs/Model/TemplateCreateRequest.md)
- [TemplateCreateResponse](docs/Model/TemplateCreateResponse.md)
- [TemplateCreateResponseTemplate](docs/Model/TemplateCreateResponseTemplate.md)
- [TemplateEditResponse](docs/Model/TemplateEditResponse.md)
- [TemplateGetResponse](docs/Model/TemplateGetResponse.md)
- [TemplateListResponse](docs/Model/TemplateListResponse.md)
Expand Down Expand Up @@ -403,5 +408,5 @@ [email protected]
This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: `3.0.0`
- Package version: `1.1.1`
- Package version: `1.2.0`
- Build package: `org.openapitools.codegen.languages.PhpClientCodegen`
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.1
1.2.0
20 changes: 14 additions & 6 deletions bin/php
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@ DIR=$(cd `dirname $0` && pwd)
ROOT_DIR="${DIR}/.."
WORKING_DIR="/app/php"

docker run --rm \
-v "${ROOT_DIR}:${WORKING_DIR}" \
-v "dropbox-sign-sdk-composer-cache:/.composer" \
-w "${WORKING_DIR}" \
-u root:root \
jtreminio/php-cli:7.4 "$@"
if [[ -z "$PHP_USE_NATIVE" ]]; then
docker run --rm \
-v "${ROOT_DIR}:${WORKING_DIR}" \
-v "dropbox-sign-sdk-composer-cache:/.composer" \
-w "${WORKING_DIR}" \
-u root:root \
jtreminio/php-cli:7.4 "$@"

exit 0
fi

pushd "${ROOT_DIR}"
exec "$@"
popd
79 changes: 40 additions & 39 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/Api/SignatureRequestApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@ signatureRequestUpdate($signature_request_id, $signature_request_update_request)

Update Signature Request

Updates the email address and/or the name for a given signer on a signature request. You can listen for the `signature_request_email_bounce` event on your app or account to detect bounced emails, and respond with this method. **NOTE**: This action cannot be performed on a signature request with an appended signature page.
Updates the email address and/or the name for a given signer on a signature request. You can listen for the `signature_request_email_bounce` event on your app or account to detect bounced emails, and respond with this method. Updating the email address of a signer will generate a new `signature_id` value. **NOTE**: This action cannot be performed on a signature request with an appended signature page.

### Example

Expand Down
Loading

0 comments on commit 6792afd

Please sign in to comment.