Skip to content

Commit 0d176ad

Browse files
raileendrrootdbbrahmbhattharsharahul
authored
Version 3.23.0 release (#168)
* Version 3.23.0-v2.1-23.2.00.00 release * Update __init__.py * Update requirements.txt * Update requirements.txt * Update requirements.txt --------- Co-authored-by: root <root@devcenteradmin.docusigntest.com> Co-authored-by: Dhaval Brahmbhatt <32913565+dbbrahmbhatt@users.noreply.github.com> Co-authored-by: Harsha Rahul Boggaram <harsharahul.b.k@gmail.com>
1 parent bd8504d commit 0d176ad

13 files changed

+957
-26
lines changed

CHANGELOG.md

+5
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.23.0] - eSignature API v2.1-23.2.00.00 - 2023-05-15
7+
### Changed
8+
- Added support for version v2.1-23.2.00.00 of the DocuSign ESignature API.
9+
- Updated the SDK release version.
10+
611
## [v3.22.0] - eSignature API v2.1-23.1.01.01 - 2023-04-05
712
### Changed
813
- Added support for version v2.1-23.1.01.01 of the DocuSign ESignature API.

docusign_esign/apis/accounts_api.py

+18-10
Original file line numberDiff line numberDiff line change
@@ -2820,7 +2820,8 @@ def get_agent_user_authorizations(self, account_id, user_id, **kwargs):
28202820
:param str user_id: The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing. (required)
28212821
:param str active_only:
28222822
:param str count:
2823-
:param str email_substring:
2823+
:param str email_substring: Part (substring) of email we are searching for.
2824+
:param str include_closed_users:
28242825
:param str permissions:
28252826
:param str start_position:
28262827
:param str user_name_substring:
@@ -2852,7 +2853,8 @@ def get_agent_user_authorizations_with_http_info(self, account_id, user_id, **kw
28522853
:param str user_id: The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing. (required)
28532854
:param str active_only:
28542855
:param str count:
2855-
:param str email_substring:
2856+
:param str email_substring: Part (substring) of email we are searching for.
2857+
:param str include_closed_users:
28562858
:param str permissions:
28572859
:param str start_position:
28582860
:param str user_name_substring:
@@ -2861,7 +2863,7 @@ def get_agent_user_authorizations_with_http_info(self, account_id, user_id, **kw
28612863
returns the request thread.
28622864
"""
28632865

2864-
all_params = ['account_id', 'user_id', 'active_only', 'count', 'email_substring', 'permissions', 'start_position', 'user_name_substring']
2866+
all_params = ['account_id', 'user_id', 'active_only', 'count', 'email_substring', 'include_closed_users', 'permissions', 'start_position', 'user_name_substring']
28652867
all_params.append('callback')
28662868
all_params.append('_return_http_data_only')
28672869
all_params.append('_preload_content')
@@ -2900,6 +2902,8 @@ def get_agent_user_authorizations_with_http_info(self, account_id, user_id, **kw
29002902
query_params['count'] = params['count']
29012903
if 'email_substring' in params:
29022904
query_params['email_substring'] = params['email_substring']
2905+
if 'include_closed_users' in params:
2906+
query_params['include_closed_users'] = params['include_closed_users']
29032907
if 'permissions' in params:
29042908
query_params['permissions'] = params['permissions']
29052909
if 'start_position' in params:
@@ -3740,7 +3744,7 @@ def get_consumer_disclosure(self, account_id, lang_code, **kwargs):
37403744
:param callback function: The callback function
37413745
for asynchronous request. (optional)
37423746
:param str account_id: The external account number (int) or account ID Guid. (required)
3743-
: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)
3747+
: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)
37443748
:return: ConsumerDisclosure
37453749
If the method is called asynchronously,
37463750
returns the request thread.
@@ -3767,7 +3771,7 @@ def get_consumer_disclosure_with_http_info(self, account_id, lang_code, **kwargs
37673771
:param callback function: The callback function
37683772
for asynchronous request. (optional)
37693773
:param str account_id: The external account number (int) or account ID Guid. (required)
3770-
: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)
3774+
: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)
37713775
:return: ConsumerDisclosure
37723776
If the method is called asynchronously,
37733777
returns the request thread.
@@ -4683,7 +4687,8 @@ def get_principal_user_authorizations(self, account_id, user_id, **kwargs):
46834687
:param str user_id: The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing. (required)
46844688
:param str active_only:
46854689
:param str count:
4686-
:param str email_substring:
4690+
:param str email_substring: Part (substring) of email we are searching for.
4691+
:param str include_closed_users:
46874692
:param str permissions:
46884693
:param str start_position:
46894694
:param str user_name_substring:
@@ -4715,7 +4720,8 @@ def get_principal_user_authorizations_with_http_info(self, account_id, user_id,
47154720
:param str user_id: The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing. (required)
47164721
:param str active_only:
47174722
:param str count:
4718-
:param str email_substring:
4723+
:param str email_substring: Part (substring) of email we are searching for.
4724+
:param str include_closed_users:
47194725
:param str permissions:
47204726
:param str start_position:
47214727
:param str user_name_substring:
@@ -4724,7 +4730,7 @@ def get_principal_user_authorizations_with_http_info(self, account_id, user_id,
47244730
returns the request thread.
47254731
"""
47264732

4727-
all_params = ['account_id', 'user_id', 'active_only', 'count', 'email_substring', 'permissions', 'start_position', 'user_name_substring']
4733+
all_params = ['account_id', 'user_id', 'active_only', 'count', 'email_substring', 'include_closed_users', 'permissions', 'start_position', 'user_name_substring']
47284734
all_params.append('callback')
47294735
all_params.append('_return_http_data_only')
47304736
all_params.append('_preload_content')
@@ -4763,6 +4769,8 @@ def get_principal_user_authorizations_with_http_info(self, account_id, user_id,
47634769
query_params['count'] = params['count']
47644770
if 'email_substring' in params:
47654771
query_params['email_substring'] = params['email_substring']
4772+
if 'include_closed_users' in params:
4773+
query_params['include_closed_users'] = params['include_closed_users']
47664774
if 'permissions' in params:
47674775
query_params['permissions'] = params['permissions']
47684776
if 'start_position' in params:
@@ -7146,7 +7154,7 @@ def update_consumer_disclosure(self, account_id, lang_code, **kwargs):
71467154
:param callback function: The callback function
71477155
for asynchronous request. (optional)
71487156
:param str account_id: The external account number (int) or account ID Guid. (required)
7149-
: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)
7157+
: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)
71507158
:param str include_metadata:
71517159
:param ConsumerDisclosure consumer_disclosure:
71527160
:return: ConsumerDisclosure
@@ -7175,7 +7183,7 @@ def update_consumer_disclosure_with_http_info(self, account_id, lang_code, **kwa
71757183
:param callback function: The callback function
71767184
for asynchronous request. (optional)
71777185
:param str account_id: The external account number (int) or account ID Guid. (required)
7178-
: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)
7186+
: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)
71797187
:param str include_metadata:
71807188
:param ConsumerDisclosure consumer_disclosure:
71817189
:return: ConsumerDisclosure

0 commit comments

Comments
 (0)