ultracart_rest_api_v2_typescript 3.10.138 → 3.10.139
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 +2 -1
- package/dist/api.d.ts +2 -1
- package/dist/api.js +1 -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.139
|
|
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.139 --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.139 | 05/25/2023 | added venmo constants for payment type |
|
|
57
58
|
| 3.10.138 | 05/18/2023 | dw bi - send back the executed SQL |
|
|
58
59
|
| 3.10.137 | 05/04/2023 | item api added methods for items reviews |
|
|
59
60
|
| 3.10.136 | 04/28/2023 | item - pricing tier level flag for exempt from min item count |
|
package/api.ts
CHANGED
|
@@ -30917,7 +30917,8 @@ export namespace OrderPayment {
|
|
|
30917
30917
|
WireTransfer = <any> 'Wire Transfer',
|
|
30918
30918
|
Walmart = <any> 'Walmart',
|
|
30919
30919
|
ShopCom = <any> 'Shop.com',
|
|
30920
|
-
Sezzle = <any> 'Sezzle'
|
|
30920
|
+
Sezzle = <any> 'Sezzle',
|
|
30921
|
+
Venmo = <any> 'Venmo'
|
|
30921
30922
|
}
|
|
30922
30923
|
/**
|
|
30923
30924
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -30265,7 +30265,8 @@ export declare namespace OrderPayment {
|
|
|
30265
30265
|
WireTransfer,
|
|
30266
30266
|
Walmart,
|
|
30267
30267
|
ShopCom,
|
|
30268
|
-
Sezzle
|
|
30268
|
+
Sezzle,
|
|
30269
|
+
Venmo
|
|
30269
30270
|
}
|
|
30270
30271
|
/**
|
|
30271
30272
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -1161,6 +1161,7 @@ var OrderPayment;
|
|
|
1161
1161
|
PaymentMethodEnum[PaymentMethodEnum["Walmart"] = 'Walmart'] = "Walmart";
|
|
1162
1162
|
PaymentMethodEnum[PaymentMethodEnum["ShopCom"] = 'Shop.com'] = "ShopCom";
|
|
1163
1163
|
PaymentMethodEnum[PaymentMethodEnum["Sezzle"] = 'Sezzle'] = "Sezzle";
|
|
1164
|
+
PaymentMethodEnum[PaymentMethodEnum["Venmo"] = 'Venmo'] = "Venmo";
|
|
1164
1165
|
})(PaymentMethodEnum = OrderPayment.PaymentMethodEnum || (OrderPayment.PaymentMethodEnum = {}));
|
|
1165
1166
|
/**
|
|
1166
1167
|
* @export
|