ultracart_api 4.1.112 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 48c891ae611a0ccf5d311502bec06ddd80ae639f1b70b3eb17988d6ef855eb07
4
- data.tar.gz: 3d9ccd71e26ba84fa556a710231b11d22ad2e5eb104c0d54692cbeb4850320f4
3
+ metadata.gz: '08c6afb937a5afb5cba753c1105196162b81a7f1c77815351821b78867ee9f5e'
4
+ data.tar.gz: 68b5757618ce160facd95708ed9ef450f737e5df1f89feb4868d25ff99d1894f
5
5
  SHA512:
6
- metadata.gz: cbd07d6f3ce2c1275ab619b4940436d534e92bd7a1b4688d00aa77b736247fb89b3204bfabf54b9f92b0a506fa37b5514708962798a00cfe657e46b4d2187d1a
7
- data.tar.gz: 4d20ab8b4541203bc8b7002523274044aa05492adc49d286ef420095119dffd48d8ffc95fc1a136d582a5bb2fb1622ca315705523823b01d7330362e8c319669
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.112
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.112'
19
+ gem 'ultracart_api', '4.1.114'
20
20
  ```
21
21
 
22
22
  install:
@@ -1820,6 +1820,8 @@ 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 |
1824
+ | 4.1.113 | 07/08/2026 | tax - anrok tax provider |
1823
1825
  | 4.1.112 | 07/08/2026 | tax - added anrok tax provider |
1824
1826
  | 4.1.111 | 07/08/2026 | storefront - additional email dispatch log methods |
1825
1827
  | 4.1.110 | 07/06/2026 | Conversation - CRM message type constant for tool call |
data/docs/AnrokConfig.md CHANGED
@@ -5,8 +5,10 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **api_key** | **String** | Anrok API key | [optional] |
8
+ | **default_product_id** | **String** | Default Anrok Product ID, used for cart items that do not have their own Anrok Product ID assigned | [optional] |
8
9
  | **estimate_only** | **Boolean** | True if this Anrok configuration is to estimate taxes only and not report placed orders to Anrok | [optional] |
9
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] |
10
12
  | **test_results** | **String** | Test results of the last connection test to Anrok | [optional] |
11
13
 
12
14
  ## Example
@@ -16,8 +18,10 @@ require 'ultracart_api'
16
18
 
17
19
  instance = UltracartClient::AnrokConfig.new(
18
20
  api_key: null,
21
+ default_product_id: null,
19
22
  estimate_only: null,
20
23
  last_test_dts: null,
24
+ shipping_product_id: null,
21
25
  test_results: null
22
26
  )
23
27
  ```
@@ -18,12 +18,18 @@ module UltracartClient
18
18
  # Anrok API key
19
19
  attr_accessor :api_key
20
20
 
21
+ # Default Anrok Product ID, used for cart items that do not have their own Anrok Product ID assigned
22
+ attr_accessor :default_product_id
23
+
21
24
  # True if this Anrok configuration is to estimate taxes only and not report placed orders to Anrok
22
25
  attr_accessor :estimate_only
23
26
 
24
27
  # Date/time of the connection test to Anrok
25
28
  attr_accessor :last_test_dts
26
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
+
27
33
  # Test results of the last connection test to Anrok
28
34
  attr_accessor :test_results
29
35
 
@@ -31,8 +37,10 @@ module UltracartClient
31
37
  def self.attribute_map
32
38
  {
33
39
  :'api_key' => :'api_key',
40
+ :'default_product_id' => :'default_product_id',
34
41
  :'estimate_only' => :'estimate_only',
35
42
  :'last_test_dts' => :'last_test_dts',
43
+ :'shipping_product_id' => :'shipping_product_id',
36
44
  :'test_results' => :'test_results'
37
45
  }
38
46
  end
@@ -46,8 +54,10 @@ module UltracartClient
46
54
  def self.openapi_types
47
55
  {
48
56
  :'api_key' => :'String',
57
+ :'default_product_id' => :'String',
49
58
  :'estimate_only' => :'Boolean',
50
59
  :'last_test_dts' => :'String',
60
+ :'shipping_product_id' => :'String',
51
61
  :'test_results' => :'String'
52
62
  }
53
63
  end
@@ -77,6 +87,10 @@ module UltracartClient
77
87
  self.api_key = attributes[:'api_key']
78
88
  end
79
89
 
90
+ if attributes.key?(:'default_product_id')
91
+ self.default_product_id = attributes[:'default_product_id']
92
+ end
93
+
80
94
  if attributes.key?(:'estimate_only')
81
95
  self.estimate_only = attributes[:'estimate_only']
82
96
  end
@@ -85,6 +99,10 @@ module UltracartClient
85
99
  self.last_test_dts = attributes[:'last_test_dts']
86
100
  end
87
101
 
102
+ if attributes.key?(:'shipping_product_id')
103
+ self.shipping_product_id = attributes[:'shipping_product_id']
104
+ end
105
+
88
106
  if attributes.key?(:'test_results')
89
107
  self.test_results = attributes[:'test_results']
90
108
  end
@@ -109,8 +127,10 @@ module UltracartClient
109
127
  return true if self.equal?(o)
110
128
  self.class == o.class &&
111
129
  api_key == o.api_key &&
130
+ default_product_id == o.default_product_id &&
112
131
  estimate_only == o.estimate_only &&
113
132
  last_test_dts == o.last_test_dts &&
133
+ shipping_product_id == o.shipping_product_id &&
114
134
  test_results == o.test_results
115
135
  end
116
136
 
@@ -123,7 +143,7 @@ module UltracartClient
123
143
  # Calculates hash code according to all attributes.
124
144
  # @return [Integer] Hash code
125
145
  def hash
126
- [api_key, 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
127
147
  end
128
148
 
129
149
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.1.112'
14
+ VERSION = '4.1.114'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.112
4
+ version: 4.1.114
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart