ultracart_api 3.4.2 → 3.4.3
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 +4 -4
- data/README.md +5 -4
- data/docs/OrderChannelPartner.md +1 -0
- data/lib/ultracart_api/models/order_channel_partner.rb +11 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9dc1ccc944adc11a7dc3a8edca8197556039f8c62b0fddeea8eac224b93ecabc
|
4
|
+
data.tar.gz: f5915d7efaabefbcc71815e4f536c9511e4d6de41a1af1f9e269008c481613e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
27
|
+
gem install ./ultracart_api-3.4.3.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.4.
|
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.
|
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) |
|
data/docs/OrderChannelPartner.md
CHANGED
@@ -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
|
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.
|
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-
|
11
|
+
date: 2021-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|