ultracart_api 3.10.180 → 3.10.181

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df1b3b1ec2e0a78248dd6b62e6969eb778ac22498ee6203ab93daa39a8657fe7
4
- data.tar.gz: e3b1ce38b08589a0e6327b2a9814fb2fffe1de0b1c6311ecdb7c99237d5c90ee
3
+ metadata.gz: 4964900a5375f769f6e8afc7a76c218d8e5ef40b1178cdfd40f4f5da08565643
4
+ data.tar.gz: c4f7e43389bde29ed2d8578da713b05a29b094ae4ebb43f9ccf3014c9b128ca5
5
5
  SHA512:
6
- metadata.gz: 1b054554b4b13ebaec957b6de71274e734a772e484cc2a3a1ec13df2138b4023d1f5d67197e0b06f5641abf5b5afd5f99a6d106f5dc001c888b955dda90ddd96
7
- data.tar.gz: eceefc1420fe5183d58a3f23968f72258fa534017cc9612a6cd767d0ea60b4bcffcb44b821d6b9de9113d50c0797885e96e6862a5c39519391e59db5056df317
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.180
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.180.gem
27
+ gem install ./ultracart_api-3.10.181.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.180.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.180'
35
+ gem 'ultracart_api', '~> 3.10.181'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1398,6 +1398,7 @@ 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 |
1401
1402
  | 3.10.180 | 01/10/2024 | workflow tasks - support for searching by tags |
1402
1403
  | 3.10.179 | 01/10/2024 | workflow task - add uuids of related tasks and tags |
1403
1404
  | 3.10.178 | 01/03/2024 | workflow - add task_context field to task obj |
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]
@@ -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
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.180'
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.180
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