ultracart_api 4.1.113 → 4.1.114
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 +3 -2
- data/docs/AnrokConfig.md +2 -0
- data/lib/ultracart_api/models/anrok_config.rb +11 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '08c6afb937a5afb5cba753c1105196162b81a7f1c77815351821b78867ee9f5e'
|
|
4
|
+
data.tar.gz: 68b5757618ce160facd95708ed9ef450f737e5df1f89feb4868d25ff99d1894f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9763b64c6d42c3023fe05a677aee9490210980032504cca5a1870670a477dd3c9f6940425fe93ad7da519b5bf29100a75c3de1ad60b114e6b8f5969cac4e9c2b
|
|
7
|
+
data.tar.gz: 113ca3486001219bf028c31aa52a6e6c95b99e4742f973c3b3f35eac63aceb2562a27797d77f6c39f482fd9d2b8012ff147b8a927c7578e3c06401b6bd0a4efe
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Note: Every method has a sample for every language. See https://github.com/Ultr
|
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
9
|
- API version: 2.0.0
|
|
10
|
-
- Package version: 4.1.
|
|
10
|
+
- Package version: 4.1.114
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
- For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
|
|
13
13
|
|
|
@@ -16,7 +16,7 @@ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-g
|
|
|
16
16
|
gemfile:
|
|
17
17
|
|
|
18
18
|
```shell
|
|
19
|
-
gem 'ultracart_api', '4.1.
|
|
19
|
+
gem 'ultracart_api', '4.1.114'
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
install:
|
|
@@ -1820,6 +1820,7 @@ Not every change is committed to every SDK.
|
|
|
1820
1820
|
|
|
1821
1821
|
| Version | Date | Comments |
|
|
1822
1822
|
| --: | :-: | --- |
|
|
1823
|
+
| 4.1.114 | 07/08/2026 | tax - anrok tax provider |
|
|
1823
1824
|
| 4.1.113 | 07/08/2026 | tax - anrok tax provider |
|
|
1824
1825
|
| 4.1.112 | 07/08/2026 | tax - added anrok tax provider |
|
|
1825
1826
|
| 4.1.111 | 07/08/2026 | storefront - additional email dispatch log methods |
|
data/docs/AnrokConfig.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
| **default_product_id** | **String** | Default Anrok Product ID, used for cart items that do not have their own Anrok Product ID assigned | [optional] |
|
|
9
9
|
| **estimate_only** | **Boolean** | True if this Anrok configuration is to estimate taxes only and not report placed orders to Anrok | [optional] |
|
|
10
10
|
| **last_test_dts** | **String** | Date/time of the connection test to Anrok | [optional] |
|
|
11
|
+
| **shipping_product_id** | **String** | Anrok Product ID used to classify shipping/handling charges; must be created in Anrok and mapped to the Shipping cost tax category | [optional] |
|
|
11
12
|
| **test_results** | **String** | Test results of the last connection test to Anrok | [optional] |
|
|
12
13
|
|
|
13
14
|
## Example
|
|
@@ -20,6 +21,7 @@ instance = UltracartClient::AnrokConfig.new(
|
|
|
20
21
|
default_product_id: null,
|
|
21
22
|
estimate_only: null,
|
|
22
23
|
last_test_dts: null,
|
|
24
|
+
shipping_product_id: null,
|
|
23
25
|
test_results: null
|
|
24
26
|
)
|
|
25
27
|
```
|
|
@@ -27,6 +27,9 @@ module UltracartClient
|
|
|
27
27
|
# Date/time of the connection test to Anrok
|
|
28
28
|
attr_accessor :last_test_dts
|
|
29
29
|
|
|
30
|
+
# Anrok Product ID used to classify shipping/handling charges; must be created in Anrok and mapped to the Shipping cost tax category
|
|
31
|
+
attr_accessor :shipping_product_id
|
|
32
|
+
|
|
30
33
|
# Test results of the last connection test to Anrok
|
|
31
34
|
attr_accessor :test_results
|
|
32
35
|
|
|
@@ -37,6 +40,7 @@ module UltracartClient
|
|
|
37
40
|
:'default_product_id' => :'default_product_id',
|
|
38
41
|
:'estimate_only' => :'estimate_only',
|
|
39
42
|
:'last_test_dts' => :'last_test_dts',
|
|
43
|
+
:'shipping_product_id' => :'shipping_product_id',
|
|
40
44
|
:'test_results' => :'test_results'
|
|
41
45
|
}
|
|
42
46
|
end
|
|
@@ -53,6 +57,7 @@ module UltracartClient
|
|
|
53
57
|
:'default_product_id' => :'String',
|
|
54
58
|
:'estimate_only' => :'Boolean',
|
|
55
59
|
:'last_test_dts' => :'String',
|
|
60
|
+
:'shipping_product_id' => :'String',
|
|
56
61
|
:'test_results' => :'String'
|
|
57
62
|
}
|
|
58
63
|
end
|
|
@@ -94,6 +99,10 @@ module UltracartClient
|
|
|
94
99
|
self.last_test_dts = attributes[:'last_test_dts']
|
|
95
100
|
end
|
|
96
101
|
|
|
102
|
+
if attributes.key?(:'shipping_product_id')
|
|
103
|
+
self.shipping_product_id = attributes[:'shipping_product_id']
|
|
104
|
+
end
|
|
105
|
+
|
|
97
106
|
if attributes.key?(:'test_results')
|
|
98
107
|
self.test_results = attributes[:'test_results']
|
|
99
108
|
end
|
|
@@ -121,6 +130,7 @@ module UltracartClient
|
|
|
121
130
|
default_product_id == o.default_product_id &&
|
|
122
131
|
estimate_only == o.estimate_only &&
|
|
123
132
|
last_test_dts == o.last_test_dts &&
|
|
133
|
+
shipping_product_id == o.shipping_product_id &&
|
|
124
134
|
test_results == o.test_results
|
|
125
135
|
end
|
|
126
136
|
|
|
@@ -133,7 +143,7 @@ module UltracartClient
|
|
|
133
143
|
# Calculates hash code according to all attributes.
|
|
134
144
|
# @return [Integer] Hash code
|
|
135
145
|
def hash
|
|
136
|
-
[api_key, default_product_id, estimate_only, last_test_dts, test_results].hash
|
|
146
|
+
[api_key, default_product_id, estimate_only, last_test_dts, shipping_product_id, test_results].hash
|
|
137
147
|
end
|
|
138
148
|
|
|
139
149
|
# Builds the object from hash
|