ultracart_api 3.4.2 → 3.4.3

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: dc0bb3e8f01e0b913014542cc888e5426320c836feb2ac9d0d771103986ae078
4
- data.tar.gz: 6352383d726b674aedcf42f6eabc55bc73ae856fc40add600f4d087f566178a7
3
+ metadata.gz: 9dc1ccc944adc11a7dc3a8edca8197556039f8c62b0fddeea8eac224b93ecabc
4
+ data.tar.gz: f5915d7efaabefbcc71815e4f536c9511e4d6de41a1af1f9e269008c481613e3
5
5
  SHA512:
6
- metadata.gz: fda2dbc5251244f9b0d022d2b9a13e97c4a722230fc27f475384df600d627b425806c9fea538599fffd551d4a768825934cfce65c3a43ff92408347eb689b162
7
- data.tar.gz: 46852ee26bd0d501c45bd0d2cb1117f00ff40e6cc0f8086f201cef043f9c61b43f2b9403d47b29e2dc85eb3fd24328575ecb8f81013b73ee771cc0a05e259b23
6
+ metadata.gz: 40384a2bf70b238090a882798cd1edd5baac8bc2cfdcb97e80fe8a917331988c88bc62e66a7948909c0c2c51ada9b4b0bbc13b9e99469e0fedca00dcc844e53e
7
+ data.tar.gz: 869fa6ea73deb63ea764a4c1a5fac4922ed4432628bf20f4e607a0bd17b2bf058b609161984c6bdccbe145d5a2a7b26723aaa177d137c5b0ecbd149f6462c891
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.4.2
10
+ - Package version: 3.4.3
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.4.2.gem
27
+ gem install ./ultracart_api-3.4.3.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.4.2.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.4.3.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.4.2'
35
+ gem 'ultracart_api', '~> 3.4.3'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1099,6 +1099,7 @@ Not every change is committed to every SDK.
1099
1099
 
1100
1100
  | Version | Date | Comments |
1101
1101
  | --: | :-: | --- |
1102
+ | 3.4.3 | 08/03/2021 | package tracking - add event_iso_date and event_timezone_id |
1102
1103
  | 3.4.2 | 07/29/2021 | bug fixes for new configuration api |
1103
1104
  | 3.4.1 | 07/29/2021 | bug fixes for new configuration api |
1104
1105
  | 3.4.0 | 07/29/2021 | added new configuration api (not live yet. sdk only works against development presently) |
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **channel_partner_data** | **String** | Additional data provided by the channel partner, read-only | [optional]
9
9
  **channel_partner_oid** | **Integer** | Channel partner object identifier, read-only and available on existing channel orders only. | [optional]
10
10
  **channel_partner_order_id** | **String** | The order ID assigned by the channel partner for this order | [optional]
11
+ **ignore_invalid_shipping_method** | **BOOLEAN** | Set to true to ignore invalid shipping method being specified. Only applicable on inserting orders. | [optional]
11
12
  **no_realtime_payment_processing** | **BOOLEAN** | Indicates this order should be placed in Account Receivable for later payment processing | [optional]
12
13
  **skip_payment_processing** | **BOOLEAN** | Indicates this order was already paid for via a channel purchase and no payment collection should be attempted | [optional]
13
14
  **store_completed** | **BOOLEAN** | Instructs UltraCart to skip shipping department and mark this order as fully complete. Set this flag if you have already shipped product for this order. | [optional]
@@ -29,6 +29,9 @@ module UltracartClient
29
29
  # The order ID assigned by the channel partner for this order
30
30
  attr_accessor :channel_partner_order_id
31
31
 
32
+ # Set to true to ignore invalid shipping method being specified. Only applicable on inserting orders.
33
+ attr_accessor :ignore_invalid_shipping_method
34
+
32
35
  # Indicates this order should be placed in Account Receivable for later payment processing
33
36
  attr_accessor :no_realtime_payment_processing
34
37
 
@@ -52,6 +55,7 @@ module UltracartClient
52
55
  :'channel_partner_data' => :'channel_partner_data',
53
56
  :'channel_partner_oid' => :'channel_partner_oid',
54
57
  :'channel_partner_order_id' => :'channel_partner_order_id',
58
+ :'ignore_invalid_shipping_method' => :'ignore_invalid_shipping_method',
55
59
  :'no_realtime_payment_processing' => :'no_realtime_payment_processing',
56
60
  :'skip_payment_processing' => :'skip_payment_processing',
57
61
  :'store_completed' => :'store_completed',
@@ -68,6 +72,7 @@ module UltracartClient
68
72
  :'channel_partner_data' => :'String',
69
73
  :'channel_partner_oid' => :'Integer',
70
74
  :'channel_partner_order_id' => :'String',
75
+ :'ignore_invalid_shipping_method' => :'BOOLEAN',
71
76
  :'no_realtime_payment_processing' => :'BOOLEAN',
72
77
  :'skip_payment_processing' => :'BOOLEAN',
73
78
  :'store_completed' => :'BOOLEAN',
@@ -104,6 +109,10 @@ module UltracartClient
104
109
  self.channel_partner_order_id = attributes[:'channel_partner_order_id']
105
110
  end
106
111
 
112
+ if attributes.has_key?(:'ignore_invalid_shipping_method')
113
+ self.ignore_invalid_shipping_method = attributes[:'ignore_invalid_shipping_method']
114
+ end
115
+
107
116
  if attributes.has_key?(:'no_realtime_payment_processing')
108
117
  self.no_realtime_payment_processing = attributes[:'no_realtime_payment_processing']
109
118
  end
@@ -148,6 +157,7 @@ module UltracartClient
148
157
  channel_partner_data == o.channel_partner_data &&
149
158
  channel_partner_oid == o.channel_partner_oid &&
150
159
  channel_partner_order_id == o.channel_partner_order_id &&
160
+ ignore_invalid_shipping_method == o.ignore_invalid_shipping_method &&
151
161
  no_realtime_payment_processing == o.no_realtime_payment_processing &&
152
162
  skip_payment_processing == o.skip_payment_processing &&
153
163
  store_completed == o.store_completed &&
@@ -164,7 +174,7 @@ module UltracartClient
164
174
  # Calculates hash code according to all attributes.
165
175
  # @return [Fixnum] Hash code
166
176
  def hash
167
- [auto_approve_purchase_order, channel_partner_code, channel_partner_data, channel_partner_oid, channel_partner_order_id, no_realtime_payment_processing, skip_payment_processing, store_completed, store_if_payment_declines, treat_warnings_as_errors].hash
177
+ [auto_approve_purchase_order, channel_partner_code, channel_partner_data, channel_partner_oid, channel_partner_order_id, ignore_invalid_shipping_method, no_realtime_payment_processing, skip_payment_processing, store_completed, store_if_payment_declines, treat_warnings_as_errors].hash
168
178
  end
169
179
 
170
180
  # 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.4.2'
14
+ VERSION = '3.4.3'
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.4.2
4
+ version: 3.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-29 00:00:00.000000000 Z
11
+ date: 2021-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus