ultracart_api 3.6.35 → 3.6.36
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: cbcc4df63b4f8ac14b4b106f7dce28af18f33f8cbbc1223f7896cf3034643815
|
4
|
+
data.tar.gz: d9bbb894a947a0549907fc377b509cc62109c224d2ab9759374c10b697e34084
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8717f7643d725a5120749692009df5abd609a6d1ac30a136f798565ed571645e4ea0b0a0fc6d6a602ee85706650c6a39519ab1969076b0103d1cb7a3f9dd92ee
|
7
|
+
data.tar.gz: 273cb64d8028b466df086dfeec9e9f1ee64b09c1e4fe83e0bac0d58693d2e3fd44c6c7571a280b8a9104a6cbc7a3aba82bf09efb705308a6996a033d0b840c63
|
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.6.
|
10
|
+
- Package version: 3.6.36
|
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.6.
|
27
|
+
gem install ./ultracart_api-3.6.36.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.6.
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.6.36.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.6.
|
35
|
+
gem 'ultracart_api', '~> 3.6.36'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1128,6 +1128,7 @@ Not every change is committed to every SDK.
|
|
1128
1128
|
|
1129
1129
|
| Version | Date | Comments |
|
1130
1130
|
| --: | :-: | --- |
|
1131
|
+
| 3.6.36 | 12/29/2021 | Mail actual post card flag added to test method |
|
1131
1132
|
| 3.6.35 | 12/14/2021 | Add cancel_auto_order option to the accounts receivable retry configuration |
|
1132
1133
|
| 3.6.34 | 12/14/2021 | add evening phone E.164 fields to order billing/shipping objects |
|
1133
1134
|
| 3.6.33 | 12/13/2021 | automation testing |
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
11
11
|
**esp_commseq_postcard_uuid** | **String** | | [optional]
|
12
12
|
**esp_commseq_step_uuid** | **String** | | [optional]
|
13
13
|
**esp_commseq_uuid** | **String** | | [optional]
|
14
|
+
**mail_card** | **BOOLEAN** | | [optional]
|
14
15
|
**name** | **String** | | [optional]
|
15
16
|
**order_id** | **String** | | [optional]
|
16
17
|
**postal_code** | **String** | | [optional]
|
@@ -30,6 +30,8 @@ module UltracartClient
|
|
30
30
|
|
31
31
|
attr_accessor :esp_commseq_uuid
|
32
32
|
|
33
|
+
attr_accessor :mail_card
|
34
|
+
|
33
35
|
attr_accessor :name
|
34
36
|
|
35
37
|
attr_accessor :order_id
|
@@ -49,6 +51,7 @@ module UltracartClient
|
|
49
51
|
:'esp_commseq_postcard_uuid' => :'esp_commseq_postcard_uuid',
|
50
52
|
:'esp_commseq_step_uuid' => :'esp_commseq_step_uuid',
|
51
53
|
:'esp_commseq_uuid' => :'esp_commseq_uuid',
|
54
|
+
:'mail_card' => :'mail_card',
|
52
55
|
:'name' => :'name',
|
53
56
|
:'order_id' => :'order_id',
|
54
57
|
:'postal_code' => :'postal_code',
|
@@ -67,6 +70,7 @@ module UltracartClient
|
|
67
70
|
:'esp_commseq_postcard_uuid' => :'String',
|
68
71
|
:'esp_commseq_step_uuid' => :'String',
|
69
72
|
:'esp_commseq_uuid' => :'String',
|
73
|
+
:'mail_card' => :'BOOLEAN',
|
70
74
|
:'name' => :'String',
|
71
75
|
:'order_id' => :'String',
|
72
76
|
:'postal_code' => :'String',
|
@@ -116,6 +120,10 @@ module UltracartClient
|
|
116
120
|
self.esp_commseq_uuid = attributes[:'esp_commseq_uuid']
|
117
121
|
end
|
118
122
|
|
123
|
+
if attributes.has_key?(:'mail_card')
|
124
|
+
self.mail_card = attributes[:'mail_card']
|
125
|
+
end
|
126
|
+
|
119
127
|
if attributes.has_key?(:'name')
|
120
128
|
self.name = attributes[:'name']
|
121
129
|
end
|
@@ -159,6 +167,7 @@ module UltracartClient
|
|
159
167
|
esp_commseq_postcard_uuid == o.esp_commseq_postcard_uuid &&
|
160
168
|
esp_commseq_step_uuid == o.esp_commseq_step_uuid &&
|
161
169
|
esp_commseq_uuid == o.esp_commseq_uuid &&
|
170
|
+
mail_card == o.mail_card &&
|
162
171
|
name == o.name &&
|
163
172
|
order_id == o.order_id &&
|
164
173
|
postal_code == o.postal_code &&
|
@@ -174,7 +183,7 @@ module UltracartClient
|
|
174
183
|
# Calculates hash code according to all attributes.
|
175
184
|
# @return [Fixnum] Hash code
|
176
185
|
def hash
|
177
|
-
[address_1, address_2, cart_id, cart_item_ids, city, esp_commseq_postcard_uuid, esp_commseq_step_uuid, esp_commseq_uuid, name, order_id, postal_code, state].hash
|
186
|
+
[address_1, address_2, cart_id, cart_item_ids, city, esp_commseq_postcard_uuid, esp_commseq_step_uuid, esp_commseq_uuid, mail_card, name, order_id, postal_code, state].hash
|
178
187
|
end
|
179
188
|
|
180
189
|
# 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.6.
|
4
|
+
version: 3.6.36
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|