Skip to content

Commit 3b9d401

Browse files
harsharahulroot
andauthored
Version 3.18.0-v2.1-22.3.00.00 release (#150)
Co-authored-by: root <[email protected]>
1 parent 214ea8a commit 3b9d401

File tree

219 files changed

+11940
-2237
lines changed

Some content is hidden

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

219 files changed

+11940
-2237
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
33

44
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
55

6+
## [v3.18.0] - eSignature API v2.1-22.3.00.00 - 2022-09-07
7+
### Changed
8+
- Added support for version v2.1-22.3.00.00 of the DocuSign ESignature API.
9+
- Updated the SDK release version.
10+
### Fixed
11+
- Date issue resolved in imports (DCM-7769)
12+
613
## [v3.17.0] - eSignature API v2.1-22.2.00.00 - 2022-06-17
714
### Changed
815
- Added support for version v2.1-22.2.00.00 of the DocuSign ESignature API.

docusign_esign/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@
196196
from docusign_esign.models.connect_historical_envelope_republish import ConnectHistoricalEnvelopeRepublish
197197
from docusign_esign.models.connect_log import ConnectLog
198198
from docusign_esign.models.connect_logs import ConnectLogs
199+
from docusign_esign.models.connect_o_auth_config import ConnectOAuthConfig
199200
from docusign_esign.models.connect_salesforce_field import ConnectSalesforceField
200201
from docusign_esign.models.connect_salesforce_object import ConnectSalesforceObject
201202
from docusign_esign.models.connect_user_info import ConnectUserInfo
@@ -522,6 +523,7 @@
522523
from docusign_esign.models.workspace_user import WorkspaceUser
523524
from docusign_esign.models.workspace_user_authorization import WorkspaceUserAuthorization
524525
from docusign_esign.models.zip import Zip
526+
from docusign_esign.models.date import Date
525527

526528

527529
configuration = Configuration()

docusign_esign/apis/accounts_api.py

Lines changed: 98 additions & 0 deletions
Large diffs are not rendered by default.

docusign_esign/apis/billing_api.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ def get_billing_plan_with_http_info(self, billing_plan_id, **kwargs):
146146
def get_credit_card_info(self, account_id, **kwargs):
147147
"""
148148
Get metadata for a given credit card.
149+
This method returns information about a credit card associated with an account.
149150
This method makes a synchronous HTTP request by default. To make an
150151
asynchronous HTTP request, please define a `callback` function
151152
to be invoked when receiving the response.
@@ -171,6 +172,7 @@ def get_credit_card_info(self, account_id, **kwargs):
171172
def get_credit_card_info_with_http_info(self, account_id, **kwargs):
172173
"""
173174
Get metadata for a given credit card.
175+
This method returns information about a credit card associated with an account.
174176
This method makes a synchronous HTTP request by default. To make an
175177
asynchronous HTTP request, please define a `callback` function
176178
to be invoked when receiving the response.
@@ -247,6 +249,7 @@ def get_credit_card_info_with_http_info(self, account_id, **kwargs):
247249
def get_downgrade_request_billing_info(self, account_id, **kwargs):
248250
"""
249251
Returns downgrade plan information for the specified account.
252+
250253
This method makes a synchronous HTTP request by default. To make an
251254
asynchronous HTTP request, please define a `callback` function
252255
to be invoked when receiving the response.
@@ -272,6 +275,7 @@ def get_downgrade_request_billing_info(self, account_id, **kwargs):
272275
def get_downgrade_request_billing_info_with_http_info(self, account_id, **kwargs):
273276
"""
274277
Returns downgrade plan information for the specified account.
278+
275279
This method makes a synchronous HTTP request by default. To make an
276280
asynchronous HTTP request, please define a `callback` function
277281
to be invoked when receiving the response.
@@ -1325,6 +1329,7 @@ def purchase_envelopes_with_http_info(self, account_id, **kwargs):
13251329
def update_downgrade_account_billing_plan(self, account_id, **kwargs):
13261330
"""
13271331
Queues downgrade billing plan request for an account.
1332+
13281333
This method makes a synchronous HTTP request by default. To make an
13291334
asynchronous HTTP request, please define a `callback` function
13301335
to be invoked when receiving the response.
@@ -1351,6 +1356,7 @@ def update_downgrade_account_billing_plan(self, account_id, **kwargs):
13511356
def update_downgrade_account_billing_plan_with_http_info(self, account_id, **kwargs):
13521357
"""
13531358
Queues downgrade billing plan request for an account.
1359+
13541360
This method makes a synchronous HTTP request by default. To make an
13551361
asynchronous HTTP request, please define a `callback` function
13561362
to be invoked when receiving the response.

docusign_esign/apis/bulk_envelopes_api.py

Lines changed: 24 additions & 0 deletions
Large diffs are not rendered by default.

docusign_esign/apis/bulk_process_data_api.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def __init__(self, api_client=None):
4343
def create_bulk_process_request(self, account_id, process_action, **kwargs):
4444
"""
4545
Uses the specified bulk envelopes list to update the envelopes specified in the payload
46+
4647
This method makes a synchronous HTTP request by default. To make an
4748
asynchronous HTTP request, please define a `callback` function
4849
to be invoked when receiving the response.
@@ -69,6 +70,7 @@ def create_bulk_process_request(self, account_id, process_action, **kwargs):
6970
def create_bulk_process_request_with_http_info(self, account_id, process_action, **kwargs):
7071
"""
7172
Uses the specified bulk envelopes list to update the envelopes specified in the payload
73+
7274
This method makes a synchronous HTTP request by default. To make an
7375
asynchronous HTTP request, please define a `callback` function
7476
to be invoked when receiving the response.
@@ -151,6 +153,7 @@ def create_bulk_process_request_with_http_info(self, account_id, process_action,
151153
def create_bulk_process_request_to_queue(self, account_id, bulk_process_list_id, process_action, **kwargs):
152154
"""
153155
Uses the specified bulk envelopes list to update the envelopes specified in the payload
156+
154157
This method makes a synchronous HTTP request by default. To make an
155158
asynchronous HTTP request, please define a `callback` function
156159
to be invoked when receiving the response.
@@ -179,6 +182,7 @@ def create_bulk_process_request_to_queue(self, account_id, bulk_process_list_id,
179182
def create_bulk_process_request_to_queue_with_http_info(self, account_id, bulk_process_list_id, process_action, **kwargs):
180183
"""
181184
Uses the specified bulk envelopes list to update the envelopes specified in the payload
185+
182186
This method makes a synchronous HTTP request by default. To make an
183187
asynchronous HTTP request, please define a `callback` function
184188
to be invoked when receiving the response.
@@ -270,6 +274,7 @@ def create_bulk_process_request_to_queue_with_http_info(self, account_id, bulk_p
270274
def delete_bulk_process_list(self, account_id, bulk_process_list_id, process_action, **kwargs):
271275
"""
272276
Deletes a specific bulk process list
277+
273278
This method makes a synchronous HTTP request by default. To make an
274279
asynchronous HTTP request, please define a `callback` function
275280
to be invoked when receiving the response.
@@ -297,6 +302,7 @@ def delete_bulk_process_list(self, account_id, bulk_process_list_id, process_act
297302
def delete_bulk_process_list_with_http_info(self, account_id, bulk_process_list_id, process_action, **kwargs):
298303
"""
299304
Deletes a specific bulk process list
305+
300306
This method makes a synchronous HTTP request by default. To make an
301307
asynchronous HTTP request, please define a `callback` function
302308
to be invoked when receiving the response.
@@ -385,6 +391,7 @@ def delete_bulk_process_list_with_http_info(self, account_id, bulk_process_list_
385391
def delete_bulk_process_lists(self, account_id, process_action, **kwargs):
386392
"""
387393
Deletes a specific bulk process list
394+
388395
This method makes a synchronous HTTP request by default. To make an
389396
asynchronous HTTP request, please define a `callback` function
390397
to be invoked when receiving the response.
@@ -412,6 +419,7 @@ def delete_bulk_process_lists(self, account_id, process_action, **kwargs):
412419
def delete_bulk_process_lists_with_http_info(self, account_id, process_action, **kwargs):
413420
"""
414421
Deletes a specific bulk process list
422+
415423
This method makes a synchronous HTTP request by default. To make an
416424
asynchronous HTTP request, please define a `callback` function
417425
to be invoked when receiving the response.
@@ -497,6 +505,7 @@ def delete_bulk_process_lists_with_http_info(self, account_id, process_action, *
497505
def get_bulk_process_list(self, account_id, bulk_process_list_id, process_action, **kwargs):
498506
"""
499507
Gets a specific bulk process list
508+
500509
This method makes a synchronous HTTP request by default. To make an
501510
asynchronous HTTP request, please define a `callback` function
502511
to be invoked when receiving the response.
@@ -524,6 +533,7 @@ def get_bulk_process_list(self, account_id, bulk_process_list_id, process_action
524533
def get_bulk_process_list_with_http_info(self, account_id, bulk_process_list_id, process_action, **kwargs):
525534
"""
526535
Gets a specific bulk process list
536+
527537
This method makes a synchronous HTTP request by default. To make an
528538
asynchronous HTTP request, please define a `callback` function
529539
to be invoked when receiving the response.
@@ -612,6 +622,7 @@ def get_bulk_process_list_with_http_info(self, account_id, bulk_process_list_id,
612622
def get_bulk_process_lists(self, account_id, process_action, **kwargs):
613623
"""
614624
Lists top-level details for all bulk process lists visible to the current user
625+
615626
This method makes a synchronous HTTP request by default. To make an
616627
asynchronous HTTP request, please define a `callback` function
617628
to be invoked when receiving the response.
@@ -638,6 +649,7 @@ def get_bulk_process_lists(self, account_id, process_action, **kwargs):
638649
def get_bulk_process_lists_with_http_info(self, account_id, process_action, **kwargs):
639650
"""
640651
Lists top-level details for all bulk process lists visible to the current user
652+
641653
This method makes a synchronous HTTP request by default. To make an
642654
asynchronous HTTP request, please define a `callback` function
643655
to be invoked when receiving the response.
@@ -720,6 +732,7 @@ def get_bulk_process_lists_with_http_info(self, account_id, process_action, **kw
720732
def update_bulk_process_list(self, account_id, bulk_process_list_id, process_action, **kwargs):
721733
"""
722734
Updates a specific bulk process list
735+
723736
This method makes a synchronous HTTP request by default. To make an
724737
asynchronous HTTP request, please define a `callback` function
725738
to be invoked when receiving the response.
@@ -747,6 +760,7 @@ def update_bulk_process_list(self, account_id, bulk_process_list_id, process_act
747760
def update_bulk_process_list_with_http_info(self, account_id, bulk_process_list_id, process_action, **kwargs):
748761
"""
749762
Updates a specific bulk process list
763+
750764
This method makes a synchronous HTTP request by default. To make an
751765
asynchronous HTTP request, please define a `callback` function
752766
to be invoked when receiving the response.

docusign_esign/apis/bulk_process_data_send_api.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def __init__(self, api_client=None):
4343
def create_bulk_process_request_to_queue(self, account_id, bulk_process_list_id, process_action, **kwargs):
4444
"""
4545
Uses the specified bulk envelopes list to update the envelopes specified in the payload
46+
4647
This method makes a synchronous HTTP request by default. To make an
4748
asynchronous HTTP request, please define a `callback` function
4849
to be invoked when receiving the response.
@@ -71,6 +72,7 @@ def create_bulk_process_request_to_queue(self, account_id, bulk_process_list_id,
7172
def create_bulk_process_request_to_queue_with_http_info(self, account_id, bulk_process_list_id, process_action, **kwargs):
7273
"""
7374
Uses the specified bulk envelopes list to update the envelopes specified in the payload
75+
7476
This method makes a synchronous HTTP request by default. To make an
7577
asynchronous HTTP request, please define a `callback` function
7678
to be invoked when receiving the response.
@@ -162,6 +164,7 @@ def create_bulk_process_request_to_queue_with_http_info(self, account_id, bulk_p
162164
def delete_bulk_process_list(self, account_id, bulk_process_list_id, process_action, **kwargs):
163165
"""
164166
Deletes a specific bulk process list
167+
165168
This method makes a synchronous HTTP request by default. To make an
166169
asynchronous HTTP request, please define a `callback` function
167170
to be invoked when receiving the response.
@@ -189,6 +192,7 @@ def delete_bulk_process_list(self, account_id, bulk_process_list_id, process_act
189192
def delete_bulk_process_list_with_http_info(self, account_id, bulk_process_list_id, process_action, **kwargs):
190193
"""
191194
Deletes a specific bulk process list
195+
192196
This method makes a synchronous HTTP request by default. To make an
193197
asynchronous HTTP request, please define a `callback` function
194198
to be invoked when receiving the response.
@@ -277,6 +281,7 @@ def delete_bulk_process_list_with_http_info(self, account_id, bulk_process_list_
277281
def get_bulk_process_list(self, account_id, bulk_process_list_id, process_action, **kwargs):
278282
"""
279283
Gets a specific bulk process list
284+
280285
This method makes a synchronous HTTP request by default. To make an
281286
asynchronous HTTP request, please define a `callback` function
282287
to be invoked when receiving the response.
@@ -304,6 +309,7 @@ def get_bulk_process_list(self, account_id, bulk_process_list_id, process_action
304309
def get_bulk_process_list_with_http_info(self, account_id, bulk_process_list_id, process_action, **kwargs):
305310
"""
306311
Gets a specific bulk process list
312+
307313
This method makes a synchronous HTTP request by default. To make an
308314
asynchronous HTTP request, please define a `callback` function
309315
to be invoked when receiving the response.
@@ -392,6 +398,7 @@ def get_bulk_process_list_with_http_info(self, account_id, bulk_process_list_id,
392398
def update_bulk_process_list(self, account_id, bulk_process_list_id, process_action, **kwargs):
393399
"""
394400
Updates a specific bulk process list
401+
395402
This method makes a synchronous HTTP request by default. To make an
396403
asynchronous HTTP request, please define a `callback` function
397404
to be invoked when receiving the response.
@@ -419,6 +426,7 @@ def update_bulk_process_list(self, account_id, bulk_process_list_id, process_act
419426
def update_bulk_process_list_with_http_info(self, account_id, bulk_process_list_id, process_action, **kwargs):
420427
"""
421428
Updates a specific bulk process list
429+
422430
This method makes a synchronous HTTP request by default. To make an
423431
asynchronous HTTP request, please define a `callback` function
424432
to be invoked when receiving the response.

0 commit comments

Comments
 (0)