ultracart_api 3.10.153 → 3.10.154
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -4
- data/docs/EmailSettings.md +1 -0
- data/lib/ultracart_api/models/email_settings.rb +11 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1a56abe6fda00ce5357098faa5696c58084af2d2072cb7b08dde77147f038ff
|
4
|
+
data.tar.gz: ea1592a7ce66666cf7f9976e6e49f29b18230f34d9fd1f83e2131a9d68acc984
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb158b4c64ab215f81481afafaeba292b027907ea13d94ea9b0e6dde4b398d9d8f8669476cdecfece79bd0de7b8bd4a7c11f437bfc50f0588b2f35d5caf3554c
|
7
|
+
data.tar.gz: ef227d180a367e6e11a850093af59585518eb9f4a85d1816adebe9f270cdce24719e229c4ffa79c11bd8261039e069b300ab20eab972de9c0b5db785fdb1aa2e
|
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.154
|
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.154.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.154.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.154'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1360,6 +1360,7 @@ Not every change is committed to every SDK.
|
|
1360
1360
|
|
1361
1361
|
| Version | Date | Comments |
|
1362
1362
|
| --: | :-: | --- |
|
1363
|
+
| 3.10.154 | 08/14/2023 | esp - add require_order_within_last to the settings object |
|
1363
1364
|
| 3.10.153 | 08/14/2023 | esp - expose rate limiter values in settings object |
|
1364
1365
|
| 3.10.152 | 07/27/2023 | dw bi - add settings to the report and page objects |
|
1365
1366
|
| 3.10.151 | 07/19/2023 | dw bi - add data_source_uuid to filter connection obj |
|
data/docs/EmailSettings.md
CHANGED
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
|
|
15
15
|
**postcard_from_name** | **String** | | [optional]
|
16
16
|
**postcard_from_postal_code** | **String** | | [optional]
|
17
17
|
**postcard_from_state** | **String** | | [optional]
|
18
|
+
**require_order_within_last** | **Integer** | Require order within last | [optional]
|
18
19
|
**reviews_io_configured** | **BOOLEAN** | True if the Reviews.io integration is configured | [optional]
|
19
20
|
**sms_esp_twilio_uuid** | **String** | | [optional]
|
20
21
|
**sms_phone_number** | **String** | | [optional]
|
@@ -41,6 +41,9 @@ module UltracartClient
|
|
41
41
|
|
42
42
|
attr_accessor :postcard_from_state
|
43
43
|
|
44
|
+
# Require order within last
|
45
|
+
attr_accessor :require_order_within_last
|
46
|
+
|
44
47
|
# True if the Reviews.io integration is configured
|
45
48
|
attr_accessor :reviews_io_configured
|
46
49
|
|
@@ -69,6 +72,7 @@ module UltracartClient
|
|
69
72
|
:'postcard_from_name' => :'postcard_from_name',
|
70
73
|
:'postcard_from_postal_code' => :'postcard_from_postal_code',
|
71
74
|
:'postcard_from_state' => :'postcard_from_state',
|
75
|
+
:'require_order_within_last' => :'require_order_within_last',
|
72
76
|
:'reviews_io_configured' => :'reviews_io_configured',
|
73
77
|
:'sms_esp_twilio_uuid' => :'sms_esp_twilio_uuid',
|
74
78
|
:'sms_phone_number' => :'sms_phone_number',
|
@@ -93,6 +97,7 @@ module UltracartClient
|
|
93
97
|
:'postcard_from_name' => :'String',
|
94
98
|
:'postcard_from_postal_code' => :'String',
|
95
99
|
:'postcard_from_state' => :'String',
|
100
|
+
:'require_order_within_last' => :'Integer',
|
96
101
|
:'reviews_io_configured' => :'BOOLEAN',
|
97
102
|
:'sms_esp_twilio_uuid' => :'String',
|
98
103
|
:'sms_phone_number' => :'String',
|
@@ -158,6 +163,10 @@ module UltracartClient
|
|
158
163
|
self.postcard_from_state = attributes[:'postcard_from_state']
|
159
164
|
end
|
160
165
|
|
166
|
+
if attributes.has_key?(:'require_order_within_last')
|
167
|
+
self.require_order_within_last = attributes[:'require_order_within_last']
|
168
|
+
end
|
169
|
+
|
161
170
|
if attributes.has_key?(:'reviews_io_configured')
|
162
171
|
self.reviews_io_configured = attributes[:'reviews_io_configured']
|
163
172
|
end
|
@@ -213,6 +222,7 @@ module UltracartClient
|
|
213
222
|
postcard_from_name == o.postcard_from_name &&
|
214
223
|
postcard_from_postal_code == o.postcard_from_postal_code &&
|
215
224
|
postcard_from_state == o.postcard_from_state &&
|
225
|
+
require_order_within_last == o.require_order_within_last &&
|
216
226
|
reviews_io_configured == o.reviews_io_configured &&
|
217
227
|
sms_esp_twilio_uuid == o.sms_esp_twilio_uuid &&
|
218
228
|
sms_phone_number == o.sms_phone_number &&
|
@@ -230,7 +240,7 @@ module UltracartClient
|
|
230
240
|
# Calculates hash code according to all attributes.
|
231
241
|
# @return [Fixnum] Hash code
|
232
242
|
def hash
|
233
|
-
[emails_per_day, emails_per_hour, emails_per_month, 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
|
243
|
+
[emails_per_day, emails_per_hour, emails_per_month, 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, require_order_within_last, reviews_io_configured, sms_esp_twilio_uuid, sms_phone_number, transactional_esp_domain_user, transactional_esp_domain_uuid, transactional_esp_friendly_name].hash
|
234
244
|
end
|
235
245
|
|
236
246
|
# Builds the object from hash
|