ultracart_api 3.10.207 → 3.10.208

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: 37cb036e0e5cd8b4094dfb946c40c4935a1d9d3a443b60b06fcc1e089fcc7c6f
4
- data.tar.gz: 97b0bd759c9227b5d641d88929f898c5b635f8c0c25a8e22393be22e5d58d44f
3
+ metadata.gz: 8a3ab41234003ccfa997a569c485e71c08434e2c528d20331401d553f1085490
4
+ data.tar.gz: 442ed728d75fb6d287d0f70d9b3668bc3155bd439cadea6eebcfdc453fbd7127
5
5
  SHA512:
6
- metadata.gz: eecf19f6320987886804b45238cf62fe4b1ac13f27dbba719a478a24f70475a62237d2215a87bc2ce404e783db6dc61a6341ace379beefedc6a931ab2a6c32c6
7
- data.tar.gz: f30f3e1fffcd6e1aa6c163b040ba7ee231e230667a7e8773cc9a26b6bb36a0f273a923aa93e23b3e70ef07405006bca6decf5e578caecd9771b9b4f24dc9108d
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.207
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.207.gem
27
+ gem install ./ultracart_api-3.10.208.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.207.gem` to install the development dependencies)
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.207'
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
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.207'
14
+ VERSION = '3.10.208'
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.10.207
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-29 00:00:00.000000000 Z
11
+ date: 2024-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus