ultracart_api 3.10.135 → 3.10.136

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: 8e2f6fd3ef1b84307018feb1c359df90cfd0db0525af46428ba46786d1f71f61
4
- data.tar.gz: 97495f32c00f5df0ff96608ce273084df2627cde57486e0f9b3a8409b8eafcfc
3
+ metadata.gz: e4f62ee16df0cb8145b9ee22f25d355ccf010f13203af122e008636c66ce3fbf
4
+ data.tar.gz: 24c929112a6f1792825226b76d5a401f96d43afc0d43c601df8987bb04726af4
5
5
  SHA512:
6
- metadata.gz: e9729f9feabbc01ee915c2c8e62b5a9831c7a1512fc9578742c91bf75633d439c9e13421d9f73af289e273c5077e3c66b123914e015092dce58693cd69f0e285
7
- data.tar.gz: 2f91d0cfd2ed9c3b24fa907b063d0c2c62fb9e8ddd734d1e56597c3c0e5328405743cb198f26dc1ccdca4717ffc0de08bd55ee183f89a383e0927ddddee5f5db
6
+ metadata.gz: de1a7f6b1555093965c2a02ed2408226e981af4268a15027d8cd91917ad33faeb34bc65f148c2e3e6a7711cf1f0f2efd66d7d681eb13117c48ee3c488eb1823b
7
+ data.tar.gz: 6e76bb911b53159c5b314353f9ecf299deaaa984c1a53702423bbd674b5c2ce69c7e85c41f02011f4518ef0629eefabcd783ab5e4da4baf0abfc52020b7e59c6
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.135
10
+ - Package version: 3.10.136
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.135.gem
27
+ gem install ./ultracart_api-3.10.136.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.135.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.136.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.135'
35
+ gem 'ultracart_api', '~> 3.10.136'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1347,6 +1347,7 @@ Not every change is committed to every SDK.
1347
1347
 
1348
1348
  | Version | Date | Comments |
1349
1349
  | --: | :-: | --- |
1350
+ | 3.10.136 | 04/28/2023 | item - pricing tier level flag for exempt from min item count |
1350
1351
  | 3.10.135 | 04/27/2023 | order - expose dual vaulted identifiers |
1351
1352
  | 3.10.134 | 04/24/2023 | internal development - data warehouse |
1352
1353
  | 3.10.133 | 04/21/2023 | internal development - data warehouse |
@@ -4,6 +4,7 @@
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **cumulative_order_limit** | **Integer** | Cumulative order limit | [optional]
7
+ **exempt_from_minimum_item_count** | **BOOLEAN** | Exempt from Minimum Item Count | [optional]
7
8
  **individual_order_limit** | **Integer** | Individual order limit | [optional]
8
9
  **multiple_quantity** | **Integer** | Multiple quantity | [optional]
9
10
 
@@ -17,6 +17,9 @@ module UltracartClient
17
17
  # Cumulative order limit
18
18
  attr_accessor :cumulative_order_limit
19
19
 
20
+ # Exempt from Minimum Item Count
21
+ attr_accessor :exempt_from_minimum_item_count
22
+
20
23
  # Individual order limit
21
24
  attr_accessor :individual_order_limit
22
25
 
@@ -27,6 +30,7 @@ module UltracartClient
27
30
  def self.attribute_map
28
31
  {
29
32
  :'cumulative_order_limit' => :'cumulative_order_limit',
33
+ :'exempt_from_minimum_item_count' => :'exempt_from_minimum_item_count',
30
34
  :'individual_order_limit' => :'individual_order_limit',
31
35
  :'multiple_quantity' => :'multiple_quantity'
32
36
  }
@@ -36,6 +40,7 @@ module UltracartClient
36
40
  def self.swagger_types
37
41
  {
38
42
  :'cumulative_order_limit' => :'Integer',
43
+ :'exempt_from_minimum_item_count' => :'BOOLEAN',
39
44
  :'individual_order_limit' => :'Integer',
40
45
  :'multiple_quantity' => :'Integer'
41
46
  }
@@ -53,6 +58,10 @@ module UltracartClient
53
58
  self.cumulative_order_limit = attributes[:'cumulative_order_limit']
54
59
  end
55
60
 
61
+ if attributes.has_key?(:'exempt_from_minimum_item_count')
62
+ self.exempt_from_minimum_item_count = attributes[:'exempt_from_minimum_item_count']
63
+ end
64
+
56
65
  if attributes.has_key?(:'individual_order_limit')
57
66
  self.individual_order_limit = attributes[:'individual_order_limit']
58
67
  end
@@ -81,6 +90,7 @@ module UltracartClient
81
90
  return true if self.equal?(o)
82
91
  self.class == o.class &&
83
92
  cumulative_order_limit == o.cumulative_order_limit &&
93
+ exempt_from_minimum_item_count == o.exempt_from_minimum_item_count &&
84
94
  individual_order_limit == o.individual_order_limit &&
85
95
  multiple_quantity == o.multiple_quantity
86
96
  end
@@ -94,7 +104,7 @@ module UltracartClient
94
104
  # Calculates hash code according to all attributes.
95
105
  # @return [Fixnum] Hash code
96
106
  def hash
97
- [cumulative_order_limit, individual_order_limit, multiple_quantity].hash
107
+ [cumulative_order_limit, exempt_from_minimum_item_count, individual_order_limit, multiple_quantity].hash
98
108
  end
99
109
 
100
110
  # 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.135'
14
+ VERSION = '3.10.136'
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.135
4
+ version: 3.10.136
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-27 00:00:00.000000000 Z
11
+ date: 2023-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus