ultracart_api 3.6.35 → 3.6.36

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 636638552aa720e3eb532a9ef7daa6e4b2d965de9aa6e0abd1e0c4250185c182
4
- data.tar.gz: 98b15226abff6b4860d9caf13d9e9299768e469ef4f4c47ab12b2f770c21d8d9
3
+ metadata.gz: cbcc4df63b4f8ac14b4b106f7dce28af18f33f8cbbc1223f7896cf3034643815
4
+ data.tar.gz: d9bbb894a947a0549907fc377b509cc62109c224d2ab9759374c10b697e34084
5
5
  SHA512:
6
- metadata.gz: 5888986835864bd3c5a9681b1a09517aa32fb0b099404bd2b1278e754a6b71181ee34ab10140fa5384ed9c8a2219a14900b320f96245a2a0413438d701cdace3
7
- data.tar.gz: 5726bbf0949ea35e87183b24d853416c62bd36d9484cb97976f8afe95d9bc442cb6900b9b73729e527da10641183b969ab8c987481f4d77befd86725b80662c1
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.35
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.35.gem
27
+ gem install ./ultracart_api-3.6.36.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.6.35.gem` to install the development dependencies)
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'
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
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.6.35'
14
+ VERSION = '3.6.36'
15
15
  end
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.35
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-14 00:00:00.000000000 Z
11
+ date: 2021-12-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus