Skip to content

Commit e183736

Browse files
Update api spec commit
1 parent a334325 commit e183736

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

api_client_generation/generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ code_gen_dir=`pwd`
44
project_root=$code_gen_dir/..
55
echo $code_gen_dir
66

7-
commit_hash=cd04b378e6566490557aae3e76b76f0c8bffe0fd
7+
commit_hash=b63d67cc0ed7c5a3962e72f21001df4d2ed482f2
88
api_spec_base_url=https://raw.githubusercontent.com/symphonyoss/symphony-api-spec/${commit_hash}
99
echo $api_spec_base_url
1010

symphony/bdk/gen/agent_model/v4_symphony_elements_action.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def openapi_types():
8787
'stream': (V4Stream, none_type), # noqa: E501
8888
'form_message_id': (str, none_type), # noqa: E501
8989
'form_id': (str, none_type), # noqa: E501
90-
'form_values': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type), # noqa: E501
90+
'form_values': ({str: (str,)}, none_type), # noqa: E501
9191
}
9292

9393
@cached_property
@@ -146,7 +146,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
146146
stream (V4Stream): [optional] # noqa: E501
147147
form_message_id (str): The id of the message that contains the Form. [optional] # noqa: E501
148148
form_id (str): The id of the Form element. [optional] # noqa: E501
149-
form_values ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): The values (in JSON format) answered on the Form. [optional] # noqa: E501
149+
form_values ({str: (str,)}): The values (in JSON format) answered on the Form. [optional] # noqa: E501
150150
"""
151151

152152
_check_type = kwargs.pop('_check_type', True)
@@ -231,7 +231,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
231231
stream (V4Stream): [optional] # noqa: E501
232232
form_message_id (str): The id of the message that contains the Form. [optional] # noqa: E501
233233
form_id (str): The id of the Form element. [optional] # noqa: E501
234-
form_values ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): The values (in JSON format) answered on the Form. [optional] # noqa: E501
234+
form_values ({str: (str,)}): The values (in JSON format) answered on the Form. [optional] # noqa: E501
235235
"""
236236

237237
_check_type = kwargs.pop('_check_type', True)
@@ -260,7 +260,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
260260
self.stream: V4Stream = None
261261
self.form_message_id: str = None
262262
self.form_id: str = None
263-
self.form_values: Union[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] = None
263+
self.form_values: Union[{str: (str,)}] = None
264264
for var_name, var_value in kwargs.items():
265265
if var_name not in self.attribute_map and \
266266
self._configuration is not None and \

0 commit comments

Comments
 (0)