Skip to content

Commit ebf3e66

Browse files
authored
Merge pull request #15 from sendbird/release/1.0.27
Updated version to 1.0.27
2 parents aa51cb9 + 58300e8 commit ebf3e66

10 files changed

+21
-7
lines changed

docs/ListMessagesResponseMessagesInner.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
1313
**is_removed** | **bool** | | [optional]
1414
**user** | [**SendBirdMessageResponseUser**](SendBirdMessageResponseUser.md) | | [optional]
1515
**file** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | [optional]
16+
**files** | [**[SendBirdFile]**](SendBirdFile.md) | | [optional]
1617
**message** | **str** | | [optional]
1718
**data** | **str** | | [optional]
1819
**message_retention_hour** | **float** | | [optional]

docs/SendBirdMessageResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
1414
**is_removed** | **bool** | | [optional]
1515
**user** | [**SendBirdMessageResponseUser**](SendBirdMessageResponseUser.md) | | [optional]
1616
**file** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | [optional]
17+
**files** | [**[SendBirdFile]**](SendBirdFile.md) | | [optional]
1718
**message** | **str** | | [optional]
1819
**data** | **str** | | [optional]
1920
**message_retention_hour** | **float** | | [optional]

sendbird_platform_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__ = "1.0.26"
14+
__version__ = "1.0.27"
1515

1616
# import ApiClient
1717
from sendbird_platform_sdk.api_client import ApiClient

sendbird_platform_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/1.0.26/python'
80+
self.user_agent = 'OpenAPI-Generator/1.0.27/python'
8181

8282
def __enter__(self):
8383
return self

sendbird_platform_sdk/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def to_debug_report(self):
381381
"OS: {env}\n"\
382382
"Python Version: {pyversion}\n"\
383383
"Version of the API: 1.0.0\n"\
384-
"SDK Package Version: 1.0.26".\
384+
"SDK Package Version: 1.0.27".\
385385
format(env=sys.platform, pyversion=sys.version)
386386

387387
def get_host_settings(self):

sendbird_platform_sdk/model/list_messages_response_messages_inner.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,13 @@
3333
def lazy_import():
3434
from sendbird_platform_sdk.model.list_messages_response_messages_inner_og_tag import ListMessagesResponseMessagesInnerOgTag
3535
from sendbird_platform_sdk.model.list_messages_response_messages_inner_sorted_metaarray_inner import ListMessagesResponseMessagesInnerSortedMetaarrayInner
36+
from sendbird_platform_sdk.model.send_bird_file import SendBirdFile
3637
from sendbird_platform_sdk.model.send_bird_message_response_mentioned_users_inner import SendBirdMessageResponseMentionedUsersInner
3738
from sendbird_platform_sdk.model.send_bird_message_response_user import SendBirdMessageResponseUser
3839
from sendbird_platform_sdk.model.send_bird_parent_message_info import SendBirdParentMessageInfo
3940
globals()['ListMessagesResponseMessagesInnerOgTag'] = ListMessagesResponseMessagesInnerOgTag
4041
globals()['ListMessagesResponseMessagesInnerSortedMetaarrayInner'] = ListMessagesResponseMessagesInnerSortedMetaarrayInner
42+
globals()['SendBirdFile'] = SendBirdFile
4143
globals()['SendBirdMessageResponseMentionedUsersInner'] = SendBirdMessageResponseMentionedUsersInner
4244
globals()['SendBirdMessageResponseUser'] = SendBirdMessageResponseUser
4345
globals()['SendBirdParentMessageInfo'] = SendBirdParentMessageInfo
@@ -105,6 +107,7 @@ def openapi_types():
105107
'is_removed': (bool,), # noqa: E501
106108
'user': (SendBirdMessageResponseUser,), # noqa: E501
107109
'file': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)},), # noqa: E501
110+
'files': ([SendBirdFile],), # noqa: E501
108111
'message': (str,), # noqa: E501
109112
'data': (str,), # noqa: E501
110113
'message_retention_hour': (float,), # noqa: E501
@@ -136,6 +139,7 @@ def discriminator():
136139
'is_removed': 'is_removed', # noqa: E501
137140
'user': 'user', # noqa: E501
138141
'file': 'file', # noqa: E501
142+
'files': 'files', # noqa: E501
139143
'message': 'message', # noqa: E501
140144
'data': 'data', # noqa: E501
141145
'message_retention_hour': 'message_retention_hour', # noqa: E501
@@ -202,6 +206,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
202206
is_removed (bool): [optional] # noqa: E501
203207
user (SendBirdMessageResponseUser): [optional] # noqa: E501
204208
file ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): [optional] # noqa: E501
209+
files ([SendBirdFile]): [optional] # noqa: E501
205210
message (str): [optional] # noqa: E501
206211
data (str): [optional] # noqa: E501
207212
message_retention_hour (float): [optional] # noqa: E501
@@ -310,6 +315,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
310315
is_removed (bool): [optional] # noqa: E501
311316
user (SendBirdMessageResponseUser): [optional] # noqa: E501
312317
file ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): [optional] # noqa: E501
318+
files ([SendBirdFile]): [optional] # noqa: E501
313319
message (str): [optional] # noqa: E501
314320
data (str): [optional] # noqa: E501
315321
message_retention_hour (float): [optional] # noqa: E501

sendbird_platform_sdk/model/send_bird_group_channel_inviter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,11 +399,11 @@ def _composed_schemas():
399399
lazy_import()
400400
return {
401401
'anyOf': [
402-
SendBirdUser,
403-
none_type,
404402
],
405403
'allOf': [
406404
],
407405
'oneOf': [
406+
SendBirdUser,
407+
none_type,
408408
],
409409
}

sendbird_platform_sdk/model/send_bird_message_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,11 @@
3131

3232

3333
def lazy_import():
34+
from sendbird_platform_sdk.model.send_bird_file import SendBirdFile
3435
from sendbird_platform_sdk.model.send_bird_message_response_mentioned_users_inner import SendBirdMessageResponseMentionedUsersInner
3536
from sendbird_platform_sdk.model.send_bird_message_response_user import SendBirdMessageResponseUser
3637
from sendbird_platform_sdk.model.send_bird_parent_message_info import SendBirdParentMessageInfo
38+
globals()['SendBirdFile'] = SendBirdFile
3739
globals()['SendBirdMessageResponseMentionedUsersInner'] = SendBirdMessageResponseMentionedUsersInner
3840
globals()['SendBirdMessageResponseUser'] = SendBirdMessageResponseUser
3941
globals()['SendBirdParentMessageInfo'] = SendBirdParentMessageInfo
@@ -102,6 +104,7 @@ def openapi_types():
102104
'is_removed': (bool,), # noqa: E501
103105
'user': (SendBirdMessageResponseUser,), # noqa: E501
104106
'file': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)},), # noqa: E501
107+
'files': ([SendBirdFile],), # noqa: E501
105108
'message': (str,), # noqa: E501
106109
'data': (str,), # noqa: E501
107110
'message_retention_hour': (float,), # noqa: E501
@@ -137,6 +140,7 @@ def discriminator():
137140
'is_removed': 'is_removed', # noqa: E501
138141
'user': 'user', # noqa: E501
139142
'file': 'file', # noqa: E501
143+
'files': 'files', # noqa: E501
140144
'message': 'message', # noqa: E501
141145
'data': 'data', # noqa: E501
142146
'message_retention_hour': 'message_retention_hour', # noqa: E501
@@ -207,6 +211,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
207211
is_removed (bool): [optional] # noqa: E501
208212
user (SendBirdMessageResponseUser): [optional] # noqa: E501
209213
file ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): [optional] # noqa: E501
214+
files ([SendBirdFile]): [optional] # noqa: E501
210215
message (str): [optional] # noqa: E501
211216
data (str): [optional] # noqa: E501
212217
message_retention_hour (float): [optional] # noqa: E501
@@ -319,6 +324,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
319324
is_removed (bool): [optional] # noqa: E501
320325
user (SendBirdMessageResponseUser): [optional] # noqa: E501
321326
file ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): [optional] # noqa: E501
327+
files ([SendBirdFile]): [optional] # noqa: E501
322328
message (str): [optional] # noqa: E501
323329
data (str): [optional] # noqa: E501
324330
message_retention_hour (float): [optional] # noqa: E501

sendbird_platform_sdk/model/send_bird_user.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():

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 = "sendbird_platform_sdk"
15-
VERSION = "1.0.26"
15+
VERSION = "1.0.27"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install

0 commit comments

Comments
 (0)