ultracart_rest_api_v2_typescript 4.0.145 → 4.0.146
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.146
|
|
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.146 --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.146 | 04/11/2023 | missing sezzle payment constant |
|
|
57
58
|
| 4.0.145 | 04/10/2023 | data warehouse internal dev |
|
|
58
59
|
| 4.0.144 | 03/29/2023 | internal development |
|
|
59
60
|
| 4.0.143 | 03/22/2023 | data warehouse internal dev |
|
|
@@ -106,6 +106,12 @@ export interface Experiment {
|
|
|
106
106
|
* @memberof Experiment
|
|
107
107
|
*/
|
|
108
108
|
optimization_type?: string;
|
|
109
|
+
/**
|
|
110
|
+
* Estimated sessions needed to achieve P95
|
|
111
|
+
* @type {number}
|
|
112
|
+
* @memberof Experiment
|
|
113
|
+
*/
|
|
114
|
+
p95_sessions_needed?: number;
|
|
109
115
|
/**
|
|
110
116
|
* Statistics p-value for the experiment
|
|
111
117
|
* @type {number}
|
|
@@ -56,6 +56,7 @@ function ExperimentFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
56
56
|
'openai_model': !(0, runtime_1.exists)(json, 'openai_model') ? undefined : json['openai_model'],
|
|
57
57
|
'openai_total_iterations': !(0, runtime_1.exists)(json, 'openai_total_iterations') ? undefined : json['openai_total_iterations'],
|
|
58
58
|
'optimization_type': !(0, runtime_1.exists)(json, 'optimization_type') ? undefined : json['optimization_type'],
|
|
59
|
+
'p95_sessions_needed': !(0, runtime_1.exists)(json, 'p95_sessions_needed') ? undefined : json['p95_sessions_needed'],
|
|
59
60
|
'p_value': !(0, runtime_1.exists)(json, 'p_value') ? undefined : json['p_value'],
|
|
60
61
|
'session_count': !(0, runtime_1.exists)(json, 'session_count') ? undefined : json['session_count'],
|
|
61
62
|
'start_dts': !(0, runtime_1.exists)(json, 'start_dts') ? undefined : json['start_dts'],
|
|
@@ -90,6 +91,7 @@ function ExperimentToJSON(value) {
|
|
|
90
91
|
'openai_model': value.openai_model,
|
|
91
92
|
'openai_total_iterations': value.openai_total_iterations,
|
|
92
93
|
'optimization_type': value.optimization_type,
|
|
94
|
+
'p95_sessions_needed': value.p95_sessions_needed,
|
|
93
95
|
'p_value': value.p_value,
|
|
94
96
|
'session_count': value.session_count,
|
|
95
97
|
'start_dts': value.start_dts,
|
|
@@ -155,6 +155,7 @@ export declare const OrderPaymentPaymentMethodEnum: {
|
|
|
155
155
|
readonly WireTransfer: "Wire Transfer";
|
|
156
156
|
readonly Walmart: "Walmart";
|
|
157
157
|
readonly ShopCom: "Shop.com";
|
|
158
|
+
readonly Sezzle: "Sezzle";
|
|
158
159
|
};
|
|
159
160
|
export type OrderPaymentPaymentMethodEnum = typeof OrderPaymentPaymentMethodEnum[keyof typeof OrderPaymentPaymentMethodEnum];
|
|
160
161
|
/**
|
package/package.json
CHANGED
package/src/models/Experiment.ts
CHANGED
|
@@ -116,6 +116,12 @@ export interface Experiment {
|
|
|
116
116
|
* @memberof Experiment
|
|
117
117
|
*/
|
|
118
118
|
optimization_type?: string;
|
|
119
|
+
/**
|
|
120
|
+
* Estimated sessions needed to achieve P95
|
|
121
|
+
* @type {number}
|
|
122
|
+
* @memberof Experiment
|
|
123
|
+
*/
|
|
124
|
+
p95_sessions_needed?: number;
|
|
119
125
|
/**
|
|
120
126
|
* Statistics p-value for the experiment
|
|
121
127
|
* @type {number}
|
|
@@ -213,6 +219,7 @@ export function ExperimentFromJSONTyped(json: any, ignoreDiscriminator: boolean)
|
|
|
213
219
|
'openai_model': !exists(json, 'openai_model') ? undefined : json['openai_model'],
|
|
214
220
|
'openai_total_iterations': !exists(json, 'openai_total_iterations') ? undefined : json['openai_total_iterations'],
|
|
215
221
|
'optimization_type': !exists(json, 'optimization_type') ? undefined : json['optimization_type'],
|
|
222
|
+
'p95_sessions_needed': !exists(json, 'p95_sessions_needed') ? undefined : json['p95_sessions_needed'],
|
|
216
223
|
'p_value': !exists(json, 'p_value') ? undefined : json['p_value'],
|
|
217
224
|
'session_count': !exists(json, 'session_count') ? undefined : json['session_count'],
|
|
218
225
|
'start_dts': !exists(json, 'start_dts') ? undefined : json['start_dts'],
|
|
@@ -248,6 +255,7 @@ export function ExperimentToJSON(value?: Experiment | null): any {
|
|
|
248
255
|
'openai_model': value.openai_model,
|
|
249
256
|
'openai_total_iterations': value.openai_total_iterations,
|
|
250
257
|
'optimization_type': value.optimization_type,
|
|
258
|
+
'p95_sessions_needed': value.p95_sessions_needed,
|
|
251
259
|
'p_value': value.p_value,
|
|
252
260
|
'session_count': value.session_count,
|
|
253
261
|
'start_dts': value.start_dts,
|
|
@@ -196,7 +196,8 @@ export const OrderPaymentPaymentMethodEnum = {
|
|
|
196
196
|
Unknown: 'Unknown',
|
|
197
197
|
WireTransfer: 'Wire Transfer',
|
|
198
198
|
Walmart: 'Walmart',
|
|
199
|
-
ShopCom: 'Shop.com'
|
|
199
|
+
ShopCom: 'Shop.com',
|
|
200
|
+
Sezzle: 'Sezzle'
|
|
200
201
|
} as const;
|
|
201
202
|
export type OrderPaymentPaymentMethodEnum = typeof OrderPaymentPaymentMethodEnum[keyof typeof OrderPaymentPaymentMethodEnum];
|
|
202
203
|
|