ultracart_api 3.10.179 → 3.10.180

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: a30a8f1c4e6966fbd17f9f047e321d91e646c5cedd5b974def1b09bfe9ac61cf
4
- data.tar.gz: 40011cb8de421206f3bb3c41ff13ec4a79a660cd01efb9695dbbd3b2095cc241
3
+ metadata.gz: df1b3b1ec2e0a78248dd6b62e6969eb778ac22498ee6203ab93daa39a8657fe7
4
+ data.tar.gz: e3b1ce38b08589a0e6327b2a9814fb2fffe1de0b1c6311ecdb7c99237d5c90ee
5
5
  SHA512:
6
- metadata.gz: e141a1f7b9d1b575aa2ba4c08821f92fecd5a7324387a95e5f0cf9a80b443aacb3d4a6dc0ab0caf1af162d1da36f12cbb9133e4a9af32eea5e3059528e3037f1
7
- data.tar.gz: c61ed8837006d9fffadf49e5c193866ba4a342a50d21e10bebfda7f843e384566c4c45f90b41b1d473ee83459267951ecd5b8a6ecff18c0e4ca27eeecd9f7915
6
+ metadata.gz: 1b054554b4b13ebaec957b6de71274e734a772e484cc2a3a1ec13df2138b4023d1f5d67197e0b06f5641abf5b5afd5f99a6d106f5dc001c888b955dda90ddd96
7
+ data.tar.gz: eceefc1420fe5183d58a3f23968f72258fa534017cc9612a6cd767d0ea60b4bcffcb44b821d6b9de9113d50c0797885e96e6862a5c39519391e59db5056df317
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.180
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.180.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.180.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.180'
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.180 | 01/10/2024 | workflow tasks - support for searching by tags |
1401
1402
  | 3.10.179 | 01/10/2024 | workflow task - add uuids of related tasks and tags |
1402
1403
  | 3.10.178 | 01/03/2024 | workflow - add task_context field to task obj |
1403
1404
  | 3.10.177 | 12/15/2023 | bug fix on bad docs breaking yaml schema |
@@ -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
 
@@ -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.180'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
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.180
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart