Skip to content

Commit d9714ca

Browse files
aditicodessroot
andauthored
Version 5.0.0rc3-v2.1-25.1.00.02 release (#196)
Co-authored-by: root <root@devcenteradmin.docusigntest.com>
1 parent 1df2307 commit d9714ca

File tree

93 files changed

+10667
-203
lines changed

Some content is hidden

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

93 files changed

+10667
-203
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+
## [v5.0.0rc3] - eSignature API v2.1-25.1.00.02 - 2025-04-04
7+
### Changed
8+
- Added support for version v2.1-25.1.00.02 of the DocuSign ESignature API.
9+
- Updated the SDK release version.
10+
611
## [v5.0.0rc2] - eSignature API v2.1-24.2.00.00 - 2024-08-22
712
### Breaking Changes
813
- Updated datatype for `get_document` method from `envelopes_api`.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This client SDK is provided as open source, which enables you to customize its f
3333
<a id="versionInformation"></a>
3434
### Version Information
3535
- **API version**: v2.1
36-
- **Latest SDK version**: 5.0.0rc2
36+
- **Latest SDK version**: 5.0.0rc3
3737

3838
<a id="requirements"></a>
3939
## Requirements

docusign_esign/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,9 @@
199199
from docusign_esign.models.connect_salesforce_object import ConnectSalesforceObject
200200
from docusign_esign.models.connect_user_info import ConnectUserInfo
201201
from docusign_esign.models.connect_user_object import ConnectUserObject
202+
from docusign_esign.models.connected_data import ConnectedData
203+
from docusign_esign.models.connected_object_details import ConnectedObjectDetails
204+
from docusign_esign.models.connection_instance import ConnectionInstance
202205
from docusign_esign.models.consent_details import ConsentDetails
203206
from docusign_esign.models.console_view_request import ConsoleViewRequest
204207
from docusign_esign.models.consumer_disclosure import ConsumerDisclosure
@@ -297,6 +300,7 @@
297300
from docusign_esign.models.event_notification import EventNotification
298301
from docusign_esign.models.event_result import EventResult
299302
from docusign_esign.models.expirations import Expirations
303+
from docusign_esign.models.extension_data import ExtensionData
300304
from docusign_esign.models.external_doc_service_error_details import ExternalDocServiceErrorDetails
301305
from docusign_esign.models.external_document_sources import ExternalDocumentSources
302306
from docusign_esign.models.external_file import ExternalFile
@@ -493,6 +497,8 @@
493497
from docusign_esign.models.tab_metadata import TabMetadata
494498
from docusign_esign.models.tab_metadata_list import TabMetadataList
495499
from docusign_esign.models.tabs import Tabs
500+
from docusign_esign.models.template_auto_match import TemplateAutoMatch
501+
from docusign_esign.models.template_auto_match_list import TemplateAutoMatchList
496502
from docusign_esign.models.template_custom_fields import TemplateCustomFields
497503
from docusign_esign.models.template_document_visibility_list import TemplateDocumentVisibilityList
498504
from docusign_esign.models.template_documents_result import TemplateDocumentsResult

docusign_esign/apis/accounts_api.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3752,7 +3752,7 @@ def get_consumer_disclosure(self, account_id, lang_code, **kwargs):
37523752
:param callback function: The callback function
37533753
for asynchronous request. (optional)
37543754
:param str account_id: The external account number (int) or account ID Guid. (required)
3755-
:param str lang_code: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. (required)
3755+
:param str lang_code: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. (required)
37563756
:return: ConsumerDisclosure
37573757
If the method is called asynchronously,
37583758
returns the request thread.
@@ -3779,7 +3779,7 @@ def get_consumer_disclosure_with_http_info(self, account_id, lang_code, **kwargs
37793779
:param callback function: The callback function
37803780
for asynchronous request. (optional)
37813781
:param str account_id: The external account number (int) or account ID Guid. (required)
3782-
:param str lang_code: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. (required)
3782+
:param str lang_code: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. (required)
37833783
:return: ConsumerDisclosure
37843784
If the method is called asynchronously,
37853785
returns the request thread.
@@ -7162,7 +7162,7 @@ def update_consumer_disclosure(self, account_id, lang_code, **kwargs):
71627162
:param callback function: The callback function
71637163
for asynchronous request. (optional)
71647164
:param str account_id: The external account number (int) or account ID Guid. (required)
7165-
:param str lang_code: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. (required)
7165+
:param str lang_code: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. (required)
71667166
:param str include_metadata:
71677167
:param ConsumerDisclosure consumer_disclosure:
71687168
:return: ConsumerDisclosure
@@ -7191,7 +7191,7 @@ def update_consumer_disclosure_with_http_info(self, account_id, lang_code, **kwa
71917191
:param callback function: The callback function
71927192
for asynchronous request. (optional)
71937193
:param str account_id: The external account number (int) or account ID Guid. (required)
7194-
:param str lang_code: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. (required)
7194+
:param str lang_code: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. (required)
71957195
:param str include_metadata:
71967196
:param ConsumerDisclosure consumer_disclosure:
71977197
:return: ConsumerDisclosure

docusign_esign/apis/cloud_storage_api.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,7 @@ def list(self, account_id, folder_id, service_id, user_id, **kwargs):
530530
:param str order: An optional value that sets the direction order used to sort the item list. Valid values are: * asc = ascending sort order * desc = descending sort order
531531
:param str order_by: An optional value that sets the file attribute used to sort the item list. Valid values are: * modified * name
532532
:param str search_text:
533+
:param str sky_drive_skip_token:
533534
:param str start_position: Indicates the starting point of the first item included in the response set. It uses a 0-based index. The default setting for this is 0.
534535
:return: ExternalFolder
535536
If the method is called asynchronously,
@@ -566,13 +567,14 @@ def list_with_http_info(self, account_id, folder_id, service_id, user_id, **kwar
566567
:param str order: An optional value that sets the direction order used to sort the item list. Valid values are: * asc = ascending sort order * desc = descending sort order
567568
:param str order_by: An optional value that sets the file attribute used to sort the item list. Valid values are: * modified * name
568569
:param str search_text:
570+
:param str sky_drive_skip_token:
569571
:param str start_position: Indicates the starting point of the first item included in the response set. It uses a 0-based index. The default setting for this is 0.
570572
:return: ExternalFolder
571573
If the method is called asynchronously,
572574
returns the request thread.
573575
"""
574576

575-
all_params = ['account_id', 'folder_id', 'service_id', 'user_id', 'cloud_storage_folder_path', 'cloud_storage_folderid_plain', 'count', 'order', 'order_by', 'search_text', 'start_position']
577+
all_params = ['account_id', 'folder_id', 'service_id', 'user_id', 'cloud_storage_folder_path', 'cloud_storage_folderid_plain', 'count', 'order', 'order_by', 'search_text', 'sky_drive_skip_token', 'start_position']
576578
all_params.append('callback')
577579
all_params.append('_return_http_data_only')
578580
all_params.append('_preload_content')
@@ -627,6 +629,8 @@ def list_with_http_info(self, account_id, folder_id, service_id, user_id, **kwar
627629
query_params['order_by'] = params['order_by']
628630
if 'search_text' in params:
629631
query_params['search_text'] = params['search_text']
632+
if 'sky_drive_skip_token' in params:
633+
query_params['sky_drive_skip_token'] = params['sky_drive_skip_token']
630634
if 'start_position' in params:
631635
query_params['start_position'] = params['start_position']
632636

0 commit comments

Comments
 (0)