ultracart_rest_api_v2_typescript 4.0.232 → 4.0.233
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/dist/models/Webhook.d.ts +2 -0
- package/dist/models/Webhook.js +3 -1
- package/package.json +1 -1
- package/src/models/Webhook.ts +3 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@4.0.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@4.0.233
|
|
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@4.0.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@4.0.233 --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
|
+
| 4.0.233 | 09/18/2024 | order payment constant for PayPal Fastlane |
|
|
57
58
|
| 4.0.232 | 08/29/2024 | add hold_for_transmission to item shipping object |
|
|
58
59
|
| 4.0.231 | 08/08/2024 | added query_target to OrderApi.getOrdersBatch to allow cache usage |
|
|
59
60
|
| 4.0.230 | 06/24/2024 | conversation object cleanup |
|
package/dist/models/Webhook.d.ts
CHANGED
|
@@ -145,6 +145,8 @@ export type WebhookApiVersionEnum = typeof WebhookApiVersionEnum[keyof typeof We
|
|
|
145
145
|
export declare const WebhookAuthenticationTypeEnum: {
|
|
146
146
|
readonly None: "none";
|
|
147
147
|
readonly Basic: "basic";
|
|
148
|
+
readonly ApiUser: "api user";
|
|
149
|
+
readonly AwsIam: "aws iam";
|
|
148
150
|
};
|
|
149
151
|
export type WebhookAuthenticationTypeEnum = typeof WebhookAuthenticationTypeEnum[keyof typeof WebhookAuthenticationTypeEnum];
|
|
150
152
|
export declare function WebhookFromJSON(json: any): Webhook;
|
package/dist/models/Webhook.js
CHANGED
|
@@ -28,7 +28,9 @@ exports.WebhookApiVersionEnum = {
|
|
|
28
28
|
*/
|
|
29
29
|
exports.WebhookAuthenticationTypeEnum = {
|
|
30
30
|
None: 'none',
|
|
31
|
-
Basic: 'basic'
|
|
31
|
+
Basic: 'basic',
|
|
32
|
+
ApiUser: 'api user',
|
|
33
|
+
AwsIam: 'aws iam'
|
|
32
34
|
};
|
|
33
35
|
function WebhookFromJSON(json) {
|
|
34
36
|
return WebhookFromJSONTyped(json, false);
|
package/package.json
CHANGED
package/src/models/Webhook.ts
CHANGED
|
@@ -162,7 +162,9 @@ export type WebhookApiVersionEnum = typeof WebhookApiVersionEnum[keyof typeof We
|
|
|
162
162
|
*/
|
|
163
163
|
export const WebhookAuthenticationTypeEnum = {
|
|
164
164
|
None: 'none',
|
|
165
|
-
Basic: 'basic'
|
|
165
|
+
Basic: 'basic',
|
|
166
|
+
ApiUser: 'api user',
|
|
167
|
+
AwsIam: 'aws iam'
|
|
166
168
|
} as const;
|
|
167
169
|
export type WebhookAuthenticationTypeEnum = typeof WebhookAuthenticationTypeEnum[keyof typeof WebhookAuthenticationTypeEnum];
|
|
168
170
|
|