Skip to content

Commit 43a1d8a

Browse files
Release 1.7.0 (#15)
1 parent 1a7a108 commit 43a1d8a

File tree

74 files changed

+3878
-704
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+3878
-704
lines changed

.github/workflows/github-actions.yml

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222

2323
- name: Build SDK
2424
run: ./run-build
25+
env:
26+
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}}
27+
DOCKER_TOKEN: ${{secrets.DOCKER_TOKEN}}
2528

2629
- name: Ensure no changes in Generated Code
2730
run: ./bin/check-clean-git-status

README.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Python 3.7+
4949
Install using `pip`:
5050

5151
```shell
52-
python3 -m pip install dropbox-sign==1.6.1
52+
python3 -m pip install dropbox-sign==1.7.0
5353
```
5454

5555
Alternatively:
@@ -115,6 +115,11 @@ Class | Method | HTTP request | Description
115115
```BulkSendJobApi``` | [```bulk_send_job_list```](docs/BulkSendJobApi.md#bulk_send_job_list) | ```GET /bulk_send_job/list``` | List Bulk Send Jobs|
116116
|```EmbeddedApi``` | [```embedded_edit_url```](docs/EmbeddedApi.md#embedded_edit_url) | ```POST /embedded/edit_url/{template_id}``` | Get Embedded Template Edit URL|
117117
```EmbeddedApi``` | [```embedded_sign_url```](docs/EmbeddedApi.md#embedded_sign_url) | ```GET /embedded/sign_url/{signature_id}``` | Get Embedded Sign URL|
118+
|```FaxApi``` | [```fax_delete```](docs/FaxApi.md#fax_delete) | ```DELETE /fax/{fax_id}``` | Delete Fax|
119+
```FaxApi``` | [```fax_files```](docs/FaxApi.md#fax_files) | ```GET /fax/files/{fax_id}``` | List Fax Files|
120+
```FaxApi``` | [```fax_get```](docs/FaxApi.md#fax_get) | ```GET /fax/{fax_id}``` | Get Fax|
121+
```FaxApi``` | [```fax_list```](docs/FaxApi.md#fax_list) | ```GET /fax/list``` | Lists Faxes|
122+
```FaxApi``` | [```fax_send```](docs/FaxApi.md#fax_send) | ```POST /fax/send``` | Send Fax|
118123
|```FaxLineApi``` | [```fax_line_add_user```](docs/FaxLineApi.md#fax_line_add_user) | ```PUT /fax_line/add_user``` | Add Fax Line User|
119124
```FaxLineApi``` | [```fax_line_area_code_get```](docs/FaxLineApi.md#fax_line_area_code_get) | ```GET /fax_line/area_codes``` | Get Available Fax Line Area Codes|
120125
```FaxLineApi``` | [```fax_line_create```](docs/FaxLineApi.md#fax_line_create) | ```POST /fax_line/create``` | Purchase Fax Line|
@@ -152,7 +157,7 @@ Class | Method | HTTP request | Description
152157
```TeamApi``` | [```team_sub_teams```](docs/TeamApi.md#team_sub_teams) | ```GET /team/sub_teams/{team_id}``` | List Sub Teams|
153158
```TeamApi``` | [```team_update```](docs/TeamApi.md#team_update) | ```PUT /team``` | Update Team|
154159
|```TemplateApi``` | [```template_add_user```](docs/TemplateApi.md#template_add_user) | ```POST /template/add_user/{template_id}``` | Add User to Template|
155-
```TemplateApi``` | [```template_create```](docs/TemplateApi.md#template_create) | ```POST /template/create``` | Create Template|
160+
```TemplateApi``` | [```template_create```](docs/TemplateApi.md#template_create) | ```POST /template/create``` | Create Template|
156161
```TemplateApi``` | [```template_create_embedded_draft```](docs/TemplateApi.md#template_create_embedded_draft) | ```POST /template/create_embedded_draft``` | Create Embedded Template Draft|
157162
```TemplateApi``` | [```template_delete```](docs/TemplateApi.md#template_delete) | ```POST /template/delete/{template_id}``` | Delete Template|
158163
```TemplateApi``` | [```template_files```](docs/TemplateApi.md#template_files) | ```GET /template/files/{template_id}``` | Get Template Files|
@@ -204,6 +209,7 @@ Class | Method | HTTP request | Description
204209
- [EventCallbackRequest](docs/EventCallbackRequest.md)
205210
- [EventCallbackRequestEvent](docs/EventCallbackRequestEvent.md)
206211
- [EventCallbackRequestEventMetadata](docs/EventCallbackRequestEventMetadata.md)
212+
- [FaxGetResponse](docs/FaxGetResponse.md)
207213
- [FaxLineAddUserRequest](docs/FaxLineAddUserRequest.md)
208214
- [FaxLineAreaCodeGetCountryEnum](docs/FaxLineAreaCodeGetCountryEnum.md)
209215
- [FaxLineAreaCodeGetProvinceEnum](docs/FaxLineAreaCodeGetProvinceEnum.md)
@@ -215,6 +221,10 @@ Class | Method | HTTP request | Description
215221
- [FaxLineRemoveUserRequest](docs/FaxLineRemoveUserRequest.md)
216222
- [FaxLineResponse](docs/FaxLineResponse.md)
217223
- [FaxLineResponseFaxLine](docs/FaxLineResponseFaxLine.md)
224+
- [FaxListResponse](docs/FaxListResponse.md)
225+
- [FaxResponse](docs/FaxResponse.md)
226+
- [FaxResponseTransmission](docs/FaxResponseTransmission.md)
227+
- [FaxSendRequest](docs/FaxSendRequest.md)
218228
- [FileResponse](docs/FileResponse.md)
219229
- [FileResponseDataUri](docs/FileResponseDataUri.md)
220230
- [ListInfoResponse](docs/ListInfoResponse.md)
@@ -381,6 +391,6 @@ [email protected]
381391
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
382392

383393
- API version: 3.0.0
384-
- Package version: 1.6.1
394+
- Package version: 1.7.0
385395
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
386396

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.1
1+
1.7.0

docs/AccountResponseQuotas.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
99
| `documents_left` | ```int``` | Signature requests remaining. | |
1010
| `templates_total` | ```int``` | Total API templates allowed. | |
1111
| `templates_left` | ```int``` | API templates remaining. | |
12-
| `sms_verifications_left` | ```int``` | SMS verifications remaining. | |
12+
| `sms_verifications_left` | ```int``` | SMS verifications remaining. | |
1313
| `num_fax_pages_left` | ```int``` | Number of fax pages left | |
1414

1515
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

0 commit comments

Comments
 (0)