ultracart_api 4.0.206 → 4.0.207

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: 6e6ef087a3d1db3adb47cb82f6643a05b2587c742dd67d5e2d8555b57787a9c4
4
- data.tar.gz: fbfcb290fc0b12d812bc2d9acdd3bdb91282434c9351bae115ac73aad23f2cc6
3
+ metadata.gz: 3a32e4b9b9e2284bec156283fc8e2a8a5769a6d7383066cb07462e7f38e05033
4
+ data.tar.gz: 675ca6a156c05dd76b79c48fe3b1db21680a6883e1ba093ce55609f7bb6d2869
5
5
  SHA512:
6
- metadata.gz: 49c3f65683354eed22c3efafc1d75104f3bb88688b82dc7ffd077678c3c7c1fb89252561bbda6562bc31c53e3ca71bd696608ede7811c0074e585a0e0bc2ca7c
7
- data.tar.gz: 99acb63bea5bf553b0bc0b949a4475013fb2dd83ca77a348ad34d31d461be17faf4c838ed056bc3c8fa768a40b6b34b0f6cca701e69389a07768c5b18040e266
6
+ metadata.gz: 334694a3dcb0653697d5d7300d371374fd70022d58e05ea31b69624aaa75c360a996adc6c37e8fd523e03712742dfe4c5807a8752669f786fdb1e3ee1dd0e97b
7
+ data.tar.gz: e6b619b10baf628f0228e970386f0e90ecc07afe6bcd68d9ea86c0f7cb069da46c5e68a987df9e6965cb97704dba03e33a9b51dd3efa1dbffcd68f7f0956b89c
data/README.md CHANGED
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: 2.0.0
10
- - Package version: 4.0.206
10
+ - Package version: 4.0.207
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
13
13
 
@@ -24,16 +24,16 @@ gem build ultracart_api.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./ultracart_api-4.0.206.gem
27
+ gem install ./ultracart_api-4.0.207.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.206.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.207.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'ultracart_api', '~> 4.0.206'
36
+ gem 'ultracart_api', '~> 4.0.207'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1494,6 +1494,7 @@ Not every change is committed to every SDK.
1494
1494
 
1495
1495
  | Version | Date | Comments |
1496
1496
  | --: | :-: | --- |
1497
+ | 4.0.207 | 03/25/2024 | workflowtask - add global_task_number and object_task_number |
1497
1498
  | 4.0.206 | 03/25/2024 | added sales_rep_code to Channel partner order |
1498
1499
  | 4.0.205 | 03/19/2024 | workflow task - method to obtain open task count |
1499
1500
  | 4.0.204 | 03/19/2024 | workflow task - addl status values, expiration_dts, and system task type |
data/docs/WorkflowTask.md CHANGED
@@ -15,12 +15,14 @@
15
15
  | **dependant_workflow_task_uuid** | **String** | Dependant Workflow Task UUID (must be completed before this task can be completed) | [optional] |
16
16
  | **due_dts** | **String** | Date/time that the workflow task is due | [optional] |
17
17
  | **expiration_dts** | **String** | Date/time that the workflow task will expire and be closed. This is set by system generated tasks. | [optional] |
18
+ | **global_task_number** | **Integer** | Global task numer | [optional] |
18
19
  | **histories** | [**Array<WorkflowTaskHistory>**](WorkflowTaskHistory.md) | Array of history records for the task | [optional] |
19
20
  | **last_update_dts** | **String** | Date/time that the workflow task was last updated | [optional] |
20
21
  | **merchant_id** | **String** | Merchant ID | [optional] |
21
22
  | **notes** | [**Array<WorkflowNote>**](WorkflowNote.md) | Notes on the Workflow Task | [optional] |
22
23
  | **object_email** | **String** | Object is associated with customer email | [optional] |
23
24
  | **object_id** | **String** | Object ID | [optional] |
25
+ | **object_task_number** | **Integer** | Object specific task numer | [optional] |
24
26
  | **object_type** | **String** | Object Type | [optional] |
25
27
  | **object_url** | **String** | Object URL | [optional] |
26
28
  | **priority** | **String** | Priority | [optional] |
@@ -51,12 +53,14 @@ instance = UltracartClient::WorkflowTask.new(
51
53
  dependant_workflow_task_uuid: null,
52
54
  due_dts: null,
53
55
  expiration_dts: null,
56
+ global_task_number: null,
54
57
  histories: null,
55
58
  last_update_dts: null,
56
59
  merchant_id: null,
57
60
  notes: null,
58
61
  object_email: null,
59
62
  object_id: null,
63
+ object_task_number: null,
60
64
  object_type: null,
61
65
  object_url: null,
62
66
  priority: null,
@@ -47,6 +47,9 @@ module UltracartClient
47
47
  # Date/time that the workflow task will expire and be closed. This is set by system generated tasks.
48
48
  attr_accessor :expiration_dts
49
49
 
50
+ # Global task numer
51
+ attr_accessor :global_task_number
52
+
50
53
  # Array of history records for the task
51
54
  attr_accessor :histories
52
55
 
@@ -65,6 +68,9 @@ module UltracartClient
65
68
  # Object ID
66
69
  attr_accessor :object_id
67
70
 
71
+ # Object specific task numer
72
+ attr_accessor :object_task_number
73
+
68
74
  # Object Type
69
75
  attr_accessor :object_type
70
76
 
@@ -137,12 +143,14 @@ module UltracartClient
137
143
  :'dependant_workflow_task_uuid' => :'dependant_workflow_task_uuid',
138
144
  :'due_dts' => :'due_dts',
139
145
  :'expiration_dts' => :'expiration_dts',
146
+ :'global_task_number' => :'global_task_number',
140
147
  :'histories' => :'histories',
141
148
  :'last_update_dts' => :'last_update_dts',
142
149
  :'merchant_id' => :'merchant_id',
143
150
  :'notes' => :'notes',
144
151
  :'object_email' => :'object_email',
145
152
  :'object_id' => :'object_id',
153
+ :'object_task_number' => :'object_task_number',
146
154
  :'object_type' => :'object_type',
147
155
  :'object_url' => :'object_url',
148
156
  :'priority' => :'priority',
@@ -177,12 +185,14 @@ module UltracartClient
177
185
  :'dependant_workflow_task_uuid' => :'String',
178
186
  :'due_dts' => :'String',
179
187
  :'expiration_dts' => :'String',
188
+ :'global_task_number' => :'Integer',
180
189
  :'histories' => :'Array<WorkflowTaskHistory>',
181
190
  :'last_update_dts' => :'String',
182
191
  :'merchant_id' => :'String',
183
192
  :'notes' => :'Array<WorkflowNote>',
184
193
  :'object_email' => :'String',
185
194
  :'object_id' => :'String',
195
+ :'object_task_number' => :'Integer',
186
196
  :'object_type' => :'String',
187
197
  :'object_url' => :'String',
188
198
  :'priority' => :'String',
@@ -265,6 +275,10 @@ module UltracartClient
265
275
  self.expiration_dts = attributes[:'expiration_dts']
266
276
  end
267
277
 
278
+ if attributes.key?(:'global_task_number')
279
+ self.global_task_number = attributes[:'global_task_number']
280
+ end
281
+
268
282
  if attributes.key?(:'histories')
269
283
  if (value = attributes[:'histories']).is_a?(Array)
270
284
  self.histories = value
@@ -293,6 +307,10 @@ module UltracartClient
293
307
  self.object_id = attributes[:'object_id']
294
308
  end
295
309
 
310
+ if attributes.key?(:'object_task_number')
311
+ self.object_task_number = attributes[:'object_task_number']
312
+ end
313
+
296
314
  if attributes.key?(:'object_type')
297
315
  self.object_type = attributes[:'object_type']
298
316
  end
@@ -423,12 +441,14 @@ module UltracartClient
423
441
  dependant_workflow_task_uuid == o.dependant_workflow_task_uuid &&
424
442
  due_dts == o.due_dts &&
425
443
  expiration_dts == o.expiration_dts &&
444
+ global_task_number == o.global_task_number &&
426
445
  histories == o.histories &&
427
446
  last_update_dts == o.last_update_dts &&
428
447
  merchant_id == o.merchant_id &&
429
448
  notes == o.notes &&
430
449
  object_email == o.object_email &&
431
450
  object_id == o.object_id &&
451
+ object_task_number == o.object_task_number &&
432
452
  object_type == o.object_type &&
433
453
  object_url == o.object_url &&
434
454
  priority == o.priority &&
@@ -452,7 +472,7 @@ module UltracartClient
452
472
  # Calculates hash code according to all attributes.
453
473
  # @return [Integer] Hash code
454
474
  def hash
455
- [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
475
+ [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
456
476
  end
457
477
 
458
478
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.206'
14
+ VERSION = '4.0.207'
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: 4.0.206
4
+ version: 4.0.207
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart