ultracart_api 4.1.78 → 4.1.79
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 +3 -2
- data/docs/ItemShipping.md +2 -0
- data/lib/ultracart_api/models/item_shipping.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: 9f8db92bb22d00d81552f7d0b74588fb470f08f314814b7aa4db5bbe76aaed1a
|
|
4
|
+
data.tar.gz: a8c3e8fbd1ed1dc077ef1a300bada351877bc7d6772dd4df6aae3ae27723643c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4a25c2a207e0ed15274e6d88545adf3f282abf6a26969af12701f309b658c5e23b080fd0d3672aad553b0acc95c410d5b73d84e2a02c57669d076f12e64e27e7
|
|
7
|
+
data.tar.gz: 581f3c787efc602151b49afd829dd23767fcbeb9bb24fb6bfa373d81d916bd63eb2e2e01aeb381ee77544904a9ec02bc7cbe722622b17dbab3bb317633996875
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Note: Every method has a sample for every language. See https://github.com/Ultr
|
|
|
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.1.
|
|
10
|
+
- Package version: 4.1.79
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
- For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
|
|
13
13
|
|
|
@@ -16,7 +16,7 @@ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-g
|
|
|
16
16
|
gemfile:
|
|
17
17
|
|
|
18
18
|
```shell
|
|
19
|
-
gem 'ultracart_api', '4.1.
|
|
19
|
+
gem 'ultracart_api', '4.1.79'
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
install:
|
|
@@ -1698,6 +1698,7 @@ Not every change is committed to every SDK.
|
|
|
1698
1698
|
|
|
1699
1699
|
| Version | Date | Comments |
|
|
1700
1700
|
| --: | :-: | --- |
|
|
1701
|
+
| 4.1.79 | 04/21/2026 | item - one line per unit flag support |
|
|
1701
1702
|
| 4.1.78 | 04/20/2026 | conversation pbx - objects have context_merchant_id fields to linked account configs |
|
|
1702
1703
|
| 4.1.77 | 04/17/2026 | conversation - embed oauth methods |
|
|
1703
1704
|
| 4.1.76 | 04/17/2026 | conversation - embed oauth methods |
|
data/docs/ItemShipping.md
CHANGED
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
| **max_days_time_in_transit** | **Integer** | Maximum days allowed in transit | [optional] |
|
|
35
35
|
| **methods** | [**Array<ItemShippingMethod>**](ItemShippingMethod.md) | Methods | [optional] |
|
|
36
36
|
| **no_shipping_discount** | **Boolean** | No shipping discounts | [optional] |
|
|
37
|
+
| **one_line_per_unit** | **Boolean** | Split cart line items with quantity greater than one into individual lines of quantity one on the order | [optional] |
|
|
37
38
|
| **package_requirements** | [**Array<ItemShippingPackageRequirement>**](ItemShippingPackageRequirement.md) | Package requirements | [optional] |
|
|
38
39
|
| **perishable_class_name** | **String** | Perishable class name | [optional] |
|
|
39
40
|
| **perishable_class_oid** | **Integer** | Perishable class object identifier | [optional] |
|
|
@@ -92,6 +93,7 @@ instance = UltracartClient::ItemShipping.new(
|
|
|
92
93
|
max_days_time_in_transit: null,
|
|
93
94
|
methods: null,
|
|
94
95
|
no_shipping_discount: null,
|
|
96
|
+
one_line_per_unit: null,
|
|
95
97
|
package_requirements: null,
|
|
96
98
|
perishable_class_name: null,
|
|
97
99
|
perishable_class_oid: null,
|
|
@@ -105,6 +105,9 @@ module UltracartClient
|
|
|
105
105
|
# No shipping discounts
|
|
106
106
|
attr_accessor :no_shipping_discount
|
|
107
107
|
|
|
108
|
+
# Split cart line items with quantity greater than one into individual lines of quantity one on the order
|
|
109
|
+
attr_accessor :one_line_per_unit
|
|
110
|
+
|
|
108
111
|
# Package requirements
|
|
109
112
|
attr_accessor :package_requirements
|
|
110
113
|
|
|
@@ -197,6 +200,7 @@ module UltracartClient
|
|
|
197
200
|
:'max_days_time_in_transit' => :'max_days_time_in_transit',
|
|
198
201
|
:'methods' => :'methods',
|
|
199
202
|
:'no_shipping_discount' => :'no_shipping_discount',
|
|
203
|
+
:'one_line_per_unit' => :'one_line_per_unit',
|
|
200
204
|
:'package_requirements' => :'package_requirements',
|
|
201
205
|
:'perishable_class_name' => :'perishable_class_name',
|
|
202
206
|
:'perishable_class_oid' => :'perishable_class_oid',
|
|
@@ -259,6 +263,7 @@ module UltracartClient
|
|
|
259
263
|
:'max_days_time_in_transit' => :'Integer',
|
|
260
264
|
:'methods' => :'Array<ItemShippingMethod>',
|
|
261
265
|
:'no_shipping_discount' => :'Boolean',
|
|
266
|
+
:'one_line_per_unit' => :'Boolean',
|
|
262
267
|
:'package_requirements' => :'Array<ItemShippingPackageRequirement>',
|
|
263
268
|
:'perishable_class_name' => :'String',
|
|
264
269
|
:'perishable_class_oid' => :'Integer',
|
|
@@ -434,6 +439,10 @@ module UltracartClient
|
|
|
434
439
|
self.no_shipping_discount = attributes[:'no_shipping_discount']
|
|
435
440
|
end
|
|
436
441
|
|
|
442
|
+
if attributes.key?(:'one_line_per_unit')
|
|
443
|
+
self.one_line_per_unit = attributes[:'one_line_per_unit']
|
|
444
|
+
end
|
|
445
|
+
|
|
437
446
|
if attributes.key?(:'package_requirements')
|
|
438
447
|
if (value = attributes[:'package_requirements']).is_a?(Array)
|
|
439
448
|
self.package_requirements = value
|
|
@@ -584,6 +593,7 @@ module UltracartClient
|
|
|
584
593
|
max_days_time_in_transit == o.max_days_time_in_transit &&
|
|
585
594
|
methods == o.methods &&
|
|
586
595
|
no_shipping_discount == o.no_shipping_discount &&
|
|
596
|
+
one_line_per_unit == o.one_line_per_unit &&
|
|
587
597
|
package_requirements == o.package_requirements &&
|
|
588
598
|
perishable_class_name == o.perishable_class_name &&
|
|
589
599
|
perishable_class_oid == o.perishable_class_oid &&
|
|
@@ -616,7 +626,7 @@ module UltracartClient
|
|
|
616
626
|
# Calculates hash code according to all attributes.
|
|
617
627
|
# @return [Integer] Hash code
|
|
618
628
|
def hash
|
|
619
|
-
[allow_back_order, amazon_fba, case_inner_packs, case_units, cases, collect_serial_numbers, country_code_of_origin, customs_description, customs_value, delivery_on_friday, delivery_on_monday, delivery_on_saturday, delivery_on_sunday, delivery_on_thursday, delivery_on_tuesday, delivery_on_wednesday, destination_markups, destination_restrictions, distribution_centers, eta, free_shipping, freight_class, hazmat, hold_for_transmission, include_on_packing_slip, made_to_order, made_to_order_lead_time, max_days_time_in_transit, methods, no_shipping_discount, package_requirements, perishable_class_name, perishable_class_oid, preorder, require_delivery_date, restrict_shipment_on_friday, restrict_shipment_on_monday, restrict_shipment_on_saturday, restrict_shipment_on_sunday, restrict_shipment_on_thursday, restrict_shipment_on_tuesday, restrict_shipment_on_wednesday, send_to_hold_before_fulfillment, ship_separately, ship_separately_additional_weight, ship_separately_height, ship_separately_length, ship_separately_package_special_type, ship_separately_width, special_product_type, track_inventory].hash
|
|
629
|
+
[allow_back_order, amazon_fba, case_inner_packs, case_units, cases, collect_serial_numbers, country_code_of_origin, customs_description, customs_value, delivery_on_friday, delivery_on_monday, delivery_on_saturday, delivery_on_sunday, delivery_on_thursday, delivery_on_tuesday, delivery_on_wednesday, destination_markups, destination_restrictions, distribution_centers, eta, free_shipping, freight_class, hazmat, hold_for_transmission, include_on_packing_slip, made_to_order, made_to_order_lead_time, max_days_time_in_transit, methods, no_shipping_discount, one_line_per_unit, package_requirements, perishable_class_name, perishable_class_oid, preorder, require_delivery_date, restrict_shipment_on_friday, restrict_shipment_on_monday, restrict_shipment_on_saturday, restrict_shipment_on_sunday, restrict_shipment_on_thursday, restrict_shipment_on_tuesday, restrict_shipment_on_wednesday, send_to_hold_before_fulfillment, ship_separately, ship_separately_additional_weight, ship_separately_height, ship_separately_length, ship_separately_package_special_type, ship_separately_width, special_product_type, track_inventory].hash
|
|
620
630
|
end
|
|
621
631
|
|
|
622
632
|
# 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: 4.1.
|
|
4
|
+
version: 4.1.79
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|