ultracart_rest_api_v2_typescript 3.10.215 → 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 +3 -2
- package/api.ts +3 -1
- package/dist/api.d.ts +3 -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,7 @@ 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 |
|
|
57
58
|
| 3.10.215 | 08/29/2024 | add hold_for_transmission to item shipping object |
|
|
58
59
|
| 3.10.214 | 08/08/2024 | added query_target to OrderApi.getOrdersBatch to allow cache usage |
|
|
59
60
|
| 3.10.213 | 06/24/2024 | conversation object cleanup |
|
package/api.ts
CHANGED
|
@@ -43539,7 +43539,9 @@ export namespace Webhook {
|
|
|
43539
43539
|
*/
|
|
43540
43540
|
export enum AuthenticationTypeEnum {
|
|
43541
43541
|
None = <any> 'none',
|
|
43542
|
-
Basic = <any> 'basic'
|
|
43542
|
+
Basic = <any> 'basic',
|
|
43543
|
+
ApiUser = <any> 'api user',
|
|
43544
|
+
AwsIam = <any> 'aws iam'
|
|
43543
43545
|
}
|
|
43544
43546
|
}
|
|
43545
43547
|
|
package/dist/api.d.ts
CHANGED
|
@@ -42622,7 +42622,9 @@ export declare namespace Webhook {
|
|
|
42622
42622
|
*/
|
|
42623
42623
|
enum AuthenticationTypeEnum {
|
|
42624
42624
|
None,
|
|
42625
|
-
Basic
|
|
42625
|
+
Basic,
|
|
42626
|
+
ApiUser,
|
|
42627
|
+
AwsIam
|
|
42626
42628
|
}
|
|
42627
42629
|
}
|
|
42628
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
|
/**
|