Skip to content

Commit

Permalink
Release 1.6.1 (#14)
Browse files Browse the repository at this point in the history
* Release 1.6.1

* Add Python: Shorting debug statement to prevent Black diff
  • Loading branch information
jtreminio-dropbox authored Sep 16, 2024
1 parent 9dd7d7f commit 1a7a108
Show file tree
Hide file tree
Showing 311 changed files with 13,790 additions and 8,915 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2024 dropbox.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Python 3.7+
Install using `pip`:

```shell
python3 -m pip install dropbox-sign==1.6.0
python3 -m pip install dropbox-sign==1.6.1
```

Alternatively:
Expand All @@ -71,13 +71,11 @@ Please follow the [installation procedure](#installation--usage) and then run th
```python
from pprint import pprint

from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models

configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",

# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand Down Expand Up @@ -383,6 +381,6 @@ apisupport@hellosign.com
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 3.0.0
- Package version: 1.6.0
- Package version: 1.6.1
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.0
1.6.1
16 changes: 4 additions & 12 deletions docs/AccountApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,11 @@ Creates a new Dropbox Sign Account that is associated with the specified `email_
```python
from pprint import pprint

from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models

configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",

# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand Down Expand Up @@ -94,13 +92,11 @@ Returns the properties and settings of your Account.
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis
from dropbox_sign import ApiClient, ApiException, Configuration, apis
configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",
# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand Down Expand Up @@ -160,13 +156,11 @@ Updates the properties and settings of your Account. Currently only allows for u
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",
# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand Down Expand Up @@ -229,13 +223,11 @@ Verifies whether an Dropbox Sign Account exists for the given email address.
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",
# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand Down
24 changes: 7 additions & 17 deletions docs/ApiAppApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,11 @@ Creates a new API App.
```python
from pprint import pprint

from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models

configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",

# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand All @@ -50,7 +48,7 @@ with ApiClient(configuration) as api_client:
primary_button_text_color="#ffffff",
)

custom_logo_file = open('./CustomLogoFile.png', 'rb')
custom_logo_file = open("./CustomLogoFile.png", "rb")

data = models.ApiAppCreateRequest(
name="My Production App",
Expand Down Expand Up @@ -109,13 +107,11 @@ Deletes an API App. Can only be invoked for apps you own.
* Bearer (JWT) Authentication (oauth2):
```python
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis
from dropbox_sign import ApiClient, ApiException, Configuration, apis
configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",
# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand Down Expand Up @@ -175,13 +171,11 @@ Returns an object with information about an API App.
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis
from dropbox_sign import ApiClient, ApiException, Configuration, apis
configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",
# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand Down Expand Up @@ -242,13 +236,11 @@ Returns a list of API Apps that are accessible by you. If you are on a team with
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis
from dropbox_sign import ApiClient, ApiException, Configuration, apis
configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",
# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand Down Expand Up @@ -314,13 +306,11 @@ Updates an existing API App. Can only be invoked for apps you own. Only the fiel
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",
# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand All @@ -333,7 +323,7 @@ with ApiClient(configuration) as api_client:
primary_button_text_color="#ffffff",
)
custom_logo_file = open('./CustomLogoFile.png', 'rb')
custom_logo_file = open("./CustomLogoFile.png", "rb")
data = models.ApiAppUpdateRequest(
name="New Name",
Expand Down
8 changes: 2 additions & 6 deletions docs/BulkSendJobApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,11 @@ Returns the status of the BulkSendJob and its SignatureRequests specified by the
```python
from pprint import pprint

from dropbox_sign import \
ApiClient, ApiException, Configuration, apis
from dropbox_sign import ApiClient, ApiException, Configuration, apis

configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",

# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand Down Expand Up @@ -92,13 +90,11 @@ Returns a list of BulkSendJob that you can access.
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis
from dropbox_sign import ApiClient, ApiException, Configuration, apis
configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",
# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand Down
8 changes: 2 additions & 6 deletions docs/EmbeddedApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,11 @@ Retrieves an embedded object containing a template url that can be opened in an
```python
from pprint import pprint

from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models

configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",

# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand Down Expand Up @@ -96,13 +94,11 @@ Retrieves an embedded object containing a signature url that can be opened in an
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis
from dropbox_sign import ApiClient, ApiException, Configuration, apis
configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",
# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand Down
21 changes: 7 additions & 14 deletions docs/FaxLineApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ Grants a user access to the specified Fax Line.
```python
from pprint import pprint

from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models

configuration = Configuration(
# Configure HTTP basic authorization: api_key
Expand Down Expand Up @@ -93,8 +92,7 @@ Returns a response with the area codes available for a given state/provice and c
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis
from dropbox_sign import ApiClient, ApiException, Configuration, apis
configuration = Configuration(
# Configure HTTP basic authorization: api_key
Expand Down Expand Up @@ -157,8 +155,7 @@ Purchases a new Fax Line.
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
configuration = Configuration(
# Configure HTTP basic authorization: api_key
Expand Down Expand Up @@ -223,8 +220,7 @@ Deletes the specified Fax Line from the subscription.
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
configuration = Configuration(
# Configure HTTP basic authorization: api_key
Expand Down Expand Up @@ -287,8 +283,7 @@ Returns the properties and settings of a Fax Line.
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
configuration = Configuration(
# Configure HTTP basic authorization: api_key
Expand Down Expand Up @@ -348,8 +343,7 @@ Returns the properties and settings of multiple Fax Lines.
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
configuration = Configuration(
# Configure HTTP basic authorization: api_key
Expand Down Expand Up @@ -412,8 +406,7 @@ Removes a user's access to the specified Fax Line.
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
configuration = Configuration(
# Configure HTTP basic authorization: api_key
Expand Down
6 changes: 2 additions & 4 deletions docs/OAuthApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ Once you have retrieved the code from the user callback, you will need to exchan
```python
from pprint import pprint

from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models

configuration = Configuration()

Expand Down Expand Up @@ -84,8 +83,7 @@ Access tokens are only valid for a given period of time (typically one hour) for
```python
from pprint import pprint
from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
configuration = Configuration()
Expand Down
4 changes: 1 addition & 3 deletions docs/ReportApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,11 @@ Request the creation of one or more report(s). When the report(s) have been gen
```python
from pprint import pprint

from dropbox_sign import \
ApiClient, ApiException, Configuration, apis, models
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models

configuration = Configuration(
# Configure HTTP basic authorization: api_key
username="YOUR_API_KEY",

# or, configure Bearer (JWT) authorization: oauth2
# access_token="YOUR_ACCESS_TOKEN",
)
Expand Down
Loading

0 comments on commit 1a7a108

Please sign in to comment.