ultracart_api 4.0.196 → 4.0.197
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/WorkflowTasksRequest.md +2 -0
- data/lib/ultracart_api/models/workflow_tasks_request.rb +13 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f2784f07f189e230fe029edd42b52d99fe196c6093cdd0dcc43eefba74900c58
|
4
|
+
data.tar.gz: 1094508d865ba1c18228e81aa4c6d33ac371d480a26bc65547a1a5d22b96c0ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47241c700a8a7512f79059e9d0e8cb207eade292f27356d070fc2019ae3c7b468dd640ce10b8228654c07effe0f6e9629099c842d8f7a609292eae31a3f519da
|
7
|
+
data.tar.gz: 80146a5f7fe5a43cc850a760ccee772b47b4992465843e1ef4504a59b33d2e3b5dd5adb8b8f300be61a10c11eb82dc33704355461652ccf135afe4c8d898dfdf
|
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.
|
10
|
+
- Package version: 4.0.197
|
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.
|
27
|
+
gem install ./ultracart_api-4.0.197.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./ultracart_api-4.0.
|
30
|
+
(for development, run `gem install --dev ./ultracart_api-4.0.197.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.
|
36
|
+
gem 'ultracart_api', '~> 4.0.197'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -1406,6 +1406,7 @@ Not every change is committed to every SDK.
|
|
1406
1406
|
|
1407
1407
|
| Version | Date | Comments |
|
1408
1408
|
| --: | :-: | --- |
|
1409
|
+
| 4.0.197 | 01/10/2024 | workflow tasks - support for searching by tags |
|
1409
1410
|
| 4.0.196 | 01/10/2024 | workflow task - add uuids of related tasks and tags |
|
1410
1411
|
| 4.0.195 | 01/03/2024 | workflow - add task_context field to task obj |
|
1411
1412
|
| 4.0.194 | 12/15/2023 | bug fix on bad docs breaking yaml schema |
|
@@ -20,6 +20,7 @@
|
|
20
20
|
| **object_type** | **String** | Object Type | [optional] |
|
21
21
|
| **priority** | **String** | Priority | [optional] |
|
22
22
|
| **status** | **String** | Status of the workflow task | [optional] |
|
23
|
+
| **tags** | **Array<String>** | Tasks that are tagged with the specified tags | [optional] |
|
23
24
|
| **unassigned** | **Boolean** | Tasks that are unassigned to a user or group | [optional] |
|
24
25
|
|
25
26
|
## Example
|
@@ -44,6 +45,7 @@ instance = UltracartClient::WorkflowTasksRequest.new(
|
|
44
45
|
object_type: null,
|
45
46
|
priority: null,
|
46
47
|
status: null,
|
48
|
+
tags: null,
|
47
49
|
unassigned: null
|
48
50
|
)
|
49
51
|
```
|
@@ -62,6 +62,9 @@ module UltracartClient
|
|
62
62
|
# Status of the workflow task
|
63
63
|
attr_accessor :status
|
64
64
|
|
65
|
+
# Tasks that are tagged with the specified tags
|
66
|
+
attr_accessor :tags
|
67
|
+
|
65
68
|
# Tasks that are unassigned to a user or group
|
66
69
|
attr_accessor :unassigned
|
67
70
|
|
@@ -106,6 +109,7 @@ module UltracartClient
|
|
106
109
|
:'object_type' => :'object_type',
|
107
110
|
:'priority' => :'priority',
|
108
111
|
:'status' => :'status',
|
112
|
+
:'tags' => :'tags',
|
109
113
|
:'unassigned' => :'unassigned'
|
110
114
|
}
|
111
115
|
end
|
@@ -134,6 +138,7 @@ module UltracartClient
|
|
134
138
|
:'object_type' => :'String',
|
135
139
|
:'priority' => :'String',
|
136
140
|
:'status' => :'String',
|
141
|
+
:'tags' => :'Array<String>',
|
137
142
|
:'unassigned' => :'Boolean'
|
138
143
|
}
|
139
144
|
end
|
@@ -223,6 +228,12 @@ module UltracartClient
|
|
223
228
|
self.status = attributes[:'status']
|
224
229
|
end
|
225
230
|
|
231
|
+
if attributes.key?(:'tags')
|
232
|
+
if (value = attributes[:'tags']).is_a?(Array)
|
233
|
+
self.tags = value
|
234
|
+
end
|
235
|
+
end
|
236
|
+
|
226
237
|
if attributes.key?(:'unassigned')
|
227
238
|
self.unassigned = attributes[:'unassigned']
|
228
239
|
end
|
@@ -298,6 +309,7 @@ module UltracartClient
|
|
298
309
|
object_type == o.object_type &&
|
299
310
|
priority == o.priority &&
|
300
311
|
status == o.status &&
|
312
|
+
tags == o.tags &&
|
301
313
|
unassigned == o.unassigned
|
302
314
|
end
|
303
315
|
|
@@ -310,7 +322,7 @@ module UltracartClient
|
|
310
322
|
# Calculates hash code according to all attributes.
|
311
323
|
# @return [Integer] Hash code
|
312
324
|
def hash
|
313
|
-
[assigned_to_group_id, assigned_to_me, assigned_to_user_id, created_by, created_dts_begin, created_dts_end, delay_until_dts_begin, delay_until_dts_end, due_dts_begin, due_dts_end, last_update_dts_begin, last_update_dts_end, object_email, object_type, priority, status, unassigned].hash
|
325
|
+
[assigned_to_group_id, assigned_to_me, assigned_to_user_id, created_by, created_dts_begin, created_dts_end, delay_until_dts_begin, delay_until_dts_end, due_dts_begin, due_dts_end, last_update_dts_begin, last_update_dts_end, object_email, object_type, priority, status, tags, unassigned].hash
|
314
326
|
end
|
315
327
|
|
316
328
|
# Builds the object from hash
|