ultracart_api 4.1.112 → 4.1.113

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: 72690097783f24997779d0fe6870ad62a19323ab9803d116a8e6ae5a67d1ed13
4
+ data.tar.gz: 68b4e4172cecd92358732676b154fe59d9401ff1165466c6e572a03517ab6136
5
5
  SHA512:
6
- metadata.gz: cbd07d6f3ce2c1275ab619b4940436d534e92bd7a1b4688d00aa77b736247fb89b3204bfabf54b9f92b0a506fa37b5514708962798a00cfe657e46b4d2187d1a
7
- data.tar.gz: 4d20ab8b4541203bc8b7002523274044aa05492adc49d286ef420095119dffd48d8ffc95fc1a136d582a5bb2fb1622ca315705523823b01d7330362e8c319669
6
+ metadata.gz: 3c2b30e3bd5cdd777944ac2da2e71f0f3b8cd883451ce35d4dccda1441bb91e9dabb601216e46314473294819aec1cd411438c2f275a22fdf3e1cab9f21421b5
7
+ data.tar.gz: 0743d996a9576148d082ca16ef4f2c55ba9198bca36a0aada41a0b2405a036a057a58a1c91fe15ac5c40fcab68d74d4d5db28f9adb5c911b6c2f170e52e64d83
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.113
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.113'
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.113 | 07/08/2026 | tax - anrok tax provider |
1823
1824
  | 4.1.112 | 07/08/2026 | tax - added anrok tax provider |
1824
1825
  | 4.1.111 | 07/08/2026 | storefront - additional email dispatch log methods |
1825
1826
  | 4.1.110 | 07/06/2026 | Conversation - CRM message type constant for tool call |
data/docs/AnrokConfig.md CHANGED
@@ -5,6 +5,7 @@
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] |
10
11
  | **test_results** | **String** | Test results of the last connection test to Anrok | [optional] |
@@ -16,6 +17,7 @@ require 'ultracart_api'
16
17
 
17
18
  instance = UltracartClient::AnrokConfig.new(
18
19
  api_key: null,
20
+ default_product_id: null,
19
21
  estimate_only: null,
20
22
  last_test_dts: null,
21
23
  test_results: null
@@ -18,6 +18,9 @@ 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
 
@@ -31,6 +34,7 @@ module UltracartClient
31
34
  def self.attribute_map
32
35
  {
33
36
  :'api_key' => :'api_key',
37
+ :'default_product_id' => :'default_product_id',
34
38
  :'estimate_only' => :'estimate_only',
35
39
  :'last_test_dts' => :'last_test_dts',
36
40
  :'test_results' => :'test_results'
@@ -46,6 +50,7 @@ module UltracartClient
46
50
  def self.openapi_types
47
51
  {
48
52
  :'api_key' => :'String',
53
+ :'default_product_id' => :'String',
49
54
  :'estimate_only' => :'Boolean',
50
55
  :'last_test_dts' => :'String',
51
56
  :'test_results' => :'String'
@@ -77,6 +82,10 @@ module UltracartClient
77
82
  self.api_key = attributes[:'api_key']
78
83
  end
79
84
 
85
+ if attributes.key?(:'default_product_id')
86
+ self.default_product_id = attributes[:'default_product_id']
87
+ end
88
+
80
89
  if attributes.key?(:'estimate_only')
81
90
  self.estimate_only = attributes[:'estimate_only']
82
91
  end
@@ -109,6 +118,7 @@ module UltracartClient
109
118
  return true if self.equal?(o)
110
119
  self.class == o.class &&
111
120
  api_key == o.api_key &&
121
+ default_product_id == o.default_product_id &&
112
122
  estimate_only == o.estimate_only &&
113
123
  last_test_dts == o.last_test_dts &&
114
124
  test_results == o.test_results
@@ -123,7 +133,7 @@ module UltracartClient
123
133
  # Calculates hash code according to all attributes.
124
134
  # @return [Integer] Hash code
125
135
  def hash
126
- [api_key, estimate_only, last_test_dts, test_results].hash
136
+ [api_key, default_product_id, estimate_only, last_test_dts, test_results].hash
127
137
  end
128
138
 
129
139
  # 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.113'
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.113
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart