ultracart_rest_api_v2_typescript 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.
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # UltraCart Typescript SDK
2
- ## ultracart_rest_api_v2_typescript@4.1.113
2
+ ## ultracart_rest_api_v2_typescript@4.1.114
3
3
 
4
4
  Every API method call has a sample for every language SDK. See https://github.com/UltraCart/sdk_samples
5
5
 
6
6
  Installation
7
7
 
8
8
  ```
9
- npm install ultracart_rest_api_v2_typescript@4.1.113 --save
9
+ npm install ultracart_rest_api_v2_typescript@4.1.114 --save
10
10
  ```
11
11
 
12
12
  ```typescript
@@ -85,6 +85,7 @@ Not every change is committed to every SDK.
85
85
 
86
86
  | Version | Date | Comments |
87
87
  | --: | :-: | --- |
88
+ | 4.1.114 | 07/08/2026 | tax - anrok tax provider |
88
89
  | 4.1.113 | 07/08/2026 | tax - anrok tax provider |
89
90
  | 4.1.112 | 07/08/2026 | tax - added anrok tax provider |
90
91
  | 4.1.111 | 07/08/2026 | storefront - additional email dispatch log methods |
@@ -39,6 +39,12 @@ export interface AnrokConfig {
39
39
  * @memberof AnrokConfig
40
40
  */
41
41
  last_test_dts?: string;
42
+ /**
43
+ * Anrok Product ID used to classify shipping/handling charges; must be created in Anrok and mapped to the Shipping cost tax category
44
+ * @type {string}
45
+ * @memberof AnrokConfig
46
+ */
47
+ shipping_product_id?: string;
42
48
  /**
43
49
  * Test results of the last connection test to Anrok
44
50
  * @type {string}
@@ -36,6 +36,7 @@ function AnrokConfigFromJSONTyped(json, ignoreDiscriminator) {
36
36
  'default_product_id': !(0, runtime_1.exists)(json, 'default_product_id') ? undefined : json['default_product_id'],
37
37
  'estimate_only': !(0, runtime_1.exists)(json, 'estimate_only') ? undefined : json['estimate_only'],
38
38
  'last_test_dts': !(0, runtime_1.exists)(json, 'last_test_dts') ? undefined : json['last_test_dts'],
39
+ 'shipping_product_id': !(0, runtime_1.exists)(json, 'shipping_product_id') ? undefined : json['shipping_product_id'],
39
40
  'test_results': !(0, runtime_1.exists)(json, 'test_results') ? undefined : json['test_results'],
40
41
  };
41
42
  }
@@ -52,6 +53,7 @@ function AnrokConfigToJSON(value) {
52
53
  'default_product_id': value.default_product_id,
53
54
  'estimate_only': value.estimate_only,
54
55
  'last_test_dts': value.last_test_dts,
56
+ 'shipping_product_id': value.shipping_product_id,
55
57
  'test_results': value.test_results,
56
58
  };
57
59
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.1.113",
3
+ "version": "4.1.114",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -43,6 +43,12 @@ export interface AnrokConfig {
43
43
  * @memberof AnrokConfig
44
44
  */
45
45
  last_test_dts?: string;
46
+ /**
47
+ * Anrok Product ID used to classify shipping/handling charges; must be created in Anrok and mapped to the Shipping cost tax category
48
+ * @type {string}
49
+ * @memberof AnrokConfig
50
+ */
51
+ shipping_product_id?: string;
46
52
  /**
47
53
  * Test results of the last connection test to Anrok
48
54
  * @type {string}
@@ -76,6 +82,7 @@ export function AnrokConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean
76
82
  'default_product_id': !exists(json, 'default_product_id') ? undefined : json['default_product_id'],
77
83
  'estimate_only': !exists(json, 'estimate_only') ? undefined : json['estimate_only'],
78
84
  'last_test_dts': !exists(json, 'last_test_dts') ? undefined : json['last_test_dts'],
85
+ 'shipping_product_id': !exists(json, 'shipping_product_id') ? undefined : json['shipping_product_id'],
79
86
  'test_results': !exists(json, 'test_results') ? undefined : json['test_results'],
80
87
  };
81
88
  }
@@ -93,6 +100,7 @@ export function AnrokConfigToJSON(value?: AnrokConfig | null): any {
93
100
  'default_product_id': value.default_product_id,
94
101
  'estimate_only': value.estimate_only,
95
102
  'last_test_dts': value.last_test_dts,
103
+ 'shipping_product_id': value.shipping_product_id,
96
104
  'test_results': value.test_results,
97
105
  };
98
106
  }