ultracart_api 3.10.189 → 3.10.190

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 14717d57379923f11650d162e9d07503e0017b6669d5ad7d1592c0a1046a8aa1
4
- data.tar.gz: fc4243b3816fb8ab04d03f9c21d08df592763ecfb5cb5f699d978ebf14ea5232
3
+ metadata.gz: 1b793cff1edc99a208e1f3952bc9c2a4f946716cf577c2e6c40278303b9b70d7
4
+ data.tar.gz: 63b4aa66b68fcbde5b9d4a2eebfa9ab95362634a2982eec46c06967d1790c3e9
5
5
  SHA512:
6
- metadata.gz: 002df6314150d172f74a2cbaeeccbd7a3b0be5af6611e489c522c3b0d2e52056c85f4f498fa9c79fe7a7890fa68ff1eab8fbb3b9f45509515a7c21076e379661
7
- data.tar.gz: b05bccc68eb075457a2b7c7d1f59a04afa9395b9c9d1aab905215049440729b1d8e42cd291f1eab96324313d5be78b827fa26debf6440fd508134b6ab90e2883
6
+ metadata.gz: 8f6a6c5aa866a1f5f2db449970ec5006314b060a362d0aad0c7ea81ac9a73d5bb4b7a6ab7006d497b30af41536ee6167b18e194348e3000a4d404612cca1f320
7
+ data.tar.gz: ed9924535d81121023bd25a62194b1bcc1430724bc349cf610418a2013a5691f7aa4fde27b625948a549e898b446e62ea79977e88346971c15e23c121a794659
data/README.md CHANGED
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
7
7
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
8
8
 
9
9
  - API version: 2.0.0
10
- - Package version: 3.10.189
10
+ - Package version: 3.10.190
11
11
  - Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
13
13
 
@@ -24,15 +24,15 @@ gem build ultracart_api.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./ultracart_api-3.10.189.gem
27
+ gem install ./ultracart_api-3.10.190.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.189.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.190.gem` to install the development dependencies)
30
30
 
31
31
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
32
 
33
33
  Finally add this to the Gemfile:
34
34
 
35
- gem 'ultracart_api', '~> 3.10.189'
35
+ gem 'ultracart_api', '~> 3.10.190'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1486,6 +1486,7 @@ Not every change is committed to every SDK.
1486
1486
 
1487
1487
  | Version | Date | Comments |
1488
1488
  | --: | :-: | --- |
1489
+ | 3.10.190 | 03/25/2024 | workflowtask - add global_task_number and object_task_number |
1489
1490
  | 3.10.189 | 03/25/2024 | added sales_rep_code to Channel partner order |
1490
1491
  | 3.10.188 | 03/19/2024 | workflow task - method to obtain open task count |
1491
1492
  | 3.10.187 | 03/19/2024 | workflow task - addl status values, expiration_dts, and system task type |
data/docs/WorkflowTask.md CHANGED
@@ -14,12 +14,14 @@ Name | Type | Description | Notes
14
14
  **dependant_workflow_task_uuid** | **String** | Dependant Workflow Task UUID (must be completed before this task can be completed) | [optional]
15
15
  **due_dts** | **String** | Date/time that the workflow task is due | [optional]
16
16
  **expiration_dts** | **String** | Date/time that the workflow task will expire and be closed. This is set by system generated tasks. | [optional]
17
+ **global_task_number** | **Integer** | Global task numer | [optional]
17
18
  **histories** | [**Array<WorkflowTaskHistory>**](WorkflowTaskHistory.md) | Array of history records for the task | [optional]
18
19
  **last_update_dts** | **String** | Date/time that the workflow task was last updated | [optional]
19
20
  **merchant_id** | **String** | Merchant ID | [optional]
20
21
  **notes** | [**Array<WorkflowNote>**](WorkflowNote.md) | Notes on the Workflow Task | [optional]
21
22
  **object_email** | **String** | Object is associated with customer email | [optional]
22
23
  **object_id** | **String** | Object ID | [optional]
24
+ **object_task_number** | **Integer** | Object specific task numer | [optional]
23
25
  **object_type** | **String** | Object Type | [optional]
24
26
  **object_url** | **String** | Object URL | [optional]
25
27
  **priority** | **String** | Priority | [optional]
@@ -46,6 +46,9 @@ module UltracartClient
46
46
  # Date/time that the workflow task will expire and be closed. This is set by system generated tasks.
47
47
  attr_accessor :expiration_dts
48
48
 
49
+ # Global task numer
50
+ attr_accessor :global_task_number
51
+
49
52
  # Array of history records for the task
50
53
  attr_accessor :histories
51
54
 
@@ -64,6 +67,9 @@ module UltracartClient
64
67
  # Object ID
65
68
  attr_accessor :object_id
66
69
 
70
+ # Object specific task numer
71
+ attr_accessor :object_task_number
72
+
67
73
  # Object Type
68
74
  attr_accessor :object_type
69
75
 
@@ -136,12 +142,14 @@ module UltracartClient
136
142
  :'dependant_workflow_task_uuid' => :'dependant_workflow_task_uuid',
137
143
  :'due_dts' => :'due_dts',
138
144
  :'expiration_dts' => :'expiration_dts',
145
+ :'global_task_number' => :'global_task_number',
139
146
  :'histories' => :'histories',
140
147
  :'last_update_dts' => :'last_update_dts',
141
148
  :'merchant_id' => :'merchant_id',
142
149
  :'notes' => :'notes',
143
150
  :'object_email' => :'object_email',
144
151
  :'object_id' => :'object_id',
152
+ :'object_task_number' => :'object_task_number',
145
153
  :'object_type' => :'object_type',
146
154
  :'object_url' => :'object_url',
147
155
  :'priority' => :'priority',
@@ -171,12 +179,14 @@ module UltracartClient
171
179
  :'dependant_workflow_task_uuid' => :'String',
172
180
  :'due_dts' => :'String',
173
181
  :'expiration_dts' => :'String',
182
+ :'global_task_number' => :'Integer',
174
183
  :'histories' => :'Array<WorkflowTaskHistory>',
175
184
  :'last_update_dts' => :'String',
176
185
  :'merchant_id' => :'String',
177
186
  :'notes' => :'Array<WorkflowNote>',
178
187
  :'object_email' => :'String',
179
188
  :'object_id' => :'String',
189
+ :'object_task_number' => :'Integer',
180
190
  :'object_type' => :'String',
181
191
  :'object_url' => :'String',
182
192
  :'priority' => :'String',
@@ -246,6 +256,10 @@ module UltracartClient
246
256
  self.expiration_dts = attributes[:'expiration_dts']
247
257
  end
248
258
 
259
+ if attributes.has_key?(:'global_task_number')
260
+ self.global_task_number = attributes[:'global_task_number']
261
+ end
262
+
249
263
  if attributes.has_key?(:'histories')
250
264
  if (value = attributes[:'histories']).is_a?(Array)
251
265
  self.histories = value
@@ -274,6 +288,10 @@ module UltracartClient
274
288
  self.object_id = attributes[:'object_id']
275
289
  end
276
290
 
291
+ if attributes.has_key?(:'object_task_number')
292
+ self.object_task_number = attributes[:'object_task_number']
293
+ end
294
+
277
295
  if attributes.has_key?(:'object_type')
278
296
  self.object_type = attributes[:'object_type']
279
297
  end
@@ -404,12 +422,14 @@ module UltracartClient
404
422
  dependant_workflow_task_uuid == o.dependant_workflow_task_uuid &&
405
423
  due_dts == o.due_dts &&
406
424
  expiration_dts == o.expiration_dts &&
425
+ global_task_number == o.global_task_number &&
407
426
  histories == o.histories &&
408
427
  last_update_dts == o.last_update_dts &&
409
428
  merchant_id == o.merchant_id &&
410
429
  notes == o.notes &&
411
430
  object_email == o.object_email &&
412
431
  object_id == o.object_id &&
432
+ object_task_number == o.object_task_number &&
413
433
  object_type == o.object_type &&
414
434
  object_url == o.object_url &&
415
435
  priority == o.priority &&
@@ -433,7 +453,7 @@ module UltracartClient
433
453
  # Calculates hash code according to all attributes.
434
454
  # @return [Fixnum] Hash code
435
455
  def hash
436
- [assigned_to_group, assigned_to_group_id, assigned_to_user, assigned_to_user_id, attachments, created_by, created_dts, delay_until_dts, dependant_workflow_task_uuid, due_dts, expiration_dts, histories, last_update_dts, merchant_id, notes, object_email, object_id, object_type, object_url, priority, properties, related_workflow_task_uuid, status, system_task_type, tags, task_context, task_details, task_name, workflow_task_uuid].hash
456
+ [assigned_to_group, assigned_to_group_id, assigned_to_user, assigned_to_user_id, attachments, created_by, created_dts, delay_until_dts, dependant_workflow_task_uuid, due_dts, expiration_dts, global_task_number, histories, last_update_dts, merchant_id, notes, object_email, object_id, object_task_number, object_type, object_url, priority, properties, related_workflow_task_uuid, status, system_task_type, tags, task_context, task_details, task_name, workflow_task_uuid].hash
437
457
  end
438
458
 
439
459
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.189'
14
+ VERSION = '3.10.190'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.10.189
4
+ version: 3.10.190
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart