ultracart_rest_api_v2_typescript 3.10.128 → 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 +4 -2
- package/api.ts +14 -1
- package/dist/api.d.ts +14 -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.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,8 @@ 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 |
|
|
58
|
+
| 3.10.129 | 04/11/2023 | missing sezzle payment constant |
|
|
57
59
|
| 3.10.128 | 04/10/2023 | data warehouse internal dev |
|
|
58
60
|
| 3.10.127 | 03/29/2023 | internal development |
|
|
59
61
|
| 3.10.126 | 03/22/2023 | data warehouse internal dev |
|
package/api.ts
CHANGED
|
@@ -20119,6 +20119,12 @@ export interface Experiment {
|
|
|
20119
20119
|
* @memberof Experiment
|
|
20120
20120
|
*/
|
|
20121
20121
|
optimization_type?: string;
|
|
20122
|
+
/**
|
|
20123
|
+
* Estimated sessions needed to achieve P95
|
|
20124
|
+
* @type {number}
|
|
20125
|
+
* @memberof Experiment
|
|
20126
|
+
*/
|
|
20127
|
+
p95_sessions_needed?: number;
|
|
20122
20128
|
/**
|
|
20123
20129
|
* Statistics p-value for the experiment
|
|
20124
20130
|
* @type {number}
|
|
@@ -30793,7 +30799,8 @@ export namespace OrderPayment {
|
|
|
30793
30799
|
Unknown = <any> 'Unknown',
|
|
30794
30800
|
WireTransfer = <any> 'Wire Transfer',
|
|
30795
30801
|
Walmart = <any> 'Walmart',
|
|
30796
|
-
ShopCom = <any> 'Shop.com'
|
|
30802
|
+
ShopCom = <any> 'Shop.com',
|
|
30803
|
+
Sezzle = <any> 'Sezzle'
|
|
30797
30804
|
}
|
|
30798
30805
|
/**
|
|
30799
30806
|
* @export
|
|
@@ -31079,6 +31086,12 @@ export interface OrderPaymentTransaction {
|
|
|
31079
31086
|
* @memberof OrderPaymentTransaction
|
|
31080
31087
|
*/
|
|
31081
31088
|
transaction_gateway?: string;
|
|
31089
|
+
/**
|
|
31090
|
+
* Transaction ID
|
|
31091
|
+
* @type {number}
|
|
31092
|
+
* @memberof OrderPaymentTransaction
|
|
31093
|
+
*/
|
|
31094
|
+
transaction_id?: number;
|
|
31082
31095
|
/**
|
|
31083
31096
|
* Transaction date/time
|
|
31084
31097
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -19668,6 +19668,12 @@ export interface Experiment {
|
|
|
19668
19668
|
* @memberof Experiment
|
|
19669
19669
|
*/
|
|
19670
19670
|
optimization_type?: string;
|
|
19671
|
+
/**
|
|
19672
|
+
* Estimated sessions needed to achieve P95
|
|
19673
|
+
* @type {number}
|
|
19674
|
+
* @memberof Experiment
|
|
19675
|
+
*/
|
|
19676
|
+
p95_sessions_needed?: number;
|
|
19671
19677
|
/**
|
|
19672
19678
|
* Statistics p-value for the experiment
|
|
19673
19679
|
* @type {number}
|
|
@@ -30144,7 +30150,8 @@ export declare namespace OrderPayment {
|
|
|
30144
30150
|
Unknown,
|
|
30145
30151
|
WireTransfer,
|
|
30146
30152
|
Walmart,
|
|
30147
|
-
ShopCom
|
|
30153
|
+
ShopCom,
|
|
30154
|
+
Sezzle
|
|
30148
30155
|
}
|
|
30149
30156
|
/**
|
|
30150
30157
|
* @export
|
|
@@ -30422,6 +30429,12 @@ export interface OrderPaymentTransaction {
|
|
|
30422
30429
|
* @memberof OrderPaymentTransaction
|
|
30423
30430
|
*/
|
|
30424
30431
|
transaction_gateway?: string;
|
|
30432
|
+
/**
|
|
30433
|
+
* Transaction ID
|
|
30434
|
+
* @type {number}
|
|
30435
|
+
* @memberof OrderPaymentTransaction
|
|
30436
|
+
*/
|
|
30437
|
+
transaction_id?: number;
|
|
30425
30438
|
/**
|
|
30426
30439
|
* Transaction date/time
|
|
30427
30440
|
* @type {string}
|
package/dist/api.js
CHANGED
|
@@ -1142,6 +1142,7 @@ var OrderPayment;
|
|
|
1142
1142
|
PaymentMethodEnum[PaymentMethodEnum["WireTransfer"] = 'Wire Transfer'] = "WireTransfer";
|
|
1143
1143
|
PaymentMethodEnum[PaymentMethodEnum["Walmart"] = 'Walmart'] = "Walmart";
|
|
1144
1144
|
PaymentMethodEnum[PaymentMethodEnum["ShopCom"] = 'Shop.com'] = "ShopCom";
|
|
1145
|
+
PaymentMethodEnum[PaymentMethodEnum["Sezzle"] = 'Sezzle'] = "Sezzle";
|
|
1145
1146
|
})(PaymentMethodEnum = OrderPayment.PaymentMethodEnum || (OrderPayment.PaymentMethodEnum = {}));
|
|
1146
1147
|
/**
|
|
1147
1148
|
* @export
|