ultracart_rest_api_v2_typescript 3.10.214 → 3.10.216
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 +4 -2
- package/api.ts +9 -1
- package/dist/api.d.ts +9 -1
- package/dist/api.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@3.10.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.10.216
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install ultracart_rest_api_v2_typescript@3.10.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.10.216 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,8 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 3.10.216 | 09/18/2024 | order payment constant for PayPal Fastlane |
|
|
58
|
+
| 3.10.215 | 08/29/2024 | add hold_for_transmission to item shipping object |
|
|
57
59
|
| 3.10.214 | 08/08/2024 | added query_target to OrderApi.getOrdersBatch to allow cache usage |
|
|
58
60
|
| 3.10.213 | 06/24/2024 | conversation object cleanup |
|
|
59
61
|
| 3.10.212 | 06/14/2024 | pbx menu - add say voice property |
|
package/api.ts
CHANGED
|
@@ -29685,6 +29685,12 @@ export interface ItemShipping {
|
|
|
29685
29685
|
* @memberof ItemShipping
|
|
29686
29686
|
*/
|
|
29687
29687
|
hazmat?: boolean;
|
|
29688
|
+
/**
|
|
29689
|
+
* Hold for transmission
|
|
29690
|
+
* @type {boolean}
|
|
29691
|
+
* @memberof ItemShipping
|
|
29692
|
+
*/
|
|
29693
|
+
hold_for_transmission?: boolean;
|
|
29688
29694
|
/**
|
|
29689
29695
|
* True if this item is made to order
|
|
29690
29696
|
* @type {boolean}
|
|
@@ -43533,7 +43539,9 @@ export namespace Webhook {
|
|
|
43533
43539
|
*/
|
|
43534
43540
|
export enum AuthenticationTypeEnum {
|
|
43535
43541
|
None = <any> 'none',
|
|
43536
|
-
Basic = <any> 'basic'
|
|
43542
|
+
Basic = <any> 'basic',
|
|
43543
|
+
ApiUser = <any> 'api user',
|
|
43544
|
+
AwsIam = <any> 'aws iam'
|
|
43537
43545
|
}
|
|
43538
43546
|
}
|
|
43539
43547
|
|
package/dist/api.d.ts
CHANGED
|
@@ -29058,6 +29058,12 @@ export interface ItemShipping {
|
|
|
29058
29058
|
* @memberof ItemShipping
|
|
29059
29059
|
*/
|
|
29060
29060
|
hazmat?: boolean;
|
|
29061
|
+
/**
|
|
29062
|
+
* Hold for transmission
|
|
29063
|
+
* @type {boolean}
|
|
29064
|
+
* @memberof ItemShipping
|
|
29065
|
+
*/
|
|
29066
|
+
hold_for_transmission?: boolean;
|
|
29061
29067
|
/**
|
|
29062
29068
|
* True if this item is made to order
|
|
29063
29069
|
* @type {boolean}
|
|
@@ -42616,7 +42622,9 @@ export declare namespace Webhook {
|
|
|
42616
42622
|
*/
|
|
42617
42623
|
enum AuthenticationTypeEnum {
|
|
42618
42624
|
None,
|
|
42619
|
-
Basic
|
|
42625
|
+
Basic,
|
|
42626
|
+
ApiUser,
|
|
42627
|
+
AwsIam
|
|
42620
42628
|
}
|
|
42621
42629
|
}
|
|
42622
42630
|
/**
|
package/dist/api.js
CHANGED
|
@@ -1740,6 +1740,8 @@ var Webhook;
|
|
|
1740
1740
|
(function (AuthenticationTypeEnum) {
|
|
1741
1741
|
AuthenticationTypeEnum[AuthenticationTypeEnum["None"] = 'none'] = "None";
|
|
1742
1742
|
AuthenticationTypeEnum[AuthenticationTypeEnum["Basic"] = 'basic'] = "Basic";
|
|
1743
|
+
AuthenticationTypeEnum[AuthenticationTypeEnum["ApiUser"] = 'api user'] = "ApiUser";
|
|
1744
|
+
AuthenticationTypeEnum[AuthenticationTypeEnum["AwsIam"] = 'aws iam'] = "AwsIam";
|
|
1743
1745
|
})(AuthenticationTypeEnum = Webhook.AuthenticationTypeEnum || (Webhook.AuthenticationTypeEnum = {}));
|
|
1744
1746
|
})(Webhook = exports.Webhook || (exports.Webhook = {}));
|
|
1745
1747
|
/**
|