Skip to content

Commit 788bf42

Browse files
authored
Merge pull request #18 from PandaDoc/template_details_contact_placeholders
v5.5.0
2 parents c2502c9 + 1cd4818 commit 788bf42

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

docs/TemplateDetailsResponsePreassignedPerson.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**email** | **str** | | [optional]
88
**type** | **str** | | [optional]
9+
**placeholder_name** | **str** | | [optional]
10+
**placeholder_source** | **str** | | [optional]
911
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
1012

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

pandadoc_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"""
1010

1111

12-
__version__ = "5.4.1"
12+
__version__ = "5.5.0"
1313

1414
# import ApiClient
1515
from pandadoc_client.api_client import ApiClient

pandadoc_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7575
self.default_headers[header_name] = header_value
7676
self.cookie = cookie
7777
# Set default User-Agent.
78-
self.user_agent = 'pandadoc_python_client/5.4.1'
78+
self.user_agent = 'pandadoc_python_client/5.5.0'
7979

8080
def __enter__(self):
8181
return self

pandadoc_client/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,8 +414,8 @@ def to_debug_report(self):
414414
return "Python SDK Debug Report:\n"\
415415
"OS: {env}\n"\
416416
"Python Version: {pyversion}\n"\
417-
"Version of the API: 5.4.1\n"\
418-
"SDK Package Version: 5.4.1".\
417+
"Version of the API: 5.5.0\n"\
418+
"SDK Package Version: 5.5.0".\
419419
format(env=sys.platform, pyversion=sys.version)
420420

421421
def get_host_settings(self):

pandadoc_client/model/template_details_response_preassigned_person.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ def openapi_types():
8282
return {
8383
'email': (str,), # noqa: E501
8484
'type': (str,), # noqa: E501
85+
'placeholder_name': (str,), # noqa: E501
86+
'placeholder_source': (str,), # noqa: E501
8587
}
8688

8789
@cached_property
@@ -92,6 +94,8 @@ def discriminator():
9294
attribute_map = {
9395
'email': 'email', # noqa: E501
9496
'type': 'type', # noqa: E501
97+
'placeholder_name': 'placeholder_name', # noqa: E501
98+
'placeholder_source': 'placeholder_source', # noqa: E501
9599
}
96100

97101
read_only_vars = {
@@ -137,6 +141,8 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
137141
_visited_composed_classes = (Animal,)
138142
email (str): [optional] # noqa: E501
139143
type (str): [optional] # noqa: E501
144+
placeholder_name (str): [optional] # noqa: E501
145+
placeholder_source (str): [optional] # noqa: E501
140146
"""
141147

142148
_check_type = kwargs.pop('_check_type', True)
@@ -220,6 +226,8 @@ def __init__(self, *args, **kwargs): # noqa: E501
220226
_visited_composed_classes = (Animal,)
221227
email (str): [optional] # noqa: E501
222228
type (str): [optional] # noqa: E501
229+
placeholder_name (str): [optional] # noqa: E501
230+
placeholder_source (str): [optional] # noqa: E501
223231
"""
224232

225233
_check_type = kwargs.pop('_check_type', True)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
description = full_description[0:from_index] + full_description[to_index::]
1818

1919
NAME = "pandadoc-python-client"
20-
VERSION = "5.4.1"
20+
VERSION = "5.5.0"
2121
# To install the library, run the following
2222
#
2323
# python setup.py install

0 commit comments

Comments
 (0)