ultracart_api 3.10.179 → 3.10.181

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: a30a8f1c4e6966fbd17f9f047e321d91e646c5cedd5b974def1b09bfe9ac61cf
4
- data.tar.gz: 40011cb8de421206f3bb3c41ff13ec4a79a660cd01efb9695dbbd3b2095cc241
3
+ metadata.gz: 4964900a5375f769f6e8afc7a76c218d8e5ef40b1178cdfd40f4f5da08565643
4
+ data.tar.gz: c4f7e43389bde29ed2d8578da713b05a29b094ae4ebb43f9ccf3014c9b128ca5
5
5
  SHA512:
6
- metadata.gz: e141a1f7b9d1b575aa2ba4c08821f92fecd5a7324387a95e5f0cf9a80b443aacb3d4a6dc0ab0caf1af162d1da36f12cbb9133e4a9af32eea5e3059528e3037f1
7
- data.tar.gz: c61ed8837006d9fffadf49e5c193866ba4a342a50d21e10bebfda7f843e384566c4c45f90b41b1d473ee83459267951ecd5b8a6ecff18c0e4ca27eeecd9f7915
6
+ metadata.gz: 9101beecd8385f67486ca88551c5c872f718e259d881e3cdd685ec013f281c36aa5658bcf3ea48ff878851a79a5cab000f977e73a99e4438698647eb89577ae4
7
+ data.tar.gz: c71ef5468be6fcba5d73d558cf4c8fd72a18d7132260d116b44f2817ad74850fa93d4b12ee89e2cfe944ce85a2f6b563f23dc177dc6ae86462e009427ad93aad
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.179
10
+ - Package version: 3.10.181
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.179.gem
27
+ gem install ./ultracart_api-3.10.181.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.179.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.181.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.179'
35
+ gem 'ultracart_api', '~> 3.10.181'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1398,6 +1398,8 @@ Not every change is committed to every SDK.
1398
1398
 
1399
1399
  | Version | Date | Comments |
1400
1400
  | --: | :-: | --- |
1401
+ | 3.10.181 | 01/12/2024 | workflow task - add properties array |
1402
+ | 3.10.180 | 01/10/2024 | workflow tasks - support for searching by tags |
1401
1403
  | 3.10.179 | 01/10/2024 | workflow task - add uuids of related tasks and tags |
1402
1404
  | 3.10.178 | 01/03/2024 | workflow - add task_context field to task obj |
1403
1405
  | 3.10.177 | 12/15/2023 | bug fix on bad docs breaking yaml schema |
data/docs/WorkflowTask.md CHANGED
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
22
22
  **object_type** | **String** | Object Type | [optional]
23
23
  **object_url** | **String** | Object URL | [optional]
24
24
  **priority** | **String** | Priority | [optional]
25
+ **properties** | [**Array<Property>**](Property.md) | Properties | [optional]
25
26
  **related_workflow_task_uuid** | **String** | Related Workflow Task UUID | [optional]
26
27
  **status** | **String** | Status of the workflow task | [optional]
27
28
  **tags** | **Array<String>** | Tags | [optional]
@@ -19,6 +19,7 @@ Name | Type | Description | Notes
19
19
  **object_type** | **String** | Object Type | [optional]
20
20
  **priority** | **String** | Priority | [optional]
21
21
  **status** | **String** | Status of the workflow task | [optional]
22
+ **tags** | **Array<String>** | Tasks that are tagged with the specified tags | [optional]
22
23
  **unassigned** | **BOOLEAN** | Tasks that are unassigned to a user or group | [optional]
23
24
 
24
25
 
@@ -70,6 +70,9 @@ module UltracartClient
70
70
  # Priority
71
71
  attr_accessor :priority
72
72
 
73
+ # Properties
74
+ attr_accessor :properties
75
+
73
76
  # Related Workflow Task UUID
74
77
  attr_accessor :related_workflow_task_uuid
75
78
 
@@ -135,6 +138,7 @@ module UltracartClient
135
138
  :'object_type' => :'object_type',
136
139
  :'object_url' => :'object_url',
137
140
  :'priority' => :'priority',
141
+ :'properties' => :'properties',
138
142
  :'related_workflow_task_uuid' => :'related_workflow_task_uuid',
139
143
  :'status' => :'status',
140
144
  :'tags' => :'tags',
@@ -167,6 +171,7 @@ module UltracartClient
167
171
  :'object_type' => :'String',
168
172
  :'object_url' => :'String',
169
173
  :'priority' => :'String',
174
+ :'properties' => :'Array<Property>',
170
175
  :'related_workflow_task_uuid' => :'String',
171
176
  :'status' => :'String',
172
177
  :'tags' => :'Array<String>',
@@ -267,6 +272,12 @@ module UltracartClient
267
272
  self.priority = attributes[:'priority']
268
273
  end
269
274
 
275
+ if attributes.has_key?(:'properties')
276
+ if (value = attributes[:'properties']).is_a?(Array)
277
+ self.properties = value
278
+ end
279
+ end
280
+
270
281
  if attributes.has_key?(:'related_workflow_task_uuid')
271
282
  self.related_workflow_task_uuid = attributes[:'related_workflow_task_uuid']
272
283
  end
@@ -371,6 +382,7 @@ module UltracartClient
371
382
  object_type == o.object_type &&
372
383
  object_url == o.object_url &&
373
384
  priority == o.priority &&
385
+ properties == o.properties &&
374
386
  related_workflow_task_uuid == o.related_workflow_task_uuid &&
375
387
  status == o.status &&
376
388
  tags == o.tags &&
@@ -389,7 +401,7 @@ module UltracartClient
389
401
  # Calculates hash code according to all attributes.
390
402
  # @return [Fixnum] Hash code
391
403
  def hash
392
- [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, histories, last_update_dts, merchant_id, notes, object_email, object_id, object_type, object_url, priority, related_workflow_task_uuid, status, tags, task_context, task_details, task_name, workflow_task_uuid].hash
404
+ [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, histories, last_update_dts, merchant_id, notes, object_email, object_id, object_type, object_url, priority, properties, related_workflow_task_uuid, status, tags, task_context, task_details, task_name, workflow_task_uuid].hash
393
405
  end
394
406
 
395
407
  # Builds the object from hash
@@ -61,6 +61,9 @@ module UltracartClient
61
61
  # Status of the workflow task
62
62
  attr_accessor :status
63
63
 
64
+ # Tasks that are tagged with the specified tags
65
+ attr_accessor :tags
66
+
64
67
  # Tasks that are unassigned to a user or group
65
68
  attr_accessor :unassigned
66
69
 
@@ -105,6 +108,7 @@ module UltracartClient
105
108
  :'object_type' => :'object_type',
106
109
  :'priority' => :'priority',
107
110
  :'status' => :'status',
111
+ :'tags' => :'tags',
108
112
  :'unassigned' => :'unassigned'
109
113
  }
110
114
  end
@@ -128,6 +132,7 @@ module UltracartClient
128
132
  :'object_type' => :'String',
129
133
  :'priority' => :'String',
130
134
  :'status' => :'String',
135
+ :'tags' => :'Array<String>',
131
136
  :'unassigned' => :'BOOLEAN'
132
137
  }
133
138
  end
@@ -204,6 +209,12 @@ module UltracartClient
204
209
  self.status = attributes[:'status']
205
210
  end
206
211
 
212
+ if attributes.has_key?(:'tags')
213
+ if (value = attributes[:'tags']).is_a?(Array)
214
+ self.tags = value
215
+ end
216
+ end
217
+
207
218
  if attributes.has_key?(:'unassigned')
208
219
  self.unassigned = attributes[:'unassigned']
209
220
  end
@@ -279,6 +290,7 @@ module UltracartClient
279
290
  object_type == o.object_type &&
280
291
  priority == o.priority &&
281
292
  status == o.status &&
293
+ tags == o.tags &&
282
294
  unassigned == o.unassigned
283
295
  end
284
296
 
@@ -291,7 +303,7 @@ module UltracartClient
291
303
  # Calculates hash code according to all attributes.
292
304
  # @return [Fixnum] Hash code
293
305
  def hash
294
- [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
306
+ [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
295
307
  end
296
308
 
297
309
  # 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.179'
14
+ VERSION = '3.10.181'
15
15
  end
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.179
4
+ version: 3.10.181
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-10 00:00:00.000000000 Z
11
+ date: 2024-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus