ultracart_api 4.1.63 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c5f1c846344132f6391610f68da28a977ac65b36592a5c93b62cf047ed37d768
4
- data.tar.gz: 81f57162066164f0f8aa72c436d2e3134776f80faf8b98aefd7de9514c796d48
3
+ metadata.gz: 655af0146cd5eb7b1a2b6f013b04c0d797105f3ea034b25ebd2e3fa4b2e6575e
4
+ data.tar.gz: 72c124bea20fd79520e362ebbdaedfd0d95ad8c351f1dee5c2607a559ad96f92
5
5
  SHA512:
6
- metadata.gz: 7a8014610ea5517333e6bdf6220575bc156cbfb9f016266019b8dfb62a35d34e28f2e614efacc8350689231497f0331adbe7d730b79203dbc137e27ec60c7911
7
- data.tar.gz: 8c6919768a506888ca7487bc48992f3ab75470246f1327e04a4d5401f60c8710f45f0576c8208f430bf6d6d4dfb2d884eef096d845c5a379ba47f20a5d3ef5ac
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.63
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.63'
19
+ gem 'ultracart_api', '4.1.65'
20
20
  ```
21
21
 
22
22
  install:
@@ -1679,6 +1679,8 @@ 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 |
1683
+ | 4.1.64 | 02/16/2026 | conversation - fix pbx call transcript segment speaker enum for leading space |
1682
1684
  | 4.1.63 | 02/12/2026 | build automation issue |
1683
1685
  | 4.1.62 | 02/12/2026 | build automation run, no code changes |
1684
1686
  | 4.1.61 | 02/12/2026 | order - methods to release held orders |
@@ -6,8 +6,10 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **description** | **String** | Description | [optional] |
8
8
  | **merchant_item_multimedia_oid** | **Integer** | Multimedia object identifier | [optional] |
9
+ | **variant_default_multimedia** | [**ItemContentMultimedia**](ItemContentMultimedia.md) | | [optional] |
9
10
  | **variant_merchant_item_id** | **String** | Variant item id | [optional] |
10
11
  | **variant_merchant_item_oid** | **Integer** | Variant item object identifier | [optional] |
12
+ | **variant_pricing** | [**ItemPricing**](ItemPricing.md) | | [optional] |
11
13
  | **variation_options** | **Array<String>** | Variation options | [optional] |
12
14
  | **variations** | **Array<String>** | Variations | [optional] |
13
15
 
@@ -19,8 +21,10 @@ require 'ultracart_api'
19
21
  instance = UltracartClient::ItemVariantItem.new(
20
22
  description: null,
21
23
  merchant_item_multimedia_oid: null,
24
+ variant_default_multimedia: null,
22
25
  variant_merchant_item_id: null,
23
26
  variant_merchant_item_oid: null,
27
+ variant_pricing: null,
24
28
  variation_options: null,
25
29
  variations: null
26
30
  )
@@ -149,7 +149,7 @@ module UltracartClient
149
149
  # Check to see if the all the properties in the model are valid
150
150
  # @return true if the model is valid
151
151
  def valid?
152
- speaker_validator = EnumAttributeValidator.new('String', ["customer", " agent"])
152
+ speaker_validator = EnumAttributeValidator.new('String', ["customer", "agent"])
153
153
  return false unless speaker_validator.valid?(@speaker)
154
154
  true
155
155
  end
@@ -157,7 +157,7 @@ module UltracartClient
157
157
  # Custom attribute writer method checking allowed values (enum).
158
158
  # @param [Object] speaker Object to be assigned
159
159
  def speaker=(speaker)
160
- validator = EnumAttributeValidator.new('String', ["customer", " agent"])
160
+ validator = EnumAttributeValidator.new('String', ["customer", "agent"])
161
161
  unless validator.valid?(speaker)
162
162
  fail ArgumentError, "invalid value for \"speaker\", must be one of #{validator.allowable_values}."
163
163
  end
@@ -21,12 +21,16 @@ module UltracartClient
21
21
  # Multimedia object identifier
22
22
  attr_accessor :merchant_item_multimedia_oid
23
23
 
24
+ attr_accessor :variant_default_multimedia
25
+
24
26
  # Variant item id
25
27
  attr_accessor :variant_merchant_item_id
26
28
 
27
29
  # Variant item object identifier
28
30
  attr_accessor :variant_merchant_item_oid
29
31
 
32
+ attr_accessor :variant_pricing
33
+
30
34
  # Variation options
31
35
  attr_accessor :variation_options
32
36
 
@@ -38,8 +42,10 @@ module UltracartClient
38
42
  {
39
43
  :'description' => :'description',
40
44
  :'merchant_item_multimedia_oid' => :'merchant_item_multimedia_oid',
45
+ :'variant_default_multimedia' => :'variant_default_multimedia',
41
46
  :'variant_merchant_item_id' => :'variant_merchant_item_id',
42
47
  :'variant_merchant_item_oid' => :'variant_merchant_item_oid',
48
+ :'variant_pricing' => :'variant_pricing',
43
49
  :'variation_options' => :'variation_options',
44
50
  :'variations' => :'variations'
45
51
  }
@@ -55,8 +61,10 @@ module UltracartClient
55
61
  {
56
62
  :'description' => :'String',
57
63
  :'merchant_item_multimedia_oid' => :'Integer',
64
+ :'variant_default_multimedia' => :'ItemContentMultimedia',
58
65
  :'variant_merchant_item_id' => :'String',
59
66
  :'variant_merchant_item_oid' => :'Integer',
67
+ :'variant_pricing' => :'ItemPricing',
60
68
  :'variation_options' => :'Array<String>',
61
69
  :'variations' => :'Array<String>'
62
70
  }
@@ -91,6 +99,10 @@ module UltracartClient
91
99
  self.merchant_item_multimedia_oid = attributes[:'merchant_item_multimedia_oid']
92
100
  end
93
101
 
102
+ if attributes.key?(:'variant_default_multimedia')
103
+ self.variant_default_multimedia = attributes[:'variant_default_multimedia']
104
+ end
105
+
94
106
  if attributes.key?(:'variant_merchant_item_id')
95
107
  self.variant_merchant_item_id = attributes[:'variant_merchant_item_id']
96
108
  end
@@ -99,6 +111,10 @@ module UltracartClient
99
111
  self.variant_merchant_item_oid = attributes[:'variant_merchant_item_oid']
100
112
  end
101
113
 
114
+ if attributes.key?(:'variant_pricing')
115
+ self.variant_pricing = attributes[:'variant_pricing']
116
+ end
117
+
102
118
  if attributes.key?(:'variation_options')
103
119
  if (value = attributes[:'variation_options']).is_a?(Array)
104
120
  self.variation_options = value
@@ -147,8 +163,10 @@ module UltracartClient
147
163
  self.class == o.class &&
148
164
  description == o.description &&
149
165
  merchant_item_multimedia_oid == o.merchant_item_multimedia_oid &&
166
+ variant_default_multimedia == o.variant_default_multimedia &&
150
167
  variant_merchant_item_id == o.variant_merchant_item_id &&
151
168
  variant_merchant_item_oid == o.variant_merchant_item_oid &&
169
+ variant_pricing == o.variant_pricing &&
152
170
  variation_options == o.variation_options &&
153
171
  variations == o.variations
154
172
  end
@@ -162,7 +180,7 @@ module UltracartClient
162
180
  # Calculates hash code according to all attributes.
163
181
  # @return [Integer] Hash code
164
182
  def hash
165
- [description, merchant_item_multimedia_oid, 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
166
184
  end
167
185
 
168
186
  # 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.1.63'
14
+ VERSION = '4.1.65'
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.1.63
4
+ version: 4.1.65
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-02-12 00:00:00.000000000 Z
11
+ date: 2026-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus