ultracart_api 3.10.141 → 3.10.143
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 +4 -4
- data/README.md +6 -4
- data/docs/DistributionCenter.md +15 -0
- data/docs/ReportDataSet.md +1 -0
- data/docs/ReportExecuteQueriesRequest.md +1 -0
- data/lib/ultracart_api/models/distribution_center.rb +151 -1
- data/lib/ultracart_api/models/report_data_set.rb +11 -1
- data/lib/ultracart_api/models/report_execute_queries_request.rb +11 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dc3a07390d1f0e93235e7435d1a8610695d1fffac8392e8dee971b34d7b74900
|
|
4
|
+
data.tar.gz: e16c57c8156648848e89d5919154796d38bc9c4865d619ac896f118e2aaac1b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e63c36d1e3b762b4c555af4d1f68ed6b054380cf4fac8492cbddd3cc962d55487ad19025d3f12f80ab060625c002a32538d959b6b71070d4ebb941a1d1fa5ec
|
|
7
|
+
data.tar.gz: 42c1d6ccf4a88ea9abcba88c548d23bf1aa894a9cea0ece39b11e00ef472204d842dbb6e84591e7a4f138152053e7b5a1fd47557e52984c94451f06d16f7af1d
|
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.
|
|
10
|
+
- Package version: 3.10.143
|
|
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.
|
|
27
|
+
gem install ./ultracart_api-3.10.143.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.10.
|
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.10.143.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.
|
|
35
|
+
gem 'ultracart_api', '~> 3.10.143'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1356,6 +1356,8 @@ Not every change is committed to every SDK.
|
|
|
1356
1356
|
|
|
1357
1357
|
| Version | Date | Comments |
|
|
1358
1358
|
| --: | :-: | --- |
|
|
1359
|
+
| 3.10.143 | 06/14/2023 | dw bi: add request_dts on the execute queries request and report data set objects |
|
|
1360
|
+
| 3.10.142 | 06/09/2023 | distribution center pickup times |
|
|
1359
1361
|
| 3.10.141 | 06/08/2023 | customer profile qb tax exempt reason code field |
|
|
1360
1362
|
| 3.10.140 | 06/06/2023 | auto order add_ons |
|
|
1361
1363
|
| 3.10.139 | 05/25/2023 | added venmo constants for payment type |
|
data/docs/DistributionCenter.md
CHANGED
|
@@ -22,6 +22,21 @@ Name | Type | Description | Notes
|
|
|
22
22
|
**name** | **String** | Name of this distribution center | [optional]
|
|
23
23
|
**no_customer_direct_shipments** | **BOOLEAN** | True if this distribution center does not handle customer direct shipments | [optional]
|
|
24
24
|
**no_split_shipment** | **BOOLEAN** | True if this distribution center is not allowed to participate in a split shipment. | [optional]
|
|
25
|
+
**pickup_cutoff_time_friday** | **String** | The time (EST) after which pickups will not be available on Friday | [optional]
|
|
26
|
+
**pickup_cutoff_time_monday** | **String** | The time (EST) after which pickups will not be available on Monday | [optional]
|
|
27
|
+
**pickup_cutoff_time_saturday** | **String** | The time (EST) after which pickups will not be available on Saturday | [optional]
|
|
28
|
+
**pickup_cutoff_time_sunday** | **String** | The time (EST) after which pickups will not be available on Sunday | [optional]
|
|
29
|
+
**pickup_cutoff_time_thursday** | **String** | The time (EST) after which pickups will not be available on Thursday | [optional]
|
|
30
|
+
**pickup_cutoff_time_tuesday** | **String** | The time (EST) after which pickups will not be available on Tuesday | [optional]
|
|
31
|
+
**pickup_cutoff_time_wednesday** | **String** | The time (EST) after which pickups will not be available on Wednesday | [optional]
|
|
32
|
+
**pickup_start_time_friday** | **String** | The time (EST) after which pickups are available on Friday | [optional]
|
|
33
|
+
**pickup_start_time_monday** | **String** | The time (EST) after which pickups are available on Monday | [optional]
|
|
34
|
+
**pickup_start_time_saturday** | **String** | The time (EST) after which pickups are available on Saturday | [optional]
|
|
35
|
+
**pickup_start_time_sunday** | **String** | The time (EST) after which pickups are available on Sunday | [optional]
|
|
36
|
+
**pickup_start_time_thursday** | **String** | The time (EST) after which pickups are available on Thursday | [optional]
|
|
37
|
+
**pickup_start_time_tuesday** | **String** | The time (EST) after which pickups are available on Tuesday | [optional]
|
|
38
|
+
**pickup_start_time_wednesday** | **String** | The time (EST) after which pickups are available on Wednesday | [optional]
|
|
39
|
+
**pickup_tz** | **String** | The IANA timezone for all pickup times | [optional]
|
|
25
40
|
**postal_code** | **String** | Postal code of the distribution center | [optional]
|
|
26
41
|
**process_days** | **Integer** | The number of processing days required before an order ships | [optional]
|
|
27
42
|
**process_inventory_start_time** | **String** | The time (EST) after which inventory updates will be processed | [optional]
|
data/docs/ReportDataSet.md
CHANGED
|
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
|
|
|
15
15
|
**merchant_id** | **String** | Merchant that owns this data set | [optional]
|
|
16
16
|
**page_count** | **Integer** | The total number of pages in the result set | [optional]
|
|
17
17
|
**page_size** | **Integer** | The size of the pages | [optional]
|
|
18
|
+
**request_dts** | **String** | Date/Time of the client submitted the request. Can be used to resolve out of order query completion results | [optional]
|
|
18
19
|
**schema** | [**Array<ReportDataSetSchema>**](ReportDataSetSchema.md) | The schema associated with the data set. | [optional]
|
|
19
20
|
**security_level** | **String** | Security level this dataset was read from. | [optional]
|
|
20
21
|
**timezone** | **String** | | [optional]
|
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**default_project_id** | **String** | | [optional]
|
|
10
10
|
**merchant_id** | **String** | | [optional]
|
|
11
11
|
**queries** | [**Array<ReportDataSetQuery>**](ReportDataSetQuery.md) | An array of queries that we want the lambda function to execute. | [optional]
|
|
12
|
+
**request_dts** | **String** | Date/Time of the client submitted the request. Can be used to resolve out of order query completion results | [optional]
|
|
12
13
|
**security_level** | **String** | Security level to execute report under | [optional]
|
|
13
14
|
|
|
14
15
|
|
|
@@ -70,6 +70,51 @@ module UltracartClient
|
|
|
70
70
|
# True if this distribution center is not allowed to participate in a split shipment.
|
|
71
71
|
attr_accessor :no_split_shipment
|
|
72
72
|
|
|
73
|
+
# The time (EST) after which pickups will not be available on Friday
|
|
74
|
+
attr_accessor :pickup_cutoff_time_friday
|
|
75
|
+
|
|
76
|
+
# The time (EST) after which pickups will not be available on Monday
|
|
77
|
+
attr_accessor :pickup_cutoff_time_monday
|
|
78
|
+
|
|
79
|
+
# The time (EST) after which pickups will not be available on Saturday
|
|
80
|
+
attr_accessor :pickup_cutoff_time_saturday
|
|
81
|
+
|
|
82
|
+
# The time (EST) after which pickups will not be available on Sunday
|
|
83
|
+
attr_accessor :pickup_cutoff_time_sunday
|
|
84
|
+
|
|
85
|
+
# The time (EST) after which pickups will not be available on Thursday
|
|
86
|
+
attr_accessor :pickup_cutoff_time_thursday
|
|
87
|
+
|
|
88
|
+
# The time (EST) after which pickups will not be available on Tuesday
|
|
89
|
+
attr_accessor :pickup_cutoff_time_tuesday
|
|
90
|
+
|
|
91
|
+
# The time (EST) after which pickups will not be available on Wednesday
|
|
92
|
+
attr_accessor :pickup_cutoff_time_wednesday
|
|
93
|
+
|
|
94
|
+
# The time (EST) after which pickups are available on Friday
|
|
95
|
+
attr_accessor :pickup_start_time_friday
|
|
96
|
+
|
|
97
|
+
# The time (EST) after which pickups are available on Monday
|
|
98
|
+
attr_accessor :pickup_start_time_monday
|
|
99
|
+
|
|
100
|
+
# The time (EST) after which pickups are available on Saturday
|
|
101
|
+
attr_accessor :pickup_start_time_saturday
|
|
102
|
+
|
|
103
|
+
# The time (EST) after which pickups are available on Sunday
|
|
104
|
+
attr_accessor :pickup_start_time_sunday
|
|
105
|
+
|
|
106
|
+
# The time (EST) after which pickups are available on Thursday
|
|
107
|
+
attr_accessor :pickup_start_time_thursday
|
|
108
|
+
|
|
109
|
+
# The time (EST) after which pickups are available on Tuesday
|
|
110
|
+
attr_accessor :pickup_start_time_tuesday
|
|
111
|
+
|
|
112
|
+
# The time (EST) after which pickups are available on Wednesday
|
|
113
|
+
attr_accessor :pickup_start_time_wednesday
|
|
114
|
+
|
|
115
|
+
# The IANA timezone for all pickup times
|
|
116
|
+
attr_accessor :pickup_tz
|
|
117
|
+
|
|
73
118
|
# Postal code of the distribution center
|
|
74
119
|
attr_accessor :postal_code
|
|
75
120
|
|
|
@@ -140,6 +185,21 @@ module UltracartClient
|
|
|
140
185
|
:'name' => :'name',
|
|
141
186
|
:'no_customer_direct_shipments' => :'no_customer_direct_shipments',
|
|
142
187
|
:'no_split_shipment' => :'no_split_shipment',
|
|
188
|
+
:'pickup_cutoff_time_friday' => :'pickup_cutoff_time_friday',
|
|
189
|
+
:'pickup_cutoff_time_monday' => :'pickup_cutoff_time_monday',
|
|
190
|
+
:'pickup_cutoff_time_saturday' => :'pickup_cutoff_time_saturday',
|
|
191
|
+
:'pickup_cutoff_time_sunday' => :'pickup_cutoff_time_sunday',
|
|
192
|
+
:'pickup_cutoff_time_thursday' => :'pickup_cutoff_time_thursday',
|
|
193
|
+
:'pickup_cutoff_time_tuesday' => :'pickup_cutoff_time_tuesday',
|
|
194
|
+
:'pickup_cutoff_time_wednesday' => :'pickup_cutoff_time_wednesday',
|
|
195
|
+
:'pickup_start_time_friday' => :'pickup_start_time_friday',
|
|
196
|
+
:'pickup_start_time_monday' => :'pickup_start_time_monday',
|
|
197
|
+
:'pickup_start_time_saturday' => :'pickup_start_time_saturday',
|
|
198
|
+
:'pickup_start_time_sunday' => :'pickup_start_time_sunday',
|
|
199
|
+
:'pickup_start_time_thursday' => :'pickup_start_time_thursday',
|
|
200
|
+
:'pickup_start_time_tuesday' => :'pickup_start_time_tuesday',
|
|
201
|
+
:'pickup_start_time_wednesday' => :'pickup_start_time_wednesday',
|
|
202
|
+
:'pickup_tz' => :'pickup_tz',
|
|
143
203
|
:'postal_code' => :'postal_code',
|
|
144
204
|
:'process_days' => :'process_days',
|
|
145
205
|
:'process_inventory_start_time' => :'process_inventory_start_time',
|
|
@@ -181,6 +241,21 @@ module UltracartClient
|
|
|
181
241
|
:'name' => :'String',
|
|
182
242
|
:'no_customer_direct_shipments' => :'BOOLEAN',
|
|
183
243
|
:'no_split_shipment' => :'BOOLEAN',
|
|
244
|
+
:'pickup_cutoff_time_friday' => :'String',
|
|
245
|
+
:'pickup_cutoff_time_monday' => :'String',
|
|
246
|
+
:'pickup_cutoff_time_saturday' => :'String',
|
|
247
|
+
:'pickup_cutoff_time_sunday' => :'String',
|
|
248
|
+
:'pickup_cutoff_time_thursday' => :'String',
|
|
249
|
+
:'pickup_cutoff_time_tuesday' => :'String',
|
|
250
|
+
:'pickup_cutoff_time_wednesday' => :'String',
|
|
251
|
+
:'pickup_start_time_friday' => :'String',
|
|
252
|
+
:'pickup_start_time_monday' => :'String',
|
|
253
|
+
:'pickup_start_time_saturday' => :'String',
|
|
254
|
+
:'pickup_start_time_sunday' => :'String',
|
|
255
|
+
:'pickup_start_time_thursday' => :'String',
|
|
256
|
+
:'pickup_start_time_tuesday' => :'String',
|
|
257
|
+
:'pickup_start_time_wednesday' => :'String',
|
|
258
|
+
:'pickup_tz' => :'String',
|
|
184
259
|
:'postal_code' => :'String',
|
|
185
260
|
:'process_days' => :'Integer',
|
|
186
261
|
:'process_inventory_start_time' => :'String',
|
|
@@ -284,6 +359,66 @@ module UltracartClient
|
|
|
284
359
|
self.no_split_shipment = attributes[:'no_split_shipment']
|
|
285
360
|
end
|
|
286
361
|
|
|
362
|
+
if attributes.has_key?(:'pickup_cutoff_time_friday')
|
|
363
|
+
self.pickup_cutoff_time_friday = attributes[:'pickup_cutoff_time_friday']
|
|
364
|
+
end
|
|
365
|
+
|
|
366
|
+
if attributes.has_key?(:'pickup_cutoff_time_monday')
|
|
367
|
+
self.pickup_cutoff_time_monday = attributes[:'pickup_cutoff_time_monday']
|
|
368
|
+
end
|
|
369
|
+
|
|
370
|
+
if attributes.has_key?(:'pickup_cutoff_time_saturday')
|
|
371
|
+
self.pickup_cutoff_time_saturday = attributes[:'pickup_cutoff_time_saturday']
|
|
372
|
+
end
|
|
373
|
+
|
|
374
|
+
if attributes.has_key?(:'pickup_cutoff_time_sunday')
|
|
375
|
+
self.pickup_cutoff_time_sunday = attributes[:'pickup_cutoff_time_sunday']
|
|
376
|
+
end
|
|
377
|
+
|
|
378
|
+
if attributes.has_key?(:'pickup_cutoff_time_thursday')
|
|
379
|
+
self.pickup_cutoff_time_thursday = attributes[:'pickup_cutoff_time_thursday']
|
|
380
|
+
end
|
|
381
|
+
|
|
382
|
+
if attributes.has_key?(:'pickup_cutoff_time_tuesday')
|
|
383
|
+
self.pickup_cutoff_time_tuesday = attributes[:'pickup_cutoff_time_tuesday']
|
|
384
|
+
end
|
|
385
|
+
|
|
386
|
+
if attributes.has_key?(:'pickup_cutoff_time_wednesday')
|
|
387
|
+
self.pickup_cutoff_time_wednesday = attributes[:'pickup_cutoff_time_wednesday']
|
|
388
|
+
end
|
|
389
|
+
|
|
390
|
+
if attributes.has_key?(:'pickup_start_time_friday')
|
|
391
|
+
self.pickup_start_time_friday = attributes[:'pickup_start_time_friday']
|
|
392
|
+
end
|
|
393
|
+
|
|
394
|
+
if attributes.has_key?(:'pickup_start_time_monday')
|
|
395
|
+
self.pickup_start_time_monday = attributes[:'pickup_start_time_monday']
|
|
396
|
+
end
|
|
397
|
+
|
|
398
|
+
if attributes.has_key?(:'pickup_start_time_saturday')
|
|
399
|
+
self.pickup_start_time_saturday = attributes[:'pickup_start_time_saturday']
|
|
400
|
+
end
|
|
401
|
+
|
|
402
|
+
if attributes.has_key?(:'pickup_start_time_sunday')
|
|
403
|
+
self.pickup_start_time_sunday = attributes[:'pickup_start_time_sunday']
|
|
404
|
+
end
|
|
405
|
+
|
|
406
|
+
if attributes.has_key?(:'pickup_start_time_thursday')
|
|
407
|
+
self.pickup_start_time_thursday = attributes[:'pickup_start_time_thursday']
|
|
408
|
+
end
|
|
409
|
+
|
|
410
|
+
if attributes.has_key?(:'pickup_start_time_tuesday')
|
|
411
|
+
self.pickup_start_time_tuesday = attributes[:'pickup_start_time_tuesday']
|
|
412
|
+
end
|
|
413
|
+
|
|
414
|
+
if attributes.has_key?(:'pickup_start_time_wednesday')
|
|
415
|
+
self.pickup_start_time_wednesday = attributes[:'pickup_start_time_wednesday']
|
|
416
|
+
end
|
|
417
|
+
|
|
418
|
+
if attributes.has_key?(:'pickup_tz')
|
|
419
|
+
self.pickup_tz = attributes[:'pickup_tz']
|
|
420
|
+
end
|
|
421
|
+
|
|
287
422
|
if attributes.has_key?(:'postal_code')
|
|
288
423
|
self.postal_code = attributes[:'postal_code']
|
|
289
424
|
end
|
|
@@ -386,6 +521,21 @@ module UltracartClient
|
|
|
386
521
|
name == o.name &&
|
|
387
522
|
no_customer_direct_shipments == o.no_customer_direct_shipments &&
|
|
388
523
|
no_split_shipment == o.no_split_shipment &&
|
|
524
|
+
pickup_cutoff_time_friday == o.pickup_cutoff_time_friday &&
|
|
525
|
+
pickup_cutoff_time_monday == o.pickup_cutoff_time_monday &&
|
|
526
|
+
pickup_cutoff_time_saturday == o.pickup_cutoff_time_saturday &&
|
|
527
|
+
pickup_cutoff_time_sunday == o.pickup_cutoff_time_sunday &&
|
|
528
|
+
pickup_cutoff_time_thursday == o.pickup_cutoff_time_thursday &&
|
|
529
|
+
pickup_cutoff_time_tuesday == o.pickup_cutoff_time_tuesday &&
|
|
530
|
+
pickup_cutoff_time_wednesday == o.pickup_cutoff_time_wednesday &&
|
|
531
|
+
pickup_start_time_friday == o.pickup_start_time_friday &&
|
|
532
|
+
pickup_start_time_monday == o.pickup_start_time_monday &&
|
|
533
|
+
pickup_start_time_saturday == o.pickup_start_time_saturday &&
|
|
534
|
+
pickup_start_time_sunday == o.pickup_start_time_sunday &&
|
|
535
|
+
pickup_start_time_thursday == o.pickup_start_time_thursday &&
|
|
536
|
+
pickup_start_time_tuesday == o.pickup_start_time_tuesday &&
|
|
537
|
+
pickup_start_time_wednesday == o.pickup_start_time_wednesday &&
|
|
538
|
+
pickup_tz == o.pickup_tz &&
|
|
389
539
|
postal_code == o.postal_code &&
|
|
390
540
|
process_days == o.process_days &&
|
|
391
541
|
process_inventory_start_time == o.process_inventory_start_time &&
|
|
@@ -413,7 +563,7 @@ module UltracartClient
|
|
|
413
563
|
# Calculates hash code according to all attributes.
|
|
414
564
|
# @return [Fixnum] Hash code
|
|
415
565
|
def hash
|
|
416
|
-
[address1, address2, city, code, country_code, default_center, default_handles_all_items, distribution_center_oid, duns, estimate_from_distribution_center_oid, ftp_password, hold_before_shipment_minutes, hold_before_transmission, hold_auto_order_before_shipment_minutes, latitude, longitude, name, no_customer_direct_shipments, no_split_shipment, postal_code, process_days, process_inventory_start_time, process_inventory_stop_time, require_asn, send_kit_instead_of_components, shipment_cutoff_time_friday, shipment_cutoff_time_monday, shipment_cutoff_time_saturday, shipment_cutoff_time_sunday, shipment_cutoff_time_thursday, shipment_cutoff_time_tuesday, shipment_cutoff_time_wednesday, state, transmit_blank_costs, transport].hash
|
|
566
|
+
[address1, address2, city, code, country_code, default_center, default_handles_all_items, distribution_center_oid, duns, estimate_from_distribution_center_oid, ftp_password, hold_before_shipment_minutes, hold_before_transmission, hold_auto_order_before_shipment_minutes, latitude, longitude, name, no_customer_direct_shipments, no_split_shipment, pickup_cutoff_time_friday, pickup_cutoff_time_monday, pickup_cutoff_time_saturday, pickup_cutoff_time_sunday, pickup_cutoff_time_thursday, pickup_cutoff_time_tuesday, pickup_cutoff_time_wednesday, pickup_start_time_friday, pickup_start_time_monday, pickup_start_time_saturday, pickup_start_time_sunday, pickup_start_time_thursday, pickup_start_time_tuesday, pickup_start_time_wednesday, pickup_tz, postal_code, process_days, process_inventory_start_time, process_inventory_stop_time, require_asn, send_kit_instead_of_components, shipment_cutoff_time_friday, shipment_cutoff_time_monday, shipment_cutoff_time_saturday, shipment_cutoff_time_sunday, shipment_cutoff_time_thursday, shipment_cutoff_time_tuesday, shipment_cutoff_time_wednesday, state, transmit_blank_costs, transport].hash
|
|
417
567
|
end
|
|
418
568
|
|
|
419
569
|
# Builds the object from hash
|
|
@@ -49,6 +49,9 @@ module UltracartClient
|
|
|
49
49
|
# The size of the pages
|
|
50
50
|
attr_accessor :page_size
|
|
51
51
|
|
|
52
|
+
# Date/Time of the client submitted the request. Can be used to resolve out of order query completion results
|
|
53
|
+
attr_accessor :request_dts
|
|
54
|
+
|
|
52
55
|
# The schema associated with the data set.
|
|
53
56
|
attr_accessor :schema
|
|
54
57
|
|
|
@@ -97,6 +100,7 @@ module UltracartClient
|
|
|
97
100
|
:'merchant_id' => :'merchant_id',
|
|
98
101
|
:'page_count' => :'page_count',
|
|
99
102
|
:'page_size' => :'page_size',
|
|
103
|
+
:'request_dts' => :'request_dts',
|
|
100
104
|
:'schema' => :'schema',
|
|
101
105
|
:'security_level' => :'security_level',
|
|
102
106
|
:'timezone' => :'timezone',
|
|
@@ -119,6 +123,7 @@ module UltracartClient
|
|
|
119
123
|
:'merchant_id' => :'String',
|
|
120
124
|
:'page_count' => :'Integer',
|
|
121
125
|
:'page_size' => :'Integer',
|
|
126
|
+
:'request_dts' => :'String',
|
|
122
127
|
:'schema' => :'Array<ReportDataSetSchema>',
|
|
123
128
|
:'security_level' => :'String',
|
|
124
129
|
:'timezone' => :'String',
|
|
@@ -184,6 +189,10 @@ module UltracartClient
|
|
|
184
189
|
self.page_size = attributes[:'page_size']
|
|
185
190
|
end
|
|
186
191
|
|
|
192
|
+
if attributes.has_key?(:'request_dts')
|
|
193
|
+
self.request_dts = attributes[:'request_dts']
|
|
194
|
+
end
|
|
195
|
+
|
|
187
196
|
if attributes.has_key?(:'schema')
|
|
188
197
|
if (value = attributes[:'schema']).is_a?(Array)
|
|
189
198
|
self.schema = value
|
|
@@ -245,6 +254,7 @@ module UltracartClient
|
|
|
245
254
|
merchant_id == o.merchant_id &&
|
|
246
255
|
page_count == o.page_count &&
|
|
247
256
|
page_size == o.page_size &&
|
|
257
|
+
request_dts == o.request_dts &&
|
|
248
258
|
schema == o.schema &&
|
|
249
259
|
security_level == o.security_level &&
|
|
250
260
|
timezone == o.timezone &&
|
|
@@ -260,7 +270,7 @@ module UltracartClient
|
|
|
260
270
|
# Calculates hash code according to all attributes.
|
|
261
271
|
# @return [Fixnum] Hash code
|
|
262
272
|
def hash
|
|
263
|
-
[data_set_query_uuid, data_set_uuid, destination_table_id, error_message, executed_sql, for_object_id, for_object_type, initial_pages, max_results, merchant_id, page_count, page_size, schema, security_level, timezone, user_data].hash
|
|
273
|
+
[data_set_query_uuid, data_set_uuid, destination_table_id, error_message, executed_sql, for_object_id, for_object_type, initial_pages, max_results, merchant_id, page_count, page_size, request_dts, schema, security_level, timezone, user_data].hash
|
|
264
274
|
end
|
|
265
275
|
|
|
266
276
|
# Builds the object from hash
|
|
@@ -29,6 +29,9 @@ module UltracartClient
|
|
|
29
29
|
# An array of queries that we want the lambda function to execute.
|
|
30
30
|
attr_accessor :queries
|
|
31
31
|
|
|
32
|
+
# Date/Time of the client submitted the request. Can be used to resolve out of order query completion results
|
|
33
|
+
attr_accessor :request_dts
|
|
34
|
+
|
|
32
35
|
# Security level to execute report under
|
|
33
36
|
attr_accessor :security_level
|
|
34
37
|
|
|
@@ -63,6 +66,7 @@ module UltracartClient
|
|
|
63
66
|
:'default_project_id' => :'default_project_id',
|
|
64
67
|
:'merchant_id' => :'merchant_id',
|
|
65
68
|
:'queries' => :'queries',
|
|
69
|
+
:'request_dts' => :'request_dts',
|
|
66
70
|
:'security_level' => :'security_level'
|
|
67
71
|
}
|
|
68
72
|
end
|
|
@@ -76,6 +80,7 @@ module UltracartClient
|
|
|
76
80
|
:'default_project_id' => :'String',
|
|
77
81
|
:'merchant_id' => :'String',
|
|
78
82
|
:'queries' => :'Array<ReportDataSetQuery>',
|
|
83
|
+
:'request_dts' => :'String',
|
|
79
84
|
:'security_level' => :'String'
|
|
80
85
|
}
|
|
81
86
|
end
|
|
@@ -114,6 +119,10 @@ module UltracartClient
|
|
|
114
119
|
end
|
|
115
120
|
end
|
|
116
121
|
|
|
122
|
+
if attributes.has_key?(:'request_dts')
|
|
123
|
+
self.request_dts = attributes[:'request_dts']
|
|
124
|
+
end
|
|
125
|
+
|
|
117
126
|
if attributes.has_key?(:'security_level')
|
|
118
127
|
self.security_level = attributes[:'security_level']
|
|
119
128
|
end
|
|
@@ -155,6 +164,7 @@ module UltracartClient
|
|
|
155
164
|
default_project_id == o.default_project_id &&
|
|
156
165
|
merchant_id == o.merchant_id &&
|
|
157
166
|
queries == o.queries &&
|
|
167
|
+
request_dts == o.request_dts &&
|
|
158
168
|
security_level == o.security_level
|
|
159
169
|
end
|
|
160
170
|
|
|
@@ -167,7 +177,7 @@ module UltracartClient
|
|
|
167
177
|
# Calculates hash code according to all attributes.
|
|
168
178
|
# @return [Fixnum] Hash code
|
|
169
179
|
def hash
|
|
170
|
-
[client_uuid, connection_id, default_dataset_id, default_project_id, merchant_id, queries, security_level].hash
|
|
180
|
+
[client_uuid, connection_id, default_dataset_id, default_project_id, merchant_id, queries, request_dts, security_level].hash
|
|
171
181
|
end
|
|
172
182
|
|
|
173
183
|
# Builds the object from hash
|
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.
|
|
4
|
+
version: 3.10.143
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-06-
|
|
11
|
+
date: 2023-06-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|