ultracart_api 3.6.12 → 3.6.13
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: 7a0befd5ef8e1b079f4e3170d8e5a04c78a1d6758400c291ea188c2eee8e3aba
|
4
|
+
data.tar.gz: 3c5851518f88ab11f98c32a868c0a057841b60a99fb5fd041514a5b819c277b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f6e22af4e2e750706a91f4bfe1e287954c5d930faed50f41515576a391ea66e16a4757f34ed03cc3eb13090fe792e10ed848dfb18300197741c33a89060f175
|
7
|
+
data.tar.gz: 41897b3f92a87166692f7961fadf9d106ef0fb814ed57ae2d15d13a1a630cce8905c62a2d73f9ad9ba091737c6ee9c96cbbc121109e5b323d0e1b0727f6f69a9
|
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.6.
|
10
|
+
- Package version: 3.6.13
|
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.6.
|
27
|
+
gem install ./ultracart_api-3.6.13.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.6.
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.6.13.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.6.
|
35
|
+
gem 'ultracart_api', '~> 3.6.13'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1118,6 +1118,7 @@ Not every change is committed to every SDK.
|
|
1118
1118
|
|
1119
1119
|
| Version | Date | Comments |
|
1120
1120
|
| --: | :-: | --- |
|
1121
|
+
| 3.6.13 | 09/20/2021 | expose EasyPost tracker id if available on shipment tracking details |
|
1121
1122
|
| 3.6.12 | 09/20/2021 | fix method for getCouponsByQuery to be POST instead of GET since it uses a JSON body |
|
1122
1123
|
| 3.6.11 | 09/13/2021 | fix for CouponApi, broke due to inadvertent parameter inclusion |
|
1123
1124
|
| 3.6.10 | 09/09/2021 | added constants for Google Shopping payment method (still in development) |
|
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
|
|
6
6
|
**actual_delivery_date** | **String** | | [optional]
|
7
7
|
**actual_delivery_date_formatted** | **String** | | [optional]
|
8
8
|
**details** | [**Array<OrderTrackingNumberDetail>**](OrderTrackingNumberDetail.md) | | [optional]
|
9
|
+
**easypost_tracker_id** | **String** | | [optional]
|
9
10
|
**expected_delivery_date** | **String** | | [optional]
|
10
11
|
**expected_delivery_date_formatted** | **String** | | [optional]
|
11
12
|
**map_url** | **String** | | [optional]
|
@@ -20,6 +20,8 @@ module UltracartClient
|
|
20
20
|
|
21
21
|
attr_accessor :details
|
22
22
|
|
23
|
+
attr_accessor :easypost_tracker_id
|
24
|
+
|
23
25
|
attr_accessor :expected_delivery_date
|
24
26
|
|
25
27
|
attr_accessor :expected_delivery_date_formatted
|
@@ -54,6 +56,7 @@ module UltracartClient
|
|
54
56
|
:'actual_delivery_date' => :'actual_delivery_date',
|
55
57
|
:'actual_delivery_date_formatted' => :'actual_delivery_date_formatted',
|
56
58
|
:'details' => :'details',
|
59
|
+
:'easypost_tracker_id' => :'easypost_tracker_id',
|
57
60
|
:'expected_delivery_date' => :'expected_delivery_date',
|
58
61
|
:'expected_delivery_date_formatted' => :'expected_delivery_date_formatted',
|
59
62
|
:'map_url' => :'map_url',
|
@@ -77,6 +80,7 @@ module UltracartClient
|
|
77
80
|
:'actual_delivery_date' => :'String',
|
78
81
|
:'actual_delivery_date_formatted' => :'String',
|
79
82
|
:'details' => :'Array<OrderTrackingNumberDetail>',
|
83
|
+
:'easypost_tracker_id' => :'String',
|
80
84
|
:'expected_delivery_date' => :'String',
|
81
85
|
:'expected_delivery_date_formatted' => :'String',
|
82
86
|
:'map_url' => :'String',
|
@@ -116,6 +120,10 @@ module UltracartClient
|
|
116
120
|
end
|
117
121
|
end
|
118
122
|
|
123
|
+
if attributes.has_key?(:'easypost_tracker_id')
|
124
|
+
self.easypost_tracker_id = attributes[:'easypost_tracker_id']
|
125
|
+
end
|
126
|
+
|
119
127
|
if attributes.has_key?(:'expected_delivery_date')
|
120
128
|
self.expected_delivery_date = attributes[:'expected_delivery_date']
|
121
129
|
end
|
@@ -194,6 +202,7 @@ module UltracartClient
|
|
194
202
|
actual_delivery_date == o.actual_delivery_date &&
|
195
203
|
actual_delivery_date_formatted == o.actual_delivery_date_formatted &&
|
196
204
|
details == o.details &&
|
205
|
+
easypost_tracker_id == o.easypost_tracker_id &&
|
197
206
|
expected_delivery_date == o.expected_delivery_date &&
|
198
207
|
expected_delivery_date_formatted == o.expected_delivery_date_formatted &&
|
199
208
|
map_url == o.map_url &&
|
@@ -219,7 +228,7 @@ module UltracartClient
|
|
219
228
|
# Calculates hash code according to all attributes.
|
220
229
|
# @return [Fixnum] Hash code
|
221
230
|
def hash
|
222
|
-
[actual_delivery_date, actual_delivery_date_formatted, details, expected_delivery_date, expected_delivery_date_formatted, map_url, order_placed_date, order_placed_date_formatted, payment_processed_date, payment_processed_date_formatted, shipped_date, shipped_date_formatted, shipping_method, status, status_description, tracking_number, tracking_url].hash
|
231
|
+
[actual_delivery_date, actual_delivery_date_formatted, details, easypost_tracker_id, expected_delivery_date, expected_delivery_date_formatted, map_url, order_placed_date, order_placed_date_formatted, payment_processed_date, payment_processed_date_formatted, shipped_date, shipped_date_formatted, shipping_method, status, status_description, tracking_number, tracking_url].hash
|
223
232
|
end
|
224
233
|
|
225
234
|
# Builds the object from hash
|