ultracart_rest_api_v2_typescript 3.10.129 → 3.10.130
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 +6 -0
- package/dist/api.d.ts +6 -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.130
|
|
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.130 --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.130 | 04/17/2023 | OrderPaymentTransaction - expose the transaction id |
|
|
57
58
|
| 3.10.129 | 04/11/2023 | missing sezzle payment constant |
|
|
58
59
|
| 3.10.128 | 04/10/2023 | data warehouse internal dev |
|
|
59
60
|
| 3.10.127 | 03/29/2023 | internal development |
|
package/api.ts
CHANGED
|
@@ -31086,6 +31086,12 @@ export interface OrderPaymentTransaction {
|
|
|
31086
31086
|
* @memberof OrderPaymentTransaction
|
|
31087
31087
|
*/
|
|
31088
31088
|
transaction_gateway?: string;
|
|
31089
|
+
/**
|
|
31090
|
+
* Transaction ID
|
|
31091
|
+
* @type {number}
|
|
31092
|
+
* @memberof OrderPaymentTransaction
|
|
31093
|
+
*/
|
|
31094
|
+
transaction_id?: number;
|
|
31089
31095
|
/**
|
|
31090
31096
|
* Transaction date/time
|
|
31091
31097
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -30429,6 +30429,12 @@ export interface OrderPaymentTransaction {
|
|
|
30429
30429
|
* @memberof OrderPaymentTransaction
|
|
30430
30430
|
*/
|
|
30431
30431
|
transaction_gateway?: string;
|
|
30432
|
+
/**
|
|
30433
|
+
* Transaction ID
|
|
30434
|
+
* @type {number}
|
|
30435
|
+
* @memberof OrderPaymentTransaction
|
|
30436
|
+
*/
|
|
30437
|
+
transaction_id?: number;
|
|
30432
30438
|
/**
|
|
30433
30439
|
* Transaction date/time
|
|
30434
30440
|
* @type {string}
|