ultracart_rest_api_v2_typescript 4.0.155 → 4.0.156
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,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@4.0.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@4.0.156
|
|
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.156 --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.156 | 05/25/2023 | added venmo constants for payment type |
|
|
57
58
|
| 4.0.155 | 05/18/2023 | dw bi - send back the executed SQL |
|
|
58
59
|
| 4.0.154 | 05/04/2023 | item api added methods for items reviews |
|
|
59
60
|
| 4.0.153 | 04/28/2023 | item - pricing tier level flag for exempt from min item count |
|
|
@@ -156,6 +156,7 @@ export declare const OrderPaymentPaymentMethodEnum: {
|
|
|
156
156
|
readonly Walmart: "Walmart";
|
|
157
157
|
readonly ShopCom: "Shop.com";
|
|
158
158
|
readonly Sezzle: "Sezzle";
|
|
159
|
+
readonly Venmo: "Venmo";
|
|
159
160
|
};
|
|
160
161
|
export type OrderPaymentPaymentMethodEnum = typeof OrderPaymentPaymentMethodEnum[keyof typeof OrderPaymentPaymentMethodEnum];
|
|
161
162
|
/**
|
package/package.json
CHANGED
|
@@ -197,7 +197,8 @@ export const OrderPaymentPaymentMethodEnum = {
|
|
|
197
197
|
WireTransfer: 'Wire Transfer',
|
|
198
198
|
Walmart: 'Walmart',
|
|
199
199
|
ShopCom: 'Shop.com',
|
|
200
|
-
Sezzle: 'Sezzle'
|
|
200
|
+
Sezzle: 'Sezzle',
|
|
201
|
+
Venmo: 'Venmo'
|
|
201
202
|
} as const;
|
|
202
203
|
export type OrderPaymentPaymentMethodEnum = typeof OrderPaymentPaymentMethodEnum[keyof typeof OrderPaymentPaymentMethodEnum];
|
|
203
204
|
|