Skip to content

Commit f1f6f7f

Browse files
committed
Add 'incoming_email' to allowed content types and update package version to 1.0.0.10
1 parent 46a5952 commit f1f6f7f

9 files changed

Lines changed: 10 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is the API documentation for Chatwoot server.
44
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
55

66
- API version: 1.0.0
7-
- Package version: 1.0.0.9
7+
- Package version: 1.0.0.10
88
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen
99

1010
## Requirements.

chatwoot_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7272
self.default_headers[header_name] = header_value
7373
self.cookie = cookie
7474
# Set default User-Agent.
75-
self.user_agent = 'Swagger-Codegen/1.0.0.9/python'
75+
self.user_agent = 'Swagger-Codegen/1.0.0.10/python'
7676

7777
def __del__(self):
7878
self.pool.close()

chatwoot_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,5 +264,5 @@ def to_debug_report(self):
264264
"OS: {env}\n"\
265265
"Python Version: {pyversion}\n"\
266266
"Version of the API: 1.0.0\n"\
267-
"SDK Package Version: 1.0.0.9".\
267+
"SDK Package Version: 1.0.0.10".\
268268
format(env=sys.platform, pyversion=sys.version)

chatwoot_client/models/conversation_message_create.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def content_type(self, content_type):
161161
:param content_type: The content_type of this ConversationMessageCreate. # noqa: E501
162162
:type: str
163163
"""
164-
allowed_values = ["input_email", "cards", "input_select", "form", "article", "input_csat", "text"] # noqa: E501
164+
allowed_values = ["input_email", "cards", "input_select", "form", "article", "input_csat", "text", "incoming_email"] # noqa: E501
165165
if content_type not in allowed_values:
166166
raise ValueError(
167167
"Invalid value for `content_type` ({0}), must be one of {1}" # noqa: E501

chatwoot_client/models/inline_response2005.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def content_type(self, content_type):
131131
:param content_type: The content_type of this InlineResponse2005. # noqa: E501
132132
:type: str
133133
"""
134-
allowed_values = ["text", "input_select", "cards", "form", "input_csat"] # noqa: E501
134+
allowed_values = ["text", "input_select", "cards", "form", "input_csat", "incoming_email"] # noqa: E501
135135
if content_type not in allowed_values:
136136
raise ValueError(
137137
"Invalid value for `content_type` ({0}), must be one of {1}" # noqa: E501

chatwoot_client/models/message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def content_type(self, content_type):
125125
:param content_type: The content_type of this Message. # noqa: E501
126126
:type: str
127127
"""
128-
allowed_values = ["text", "input_select", "cards", "form", "input_csat"] # noqa: E501
128+
allowed_values = ["text", "input_select", "cards", "form", "input_csat", "incoming_email"] # noqa: E501
129129
if content_type not in allowed_values:
130130
raise ValueError(
131131
"Invalid value for `content_type` ({0}), must be one of {1}" # noqa: E501

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packageName": "chatwoot_client",
33
"projectName": "chatwoot-python-client",
44
"apiVersion": "1.0.0",
5-
"packageVersion": "1.0.0.9",
5+
"packageVersion": "1.0.0.10",
66
"outputDir": "./chatwoot",
77
"modelPackage": "models",
88
"apiPackage": "apis"

openapi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4856,6 +4856,7 @@ components:
48564856
- cards
48574857
- form
48584858
- input_csat
4859+
- incoming_email
48594860
content_attributes:
48604861
type: object
48614862
properties: {}
@@ -5475,6 +5476,7 @@ components:
54755476
- article
54765477
- input_csat
54775478
- text
5479+
- incoming_email
54785480
content_attributes:
54795481
type: object
54805482
properties: {}

setup.py

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

1515
NAME = "chatwoot-python-client"
16-
VERSION = "1.0.0.9"
16+
VERSION = "1.0.0.10"
1717
# To install the library, run the following
1818
#
1919
# python setup.py install

0 commit comments

Comments
 (0)