ultracart-rest-sdk 4.0.206__py3-none-any.whl → 4.0.208__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.208"
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.208/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.208".\
426
426
  format(env=sys.platform, pyversion=sys.version)
427
427
 
428
428
  def get_host_settings(self):
@@ -130,6 +130,7 @@ class WorkflowTask(ModelNormal):
130
130
  'assigned_to_group_id': (int,), # noqa: E501
131
131
  'assigned_to_user': (str,), # noqa: E501
132
132
  'assigned_to_user_id': (int,), # noqa: E501
133
+ 'assigned_to_user_or_group': (str,), # noqa: E501
133
134
  'attachments': ([WorkflowAttachment],), # noqa: E501
134
135
  'created_by': (WorkflowUser,), # noqa: E501
135
136
  'created_dts': (str,), # noqa: E501
@@ -137,12 +138,14 @@ class WorkflowTask(ModelNormal):
137
138
  'dependant_workflow_task_uuid': (str,), # noqa: E501
138
139
  'due_dts': (str,), # noqa: E501
139
140
  'expiration_dts': (str,), # noqa: E501
141
+ 'global_task_number': (int,), # noqa: E501
140
142
  'histories': ([WorkflowTaskHistory],), # noqa: E501
141
143
  'last_update_dts': (str,), # noqa: E501
142
144
  'merchant_id': (str,), # noqa: E501
143
145
  'notes': ([WorkflowNote],), # noqa: E501
144
146
  'object_email': (str,), # noqa: E501
145
147
  'object_id': (str,), # noqa: E501
148
+ 'object_task_number': (int,), # noqa: E501
146
149
  'object_type': (str,), # noqa: E501
147
150
  'object_url': (str,), # noqa: E501
148
151
  'priority': (str,), # noqa: E501
@@ -167,6 +170,7 @@ class WorkflowTask(ModelNormal):
167
170
  'assigned_to_group_id': 'assigned_to_group_id', # noqa: E501
168
171
  'assigned_to_user': 'assigned_to_user', # noqa: E501
169
172
  'assigned_to_user_id': 'assigned_to_user_id', # noqa: E501
173
+ 'assigned_to_user_or_group': 'assigned_to_user_or_group', # noqa: E501
170
174
  'attachments': 'attachments', # noqa: E501
171
175
  'created_by': 'created_by', # noqa: E501
172
176
  'created_dts': 'created_dts', # noqa: E501
@@ -174,12 +178,14 @@ class WorkflowTask(ModelNormal):
174
178
  'dependant_workflow_task_uuid': 'dependant_workflow_task_uuid', # noqa: E501
175
179
  'due_dts': 'due_dts', # noqa: E501
176
180
  'expiration_dts': 'expiration_dts', # noqa: E501
181
+ 'global_task_number': 'global_task_number', # noqa: E501
177
182
  'histories': 'histories', # noqa: E501
178
183
  'last_update_dts': 'last_update_dts', # noqa: E501
179
184
  'merchant_id': 'merchant_id', # noqa: E501
180
185
  'notes': 'notes', # noqa: E501
181
186
  'object_email': 'object_email', # noqa: E501
182
187
  'object_id': 'object_id', # noqa: E501
188
+ 'object_task_number': 'object_task_number', # noqa: E501
183
189
  'object_type': 'object_type', # noqa: E501
184
190
  'object_url': 'object_url', # noqa: E501
185
191
  'priority': 'priority', # noqa: E501
@@ -239,6 +245,7 @@ class WorkflowTask(ModelNormal):
239
245
  assigned_to_group_id (int): Assigned to group ID. [optional] # noqa: E501
240
246
  assigned_to_user (str): Assigned to user. [optional] # noqa: E501
241
247
  assigned_to_user_id (int): Assigned to user ID. [optional] # noqa: E501
248
+ assigned_to_user_or_group (str): Assigned to user or group (used for sorting). [optional] # noqa: E501
242
249
  attachments ([WorkflowAttachment]): Attachments to the Workflow Task. [optional] # noqa: E501
243
250
  created_by (WorkflowUser): [optional] # noqa: E501
244
251
  created_dts (str): Date/time that the workflow task was created. [optional] # noqa: E501
@@ -246,12 +253,14 @@ class WorkflowTask(ModelNormal):
246
253
  dependant_workflow_task_uuid (str): Dependant Workflow Task UUID (must be completed before this task can be completed). [optional] # noqa: E501
247
254
  due_dts (str): Date/time that the workflow task is due. [optional] # noqa: E501
248
255
  expiration_dts (str): Date/time that the workflow task will expire and be closed. This is set by system generated tasks.. [optional] # noqa: E501
256
+ global_task_number (int): Global task numer. [optional] # noqa: E501
249
257
  histories ([WorkflowTaskHistory]): Array of history records for the task. [optional] # noqa: E501
250
258
  last_update_dts (str): Date/time that the workflow task was last updated. [optional] # noqa: E501
251
259
  merchant_id (str): Merchant ID. [optional] # noqa: E501
252
260
  notes ([WorkflowNote]): Notes on the Workflow Task. [optional] # noqa: E501
253
261
  object_email (str): Object is associated with customer email. [optional] # noqa: E501
254
262
  object_id (str): Object ID. [optional] # noqa: E501
263
+ object_task_number (int): Object specific task numer. [optional] # noqa: E501
255
264
  object_type (str): Object Type. [optional] # noqa: E501
256
265
  object_url (str): Object URL. [optional] # noqa: E501
257
266
  priority (str): Priority. [optional] # noqa: E501
@@ -353,6 +362,7 @@ class WorkflowTask(ModelNormal):
353
362
  assigned_to_group_id (int): Assigned to group ID. [optional] # noqa: E501
354
363
  assigned_to_user (str): Assigned to user. [optional] # noqa: E501
355
364
  assigned_to_user_id (int): Assigned to user ID. [optional] # noqa: E501
365
+ assigned_to_user_or_group (str): Assigned to user or group (used for sorting). [optional] # noqa: E501
356
366
  attachments ([WorkflowAttachment]): Attachments to the Workflow Task. [optional] # noqa: E501
357
367
  created_by (WorkflowUser): [optional] # noqa: E501
358
368
  created_dts (str): Date/time that the workflow task was created. [optional] # noqa: E501
@@ -360,12 +370,14 @@ class WorkflowTask(ModelNormal):
360
370
  dependant_workflow_task_uuid (str): Dependant Workflow Task UUID (must be completed before this task can be completed). [optional] # noqa: E501
361
371
  due_dts (str): Date/time that the workflow task is due. [optional] # noqa: E501
362
372
  expiration_dts (str): Date/time that the workflow task will expire and be closed. This is set by system generated tasks.. [optional] # noqa: E501
373
+ global_task_number (int): Global task numer. [optional] # noqa: E501
363
374
  histories ([WorkflowTaskHistory]): Array of history records for the task. [optional] # noqa: E501
364
375
  last_update_dts (str): Date/time that the workflow task was last updated. [optional] # noqa: E501
365
376
  merchant_id (str): Merchant ID. [optional] # noqa: E501
366
377
  notes ([WorkflowNote]): Notes on the Workflow Task. [optional] # noqa: E501
367
378
  object_email (str): Object is associated with customer email. [optional] # noqa: E501
368
379
  object_id (str): Object ID. [optional] # noqa: E501
380
+ object_task_number (int): Object specific task numer. [optional] # noqa: E501
369
381
  object_type (str): Object Type. [optional] # noqa: E501
370
382
  object_url (str): Object URL. [optional] # noqa: E501
371
383
  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.208
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=3IGlEvwHq-Fw3FE4i9oG1bd9D-8OgqFOpeFpb91x7oc,699
2
+ ultracart/api_client.py,sha256=j-BeNA4Qvz8N0mJKolq7vRJUmgIltw4czXjcy7nev_E,39072
3
+ ultracart/configuration.py,sha256=rzArROl4KQXuIwLuXs4_JjvV5lMZ-OEsIfOUUuQeHpk,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=nVYM0Hy9bQWzWFmwMYs0xqtTBDtB5K0Pa8szzlQSEho,22396
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.208.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
873
+ ultracart_rest_sdk-4.0.208.dist-info/METADATA,sha256=tSVhOFhOPrkLfgO1grA43ejeAwzVFsqP2SqaiFk7X7w,403
874
+ ultracart_rest_sdk-4.0.208.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
875
+ ultracart_rest_sdk-4.0.208.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
876
+ ultracart_rest_sdk-4.0.208.dist-info/RECORD,,