Skip to content

Commit

Permalink
Merge pull request #15 from sendbird/release/1.0.27
Browse files Browse the repository at this point in the history
Updated version to 1.0.27
  • Loading branch information
jerry-jeon authored Sep 24, 2024
2 parents aa51cb9 + 58300e8 commit ebf3e66
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 7 deletions.
1 change: 1 addition & 0 deletions docs/ListMessagesResponseMessagesInner.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Name | Type | Description | Notes
**is_removed** | **bool** | | [optional]
**user** | [**SendBirdMessageResponseUser**](SendBirdMessageResponseUser.md) | | [optional]
**file** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | [optional]
**files** | [**[SendBirdFile]**](SendBirdFile.md) | | [optional]
**message** | **str** | | [optional]
**data** | **str** | | [optional]
**message_retention_hour** | **float** | | [optional]
Expand Down
1 change: 1 addition & 0 deletions docs/SendBirdMessageResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Name | Type | Description | Notes
**is_removed** | **bool** | | [optional]
**user** | [**SendBirdMessageResponseUser**](SendBirdMessageResponseUser.md) | | [optional]
**file** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | [optional]
**files** | [**[SendBirdFile]**](SendBirdFile.md) | | [optional]
**message** | **str** | | [optional]
**data** | **str** | | [optional]
**message_retention_hour** | **float** | | [optional]
Expand Down
2 changes: 1 addition & 1 deletion sendbird_platform_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""


__version__ = "1.0.26"
__version__ = "1.0.27"

# import ApiClient
from sendbird_platform_sdk.api_client import ApiClient
Expand Down
2 changes: 1 addition & 1 deletion sendbird_platform_sdk/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/1.0.26/python'
self.user_agent = 'OpenAPI-Generator/1.0.27/python'

def __enter__(self):
return self
Expand Down
2 changes: 1 addition & 1 deletion sendbird_platform_sdk/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 1.0.0\n"\
"SDK Package Version: 1.0.26".\
"SDK Package Version: 1.0.27".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,13 @@
def lazy_import():
from sendbird_platform_sdk.model.list_messages_response_messages_inner_og_tag import ListMessagesResponseMessagesInnerOgTag
from sendbird_platform_sdk.model.list_messages_response_messages_inner_sorted_metaarray_inner import ListMessagesResponseMessagesInnerSortedMetaarrayInner
from sendbird_platform_sdk.model.send_bird_file import SendBirdFile
from sendbird_platform_sdk.model.send_bird_message_response_mentioned_users_inner import SendBirdMessageResponseMentionedUsersInner
from sendbird_platform_sdk.model.send_bird_message_response_user import SendBirdMessageResponseUser
from sendbird_platform_sdk.model.send_bird_parent_message_info import SendBirdParentMessageInfo
globals()['ListMessagesResponseMessagesInnerOgTag'] = ListMessagesResponseMessagesInnerOgTag
globals()['ListMessagesResponseMessagesInnerSortedMetaarrayInner'] = ListMessagesResponseMessagesInnerSortedMetaarrayInner
globals()['SendBirdFile'] = SendBirdFile
globals()['SendBirdMessageResponseMentionedUsersInner'] = SendBirdMessageResponseMentionedUsersInner
globals()['SendBirdMessageResponseUser'] = SendBirdMessageResponseUser
globals()['SendBirdParentMessageInfo'] = SendBirdParentMessageInfo
Expand Down Expand Up @@ -105,6 +107,7 @@ def openapi_types():
'is_removed': (bool,), # noqa: E501
'user': (SendBirdMessageResponseUser,), # noqa: E501
'file': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)},), # noqa: E501
'files': ([SendBirdFile],), # noqa: E501
'message': (str,), # noqa: E501
'data': (str,), # noqa: E501
'message_retention_hour': (float,), # noqa: E501
Expand Down Expand Up @@ -136,6 +139,7 @@ def discriminator():
'is_removed': 'is_removed', # noqa: E501
'user': 'user', # noqa: E501
'file': 'file', # noqa: E501
'files': 'files', # noqa: E501
'message': 'message', # noqa: E501
'data': 'data', # noqa: E501
'message_retention_hour': 'message_retention_hour', # noqa: E501
Expand Down Expand Up @@ -202,6 +206,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
is_removed (bool): [optional] # noqa: E501
user (SendBirdMessageResponseUser): [optional] # noqa: E501
file ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): [optional] # noqa: E501
files ([SendBirdFile]): [optional] # noqa: E501
message (str): [optional] # noqa: E501
data (str): [optional] # noqa: E501
message_retention_hour (float): [optional] # noqa: E501
Expand Down Expand Up @@ -310,6 +315,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
is_removed (bool): [optional] # noqa: E501
user (SendBirdMessageResponseUser): [optional] # noqa: E501
file ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): [optional] # noqa: E501
files ([SendBirdFile]): [optional] # noqa: E501
message (str): [optional] # noqa: E501
data (str): [optional] # noqa: E501
message_retention_hour (float): [optional] # noqa: E501
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -399,11 +399,11 @@ def _composed_schemas():
lazy_import()
return {
'anyOf': [
SendBirdUser,
none_type,
],
'allOf': [
],
'oneOf': [
SendBirdUser,
none_type,
],
}
6 changes: 6 additions & 0 deletions sendbird_platform_sdk/model/send_bird_message_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@


def lazy_import():
from sendbird_platform_sdk.model.send_bird_file import SendBirdFile
from sendbird_platform_sdk.model.send_bird_message_response_mentioned_users_inner import SendBirdMessageResponseMentionedUsersInner
from sendbird_platform_sdk.model.send_bird_message_response_user import SendBirdMessageResponseUser
from sendbird_platform_sdk.model.send_bird_parent_message_info import SendBirdParentMessageInfo
globals()['SendBirdFile'] = SendBirdFile
globals()['SendBirdMessageResponseMentionedUsersInner'] = SendBirdMessageResponseMentionedUsersInner
globals()['SendBirdMessageResponseUser'] = SendBirdMessageResponseUser
globals()['SendBirdParentMessageInfo'] = SendBirdParentMessageInfo
Expand Down Expand Up @@ -102,6 +104,7 @@ def openapi_types():
'is_removed': (bool,), # noqa: E501
'user': (SendBirdMessageResponseUser,), # noqa: E501
'file': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)},), # noqa: E501
'files': ([SendBirdFile],), # noqa: E501
'message': (str,), # noqa: E501
'data': (str,), # noqa: E501
'message_retention_hour': (float,), # noqa: E501
Expand Down Expand Up @@ -137,6 +140,7 @@ def discriminator():
'is_removed': 'is_removed', # noqa: E501
'user': 'user', # noqa: E501
'file': 'file', # noqa: E501
'files': 'files', # noqa: E501
'message': 'message', # noqa: E501
'data': 'data', # noqa: E501
'message_retention_hour': 'message_retention_hour', # noqa: E501
Expand Down Expand Up @@ -207,6 +211,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
is_removed (bool): [optional] # noqa: E501
user (SendBirdMessageResponseUser): [optional] # noqa: E501
file ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): [optional] # noqa: E501
files ([SendBirdFile]): [optional] # noqa: E501
message (str): [optional] # noqa: E501
data (str): [optional] # noqa: E501
message_retention_hour (float): [optional] # noqa: E501
Expand Down Expand Up @@ -319,6 +324,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
is_removed (bool): [optional] # noqa: E501
user (SendBirdMessageResponseUser): [optional] # noqa: E501
file ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): [optional] # noqa: E501
files ([SendBirdFile]): [optional] # noqa: E501
message (str): [optional] # noqa: E501
data (str): [optional] # noqa: E501
message_retention_hour (float): [optional] # noqa: E501
Expand Down
2 changes: 1 addition & 1 deletion sendbird_platform_sdk/model/send_bird_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def additional_properties_type():
"""
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501

_nullable = False
_nullable = True

@cached_property
def openapi_types():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from setuptools import setup, find_packages # noqa: H301

NAME = "sendbird_platform_sdk"
VERSION = "1.0.26"
VERSION = "1.0.27"
# To install the library, run the following
#
# python setup.py install
Expand Down

0 comments on commit ebf3e66

Please sign in to comment.