Skip to content

Commit 7d630a9

Browse files
Release 1.10.0 (#21)
* release 1.10.0 * update files * Readding deleted files --------- Co-authored-by: Juan Treminio <[email protected]>
1 parent ca02923 commit 7d630a9

25 files changed

+262
-38
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Python 3.8+
4949
Install using `pip`:
5050

5151
```shell
52-
python3 -m pip install dropbox-sign==1.9.0
52+
python3 -m pip install dropbox-sign==1.10.0
5353
```
5454

5555
Alternatively:
@@ -400,6 +400,6 @@ [email protected]
400400
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
401401

402402
- API version: 3.0.0
403-
- Package version: 1.9.0
403+
- Package version: 1.10.0
404404
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
405405

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9.0
1+
1.10.0

bin/check-clean-git-status

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ if [[ $(git status --porcelain) != '' ]]; then
77
printf "\t./run-build\n"
88

99
git status
10-
git diff
1110

1211
exit 1
1312
else

docs/TemplateResponseDocumentFormFieldText.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ Name | Type | Description | Notes
1111
| `original_font_size` | ```int``` | Original font size used in this form field&#39;s text. | |
1212
| `font_family` | ```str``` | Font family used in this form field&#39;s text. | |
1313
| `validation_type` | ```str``` | Each text field may contain a `validation_type` parameter. Check out the list of [validation types](https://faq.hellosign.com/hc/en-us/articles/217115577) to learn more about the possible values. | |
14+
| `validation_custom_regex` | ```str``` | When `validation_type` is set to `custom_regex`, this specifies the custom regular expression pattern that will be used to validate the text field. | |
15+
| `validation_custom_regex_format_label` | ```str``` | When `validation_type` is set to `custom_regex`, this specifies the error message displayed to the signer when the text does not match the provided regex pattern. | |
1416
| `group` | ```str``` | The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields. | |
1517

1618
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

dropbox_sign/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "1.9.0"
18+
__version__ = "1.10.0"
1919

2020
# import apis into sdk package
2121
from dropbox_sign.apis import *

dropbox_sign/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def __init__(
8989
self.default_headers[header_name] = header_value
9090
self.cookie = cookie
9191
# Set default User-Agent.
92-
self.user_agent = "OpenAPI-Generator/1.9.0/python"
92+
self.user_agent = "OpenAPI-Generator/1.10.0/python"
9393
self.client_side_validation = configuration.client_side_validation
9494

9595
def __enter__(self):

dropbox_sign/configuration.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,9 @@ def to_debug_report(self) -> str:
546546
"OS: {env}\n"
547547
"Python Version: {pyversion}\n"
548548
"Version of the API: 3.0.0\n"
549-
"SDK Package Version: 1.9.0".format(env=sys.platform, pyversion=sys.version)
549+
"SDK Package Version: 1.10.0".format(
550+
env=sys.platform, pyversion=sys.version
551+
)
550552
)
551553

552554
def get_host_settings(self) -> List[HostSetting]:

dropbox_sign/models/api_app_create_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ApiAppCreateRequest(BaseModel):
3636
ApiAppCreateRequest
3737
""" # noqa: E501
3838

39-
domains: Annotated[List[StrictStr], Field(min_length=1, max_length=2)] = Field(
39+
domains: Annotated[List[StrictStr], Field(min_length=1, max_length=10)] = Field(
4040
description="The domain names the ApiApp will be associated with."
4141
)
4242
name: StrictStr = Field(description="The name you want to assign to the ApiApp.")

dropbox_sign/models/api_app_update_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ApiAppUpdateRequest(BaseModel):
4646
default=None,
4747
description="An image file to use as a custom logo in embedded contexts. (Only applies to some API plans)",
4848
)
49-
domains: Optional[Annotated[List[StrictStr], Field(max_length=2)]] = Field(
49+
domains: Optional[Annotated[List[StrictStr], Field(max_length=10)]] = Field(
5050
default=None, description="The domain names the ApiApp will be associated with."
5151
)
5252
name: Optional[StrictStr] = Field(

dropbox_sign/models/report_create_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ class ReportCreateRequest(BaseModel):
4848
def report_type_validate_enum(cls, value):
4949
"""Validates the enum"""
5050
for i in value:
51-
if i not in set(["user_activity", "document_status"]):
51+
if i not in set(["user_activity", "document_status", "sms_activity"]):
5252
raise ValueError(
53-
"each list item must be one of ('user_activity', 'document_status')"
53+
"each list item must be one of ('user_activity', 'document_status', 'sms_activity')"
5454
)
5555
return value
5656

0 commit comments

Comments
 (0)