ultracart_api 3.10.190 → 3.10.191
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.
- checksums.yaml +4 -4
- data/README.md +5 -4
- data/docs/WorkflowTask.md +1 -0
- data/lib/ultracart_api/models/workflow_task.rb +11 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 312375d739ca5a811f2080614615f9b7504f74e421e37cc1c37909ebd9867067
|
4
|
+
data.tar.gz: 92931b6c504287dd1e5042932fbf5b53024125bc4141564cfc2a81a8facdfa23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97ac28e370caed13550f0e2c5acf579a61c311ca1a611fb13115215fa18a9efd2df717b94bf772de82d2171d8786f87909f7ceb1917b7f10aaa155a25344c5e3
|
7
|
+
data.tar.gz: d727eeb17393ccc364996ea9c16371d32f1209b2d6db498c1b9d5f91d0e188b82bc72b9b1338ad446866f12481717a2658d12c28cf4f011115020aa1b923821b
|
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.
|
10
|
+
- Package version: 3.10.191
|
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.
|
27
|
+
gem install ./ultracart_api-3.10.191.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.10.
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.10.191.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.
|
35
|
+
gem 'ultracart_api', '~> 3.10.191'
|
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.191 | 03/26/2024 | WorkflowTask - added assigned_to_user_or_group field |
|
1489
1490
|
| 3.10.190 | 03/25/2024 | workflowtask - add global_task_number and object_task_number |
|
1490
1491
|
| 3.10.189 | 03/25/2024 | added sales_rep_code to Channel partner order |
|
1491
1492
|
| 3.10.188 | 03/19/2024 | workflow task - method to obtain open task count |
|
data/docs/WorkflowTask.md
CHANGED
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
7
7
|
**assigned_to_group_id** | **Integer** | Assigned to group ID | [optional]
|
8
8
|
**assigned_to_user** | **String** | Assigned to user | [optional]
|
9
9
|
**assigned_to_user_id** | **Integer** | Assigned to user ID | [optional]
|
10
|
+
**assigned_to_user_or_group** | **String** | Assigned to user or group (used for sorting) | [optional]
|
10
11
|
**attachments** | [**Array<WorkflowAttachment>**](WorkflowAttachment.md) | Attachments to the Workflow Task | [optional]
|
11
12
|
**created_by** | [**WorkflowUser**](WorkflowUser.md) | | [optional]
|
12
13
|
**created_dts** | **String** | Date/time that the workflow task was created | [optional]
|
@@ -26,6 +26,9 @@ module UltracartClient
|
|
26
26
|
# Assigned to user ID
|
27
27
|
attr_accessor :assigned_to_user_id
|
28
28
|
|
29
|
+
# Assigned to user or group (used for sorting)
|
30
|
+
attr_accessor :assigned_to_user_or_group
|
31
|
+
|
29
32
|
# Attachments to the Workflow Task
|
30
33
|
attr_accessor :attachments
|
31
34
|
|
@@ -135,6 +138,7 @@ module UltracartClient
|
|
135
138
|
:'assigned_to_group_id' => :'assigned_to_group_id',
|
136
139
|
:'assigned_to_user' => :'assigned_to_user',
|
137
140
|
:'assigned_to_user_id' => :'assigned_to_user_id',
|
141
|
+
:'assigned_to_user_or_group' => :'assigned_to_user_or_group',
|
138
142
|
:'attachments' => :'attachments',
|
139
143
|
:'created_by' => :'created_by',
|
140
144
|
:'created_dts' => :'created_dts',
|
@@ -172,6 +176,7 @@ module UltracartClient
|
|
172
176
|
:'assigned_to_group_id' => :'Integer',
|
173
177
|
:'assigned_to_user' => :'String',
|
174
178
|
:'assigned_to_user_id' => :'Integer',
|
179
|
+
:'assigned_to_user_or_group' => :'String',
|
175
180
|
:'attachments' => :'Array<WorkflowAttachment>',
|
176
181
|
:'created_by' => :'WorkflowUser',
|
177
182
|
:'created_dts' => :'String',
|
@@ -226,6 +231,10 @@ module UltracartClient
|
|
226
231
|
self.assigned_to_user_id = attributes[:'assigned_to_user_id']
|
227
232
|
end
|
228
233
|
|
234
|
+
if attributes.has_key?(:'assigned_to_user_or_group')
|
235
|
+
self.assigned_to_user_or_group = attributes[:'assigned_to_user_or_group']
|
236
|
+
end
|
237
|
+
|
229
238
|
if attributes.has_key?(:'attachments')
|
230
239
|
if (value = attributes[:'attachments']).is_a?(Array)
|
231
240
|
self.attachments = value
|
@@ -415,6 +424,7 @@ module UltracartClient
|
|
415
424
|
assigned_to_group_id == o.assigned_to_group_id &&
|
416
425
|
assigned_to_user == o.assigned_to_user &&
|
417
426
|
assigned_to_user_id == o.assigned_to_user_id &&
|
427
|
+
assigned_to_user_or_group == o.assigned_to_user_or_group &&
|
418
428
|
attachments == o.attachments &&
|
419
429
|
created_by == o.created_by &&
|
420
430
|
created_dts == o.created_dts &&
|
@@ -453,7 +463,7 @@ module UltracartClient
|
|
453
463
|
# Calculates hash code according to all attributes.
|
454
464
|
# @return [Fixnum] Hash code
|
455
465
|
def 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
|
466
|
+
[assigned_to_group, assigned_to_group_id, assigned_to_user, assigned_to_user_id, assigned_to_user_or_group, 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
|
457
467
|
end
|
458
468
|
|
459
469
|
# Builds the object from hash
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ultracart_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.10.
|
4
|
+
version: 3.10.191
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|