ultracart_api 4.1.63 → 4.1.64

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: 4b6c677667bd4480ac2853432ee53d26c4da4d1543a3f7d6857d670553943d9f
4
+ data.tar.gz: ceb836d197d9dc9e9cb7a35ce59e2a303e31e9b1246b35fc367b2c253f02dfe4
5
5
  SHA512:
6
- metadata.gz: 7a8014610ea5517333e6bdf6220575bc156cbfb9f016266019b8dfb62a35d34e28f2e614efacc8350689231497f0331adbe7d730b79203dbc137e27ec60c7911
7
- data.tar.gz: 8c6919768a506888ca7487bc48992f3ab75470246f1327e04a4d5401f60c8710f45f0576c8208f430bf6d6d4dfb2d884eef096d845c5a379ba47f20a5d3ef5ac
6
+ metadata.gz: 938e47b6a2c8734ae9a298d260eabbdad5b36eb21fa1a8ca619e7965238f318ccd5e919e20c0076700458ec9b99ca8460046f54d864dad671bb7dfef11b1f478
7
+ data.tar.gz: 71943f44fa1e9295b63fb3c74896b030c38a84fe4b18e151cc0d023c66a5f0f1977872542a5820563a3773fc2ac15f63f53320b7c268bd1837a8e1c7dd6a53ca
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.64
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.64'
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.64 | 02/16/2026 | conversation - fix pbx call transcript segment speaker enum for leading space |
1682
1683
  | 4.1.63 | 02/12/2026 | build automation issue |
1683
1684
  | 4.1.62 | 02/12/2026 | build automation run, no code changes |
1684
1685
  | 4.1.61 | 02/12/2026 | order - methods to release held orders |
@@ -6,6 +6,7 @@
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] |
11
12
  | **variation_options** | **Array<String>** | Variation options | [optional] |
@@ -19,6 +20,7 @@ require 'ultracart_api'
19
20
  instance = UltracartClient::ItemVariantItem.new(
20
21
  description: null,
21
22
  merchant_item_multimedia_oid: null,
23
+ variant_default_multimedia: null,
22
24
  variant_merchant_item_id: null,
23
25
  variant_merchant_item_oid: null,
24
26
  variation_options: null,
@@ -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,6 +21,8 @@ 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
 
@@ -38,6 +40,7 @@ module UltracartClient
38
40
  {
39
41
  :'description' => :'description',
40
42
  :'merchant_item_multimedia_oid' => :'merchant_item_multimedia_oid',
43
+ :'variant_default_multimedia' => :'variant_default_multimedia',
41
44
  :'variant_merchant_item_id' => :'variant_merchant_item_id',
42
45
  :'variant_merchant_item_oid' => :'variant_merchant_item_oid',
43
46
  :'variation_options' => :'variation_options',
@@ -55,6 +58,7 @@ module UltracartClient
55
58
  {
56
59
  :'description' => :'String',
57
60
  :'merchant_item_multimedia_oid' => :'Integer',
61
+ :'variant_default_multimedia' => :'ItemContentMultimedia',
58
62
  :'variant_merchant_item_id' => :'String',
59
63
  :'variant_merchant_item_oid' => :'Integer',
60
64
  :'variation_options' => :'Array<String>',
@@ -91,6 +95,10 @@ module UltracartClient
91
95
  self.merchant_item_multimedia_oid = attributes[:'merchant_item_multimedia_oid']
92
96
  end
93
97
 
98
+ if attributes.key?(:'variant_default_multimedia')
99
+ self.variant_default_multimedia = attributes[:'variant_default_multimedia']
100
+ end
101
+
94
102
  if attributes.key?(:'variant_merchant_item_id')
95
103
  self.variant_merchant_item_id = attributes[:'variant_merchant_item_id']
96
104
  end
@@ -147,6 +155,7 @@ module UltracartClient
147
155
  self.class == o.class &&
148
156
  description == o.description &&
149
157
  merchant_item_multimedia_oid == o.merchant_item_multimedia_oid &&
158
+ variant_default_multimedia == o.variant_default_multimedia &&
150
159
  variant_merchant_item_id == o.variant_merchant_item_id &&
151
160
  variant_merchant_item_oid == o.variant_merchant_item_oid &&
152
161
  variation_options == o.variation_options &&
@@ -162,7 +171,7 @@ module UltracartClient
162
171
  # Calculates hash code according to all attributes.
163
172
  # @return [Integer] Hash code
164
173
  def hash
165
- [description, merchant_item_multimedia_oid, variant_merchant_item_id, variant_merchant_item_oid, variation_options, variations].hash
174
+ [description, merchant_item_multimedia_oid, variant_default_multimedia, variant_merchant_item_id, variant_merchant_item_oid, variation_options, variations].hash
166
175
  end
167
176
 
168
177
  # 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.64'
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.64
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