ultracart_api 4.0.61.rc → 4.0.62.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/EmailSettings.md +2 -0
- data/lib/ultracart_api/models/email_settings.rb +11 -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: ec9e9c20f60990fdd7b6e160a82923a67a4cbabbbf13978693bcace76a29212e
|
|
4
|
+
data.tar.gz: d35a763274a3507a9d61b8610229b7ee0097e3e517b2f7ec511eb50eed0f8836
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2652166dcc0817892b295d70b82caf28a1d735793292cba1e90bf60bcb61cd974c3fb040f70fa161d9588c119ad834efab68b53012ce034daf284f4bdc415117
|
|
7
|
+
data.tar.gz: 2cf021ff4d5d609f74d386fbafa0dc372cb14f525c9333a3830980df883aab9ce605a10cae6fa3930614a4c716c43d25d760d501007aca9cca5b6e1fe5546226
|
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.62.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.62.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.62.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.62.rc'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -1191,6 +1191,7 @@ Not every change is committed to every SDK.
|
|
|
1191
1191
|
|
|
1192
1192
|
| Version | Date | Comments |
|
|
1193
1193
|
| --: | :-: | --- |
|
|
1194
|
+
| 4.0.62-RC | 09/12/2022 | storefront comm - send back reviews.io configured flag on getEmailSettings |
|
|
1194
1195
|
| 4.0.61-RC | 09/07/2022 | sf comms - using aws event ruler for bigquery segmentation validation |
|
|
1195
1196
|
| 4.0.60-RC | 09/02/2022 | customer editor added loyal ledger descriptions |
|
|
1196
1197
|
| 4.0.59-RC | 08/30/2022 | storefront comm fields for sms configuration |
|
data/docs/EmailSettings.md
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
| **postcard_from_name** | **String** | | [optional] |
|
|
14
14
|
| **postcard_from_postal_code** | **String** | | [optional] |
|
|
15
15
|
| **postcard_from_state** | **String** | | [optional] |
|
|
16
|
+
| **reviews_io_configured** | **Boolean** | True if the Reviews.io integration is configured | [optional] |
|
|
16
17
|
| **sms_esp_twilio_uuid** | **String** | | [optional] |
|
|
17
18
|
| **sms_phone_number** | **String** | | [optional] |
|
|
18
19
|
| **transactional_esp_domain_user** | **String** | | [optional] |
|
|
@@ -34,6 +35,7 @@ instance = UltracartClient::EmailSettings.new(
|
|
|
34
35
|
postcard_from_name: null,
|
|
35
36
|
postcard_from_postal_code: null,
|
|
36
37
|
postcard_from_state: null,
|
|
38
|
+
reviews_io_configured: null,
|
|
37
39
|
sms_esp_twilio_uuid: null,
|
|
38
40
|
sms_phone_number: null,
|
|
39
41
|
transactional_esp_domain_user: null,
|
|
@@ -33,6 +33,9 @@ module UltracartClient
|
|
|
33
33
|
|
|
34
34
|
attr_accessor :postcard_from_state
|
|
35
35
|
|
|
36
|
+
# True if the Reviews.io integration is configured
|
|
37
|
+
attr_accessor :reviews_io_configured
|
|
38
|
+
|
|
36
39
|
attr_accessor :sms_esp_twilio_uuid
|
|
37
40
|
|
|
38
41
|
attr_accessor :sms_phone_number
|
|
@@ -55,6 +58,7 @@ module UltracartClient
|
|
|
55
58
|
:'postcard_from_name' => :'postcard_from_name',
|
|
56
59
|
:'postcard_from_postal_code' => :'postcard_from_postal_code',
|
|
57
60
|
:'postcard_from_state' => :'postcard_from_state',
|
|
61
|
+
:'reviews_io_configured' => :'reviews_io_configured',
|
|
58
62
|
:'sms_esp_twilio_uuid' => :'sms_esp_twilio_uuid',
|
|
59
63
|
:'sms_phone_number' => :'sms_phone_number',
|
|
60
64
|
:'transactional_esp_domain_user' => :'transactional_esp_domain_user',
|
|
@@ -80,6 +84,7 @@ module UltracartClient
|
|
|
80
84
|
:'postcard_from_name' => :'String',
|
|
81
85
|
:'postcard_from_postal_code' => :'String',
|
|
82
86
|
:'postcard_from_state' => :'String',
|
|
87
|
+
:'reviews_io_configured' => :'Boolean',
|
|
83
88
|
:'sms_esp_twilio_uuid' => :'String',
|
|
84
89
|
:'sms_phone_number' => :'String',
|
|
85
90
|
:'transactional_esp_domain_user' => :'String',
|
|
@@ -145,6 +150,10 @@ module UltracartClient
|
|
|
145
150
|
self.postcard_from_state = attributes[:'postcard_from_state']
|
|
146
151
|
end
|
|
147
152
|
|
|
153
|
+
if attributes.key?(:'reviews_io_configured')
|
|
154
|
+
self.reviews_io_configured = attributes[:'reviews_io_configured']
|
|
155
|
+
end
|
|
156
|
+
|
|
148
157
|
if attributes.key?(:'sms_esp_twilio_uuid')
|
|
149
158
|
self.sms_esp_twilio_uuid = attributes[:'sms_esp_twilio_uuid']
|
|
150
159
|
end
|
|
@@ -193,6 +202,7 @@ module UltracartClient
|
|
|
193
202
|
postcard_from_name == o.postcard_from_name &&
|
|
194
203
|
postcard_from_postal_code == o.postcard_from_postal_code &&
|
|
195
204
|
postcard_from_state == o.postcard_from_state &&
|
|
205
|
+
reviews_io_configured == o.reviews_io_configured &&
|
|
196
206
|
sms_esp_twilio_uuid == o.sms_esp_twilio_uuid &&
|
|
197
207
|
sms_phone_number == o.sms_phone_number &&
|
|
198
208
|
transactional_esp_domain_user == o.transactional_esp_domain_user &&
|
|
@@ -209,7 +219,7 @@ module UltracartClient
|
|
|
209
219
|
# Calculates hash code according to all attributes.
|
|
210
220
|
# @return [Integer] Hash code
|
|
211
221
|
def hash
|
|
212
|
-
[marketing_esp_domain_user, marketing_esp_domain_uuid, marketing_esp_friendly_name, postcard_from_address1, postcard_from_address2, postcard_from_city, postcard_from_name, postcard_from_postal_code, postcard_from_state, sms_esp_twilio_uuid, sms_phone_number, transactional_esp_domain_user, transactional_esp_domain_uuid, transactional_esp_friendly_name].hash
|
|
222
|
+
[marketing_esp_domain_user, marketing_esp_domain_uuid, marketing_esp_friendly_name, postcard_from_address1, postcard_from_address2, postcard_from_city, postcard_from_name, postcard_from_postal_code, postcard_from_state, reviews_io_configured, sms_esp_twilio_uuid, sms_phone_number, transactional_esp_domain_user, transactional_esp_domain_uuid, transactional_esp_friendly_name].hash
|
|
213
223
|
end
|
|
214
224
|
|
|
215
225
|
# 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.62.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-09-
|
|
11
|
+
date: 2022-09-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|