ultracart_api 4.1.64 → 4.1.65
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/ItemVariantItem.md +2 -0
- data/lib/ultracart_api/models/item_variant_item.rb +10 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 655af0146cd5eb7b1a2b6f013b04c0d797105f3ea034b25ebd2e3fa4b2e6575e
|
|
4
|
+
data.tar.gz: 72c124bea20fd79520e362ebbdaedfd0d95ad8c351f1dee5c2607a559ad96f92
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2cc48b1be9d8ff0c8bf299e586a5a4443088645647c3055e46a37b5832e89cffe17ca328f3f8effa004508ad2294f1c18874e377058aa5418d2624722dbb878e
|
|
7
|
+
data.tar.gz: 02dff513ecbc1051006a349d134b7690c6a19db0033a3da1460557910beaef011dbd67fdac6807d0c0b05dc26873fb3a7aa9b35b76c1a910beddaf2f3bf6d9f7
|
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.65
|
|
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.65'
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
install:
|
|
@@ -1679,6 +1679,7 @@ Not every change is committed to every SDK.
|
|
|
1679
1679
|
|
|
1680
1680
|
| Version | Date | Comments |
|
|
1681
1681
|
| --: | :-: | --- |
|
|
1682
|
+
| 4.1.65 | 02/16/2026 | item - include variant pricing in the response |
|
|
1682
1683
|
| 4.1.64 | 02/16/2026 | conversation - fix pbx call transcript segment speaker enum for leading space |
|
|
1683
1684
|
| 4.1.63 | 02/12/2026 | build automation issue |
|
|
1684
1685
|
| 4.1.62 | 02/12/2026 | build automation run, no code changes |
|
data/docs/ItemVariantItem.md
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
| **variant_default_multimedia** | [**ItemContentMultimedia**](ItemContentMultimedia.md) | | [optional] |
|
|
10
10
|
| **variant_merchant_item_id** | **String** | Variant item id | [optional] |
|
|
11
11
|
| **variant_merchant_item_oid** | **Integer** | Variant item object identifier | [optional] |
|
|
12
|
+
| **variant_pricing** | [**ItemPricing**](ItemPricing.md) | | [optional] |
|
|
12
13
|
| **variation_options** | **Array<String>** | Variation options | [optional] |
|
|
13
14
|
| **variations** | **Array<String>** | Variations | [optional] |
|
|
14
15
|
|
|
@@ -23,6 +24,7 @@ instance = UltracartClient::ItemVariantItem.new(
|
|
|
23
24
|
variant_default_multimedia: null,
|
|
24
25
|
variant_merchant_item_id: null,
|
|
25
26
|
variant_merchant_item_oid: null,
|
|
27
|
+
variant_pricing: null,
|
|
26
28
|
variation_options: null,
|
|
27
29
|
variations: null
|
|
28
30
|
)
|
|
@@ -29,6 +29,8 @@ module UltracartClient
|
|
|
29
29
|
# Variant item object identifier
|
|
30
30
|
attr_accessor :variant_merchant_item_oid
|
|
31
31
|
|
|
32
|
+
attr_accessor :variant_pricing
|
|
33
|
+
|
|
32
34
|
# Variation options
|
|
33
35
|
attr_accessor :variation_options
|
|
34
36
|
|
|
@@ -43,6 +45,7 @@ module UltracartClient
|
|
|
43
45
|
:'variant_default_multimedia' => :'variant_default_multimedia',
|
|
44
46
|
:'variant_merchant_item_id' => :'variant_merchant_item_id',
|
|
45
47
|
:'variant_merchant_item_oid' => :'variant_merchant_item_oid',
|
|
48
|
+
:'variant_pricing' => :'variant_pricing',
|
|
46
49
|
:'variation_options' => :'variation_options',
|
|
47
50
|
:'variations' => :'variations'
|
|
48
51
|
}
|
|
@@ -61,6 +64,7 @@ module UltracartClient
|
|
|
61
64
|
:'variant_default_multimedia' => :'ItemContentMultimedia',
|
|
62
65
|
:'variant_merchant_item_id' => :'String',
|
|
63
66
|
:'variant_merchant_item_oid' => :'Integer',
|
|
67
|
+
:'variant_pricing' => :'ItemPricing',
|
|
64
68
|
:'variation_options' => :'Array<String>',
|
|
65
69
|
:'variations' => :'Array<String>'
|
|
66
70
|
}
|
|
@@ -107,6 +111,10 @@ module UltracartClient
|
|
|
107
111
|
self.variant_merchant_item_oid = attributes[:'variant_merchant_item_oid']
|
|
108
112
|
end
|
|
109
113
|
|
|
114
|
+
if attributes.key?(:'variant_pricing')
|
|
115
|
+
self.variant_pricing = attributes[:'variant_pricing']
|
|
116
|
+
end
|
|
117
|
+
|
|
110
118
|
if attributes.key?(:'variation_options')
|
|
111
119
|
if (value = attributes[:'variation_options']).is_a?(Array)
|
|
112
120
|
self.variation_options = value
|
|
@@ -158,6 +166,7 @@ module UltracartClient
|
|
|
158
166
|
variant_default_multimedia == o.variant_default_multimedia &&
|
|
159
167
|
variant_merchant_item_id == o.variant_merchant_item_id &&
|
|
160
168
|
variant_merchant_item_oid == o.variant_merchant_item_oid &&
|
|
169
|
+
variant_pricing == o.variant_pricing &&
|
|
161
170
|
variation_options == o.variation_options &&
|
|
162
171
|
variations == o.variations
|
|
163
172
|
end
|
|
@@ -171,7 +180,7 @@ module UltracartClient
|
|
|
171
180
|
# Calculates hash code according to all attributes.
|
|
172
181
|
# @return [Integer] Hash code
|
|
173
182
|
def hash
|
|
174
|
-
[description, merchant_item_multimedia_oid, variant_default_multimedia, variant_merchant_item_id, variant_merchant_item_oid, variation_options, variations].hash
|
|
183
|
+
[description, merchant_item_multimedia_oid, variant_default_multimedia, variant_merchant_item_id, variant_merchant_item_oid, variant_pricing, variation_options, variations].hash
|
|
175
184
|
end
|
|
176
185
|
|
|
177
186
|
# Builds the object from hash
|