Skip to content

Commit 257fa3d

Browse files
fenghao-chenjtreminio-dropbox
authored andcommitted
H22SP23 release (#110)
1 parent f48b7ab commit 257fa3d

14 files changed

Lines changed: 22 additions & 8 deletions

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Python >=3.7
5454
Install using `pip`:
5555

5656
```shell
57-
python3 pipenv install hellosign-python-sdk==6.0.0-beta22.22
57+
python3 pipenv install hellosign-python-sdk==6.0.0-beta22.23
5858
```
5959

6060
Alternatively:
@@ -367,5 +367,5 @@ from hellosign_sdk.models import *
367367
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
368368

369369
- API version: 3.0.0
370-
- Package version: 6.0.0-beta22.22
370+
- Package version: 6.0.0-beta22.23
371371
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

docs/AccountResponseQuotas.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Details concerning remaining monthly quotas.
88
| ---- | ---- | ----------- | ----- |
99
| `api_signature_requests_left` | ```int, none_type``` | API signature requests remaining. | |
1010
| `documents_left` | ```int, none_type``` | Signature requests remaining. | |
11+
| `total_templates` | ```int, none_type``` | Total API templates allowed. | |
1112
| `templates_left` | ```int, none_type``` | API templates remaining. | |
1213
| `sms_verifications_left` | ```int, none_type``` | SMS verifications remaining. | |
1314

hellosign_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212

1313

14-
__version__ = "6.0.0-beta22.22"
14+
__version__ = "6.0.0-beta22.23"
1515

1616
# import ApiClient
1717
from hellosign_sdk.api_client import ApiClient

hellosign_sdk/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers[header_name] = header_value
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'OpenAPI-Generator/6.0.0-beta22.22/python'
80+
self.user_agent = 'OpenAPI-Generator/6.0.0-beta22.23/python'
8181

8282
def __enter__(self):
8383
return self

hellosign_sdk/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def to_debug_report(self):
413413
"OS: {env}\n"\
414414
"Python Version: {pyversion}\n"\
415415
"Version of the API: 3.0.0\n"\
416-
"SDK Package Version: 6.0.0-beta22.22".\
416+
"SDK Package Version: 6.0.0-beta22.23".\
417417
format(env=sys.platform, pyversion=sys.version)
418418

419419
def get_host_settings(self):

hellosign_sdk/model/account_response_quotas.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ def openapi_types():
8484
return {
8585
'api_signature_requests_left': (int, none_type,), # noqa: E501
8686
'documents_left': (int, none_type,), # noqa: E501
87+
'total_templates': (int, none_type,), # noqa: E501
8788
'templates_left': (int, none_type,), # noqa: E501
8889
'sms_verifications_left': (int, none_type,), # noqa: E501
8990
}
@@ -96,6 +97,7 @@ def discriminator():
9697
attribute_map = {
9798
'api_signature_requests_left': 'api_signature_requests_left', # noqa: E501
9899
'documents_left': 'documents_left', # noqa: E501
100+
'total_templates': 'total_templates', # noqa: E501
99101
'templates_left': 'templates_left', # noqa: E501
100102
'sms_verifications_left': 'sms_verifications_left', # noqa: E501
101103
}
@@ -143,6 +145,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
143145
_visited_composed_classes = (Animal,)
144146
api_signature_requests_left (int, none_type): API signature requests remaining.. [optional] # noqa: E501
145147
documents_left (int, none_type): Signature requests remaining.. [optional] # noqa: E501
148+
total_templates (int, none_type): Total API templates allowed.. [optional] # noqa: E501
146149
templates_left (int, none_type): API templates remaining.. [optional] # noqa: E501
147150
sms_verifications_left (int, none_type): SMS verifications remaining.. [optional] # noqa: E501
148151
"""
@@ -228,6 +231,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
228231
_visited_composed_classes = (Animal,)
229232
api_signature_requests_left (int, none_type): API signature requests remaining.. [optional] # noqa: E501
230233
documents_left (int, none_type): Signature requests remaining.. [optional] # noqa: E501
234+
total_templates (int, none_type): Total API templates allowed.. [optional] # noqa: E501
231235
templates_left (int, none_type): API templates remaining.. [optional] # noqa: E501
232236
sms_verifications_left (int, none_type): SMS verifications remaining.. [optional] # noqa: E501
233237
"""

hellosign_sdk/model/api_app_response_white_labeling_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def additional_properties_type():
6969
"""
7070
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
7171

72-
_nullable = False
72+
_nullable = True
7373

7474
@cached_property
7575
def openapi_types():

openapi-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ additionalProperties:
44
generatorLanguageVersion: ">=3.7"
55
packageName: hellosign_sdk
66
projectName: hellosign-python-sdk
7-
packageVersion: 6.0.0-beta22.22
7+
packageVersion: 6.0.0-beta22.23
88
sortModelPropertiesByRequiredFlag: true
99
legacyDiscriminatorBehavior: true
1010
files:

openapi-sdk.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8505,6 +8505,10 @@ components:
85058505
nullable: true
85068506
description: 'Signature requests remaining.'
85078507
type: integer
8508+
total_templates:
8509+
nullable: true
8510+
description: 'Total API templates allowed.'
8511+
type: integer
85088512
templates_left:
85098513
nullable: true
85108514
description: 'API templates remaining.'
@@ -8648,6 +8652,7 @@ components:
86488652
text_color2:
86498653
type: string
86508654
type: object
8655+
nullable: true
86518656
x-internal: true
86528657
BulkSendJobResponse:
86538658
description: 'Contains information about the BulkSendJob such as when it was created and how many signature requests are queued.'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools import setup, find_packages # noqa: H301
1313

1414
NAME = "hellosign-python-sdk"
15-
VERSION = "6.0.0-beta22.22"
15+
VERSION = "6.0.0-beta22.23"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install

0 commit comments

Comments
 (0)