ultracart-rest-sdk 4.0.197__py3-none-any.whl → 4.0.198__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ultracart/__init__.py +1 -1
- ultracart/api_client.py +1 -1
- ultracart/configuration.py +1 -1
- ultracart/model/workflow_task.py +6 -0
- {ultracart_rest_sdk-4.0.197.dist-info → ultracart_rest_sdk-4.0.198.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.197.dist-info → ultracart_rest_sdk-4.0.198.dist-info}/RECORD +9 -9
- {ultracart_rest_sdk-4.0.197.dist-info → ultracart_rest_sdk-4.0.198.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.197.dist-info → ultracart_rest_sdk-4.0.198.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.197.dist-info → ultracart_rest_sdk-4.0.198.dist-info}/top_level.txt +0 -0
ultracart/__init__.py
CHANGED
ultracart/api_client.py
CHANGED
|
@@ -77,7 +77,7 @@ class ApiClient(object):
|
|
|
77
77
|
self.default_headers[header_name] = header_value
|
|
78
78
|
self.cookie = cookie
|
|
79
79
|
# Set default User-Agent.
|
|
80
|
-
self.user_agent = 'OpenAPI-Generator/4.0.
|
|
80
|
+
self.user_agent = 'OpenAPI-Generator/4.0.198/python'
|
|
81
81
|
|
|
82
82
|
def __enter__(self):
|
|
83
83
|
return self
|
ultracart/configuration.py
CHANGED
|
@@ -422,7 +422,7 @@ conf = ultracart.Configuration(
|
|
|
422
422
|
"OS: {env}\n"\
|
|
423
423
|
"Python Version: {pyversion}\n"\
|
|
424
424
|
"Version of the API: 2.0.0\n"\
|
|
425
|
-
"SDK Package Version: 4.0.
|
|
425
|
+
"SDK Package Version: 4.0.198".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
ultracart/model/workflow_task.py
CHANGED
|
@@ -31,10 +31,12 @@ from ultracart.exceptions import ApiAttributeError
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
def lazy_import():
|
|
34
|
+
from ultracart.model.model_property import ModelProperty
|
|
34
35
|
from ultracart.model.workflow_attachment import WorkflowAttachment
|
|
35
36
|
from ultracart.model.workflow_note import WorkflowNote
|
|
36
37
|
from ultracart.model.workflow_task_history import WorkflowTaskHistory
|
|
37
38
|
from ultracart.model.workflow_user import WorkflowUser
|
|
39
|
+
globals()['ModelProperty'] = ModelProperty
|
|
38
40
|
globals()['WorkflowAttachment'] = WorkflowAttachment
|
|
39
41
|
globals()['WorkflowNote'] = WorkflowNote
|
|
40
42
|
globals()['WorkflowTaskHistory'] = WorkflowTaskHistory
|
|
@@ -132,6 +134,7 @@ class WorkflowTask(ModelNormal):
|
|
|
132
134
|
'object_type': (str,), # noqa: E501
|
|
133
135
|
'object_url': (str,), # noqa: E501
|
|
134
136
|
'priority': (str,), # noqa: E501
|
|
137
|
+
'properties': ([ModelProperty],), # noqa: E501
|
|
135
138
|
'related_workflow_task_uuid': (str,), # noqa: E501
|
|
136
139
|
'status': (str,), # noqa: E501
|
|
137
140
|
'tags': ([str],), # noqa: E501
|
|
@@ -166,6 +169,7 @@ class WorkflowTask(ModelNormal):
|
|
|
166
169
|
'object_type': 'object_type', # noqa: E501
|
|
167
170
|
'object_url': 'object_url', # noqa: E501
|
|
168
171
|
'priority': 'priority', # noqa: E501
|
|
172
|
+
'properties': 'properties', # noqa: E501
|
|
169
173
|
'related_workflow_task_uuid': 'related_workflow_task_uuid', # noqa: E501
|
|
170
174
|
'status': 'status', # noqa: E501
|
|
171
175
|
'tags': 'tags', # noqa: E501
|
|
@@ -235,6 +239,7 @@ class WorkflowTask(ModelNormal):
|
|
|
235
239
|
object_type (str): Object Type. [optional] # noqa: E501
|
|
236
240
|
object_url (str): Object URL. [optional] # noqa: E501
|
|
237
241
|
priority (str): Priority. [optional] # noqa: E501
|
|
242
|
+
properties ([ModelProperty]): Properties. [optional] # noqa: E501
|
|
238
243
|
related_workflow_task_uuid (str): Related Workflow Task UUID. [optional] # noqa: E501
|
|
239
244
|
status (str): Status of the workflow task. [optional] # noqa: E501
|
|
240
245
|
tags ([str]): Tags. [optional] # noqa: E501
|
|
@@ -346,6 +351,7 @@ class WorkflowTask(ModelNormal):
|
|
|
346
351
|
object_type (str): Object Type. [optional] # noqa: E501
|
|
347
352
|
object_url (str): Object URL. [optional] # noqa: E501
|
|
348
353
|
priority (str): Priority. [optional] # noqa: E501
|
|
354
|
+
properties ([ModelProperty]): Properties. [optional] # noqa: E501
|
|
349
355
|
related_workflow_task_uuid (str): Related Workflow Task UUID. [optional] # noqa: E501
|
|
350
356
|
status (str): Status of the workflow task. [optional] # noqa: E501
|
|
351
357
|
tags ([str]): Tags. [optional] # noqa: E501
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
ultracart/__init__.py,sha256=
|
|
2
|
-
ultracart/api_client.py,sha256=
|
|
3
|
-
ultracart/configuration.py,sha256=
|
|
1
|
+
ultracart/__init__.py,sha256=sKTZtAB42VVCtlFk6cYyE2Z9kTshDVsJ9Kj8Lafp58M,699
|
|
2
|
+
ultracart/api_client.py,sha256=rP_JkFjOaLhqLjrgPKV46cnytdy5Y8c70kmoe7y0M9Q,39072
|
|
3
|
+
ultracart/configuration.py,sha256=UJp5LkSepdac-zi9kNizw9HG3LrdKyEPQh_uf4nJMgo,17842
|
|
4
4
|
ultracart/exceptions.py,sha256=dwRtrWJsW4H_jKk3B1w2chykcQ7E2FSlhftUByD9e9E,5069
|
|
5
5
|
ultracart/model_utils.py,sha256=X_RAfA-TlvDKBICnIve7PPVDM34Nl58aV1bqCrVmoTo,82574
|
|
6
6
|
ultracart/rest.py,sha256=2lM6zwrjGp_SjkddamoKdpk3jFuc8Ow7fKIXRdKNp24,14268
|
|
@@ -820,7 +820,7 @@ ultracart/model/workflow_attachment_upload_url_response.py,sha256=lVlpKYdNWYSxw9
|
|
|
820
820
|
ultracart/model/workflow_group.py,sha256=3H0Khtx2XmuJynp6Ipg5rlRtejyPwJ9TPwoMyjC4Pgg,11633
|
|
821
821
|
ultracart/model/workflow_groups_response.py,sha256=06v9MFcDNngHD04e_OVb1rNybXGHiv8XArl-VhHVKi0,12830
|
|
822
822
|
ultracart/model/workflow_note.py,sha256=MTJjEApWKi7_FBvG_dlAz_8_q-aewWRo9VemRu2gDIM,13079
|
|
823
|
-
ultracart/model/workflow_task.py,sha256=
|
|
823
|
+
ultracart/model/workflow_task.py,sha256=4PBQ8MwFV8IqAXwraALBMvvl7BJUZxKdHNVSOFpsJeo,20083
|
|
824
824
|
ultracart/model/workflow_task_history.py,sha256=ACsmMSwt1Z_DAvGsq6K20D8Aer2Xvvrps6Z0ys74H_Q,12502
|
|
825
825
|
ultracart/model/workflow_task_response.py,sha256=A9Tq_Q-2NDgTExf6XeBKeCkSnrgiLooOkFH48pie5Kw,12785
|
|
826
826
|
ultracart/model/workflow_tasks_request.py,sha256=y0roUHhOxhUClRyklUyRtAKgU9i0AnjM5hS0v6KeSB4,17517
|
|
@@ -829,8 +829,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
|
|
|
829
829
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
830
830
|
ultracart/model/workflow_users_response.py,sha256=uVrMVVk_hsX94W_exep-rKCwvv772Ocdw19UO1YL27g,12813
|
|
831
831
|
ultracart/models/__init__.py,sha256=hjVxJD34IfqxbWKSX2a2Wm4rw_d9-A-9RCN5bLxNNSA,60995
|
|
832
|
-
ultracart_rest_sdk-4.0.
|
|
833
|
-
ultracart_rest_sdk-4.0.
|
|
834
|
-
ultracart_rest_sdk-4.0.
|
|
835
|
-
ultracart_rest_sdk-4.0.
|
|
836
|
-
ultracart_rest_sdk-4.0.
|
|
832
|
+
ultracart_rest_sdk-4.0.198.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
833
|
+
ultracart_rest_sdk-4.0.198.dist-info/METADATA,sha256=ojSTfzxW10abkDfgTOkwBF4J6XF-M2X16i8XO9IpqaI,403
|
|
834
|
+
ultracart_rest_sdk-4.0.198.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
835
|
+
ultracart_rest_sdk-4.0.198.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
836
|
+
ultracart_rest_sdk-4.0.198.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|