ultracart_api 3.10.42 → 3.10.43
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 +5 -4
- data/docs/CustomerEditorValues.md +1 -0
- data/lib/ultracart_api/models/customer_editor_values.rb +13 -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: 943409e2cf0d7ab590a3e2285bf09eca4c40b1e61ade3859197cd25a8b265779
|
4
|
+
data.tar.gz: 519dbd467596da5075ba1a37531db604a9284e8bfde6c297cfbaf849367833f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b53298f0c4083caf61214afb77d06640ca48f50445aa0d1cdb72da3b7f601694e3ac5eb34f02241f9064b5b1599f9ee58a214f0a3e1fd258951818a907d388aa
|
7
|
+
data.tar.gz: c8c221b8a619cf88772f0d03a12955cbf94e1314e7160d09e0225dfbdf5076de210ed55fb2cff8d9bcec286aa9a73a7ccc36f28a0a3f8a12201589961061cc45
|
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.10.
|
10
|
+
- Package version: 3.10.43
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
|
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.10.
|
27
|
+
gem install ./ultracart_api-3.10.43.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.10.
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.10.43.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.10.
|
35
|
+
gem 'ultracart_api', '~> 3.10.43'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1179,6 +1179,7 @@ Not every change is committed to every SDK.
|
|
1179
1179
|
|
1180
1180
|
| Version | Date | Comments |
|
1181
1181
|
| --: | :-: | --- |
|
1182
|
+
| 3.10.43 | 09/02/2022 | customer editor added loyal ledger descriptions |
|
1182
1183
|
| 3.10.42 | 08/30/2022 | storefront comm fields for sms configuration |
|
1183
1184
|
| 3.10.41 | 08/26/2022 | postcard address fields for comm sequence testing |
|
1184
1185
|
| 3.10.40 | 08/22/2022 | exposing individual reviews within item.review object |
|
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
|
|
8
8
|
**card_exp_years** | **Array<String>** | card_exp_years | [optional]
|
9
9
|
**card_types** | **Array<String>** | card_types | [optional]
|
10
10
|
**countries** | [**Array<Country>**](Country.md) | countries | [optional]
|
11
|
+
**loyalty_ledger_descriptions** | **Array<String>** | loyalty_ledger_descriptions | [optional]
|
11
12
|
**loyalty_program_type** | **String** | loyalty_program_type | [optional]
|
12
13
|
**qb_classes** | **Array<String>** | qb_classes | [optional]
|
13
14
|
**sales_rep_codes** | **Array<String>** | sales_rep_codes | [optional]
|
@@ -29,6 +29,9 @@ module UltracartClient
|
|
29
29
|
# countries
|
30
30
|
attr_accessor :countries
|
31
31
|
|
32
|
+
# loyalty_ledger_descriptions
|
33
|
+
attr_accessor :loyalty_ledger_descriptions
|
34
|
+
|
32
35
|
# loyalty_program_type
|
33
36
|
attr_accessor :loyalty_program_type
|
34
37
|
|
@@ -52,6 +55,7 @@ module UltracartClient
|
|
52
55
|
:'card_exp_years' => :'card_exp_years',
|
53
56
|
:'card_types' => :'card_types',
|
54
57
|
:'countries' => :'countries',
|
58
|
+
:'loyalty_ledger_descriptions' => :'loyalty_ledger_descriptions',
|
55
59
|
:'loyalty_program_type' => :'loyalty_program_type',
|
56
60
|
:'qb_classes' => :'qb_classes',
|
57
61
|
:'sales_rep_codes' => :'sales_rep_codes',
|
@@ -68,6 +72,7 @@ module UltracartClient
|
|
68
72
|
:'card_exp_years' => :'Array<String>',
|
69
73
|
:'card_types' => :'Array<String>',
|
70
74
|
:'countries' => :'Array<Country>',
|
75
|
+
:'loyalty_ledger_descriptions' => :'Array<String>',
|
71
76
|
:'loyalty_program_type' => :'String',
|
72
77
|
:'qb_classes' => :'Array<String>',
|
73
78
|
:'sales_rep_codes' => :'Array<String>',
|
@@ -114,6 +119,12 @@ module UltracartClient
|
|
114
119
|
end
|
115
120
|
end
|
116
121
|
|
122
|
+
if attributes.has_key?(:'loyalty_ledger_descriptions')
|
123
|
+
if (value = attributes[:'loyalty_ledger_descriptions']).is_a?(Array)
|
124
|
+
self.loyalty_ledger_descriptions = value
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
117
128
|
if attributes.has_key?(:'loyalty_program_type')
|
118
129
|
self.loyalty_program_type = attributes[:'loyalty_program_type']
|
119
130
|
end
|
@@ -166,6 +177,7 @@ module UltracartClient
|
|
166
177
|
card_exp_years == o.card_exp_years &&
|
167
178
|
card_types == o.card_types &&
|
168
179
|
countries == o.countries &&
|
180
|
+
loyalty_ledger_descriptions == o.loyalty_ledger_descriptions &&
|
169
181
|
loyalty_program_type == o.loyalty_program_type &&
|
170
182
|
qb_classes == o.qb_classes &&
|
171
183
|
sales_rep_codes == o.sales_rep_codes &&
|
@@ -182,7 +194,7 @@ module UltracartClient
|
|
182
194
|
# Calculates hash code according to all attributes.
|
183
195
|
# @return [Fixnum] Hash code
|
184
196
|
def hash
|
185
|
-
[affiliates, card_exp_months, card_exp_years, card_types, countries, loyalty_program_type, qb_classes, sales_rep_codes, state_optional_countries, terms].hash
|
197
|
+
[affiliates, card_exp_months, card_exp_years, card_types, countries, loyalty_ledger_descriptions, loyalty_program_type, qb_classes, sales_rep_codes, state_optional_countries, terms].hash
|
186
198
|
end
|
187
199
|
|
188
200
|
# 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.10.
|
4
|
+
version: 3.10.43
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|