Skip to content

Commit d6edfbf

Browse files
feat: update API client methods
API changes: - Update API client - Update API client - Update API client - Update API client - Update API client - ... and 6 more API files Model changes: - Update __init__ model - Update account_info_response model - Update app_routers_v1_pdf_async_export_type model - Update app_routers_v1_pdf_export_type model - Update create_async_pdf_request model - ... and 25 more model files Generated from OpenAPI spec v1.9.0
1 parent 43e8988 commit d6edfbf

76 files changed

Lines changed: 84 additions & 91 deletions

File tree

Some content is hidden

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "templatefox"
3-
version = "1.8.1"
3+
version = "1.9.0"
44
description = "Official TemplateFox Python SDK - Generate PDFs from HTML templates"
55
license = {text = "MIT"}
66
authors = [

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Generate beautiful PDFs from HTML/CSS templates with Jinja2 via API. Design once, generate thousands.
55
6-
The version of the OpenAPI document: 1.8.1
6+
The version of the OpenAPI document: 1.9.0
77
Contact: support@templatefox.com
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99
@@ -20,7 +20,7 @@
2020
# prerequisite: setuptools
2121
# http://pypi.python.org/pypi/setuptools
2222
NAME = "templatefox"
23-
VERSION = "1.8.1"
23+
VERSION = "1.9.0"
2424
PYTHON_REQUIRES = ">= 3.9"
2525
REQUIRES = [
2626
"urllib3 >= 2.1.0, < 3.0.0",

templatefox/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
88
Generate beautiful PDFs from HTML/CSS templates with Jinja2 via API. Design once, generate thousands.
99
10-
The version of the OpenAPI document: 1.8.1
10+
The version of the OpenAPI document: 1.9.0
1111
Contact: support@templatefox.com
1212
Generated by OpenAPI Generator (https://openapi-generator.tech)
1313
1414
Do not edit the class manually.
1515
""" # noqa: E501
1616

1717

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

2020
# Define package exports
2121
__all__ = [

templatefox/api/account_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Generate beautiful PDFs from HTML/CSS templates with Jinja2 via API. Design once, generate thousands.
55
6-
The version of the OpenAPI document: 1.8.1
6+
The version of the OpenAPI document: 1.9.0
77
Contact: support@templatefox.com
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99

templatefox/api/integrations_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Generate beautiful PDFs from HTML/CSS templates with Jinja2 via API. Design once, generate thousands.
55
6-
The version of the OpenAPI document: 1.8.1
6+
The version of the OpenAPI document: 1.9.0
77
Contact: support@templatefox.com
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99

templatefox/api/pdf_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Generate beautiful PDFs from HTML/CSS templates with Jinja2 via API. Design once, generate thousands.
55
6-
The version of the OpenAPI document: 1.8.1
6+
The version of the OpenAPI document: 1.9.0
77
Contact: support@templatefox.com
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99

templatefox/api/pdf_async_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Generate beautiful PDFs from HTML/CSS templates with Jinja2 via API. Design once, generate thousands.
55
6-
The version of the OpenAPI document: 1.8.1
6+
The version of the OpenAPI document: 1.9.0
77
Contact: support@templatefox.com
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99

templatefox/api/templates_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Generate beautiful PDFs from HTML/CSS templates with Jinja2 via API. Design once, generate thousands.
55
6-
The version of the OpenAPI document: 1.8.1
6+
The version of the OpenAPI document: 1.9.0
77
Contact: support@templatefox.com
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99

templatefox/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Generate beautiful PDFs from HTML/CSS templates with Jinja2 via API. Design once, generate thousands.
55
6-
The version of the OpenAPI document: 1.8.1
6+
The version of the OpenAPI document: 1.9.0
77
Contact: support@templatefox.com
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99
@@ -92,7 +92,7 @@ def __init__(
9292
self.default_headers[header_name] = header_value
9393
self.cookie = cookie
9494
# Set default User-Agent.
95-
self.user_agent = 'OpenAPI-Generator/1.8.1/python'
95+
self.user_agent = 'OpenAPI-Generator/1.9.0/python'
9696
self.client_side_validation = configuration.client_side_validation
9797

9898
def __enter__(self):

templatefox/configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Generate beautiful PDFs from HTML/CSS templates with Jinja2 via API. Design once, generate thousands.
55
6-
The version of the OpenAPI document: 1.8.1
6+
The version of the OpenAPI document: 1.9.0
77
Contact: support@templatefox.com
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99
@@ -554,8 +554,8 @@ def to_debug_report(self) -> str:
554554
return "Python SDK Debug Report:\n"\
555555
"OS: {env}\n"\
556556
"Python Version: {pyversion}\n"\
557-
"Version of the API: 1.8.1\n"\
558-
"SDK Package Version: 1.8.1".\
557+
"Version of the API: 1.9.0\n"\
558+
"SDK Package Version: 1.9.0".\
559559
format(env=sys.platform, pyversion=sys.version)
560560

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

0 commit comments

Comments
 (0)