ultracart_api 4.0.197 → 4.0.198

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: f2784f07f189e230fe029edd42b52d99fe196c6093cdd0dcc43eefba74900c58
4
- data.tar.gz: 1094508d865ba1c18228e81aa4c6d33ac371d480a26bc65547a1a5d22b96c0ae
3
+ metadata.gz: 314fdc15c768a22b6342a22d3e29a9dac8a9a9a9b31f244045be140ab0dcf3b1
4
+ data.tar.gz: e5a1b54ee345dc7a2e859cfbd11909a917fd644ffcab46ac9580a1c45e7e16ce
5
5
  SHA512:
6
- metadata.gz: 47241c700a8a7512f79059e9d0e8cb207eade292f27356d070fc2019ae3c7b468dd640ce10b8228654c07effe0f6e9629099c842d8f7a609292eae31a3f519da
7
- data.tar.gz: 80146a5f7fe5a43cc850a760ccee772b47b4992465843e1ef4504a59b33d2e3b5dd5adb8b8f300be61a10c11eb82dc33704355461652ccf135afe4c8d898dfdf
6
+ metadata.gz: 83c10045aad83a9b952a9643c14fd67940fc8d9da5b1e6f340f952ec333ff3ff798a25e136a793333f1e631844cc34d64426425822fd03506882dcc379d7c538
7
+ data.tar.gz: 7205e585540656c0da0f3ad89ed2fcf579d3092e457e1ead6d2d36d3deccb30594100b2360d8ace40a8c98604b4956dad601017c565f06ed80a4f1259c7dfe46
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.197
10
+ - Package version: 4.0.198
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.197.gem
27
+ gem install ./ultracart_api-4.0.198.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.197.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.198.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.197'
36
+ gem 'ultracart_api', '~> 4.0.198'
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.198 | 01/12/2024 | workflow task - add properties array |
1409
1410
  | 4.0.197 | 01/10/2024 | workflow tasks - support for searching by tags |
1410
1411
  | 4.0.196 | 01/10/2024 | workflow task - add uuids of related tasks and tags |
1411
1412
  | 4.0.195 | 01/03/2024 | workflow - add task_context field to task obj |
data/docs/WorkflowTask.md CHANGED
@@ -23,6 +23,7 @@
23
23
  | **object_type** | **String** | Object Type | [optional] |
24
24
  | **object_url** | **String** | Object URL | [optional] |
25
25
  | **priority** | **String** | Priority | [optional] |
26
+ | **properties** | [**Array<Property>**](Property.md) | Properties | [optional] |
26
27
  | **related_workflow_task_uuid** | **String** | Related Workflow Task UUID | [optional] |
27
28
  | **status** | **String** | Status of the workflow task | [optional] |
28
29
  | **tags** | **Array<String>** | Tags | [optional] |
@@ -56,6 +57,7 @@ instance = UltracartClient::WorkflowTask.new(
56
57
  object_type: null,
57
58
  object_url: null,
58
59
  priority: null,
60
+ properties: null,
59
61
  related_workflow_task_uuid: null,
60
62
  status: null,
61
63
  tags: null,
@@ -71,6 +71,9 @@ module UltracartClient
71
71
  # Priority
72
72
  attr_accessor :priority
73
73
 
74
+ # Properties
75
+ attr_accessor :properties
76
+
74
77
  # Related Workflow Task UUID
75
78
  attr_accessor :related_workflow_task_uuid
76
79
 
@@ -136,6 +139,7 @@ module UltracartClient
136
139
  :'object_type' => :'object_type',
137
140
  :'object_url' => :'object_url',
138
141
  :'priority' => :'priority',
142
+ :'properties' => :'properties',
139
143
  :'related_workflow_task_uuid' => :'related_workflow_task_uuid',
140
144
  :'status' => :'status',
141
145
  :'tags' => :'tags',
@@ -173,6 +177,7 @@ module UltracartClient
173
177
  :'object_type' => :'String',
174
178
  :'object_url' => :'String',
175
179
  :'priority' => :'String',
180
+ :'properties' => :'Array<Property>',
176
181
  :'related_workflow_task_uuid' => :'String',
177
182
  :'status' => :'String',
178
183
  :'tags' => :'Array<String>',
@@ -286,6 +291,12 @@ module UltracartClient
286
291
  self.priority = attributes[:'priority']
287
292
  end
288
293
 
294
+ if attributes.key?(:'properties')
295
+ if (value = attributes[:'properties']).is_a?(Array)
296
+ self.properties = value
297
+ end
298
+ end
299
+
289
300
  if attributes.key?(:'related_workflow_task_uuid')
290
301
  self.related_workflow_task_uuid = attributes[:'related_workflow_task_uuid']
291
302
  end
@@ -390,6 +401,7 @@ module UltracartClient
390
401
  object_type == o.object_type &&
391
402
  object_url == o.object_url &&
392
403
  priority == o.priority &&
404
+ properties == o.properties &&
393
405
  related_workflow_task_uuid == o.related_workflow_task_uuid &&
394
406
  status == o.status &&
395
407
  tags == o.tags &&
@@ -408,7 +420,7 @@ module UltracartClient
408
420
  # Calculates hash code according to all attributes.
409
421
  # @return [Integer] Hash code
410
422
  def hash
411
- [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
423
+ [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
412
424
  end
413
425
 
414
426
  # 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.197'
14
+ VERSION = '4.0.198'
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: 4.0.197
4
+ version: 4.0.198
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