ultracart-rest-sdk 4.0.206__py3-none-any.whl → 4.0.207__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 CHANGED
@@ -11,7 +11,7 @@
11
11
  """
12
12
 
13
13
 
14
- __version__ = "4.0.206"
14
+ __version__ = "4.0.207"
15
15
 
16
16
  # import ApiClient
17
17
  from ultracart.api_client import ApiClient
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.206/python'
80
+ self.user_agent = 'OpenAPI-Generator/4.0.207/python'
81
81
 
82
82
  def __enter__(self):
83
83
  return self
@@ -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.206".\
425
+ "SDK Package Version: 4.0.207".\
426
426
  format(env=sys.platform, pyversion=sys.version)
427
427
 
428
428
  def get_host_settings(self):
@@ -137,12 +137,14 @@ class WorkflowTask(ModelNormal):
137
137
  'dependant_workflow_task_uuid': (str,), # noqa: E501
138
138
  'due_dts': (str,), # noqa: E501
139
139
  'expiration_dts': (str,), # noqa: E501
140
+ 'global_task_number': (int,), # noqa: E501
140
141
  'histories': ([WorkflowTaskHistory],), # noqa: E501
141
142
  'last_update_dts': (str,), # noqa: E501
142
143
  'merchant_id': (str,), # noqa: E501
143
144
  'notes': ([WorkflowNote],), # noqa: E501
144
145
  'object_email': (str,), # noqa: E501
145
146
  'object_id': (str,), # noqa: E501
147
+ 'object_task_number': (int,), # noqa: E501
146
148
  'object_type': (str,), # noqa: E501
147
149
  'object_url': (str,), # noqa: E501
148
150
  'priority': (str,), # noqa: E501
@@ -174,12 +176,14 @@ class WorkflowTask(ModelNormal):
174
176
  'dependant_workflow_task_uuid': 'dependant_workflow_task_uuid', # noqa: E501
175
177
  'due_dts': 'due_dts', # noqa: E501
176
178
  'expiration_dts': 'expiration_dts', # noqa: E501
179
+ 'global_task_number': 'global_task_number', # noqa: E501
177
180
  'histories': 'histories', # noqa: E501
178
181
  'last_update_dts': 'last_update_dts', # noqa: E501
179
182
  'merchant_id': 'merchant_id', # noqa: E501
180
183
  'notes': 'notes', # noqa: E501
181
184
  'object_email': 'object_email', # noqa: E501
182
185
  'object_id': 'object_id', # noqa: E501
186
+ 'object_task_number': 'object_task_number', # noqa: E501
183
187
  'object_type': 'object_type', # noqa: E501
184
188
  'object_url': 'object_url', # noqa: E501
185
189
  'priority': 'priority', # noqa: E501
@@ -246,12 +250,14 @@ class WorkflowTask(ModelNormal):
246
250
  dependant_workflow_task_uuid (str): Dependant Workflow Task UUID (must be completed before this task can be completed). [optional] # noqa: E501
247
251
  due_dts (str): Date/time that the workflow task is due. [optional] # noqa: E501
248
252
  expiration_dts (str): Date/time that the workflow task will expire and be closed. This is set by system generated tasks.. [optional] # noqa: E501
253
+ global_task_number (int): Global task numer. [optional] # noqa: E501
249
254
  histories ([WorkflowTaskHistory]): Array of history records for the task. [optional] # noqa: E501
250
255
  last_update_dts (str): Date/time that the workflow task was last updated. [optional] # noqa: E501
251
256
  merchant_id (str): Merchant ID. [optional] # noqa: E501
252
257
  notes ([WorkflowNote]): Notes on the Workflow Task. [optional] # noqa: E501
253
258
  object_email (str): Object is associated with customer email. [optional] # noqa: E501
254
259
  object_id (str): Object ID. [optional] # noqa: E501
260
+ object_task_number (int): Object specific task numer. [optional] # noqa: E501
255
261
  object_type (str): Object Type. [optional] # noqa: E501
256
262
  object_url (str): Object URL. [optional] # noqa: E501
257
263
  priority (str): Priority. [optional] # noqa: E501
@@ -360,12 +366,14 @@ class WorkflowTask(ModelNormal):
360
366
  dependant_workflow_task_uuid (str): Dependant Workflow Task UUID (must be completed before this task can be completed). [optional] # noqa: E501
361
367
  due_dts (str): Date/time that the workflow task is due. [optional] # noqa: E501
362
368
  expiration_dts (str): Date/time that the workflow task will expire and be closed. This is set by system generated tasks.. [optional] # noqa: E501
369
+ global_task_number (int): Global task numer. [optional] # noqa: E501
363
370
  histories ([WorkflowTaskHistory]): Array of history records for the task. [optional] # noqa: E501
364
371
  last_update_dts (str): Date/time that the workflow task was last updated. [optional] # noqa: E501
365
372
  merchant_id (str): Merchant ID. [optional] # noqa: E501
366
373
  notes ([WorkflowNote]): Notes on the Workflow Task. [optional] # noqa: E501
367
374
  object_email (str): Object is associated with customer email. [optional] # noqa: E501
368
375
  object_id (str): Object ID. [optional] # noqa: E501
376
+ object_task_number (int): Object specific task numer. [optional] # noqa: E501
369
377
  object_type (str): Object Type. [optional] # noqa: E501
370
378
  object_url (str): Object URL. [optional] # noqa: E501
371
379
  priority (str): Priority. [optional] # noqa: E501
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ultracart-rest-sdk
3
- Version: 4.0.206
3
+ Version: 4.0.207
4
4
  Summary: UltraCart Rest API V2
5
5
  Home-page: UNKNOWN
6
6
  Author: UltraCart Support
@@ -1,6 +1,6 @@
1
- ultracart/__init__.py,sha256=A3BjnJSKigJIZpc5C6GmZHzOJhmD29MYw-mZ-qds_K4,699
2
- ultracart/api_client.py,sha256=hPYykvkKnA4WbLSU4C72FBt8RHsNXEn1YTzdBQQh56U,39072
3
- ultracart/configuration.py,sha256=SxlmrRb5TuEq9zXxvjcUVuiF4-sWOK5hobMoKVZhskI,17842
1
+ ultracart/__init__.py,sha256=nws3VWsMsAYIZEaU-MTF7SQilMRyVN3FpNFIRyiT7Fc,699
2
+ ultracart/api_client.py,sha256=ykrA3jz49ienomwwoNE8wW4r9kqR-0speb61PsNun_k,39072
3
+ ultracart/configuration.py,sha256=h4amWF6FkkQO-1MwWPrZ7KCpqmh3gKwu3kUcz2ZiWDs,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
@@ -858,7 +858,7 @@ ultracart/model/workflow_attachment_upload_url_response.py,sha256=lVlpKYdNWYSxw9
858
858
  ultracart/model/workflow_group.py,sha256=3H0Khtx2XmuJynp6Ipg5rlRtejyPwJ9TPwoMyjC4Pgg,11633
859
859
  ultracart/model/workflow_groups_response.py,sha256=06v9MFcDNngHD04e_OVb1rNybXGHiv8XArl-VhHVKi0,12830
860
860
  ultracart/model/workflow_note.py,sha256=MTJjEApWKi7_FBvG_dlAz_8_q-aewWRo9VemRu2gDIM,13079
861
- ultracart/model/workflow_task.py,sha256=FUEnj2LoJJuE3xGSgaaZphxz2rOsUQOi2zPuaQxJ0MY,21431
861
+ ultracart/model/workflow_task.py,sha256=AHDTedu6Q9QUNmoVnrbJxlkKv7NfigbAhkaCfQaKbYo,22021
862
862
  ultracart/model/workflow_task_history.py,sha256=ACsmMSwt1Z_DAvGsq6K20D8Aer2Xvvrps6Z0ys74H_Q,12502
863
863
  ultracart/model/workflow_task_open_count_response.py,sha256=y3m0w8m_ZW9BfT908UXOIB-4jjCFC86NYdCPsNMFkow,12745
864
864
  ultracart/model/workflow_task_response.py,sha256=A9Tq_Q-2NDgTExf6XeBKeCkSnrgiLooOkFH48pie5Kw,12785
@@ -869,8 +869,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
869
869
  ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
870
870
  ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
871
871
  ultracart/models/__init__.py,sha256=9LBS62gjLaSwM9zzg_JbQ0QJzyeDH6X0U0-xIlA8Jpc,64549
872
- ultracart_rest_sdk-4.0.206.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
873
- ultracart_rest_sdk-4.0.206.dist-info/METADATA,sha256=iJXxEPYYIYpryL0wt9a06RD4VVly-034i68bYyp3uzY,403
874
- ultracart_rest_sdk-4.0.206.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
875
- ultracart_rest_sdk-4.0.206.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
876
- ultracart_rest_sdk-4.0.206.dist-info/RECORD,,
872
+ ultracart_rest_sdk-4.0.207.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
873
+ ultracart_rest_sdk-4.0.207.dist-info/METADATA,sha256=ACRugFLr0R9m67dlXAQIaPrcqk6gp5ZN6YCkQcibHuE,403
874
+ ultracart_rest_sdk-4.0.207.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
875
+ ultracart_rest_sdk-4.0.207.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
876
+ ultracart_rest_sdk-4.0.207.dist-info/RECORD,,