ultracart_api 3.11.63 → 3.11.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 90208014dce9a0767e4b640f672f157b7a41da2ebc27e52266958a5ffd97cc34
|
|
4
|
+
data.tar.gz: 9e985b28be2f595ebf47721ffc8b6e2877caa4c07ecc463f1b12bd39fa056f9b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 051c54d074809ff01a79f94c2f1e291c0a77fd0275915772da01ba87d5f104cf8b29392e01358e69980a338d2649007c36eb0bdeae81af9993ef3a07dd3f740e
|
|
7
|
+
data.tar.gz: 5fcc8378a16154ce75c78322331e1b4a3c2eb085a6184fd5926912f74b5630be03a0f53116da9b02828296a6fb2430bf4a4fae2fb1fe2b584998ef12f4692100
|
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.11.
|
|
10
|
+
- Package version: 3.11.64
|
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
|
|
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.11.
|
|
27
|
+
gem install ./ultracart_api-3.11.64.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.11.
|
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.11.64.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.11.
|
|
35
|
+
gem 'ultracart_api', '~> 3.11.64'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1681,6 +1681,7 @@ Not every change is committed to every SDK.
|
|
|
1681
1681
|
|
|
1682
1682
|
| Version | Date | Comments |
|
|
1683
1683
|
| --: | :-: | --- |
|
|
1684
|
+
| 3.11.64 | 02/16/2026 | conversation - fix pbx call transcript segment speaker enum for leading space |
|
|
1684
1685
|
| 3.11.63 | 02/12/2026 | build automation issue |
|
|
1685
1686
|
| 3.11.62 | 02/12/2026 | build automation run, no code changes |
|
|
1686
1687
|
| 3.11.61 | 02/12/2026 | order - methods to release held orders |
|
data/docs/ItemVariantItem.md
CHANGED
|
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
|
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
6
|
**description** | **String** | Description | [optional]
|
|
7
7
|
**merchant_item_multimedia_oid** | **Integer** | Multimedia object identifier | [optional]
|
|
8
|
+
**variant_default_multimedia** | [**ItemContentMultimedia**](ItemContentMultimedia.md) | | [optional]
|
|
8
9
|
**variant_merchant_item_id** | **String** | Variant item id | [optional]
|
|
9
10
|
**variant_merchant_item_oid** | **Integer** | Variant item object identifier | [optional]
|
|
10
11
|
**variation_options** | **Array<String>** | Variation options | [optional]
|
|
@@ -130,7 +130,7 @@ module UltracartClient
|
|
|
130
130
|
# Check to see if the all the properties in the model are valid
|
|
131
131
|
# @return true if the model is valid
|
|
132
132
|
def valid?
|
|
133
|
-
speaker_validator = EnumAttributeValidator.new('String', ['customer', '
|
|
133
|
+
speaker_validator = EnumAttributeValidator.new('String', ['customer', 'agent'])
|
|
134
134
|
return false unless speaker_validator.valid?(@speaker)
|
|
135
135
|
true
|
|
136
136
|
end
|
|
@@ -138,7 +138,7 @@ module UltracartClient
|
|
|
138
138
|
# Custom attribute writer method checking allowed values (enum).
|
|
139
139
|
# @param [Object] speaker Object to be assigned
|
|
140
140
|
def speaker=(speaker)
|
|
141
|
-
validator = EnumAttributeValidator.new('String', ['customer', '
|
|
141
|
+
validator = EnumAttributeValidator.new('String', ['customer', 'agent'])
|
|
142
142
|
unless validator.valid?(speaker)
|
|
143
143
|
fail ArgumentError, 'invalid value for "speaker", must be one of #{validator.allowable_values}.'
|
|
144
144
|
end
|
|
@@ -20,6 +20,8 @@ module UltracartClient
|
|
|
20
20
|
# Multimedia object identifier
|
|
21
21
|
attr_accessor :merchant_item_multimedia_oid
|
|
22
22
|
|
|
23
|
+
attr_accessor :variant_default_multimedia
|
|
24
|
+
|
|
23
25
|
# Variant item id
|
|
24
26
|
attr_accessor :variant_merchant_item_id
|
|
25
27
|
|
|
@@ -37,6 +39,7 @@ module UltracartClient
|
|
|
37
39
|
{
|
|
38
40
|
:'description' => :'description',
|
|
39
41
|
:'merchant_item_multimedia_oid' => :'merchant_item_multimedia_oid',
|
|
42
|
+
:'variant_default_multimedia' => :'variant_default_multimedia',
|
|
40
43
|
:'variant_merchant_item_id' => :'variant_merchant_item_id',
|
|
41
44
|
:'variant_merchant_item_oid' => :'variant_merchant_item_oid',
|
|
42
45
|
:'variation_options' => :'variation_options',
|
|
@@ -49,6 +52,7 @@ module UltracartClient
|
|
|
49
52
|
{
|
|
50
53
|
:'description' => :'String',
|
|
51
54
|
:'merchant_item_multimedia_oid' => :'Integer',
|
|
55
|
+
:'variant_default_multimedia' => :'ItemContentMultimedia',
|
|
52
56
|
:'variant_merchant_item_id' => :'String',
|
|
53
57
|
:'variant_merchant_item_oid' => :'Integer',
|
|
54
58
|
:'variation_options' => :'Array<String>',
|
|
@@ -72,6 +76,10 @@ module UltracartClient
|
|
|
72
76
|
self.merchant_item_multimedia_oid = attributes[:'merchant_item_multimedia_oid']
|
|
73
77
|
end
|
|
74
78
|
|
|
79
|
+
if attributes.has_key?(:'variant_default_multimedia')
|
|
80
|
+
self.variant_default_multimedia = attributes[:'variant_default_multimedia']
|
|
81
|
+
end
|
|
82
|
+
|
|
75
83
|
if attributes.has_key?(:'variant_merchant_item_id')
|
|
76
84
|
self.variant_merchant_item_id = attributes[:'variant_merchant_item_id']
|
|
77
85
|
end
|
|
@@ -128,6 +136,7 @@ module UltracartClient
|
|
|
128
136
|
self.class == o.class &&
|
|
129
137
|
description == o.description &&
|
|
130
138
|
merchant_item_multimedia_oid == o.merchant_item_multimedia_oid &&
|
|
139
|
+
variant_default_multimedia == o.variant_default_multimedia &&
|
|
131
140
|
variant_merchant_item_id == o.variant_merchant_item_id &&
|
|
132
141
|
variant_merchant_item_oid == o.variant_merchant_item_oid &&
|
|
133
142
|
variation_options == o.variation_options &&
|
|
@@ -143,7 +152,7 @@ module UltracartClient
|
|
|
143
152
|
# Calculates hash code according to all attributes.
|
|
144
153
|
# @return [Fixnum] Hash code
|
|
145
154
|
def hash
|
|
146
|
-
[description, merchant_item_multimedia_oid, variant_merchant_item_id, variant_merchant_item_oid, variation_options, variations].hash
|
|
155
|
+
[description, merchant_item_multimedia_oid, variant_default_multimedia, variant_merchant_item_id, variant_merchant_item_oid, variation_options, variations].hash
|
|
147
156
|
end
|
|
148
157
|
|
|
149
158
|
# 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.11.
|
|
4
|
+
version: 3.11.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-
|
|
11
|
+
date: 2026-02-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|