Skip to content

Commit 330a500

Browse files
HobbyProjectsroot
andauthored
Version 3.14.0rc1-v2.1-21.4.01.00 release (#134)
Co-authored-by: root <[email protected]>
1 parent 8bdbbde commit 330a500

30 files changed

+3249
-11
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ 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.14.0rc1] - eSignature API v2.1-21.4.01.00 - 2022-01-06
7+
### Changed
8+
- Added support for version v2.1-21.4.01.00 of the DocuSign ESignature API.
9+
- Updated the SDK release version.
10+
611
## [3.13.0] - ESignature API v2.1-21.4.00.00 - 2021-12-13
712
### Changed
813
- Added support for version v2.1-21.4.00.00 of the DocuSign ESignature API.

docusign_esign/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
from .apis.authentication_api import AuthenticationApi
2121
from .apis.billing_api import BillingApi
2222
from .apis.bulk_envelopes_api import BulkEnvelopesApi
23+
from .apis.bulk_process_data_api import BulkProcessDataApi
24+
from .apis.bulk_process_data_send_api import BulkProcessDataSendApi
2325
from .apis.cloud_storage_api import CloudStorageApi
2426
from .apis.connect_api import ConnectApi
2527
from .apis.custom_tabs_api import CustomTabsApi
@@ -130,13 +132,20 @@
130132
from docusign_esign.models.brands_response import BrandsResponse
131133
from docusign_esign.models.bulk_envelope import BulkEnvelope
132134
from docusign_esign.models.bulk_envelope_status import BulkEnvelopeStatus
135+
from docusign_esign.models.bulk_process_request import BulkProcessRequest
136+
from docusign_esign.models.bulk_process_response import BulkProcessResponse
137+
from docusign_esign.models.bulk_process_result import BulkProcessResult
138+
from docusign_esign.models.bulk_processing_list_summaries import BulkProcessingListSummaries
139+
from docusign_esign.models.bulk_processing_list_summary import BulkProcessingListSummary
140+
from docusign_esign.models.bulk_processing_lists import BulkProcessingLists
133141
from docusign_esign.models.bulk_recipient import BulkRecipient
134142
from docusign_esign.models.bulk_recipient_signature_provider import BulkRecipientSignatureProvider
135143
from docusign_esign.models.bulk_recipient_tab_label import BulkRecipientTabLabel
136144
from docusign_esign.models.bulk_recipients_request import BulkRecipientsRequest
137145
from docusign_esign.models.bulk_recipients_response import BulkRecipientsResponse
138146
from docusign_esign.models.bulk_recipients_summary_response import BulkRecipientsSummaryResponse
139147
from docusign_esign.models.bulk_recipients_update_response import BulkRecipientsUpdateResponse
148+
from docusign_esign.models.bulk_send_batch_error import BulkSendBatchError
140149
from docusign_esign.models.bulk_send_batch_request import BulkSendBatchRequest
141150
from docusign_esign.models.bulk_send_batch_status import BulkSendBatchStatus
142151
from docusign_esign.models.bulk_send_batch_summaries import BulkSendBatchSummaries
@@ -246,6 +255,7 @@
246255
from docusign_esign.models.envelope_attachments_result import EnvelopeAttachmentsResult
247256
from docusign_esign.models.envelope_audit_event import EnvelopeAuditEvent
248257
from docusign_esign.models.envelope_audit_event_response import EnvelopeAuditEventResponse
258+
from docusign_esign.models.envelope_custom_metadata import EnvelopeCustomMetadata
249259
from docusign_esign.models.envelope_definition import EnvelopeDefinition
250260
from docusign_esign.models.envelope_delay_rule_api_model import EnvelopeDelayRuleApiModel
251261
from docusign_esign.models.envelope_document import EnvelopeDocument

docusign_esign/apis/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
from .authentication_api import AuthenticationApi
88
from .billing_api import BillingApi
99
from .bulk_envelopes_api import BulkEnvelopesApi
10+
from .bulk_process_data_api import BulkProcessDataApi
11+
from .bulk_process_data_send_api import BulkProcessDataSendApi
1012
from .cloud_storage_api import CloudStorageApi
1113
from .connect_api import ConnectApi
1214
from .custom_tabs_api import CustomTabsApi

docusign_esign/apis/billing_api.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,7 @@ def get_plan(self, account_id, **kwargs):
584584
:param str include_downgrade_information:
585585
:param str include_metadata: When set to **true**, the `canUpgrade` and `renewalStatus` properities are included the response and an array of `supportedCountries` property is added to the `billingAddress` information.
586586
:param str include_successor_plans: When set to **true**, excludes successor information from the response.
587+
:param str include_tax_exempt_id:
587588
:return: AccountBillingPlanResponse
588589
If the method is called asynchronously,
589590
returns the request thread.
@@ -614,12 +615,13 @@ def get_plan_with_http_info(self, account_id, **kwargs):
614615
:param str include_downgrade_information:
615616
:param str include_metadata: When set to **true**, the `canUpgrade` and `renewalStatus` properities are included the response and an array of `supportedCountries` property is added to the `billingAddress` information.
616617
:param str include_successor_plans: When set to **true**, excludes successor information from the response.
618+
:param str include_tax_exempt_id:
617619
:return: AccountBillingPlanResponse
618620
If the method is called asynchronously,
619621
returns the request thread.
620622
"""
621623

622-
all_params = ['account_id', 'include_credit_card_information', 'include_downgrade_information', 'include_metadata', 'include_successor_plans']
624+
all_params = ['account_id', 'include_credit_card_information', 'include_downgrade_information', 'include_metadata', 'include_successor_plans', 'include_tax_exempt_id']
623625
all_params.append('callback')
624626
all_params.append('_return_http_data_only')
625627
all_params.append('_preload_content')
@@ -655,6 +657,8 @@ def get_plan_with_http_info(self, account_id, **kwargs):
655657
query_params['include_metadata'] = params['include_metadata']
656658
if 'include_successor_plans' in params:
657659
query_params['include_successor_plans'] = params['include_successor_plans']
660+
if 'include_tax_exempt_id' in params:
661+
query_params['include_tax_exempt_id'] = params['include_tax_exempt_id']
658662

659663
header_params = {}
660664

0 commit comments

Comments
 (0)