ultracart_api 4.0.207 → 4.0.208

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: 3a32e4b9b9e2284bec156283fc8e2a8a5769a6d7383066cb07462e7f38e05033
4
- data.tar.gz: 675ca6a156c05dd76b79c48fe3b1db21680a6883e1ba093ce55609f7bb6d2869
3
+ metadata.gz: 0f75b47be794768d98f679b4155d0019e65e9f78dcd46a2112abbdaa942484a0
4
+ data.tar.gz: 49ee89c7007ef3e5eeb6df94aca59280bd63ba6d8fc928f4b17e054456fc3aa1
5
5
  SHA512:
6
- metadata.gz: 334694a3dcb0653697d5d7300d371374fd70022d58e05ea31b69624aaa75c360a996adc6c37e8fd523e03712742dfe4c5807a8752669f786fdb1e3ee1dd0e97b
7
- data.tar.gz: e6b619b10baf628f0228e970386f0e90ecc07afe6bcd68d9ea86c0f7cb069da46c5e68a987df9e6965cb97704dba03e33a9b51dd3efa1dbffcd68f7f0956b89c
6
+ metadata.gz: fab94bb1b7cd655140b7313e89e405c7135e30e5215512507e804ba9b171c9078a3db4a10193729323a91b81b69f35112a0dd48257928018d6771688962ee144
7
+ data.tar.gz: 6b57e36d7a7fd555e9e9283ecf03ac3fbfcd40295c1ea26167516d8126de737119d010f2b7acbcadb32c2423a6b2d723a2111c15f1b6721e6b92249be717ef50
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.207
10
+ - Package version: 4.0.208
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.207.gem
27
+ gem install ./ultracart_api-4.0.208.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.207.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.208.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.207'
36
+ gem 'ultracart_api', '~> 4.0.208'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1494,6 +1494,7 @@ Not every change is committed to every SDK.
1494
1494
 
1495
1495
  | Version | Date | Comments |
1496
1496
  | --: | :-: | --- |
1497
+ | 4.0.208 | 03/26/2024 | WorkflowTask - added assigned_to_user_or_group field |
1497
1498
  | 4.0.207 | 03/25/2024 | workflowtask - add global_task_number and object_task_number |
1498
1499
  | 4.0.206 | 03/25/2024 | added sales_rep_code to Channel partner order |
1499
1500
  | 4.0.205 | 03/19/2024 | workflow task - method to obtain open task count |
data/docs/WorkflowTask.md CHANGED
@@ -8,6 +8,7 @@
8
8
  | **assigned_to_group_id** | **Integer** | Assigned to group ID | [optional] |
9
9
  | **assigned_to_user** | **String** | Assigned to user | [optional] |
10
10
  | **assigned_to_user_id** | **Integer** | Assigned to user ID | [optional] |
11
+ | **assigned_to_user_or_group** | **String** | Assigned to user or group (used for sorting) | [optional] |
11
12
  | **attachments** | [**Array<WorkflowAttachment>**](WorkflowAttachment.md) | Attachments to the Workflow Task | [optional] |
12
13
  | **created_by** | [**WorkflowUser**](WorkflowUser.md) | | [optional] |
13
14
  | **created_dts** | **String** | Date/time that the workflow task was created | [optional] |
@@ -46,6 +47,7 @@ instance = UltracartClient::WorkflowTask.new(
46
47
  assigned_to_group_id: null,
47
48
  assigned_to_user: null,
48
49
  assigned_to_user_id: null,
50
+ assigned_to_user_or_group: null,
49
51
  attachments: null,
50
52
  created_by: null,
51
53
  created_dts: null,
@@ -27,6 +27,9 @@ module UltracartClient
27
27
  # Assigned to user ID
28
28
  attr_accessor :assigned_to_user_id
29
29
 
30
+ # Assigned to user or group (used for sorting)
31
+ attr_accessor :assigned_to_user_or_group
32
+
30
33
  # Attachments to the Workflow Task
31
34
  attr_accessor :attachments
32
35
 
@@ -136,6 +139,7 @@ module UltracartClient
136
139
  :'assigned_to_group_id' => :'assigned_to_group_id',
137
140
  :'assigned_to_user' => :'assigned_to_user',
138
141
  :'assigned_to_user_id' => :'assigned_to_user_id',
142
+ :'assigned_to_user_or_group' => :'assigned_to_user_or_group',
139
143
  :'attachments' => :'attachments',
140
144
  :'created_by' => :'created_by',
141
145
  :'created_dts' => :'created_dts',
@@ -178,6 +182,7 @@ module UltracartClient
178
182
  :'assigned_to_group_id' => :'Integer',
179
183
  :'assigned_to_user' => :'String',
180
184
  :'assigned_to_user_id' => :'Integer',
185
+ :'assigned_to_user_or_group' => :'String',
181
186
  :'attachments' => :'Array<WorkflowAttachment>',
182
187
  :'created_by' => :'WorkflowUser',
183
188
  :'created_dts' => :'String',
@@ -245,6 +250,10 @@ module UltracartClient
245
250
  self.assigned_to_user_id = attributes[:'assigned_to_user_id']
246
251
  end
247
252
 
253
+ if attributes.key?(:'assigned_to_user_or_group')
254
+ self.assigned_to_user_or_group = attributes[:'assigned_to_user_or_group']
255
+ end
256
+
248
257
  if attributes.key?(:'attachments')
249
258
  if (value = attributes[:'attachments']).is_a?(Array)
250
259
  self.attachments = value
@@ -434,6 +443,7 @@ module UltracartClient
434
443
  assigned_to_group_id == o.assigned_to_group_id &&
435
444
  assigned_to_user == o.assigned_to_user &&
436
445
  assigned_to_user_id == o.assigned_to_user_id &&
446
+ assigned_to_user_or_group == o.assigned_to_user_or_group &&
437
447
  attachments == o.attachments &&
438
448
  created_by == o.created_by &&
439
449
  created_dts == o.created_dts &&
@@ -472,7 +482,7 @@ module UltracartClient
472
482
  # Calculates hash code according to all attributes.
473
483
  # @return [Integer] Hash code
474
484
  def hash
475
- [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, expiration_dts, global_task_number, histories, last_update_dts, merchant_id, notes, object_email, object_id, object_task_number, object_type, object_url, priority, properties, related_workflow_task_uuid, status, system_task_type, tags, task_context, task_details, task_name, workflow_task_uuid].hash
485
+ [assigned_to_group, assigned_to_group_id, assigned_to_user, assigned_to_user_id, assigned_to_user_or_group, attachments, created_by, created_dts, delay_until_dts, dependant_workflow_task_uuid, due_dts, expiration_dts, global_task_number, histories, last_update_dts, merchant_id, notes, object_email, object_id, object_task_number, object_type, object_url, priority, properties, related_workflow_task_uuid, status, system_task_type, tags, task_context, task_details, task_name, workflow_task_uuid].hash
476
486
  end
477
487
 
478
488
  # 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.207'
14
+ VERSION = '4.0.208'
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.207
4
+ version: 4.0.208
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-25 00:00:00.000000000 Z
11
+ date: 2024-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus