Skip to content

Commit 1a7a108

Browse files
Release 1.6.1 (#14)
* Release 1.6.1 * Add Python: Shorting debug statement to prevent Black diff
1 parent 9dd7d7f commit 1a7a108

File tree

311 files changed

+13790
-8915
lines changed

Some content is hidden

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

311 files changed

+13790
-8915
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2024 dropbox.com
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+3-5
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.0
52+
python3 -m pip install dropbox-sign==1.6.1
5353
```
5454

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

74-
from dropbox_sign import \
75-
ApiClient, ApiException, Configuration, apis, models
74+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
7675

7776
configuration = Configuration(
7877
# Configure HTTP basic authorization: api_key
7978
username="YOUR_API_KEY",
80-
8179
# or, configure Bearer (JWT) authorization: oauth2
8280
# access_token="YOUR_ACCESS_TOKEN",
8381
)
@@ -383,6 +381,6 @@ [email protected]
383381
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
384382

385383
- API version: 3.0.0
386-
- Package version: 1.6.0
384+
- Package version: 1.6.1
387385
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
388386

VERSION

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

docs/AccountApi.md

+4-12
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,11 @@ Creates a new Dropbox Sign Account that is associated with the specified `email_
2525
```python
2626
from pprint import pprint
2727

28-
from dropbox_sign import \
29-
ApiClient, ApiException, Configuration, apis, models
28+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
3029

3130
configuration = Configuration(
3231
# Configure HTTP basic authorization: api_key
3332
username="YOUR_API_KEY",
34-
3533
# or, configure Bearer (JWT) authorization: oauth2
3634
# access_token="YOUR_ACCESS_TOKEN",
3735
)
@@ -94,13 +92,11 @@ Returns the properties and settings of your Account.
9492
```python
9593
from pprint import pprint
9694
97-
from dropbox_sign import \
98-
ApiClient, ApiException, Configuration, apis
95+
from dropbox_sign import ApiClient, ApiException, Configuration, apis
9996
10097
configuration = Configuration(
10198
# Configure HTTP basic authorization: api_key
10299
username="YOUR_API_KEY",
103-
104100
# or, configure Bearer (JWT) authorization: oauth2
105101
# access_token="YOUR_ACCESS_TOKEN",
106102
)
@@ -160,13 +156,11 @@ Updates the properties and settings of your Account. Currently only allows for u
160156
```python
161157
from pprint import pprint
162158
163-
from dropbox_sign import \
164-
ApiClient, ApiException, Configuration, apis, models
159+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
165160
166161
configuration = Configuration(
167162
# Configure HTTP basic authorization: api_key
168163
username="YOUR_API_KEY",
169-
170164
# or, configure Bearer (JWT) authorization: oauth2
171165
# access_token="YOUR_ACCESS_TOKEN",
172166
)
@@ -229,13 +223,11 @@ Verifies whether an Dropbox Sign Account exists for the given email address.
229223
```python
230224
from pprint import pprint
231225
232-
from dropbox_sign import \
233-
ApiClient, ApiException, Configuration, apis, models
226+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
234227
235228
configuration = Configuration(
236229
# Configure HTTP basic authorization: api_key
237230
username="YOUR_API_KEY",
238-
239231
# or, configure Bearer (JWT) authorization: oauth2
240232
# access_token="YOUR_ACCESS_TOKEN",
241233
)

docs/ApiAppApi.md

+7-17
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,11 @@ Creates a new API App.
2626
```python
2727
from pprint import pprint
2828

29-
from dropbox_sign import \
30-
ApiClient, ApiException, Configuration, apis, models
29+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
3130

3231
configuration = Configuration(
3332
# Configure HTTP basic authorization: api_key
3433
username="YOUR_API_KEY",
35-
3634
# or, configure Bearer (JWT) authorization: oauth2
3735
# access_token="YOUR_ACCESS_TOKEN",
3836
)
@@ -50,7 +48,7 @@ with ApiClient(configuration) as api_client:
5048
primary_button_text_color="#ffffff",
5149
)
5250

53-
custom_logo_file = open('./CustomLogoFile.png', 'rb')
51+
custom_logo_file = open("./CustomLogoFile.png", "rb")
5452

5553
data = models.ApiAppCreateRequest(
5654
name="My Production App",
@@ -109,13 +107,11 @@ Deletes an API App. Can only be invoked for apps you own.
109107
* Bearer (JWT) Authentication (oauth2):
110108
111109
```python
112-
from dropbox_sign import \
113-
ApiClient, ApiException, Configuration, apis
110+
from dropbox_sign import ApiClient, ApiException, Configuration, apis
114111
115112
configuration = Configuration(
116113
# Configure HTTP basic authorization: api_key
117114
username="YOUR_API_KEY",
118-
119115
# or, configure Bearer (JWT) authorization: oauth2
120116
# access_token="YOUR_ACCESS_TOKEN",
121117
)
@@ -175,13 +171,11 @@ Returns an object with information about an API App.
175171
```python
176172
from pprint import pprint
177173
178-
from dropbox_sign import \
179-
ApiClient, ApiException, Configuration, apis
174+
from dropbox_sign import ApiClient, ApiException, Configuration, apis
180175
181176
configuration = Configuration(
182177
# Configure HTTP basic authorization: api_key
183178
username="YOUR_API_KEY",
184-
185179
# or, configure Bearer (JWT) authorization: oauth2
186180
# access_token="YOUR_ACCESS_TOKEN",
187181
)
@@ -242,13 +236,11 @@ Returns a list of API Apps that are accessible by you. If you are on a team with
242236
```python
243237
from pprint import pprint
244238
245-
from dropbox_sign import \
246-
ApiClient, ApiException, Configuration, apis
239+
from dropbox_sign import ApiClient, ApiException, Configuration, apis
247240
248241
configuration = Configuration(
249242
# Configure HTTP basic authorization: api_key
250243
username="YOUR_API_KEY",
251-
252244
# or, configure Bearer (JWT) authorization: oauth2
253245
# access_token="YOUR_ACCESS_TOKEN",
254246
)
@@ -314,13 +306,11 @@ Updates an existing API App. Can only be invoked for apps you own. Only the fiel
314306
```python
315307
from pprint import pprint
316308
317-
from dropbox_sign import \
318-
ApiClient, ApiException, Configuration, apis, models
309+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
319310
320311
configuration = Configuration(
321312
# Configure HTTP basic authorization: api_key
322313
username="YOUR_API_KEY",
323-
324314
# or, configure Bearer (JWT) authorization: oauth2
325315
# access_token="YOUR_ACCESS_TOKEN",
326316
)
@@ -333,7 +323,7 @@ with ApiClient(configuration) as api_client:
333323
primary_button_text_color="#ffffff",
334324
)
335325
336-
custom_logo_file = open('./CustomLogoFile.png', 'rb')
326+
custom_logo_file = open("./CustomLogoFile.png", "rb")
337327
338328
data = models.ApiAppUpdateRequest(
339329
name="New Name",

docs/BulkSendJobApi.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,11 @@ Returns the status of the BulkSendJob and its SignatureRequests specified by the
2323
```python
2424
from pprint import pprint
2525

26-
from dropbox_sign import \
27-
ApiClient, ApiException, Configuration, apis
26+
from dropbox_sign import ApiClient, ApiException, Configuration, apis
2827

2928
configuration = Configuration(
3029
# Configure HTTP basic authorization: api_key
3130
username="YOUR_API_KEY",
32-
3331
# or, configure Bearer (JWT) authorization: oauth2
3432
# access_token="YOUR_ACCESS_TOKEN",
3533
)
@@ -92,13 +90,11 @@ Returns a list of BulkSendJob that you can access.
9290
```python
9391
from pprint import pprint
9492
95-
from dropbox_sign import \
96-
ApiClient, ApiException, Configuration, apis
93+
from dropbox_sign import ApiClient, ApiException, Configuration, apis
9794
9895
configuration = Configuration(
9996
# Configure HTTP basic authorization: api_key
10097
username="YOUR_API_KEY",
101-
10298
# or, configure Bearer (JWT) authorization: oauth2
10399
# access_token="YOUR_ACCESS_TOKEN",
104100
)

docs/EmbeddedApi.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,11 @@ Retrieves an embedded object containing a template url that can be opened in an
2323
```python
2424
from pprint import pprint
2525

26-
from dropbox_sign import \
27-
ApiClient, ApiException, Configuration, apis, models
26+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
2827

2928
configuration = Configuration(
3029
# Configure HTTP basic authorization: api_key
3130
username="YOUR_API_KEY",
32-
3331
# or, configure Bearer (JWT) authorization: oauth2
3432
# access_token="YOUR_ACCESS_TOKEN",
3533
)
@@ -96,13 +94,11 @@ Retrieves an embedded object containing a signature url that can be opened in an
9694
```python
9795
from pprint import pprint
9896
99-
from dropbox_sign import \
100-
ApiClient, ApiException, Configuration, apis
97+
from dropbox_sign import ApiClient, ApiException, Configuration, apis
10198
10299
configuration = Configuration(
103100
# Configure HTTP basic authorization: api_key
104101
username="YOUR_API_KEY",
105-
106102
# or, configure Bearer (JWT) authorization: oauth2
107103
# access_token="YOUR_ACCESS_TOKEN",
108104
)

docs/FaxLineApi.md

+7-14
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ Grants a user access to the specified Fax Line.
2727
```python
2828
from pprint import pprint
2929

30-
from dropbox_sign import \
31-
ApiClient, ApiException, Configuration, apis, models
30+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
3231

3332
configuration = Configuration(
3433
# Configure HTTP basic authorization: api_key
@@ -93,8 +92,7 @@ Returns a response with the area codes available for a given state/provice and c
9392
```python
9493
from pprint import pprint
9594
96-
from dropbox_sign import \
97-
ApiClient, ApiException, Configuration, apis
95+
from dropbox_sign import ApiClient, ApiException, Configuration, apis
9896
9997
configuration = Configuration(
10098
# Configure HTTP basic authorization: api_key
@@ -157,8 +155,7 @@ Purchases a new Fax Line.
157155
```python
158156
from pprint import pprint
159157
160-
from dropbox_sign import \
161-
ApiClient, ApiException, Configuration, apis, models
158+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
162159
163160
configuration = Configuration(
164161
# Configure HTTP basic authorization: api_key
@@ -223,8 +220,7 @@ Deletes the specified Fax Line from the subscription.
223220
```python
224221
from pprint import pprint
225222
226-
from dropbox_sign import \
227-
ApiClient, ApiException, Configuration, apis, models
223+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
228224
229225
configuration = Configuration(
230226
# Configure HTTP basic authorization: api_key
@@ -287,8 +283,7 @@ Returns the properties and settings of a Fax Line.
287283
```python
288284
from pprint import pprint
289285
290-
from dropbox_sign import \
291-
ApiClient, ApiException, Configuration, apis, models
286+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
292287
293288
configuration = Configuration(
294289
# Configure HTTP basic authorization: api_key
@@ -348,8 +343,7 @@ Returns the properties and settings of multiple Fax Lines.
348343
```python
349344
from pprint import pprint
350345
351-
from dropbox_sign import \
352-
ApiClient, ApiException, Configuration, apis, models
346+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
353347
354348
configuration = Configuration(
355349
# Configure HTTP basic authorization: api_key
@@ -412,8 +406,7 @@ Removes a user's access to the specified Fax Line.
412406
```python
413407
from pprint import pprint
414408
415-
from dropbox_sign import \
416-
ApiClient, ApiException, Configuration, apis, models
409+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
417410
418411
configuration = Configuration(
419412
# Configure HTTP basic authorization: api_key

docs/OAuthApi.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ Once you have retrieved the code from the user callback, you will need to exchan
2121
```python
2222
from pprint import pprint
2323

24-
from dropbox_sign import \
25-
ApiClient, ApiException, Configuration, apis, models
24+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
2625

2726
configuration = Configuration()
2827

@@ -84,8 +83,7 @@ Access tokens are only valid for a given period of time (typically one hour) for
8483
```python
8584
from pprint import pprint
8685
87-
from dropbox_sign import \
88-
ApiClient, ApiException, Configuration, apis, models
86+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
8987
9088
configuration = Configuration()
9189

docs/ReportApi.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,11 @@ Request the creation of one or more report(s). When the report(s) have been gen
2121
```python
2222
from pprint import pprint
2323

24-
from dropbox_sign import \
25-
ApiClient, ApiException, Configuration, apis, models
24+
from dropbox_sign import ApiClient, ApiException, Configuration, apis, models
2625

2726
configuration = Configuration(
2827
# Configure HTTP basic authorization: api_key
2928
username="YOUR_API_KEY",
30-
3129
# or, configure Bearer (JWT) authorization: oauth2
3230
# access_token="YOUR_ACCESS_TOKEN",
3331
)

0 commit comments

Comments
 (0)