ultracart_api 4.0.59.rc → 4.0.60.rc
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 +2 -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: 261fc0f7647c885bfe5e3441803dcd3ee3669b3681f033712659a90d46db0a1b
|
|
4
|
+
data.tar.gz: a2360ff50b965ca8bbbd3ab7f35dd01ab2e799b04b799c228b9e25e8db1a5feb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8cf596bdb392ac3ff9a80cf4fde5bc918db647d68e4f48a1b7dff4bc12bcef41ceb47ecc817923b00f76983b1d668ce373c03c5d5fdac759f18d82b9f2fec02
|
|
7
|
+
data.tar.gz: 89cb12a031838e43525266c1723a68fb2bca22c2d5e15965f0653b8286c9a5dad121d98f2371cdca34d9d2aa51e36b70162bddee139e935e3e121ee8abbb99fc
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
|
|
|
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.0.
|
|
10
|
+
- Package version: 4.0.60.rc
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
|
|
13
13
|
|
|
@@ -24,16 +24,16 @@ gem build ultracart_api.gemspec
|
|
|
24
24
|
Then either install the gem locally:
|
|
25
25
|
|
|
26
26
|
```shell
|
|
27
|
-
gem install ./ultracart_api-4.0.
|
|
27
|
+
gem install ./ultracart_api-4.0.60.rc.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./ultracart_api-4.0.
|
|
30
|
+
(for development, run `gem install --dev ./ultracart_api-4.0.60.rc.gem` to install the development dependencies)
|
|
31
31
|
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
33
33
|
|
|
34
34
|
Finally add this to the Gemfile:
|
|
35
35
|
|
|
36
|
-
gem 'ultracart_api', '~> 4.0.
|
|
36
|
+
gem 'ultracart_api', '~> 4.0.60.rc'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -1188,6 +1188,7 @@ Not every change is committed to every SDK.
|
|
|
1188
1188
|
|
|
1189
1189
|
| Version | Date | Comments |
|
|
1190
1190
|
| --: | :-: | --- |
|
|
1191
|
+
| 4.0.60-RC | 09/02/2022 | customer editor added loyal ledger descriptions |
|
|
1191
1192
|
| 4.0.59-RC | 08/30/2022 | storefront comm fields for sms configuration |
|
|
1192
1193
|
| 4.0.58-RC | 08/26/2022 | postcard address fields for comm sequence testing |
|
|
1193
1194
|
| 4.0.57-RC | 08/22/2022 | exposing individual reviews within item.review object |
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
| **card_exp_years** | **Array<String>** | card_exp_years | [optional] |
|
|
10
10
|
| **card_types** | **Array<String>** | card_types | [optional] |
|
|
11
11
|
| **countries** | [**Array<Country>**](Country.md) | countries | [optional] |
|
|
12
|
+
| **loyalty_ledger_descriptions** | **Array<String>** | loyalty_ledger_descriptions | [optional] |
|
|
12
13
|
| **loyalty_program_type** | **String** | loyalty_program_type | [optional] |
|
|
13
14
|
| **qb_classes** | **Array<String>** | qb_classes | [optional] |
|
|
14
15
|
| **sales_rep_codes** | **Array<String>** | sales_rep_codes | [optional] |
|
|
@@ -26,6 +27,7 @@ instance = UltracartClient::CustomerEditorValues.new(
|
|
|
26
27
|
card_exp_years: null,
|
|
27
28
|
card_types: null,
|
|
28
29
|
countries: null,
|
|
30
|
+
loyalty_ledger_descriptions: null,
|
|
29
31
|
loyalty_program_type: null,
|
|
30
32
|
qb_classes: null,
|
|
31
33
|
sales_rep_codes: null,
|
|
@@ -30,6 +30,9 @@ module UltracartClient
|
|
|
30
30
|
# countries
|
|
31
31
|
attr_accessor :countries
|
|
32
32
|
|
|
33
|
+
# loyalty_ledger_descriptions
|
|
34
|
+
attr_accessor :loyalty_ledger_descriptions
|
|
35
|
+
|
|
33
36
|
# loyalty_program_type
|
|
34
37
|
attr_accessor :loyalty_program_type
|
|
35
38
|
|
|
@@ -53,6 +56,7 @@ module UltracartClient
|
|
|
53
56
|
:'card_exp_years' => :'card_exp_years',
|
|
54
57
|
:'card_types' => :'card_types',
|
|
55
58
|
:'countries' => :'countries',
|
|
59
|
+
:'loyalty_ledger_descriptions' => :'loyalty_ledger_descriptions',
|
|
56
60
|
:'loyalty_program_type' => :'loyalty_program_type',
|
|
57
61
|
:'qb_classes' => :'qb_classes',
|
|
58
62
|
:'sales_rep_codes' => :'sales_rep_codes',
|
|
@@ -74,6 +78,7 @@ module UltracartClient
|
|
|
74
78
|
:'card_exp_years' => :'Array<String>',
|
|
75
79
|
:'card_types' => :'Array<String>',
|
|
76
80
|
:'countries' => :'Array<Country>',
|
|
81
|
+
:'loyalty_ledger_descriptions' => :'Array<String>',
|
|
77
82
|
:'loyalty_program_type' => :'String',
|
|
78
83
|
:'qb_classes' => :'Array<String>',
|
|
79
84
|
:'sales_rep_codes' => :'Array<String>',
|
|
@@ -133,6 +138,12 @@ module UltracartClient
|
|
|
133
138
|
end
|
|
134
139
|
end
|
|
135
140
|
|
|
141
|
+
if attributes.key?(:'loyalty_ledger_descriptions')
|
|
142
|
+
if (value = attributes[:'loyalty_ledger_descriptions']).is_a?(Array)
|
|
143
|
+
self.loyalty_ledger_descriptions = value
|
|
144
|
+
end
|
|
145
|
+
end
|
|
146
|
+
|
|
136
147
|
if attributes.key?(:'loyalty_program_type')
|
|
137
148
|
self.loyalty_program_type = attributes[:'loyalty_program_type']
|
|
138
149
|
end
|
|
@@ -185,6 +196,7 @@ module UltracartClient
|
|
|
185
196
|
card_exp_years == o.card_exp_years &&
|
|
186
197
|
card_types == o.card_types &&
|
|
187
198
|
countries == o.countries &&
|
|
199
|
+
loyalty_ledger_descriptions == o.loyalty_ledger_descriptions &&
|
|
188
200
|
loyalty_program_type == o.loyalty_program_type &&
|
|
189
201
|
qb_classes == o.qb_classes &&
|
|
190
202
|
sales_rep_codes == o.sales_rep_codes &&
|
|
@@ -201,7 +213,7 @@ module UltracartClient
|
|
|
201
213
|
# Calculates hash code according to all attributes.
|
|
202
214
|
# @return [Integer] Hash code
|
|
203
215
|
def hash
|
|
204
|
-
[affiliates, card_exp_months, card_exp_years, card_types, countries, loyalty_program_type, qb_classes, sales_rep_codes, state_optional_countries, terms].hash
|
|
216
|
+
[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
|
|
205
217
|
end
|
|
206
218
|
|
|
207
219
|
# 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: 4.0.
|
|
4
|
+
version: 4.0.60.rc
|
|
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
|