ultracart_api 3.10.207 → 3.10.208
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: 8a3ab41234003ccfa997a569c485e71c08434e2c528d20331401d553f1085490
|
|
4
|
+
data.tar.gz: 442ed728d75fb6d287d0f70d9b3668bc3155bd439cadea6eebcfdc453fbd7127
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d361974fb4ff1cc0aaab7ca7caae19e399c6d6b27a6f68fc9a46d21e32990d0e5a3d9ad075dccf6607aad344b519e4f5ac38ca7d4b702f7ba174912c405fe1c
|
|
7
|
+
data.tar.gz: 1904d66d5b74f561c5fefc941990846f34f2951b1a99779ccc924c1708fb8582e9ff137c628863db50a46dba548f9a9a114ab6e7cbd0678ac9b8cfb985f21051
|
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.208
|
|
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.208.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.208.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.208'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1505,6 +1505,7 @@ Not every change is committed to every SDK.
|
|
|
1505
1505
|
|
|
1506
1506
|
| Version | Date | Comments |
|
|
1507
1507
|
| --: | :-: | --- |
|
|
1508
|
+
| 3.10.208 | 05/30/2024 | add adult sig req. to the merchant item destination markup for items |
|
|
1508
1509
|
| 3.10.207 | 05/29/2024 | added methods getEmailCommseqRateLimiters, resetEmailCommseqRateLimiters |
|
|
1509
1510
|
| 3.10.206 | 05/28/2024 | added property to OrderQuery object to allow querying from cache |
|
|
1510
1511
|
| 3.10.205 | 05/17/2024 | conv.pbx time based config - changed name from default to default_mapping |
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**adult_signature_required** | **BOOLEAN** | Adult Signature Required (only updated if not-null value provided) | [optional]
|
|
6
7
|
**country_code** | **String** | Country code (ISO-3166 two letter) | [optional]
|
|
7
8
|
**flat_fee** | **Float** | Flat fee | [optional]
|
|
8
9
|
**per_item** | **Float** | Per item | [optional]
|
|
@@ -14,6 +14,9 @@ require 'date'
|
|
|
14
14
|
|
|
15
15
|
module UltracartClient
|
|
16
16
|
class ItemShippingDestinationMarkup
|
|
17
|
+
# Adult Signature Required (only updated if not-null value provided)
|
|
18
|
+
attr_accessor :adult_signature_required
|
|
19
|
+
|
|
17
20
|
# Country code (ISO-3166 two letter)
|
|
18
21
|
attr_accessor :country_code
|
|
19
22
|
|
|
@@ -35,6 +38,7 @@ module UltracartClient
|
|
|
35
38
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
36
39
|
def self.attribute_map
|
|
37
40
|
{
|
|
41
|
+
:'adult_signature_required' => :'adult_signature_required',
|
|
38
42
|
:'country_code' => :'country_code',
|
|
39
43
|
:'flat_fee' => :'flat_fee',
|
|
40
44
|
:'per_item' => :'per_item',
|
|
@@ -47,6 +51,7 @@ module UltracartClient
|
|
|
47
51
|
# Attribute type mapping.
|
|
48
52
|
def self.swagger_types
|
|
49
53
|
{
|
|
54
|
+
:'adult_signature_required' => :'BOOLEAN',
|
|
50
55
|
:'country_code' => :'String',
|
|
51
56
|
:'flat_fee' => :'Float',
|
|
52
57
|
:'per_item' => :'Float',
|
|
@@ -64,6 +69,10 @@ module UltracartClient
|
|
|
64
69
|
# convert string to symbol for hash key
|
|
65
70
|
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
66
71
|
|
|
72
|
+
if attributes.has_key?(:'adult_signature_required')
|
|
73
|
+
self.adult_signature_required = attributes[:'adult_signature_required']
|
|
74
|
+
end
|
|
75
|
+
|
|
67
76
|
if attributes.has_key?(:'country_code')
|
|
68
77
|
self.country_code = attributes[:'country_code']
|
|
69
78
|
end
|
|
@@ -152,6 +161,7 @@ module UltracartClient
|
|
|
152
161
|
def ==(o)
|
|
153
162
|
return true if self.equal?(o)
|
|
154
163
|
self.class == o.class &&
|
|
164
|
+
adult_signature_required == o.adult_signature_required &&
|
|
155
165
|
country_code == o.country_code &&
|
|
156
166
|
flat_fee == o.flat_fee &&
|
|
157
167
|
per_item == o.per_item &&
|
|
@@ -169,7 +179,7 @@ module UltracartClient
|
|
|
169
179
|
# Calculates hash code according to all attributes.
|
|
170
180
|
# @return [Fixnum] Hash code
|
|
171
181
|
def hash
|
|
172
|
-
[country_code, flat_fee, per_item, postal_code, shipping_method, state].hash
|
|
182
|
+
[adult_signature_required, country_code, flat_fee, per_item, postal_code, shipping_method, state].hash
|
|
173
183
|
end
|
|
174
184
|
|
|
175
185
|
# 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.10.
|
|
4
|
+
version: 3.10.208
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-05-
|
|
11
|
+
date: 2024-05-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|