ultracart_rest_api_v2_typescript 3.10.169 → 3.10.170
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 +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.170
|
|
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.170 --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.170 | 11/09/2023 | item - new auto order step type: pause until |
|
|
57
58
|
| 3.10.169 | 11/06/2023 | customer api - added wishlist methods |
|
|
58
59
|
| 3.10.168 | 11/01/2023 | customer - do_no_send_mail flag added |
|
|
59
60
|
| 3.10.167 | 10/30/2023 | cart/order fields for health benefit card values in summary expansion objects |
|
package/api.ts
CHANGED
|
@@ -23457,6 +23457,18 @@ export interface ItemAutoOrderStep {
|
|
|
23457
23457
|
* @memberof ItemAutoOrderStep
|
|
23458
23458
|
*/
|
|
23459
23459
|
pause_until_date?: string;
|
|
23460
|
+
/**
|
|
23461
|
+
* Pause until a specific day of the month
|
|
23462
|
+
* @type {number}
|
|
23463
|
+
* @memberof ItemAutoOrderStep
|
|
23464
|
+
*/
|
|
23465
|
+
pause_until_day_of_month?: number;
|
|
23466
|
+
/**
|
|
23467
|
+
* Pause at least this many days between the last order and the calculated next day of month
|
|
23468
|
+
* @type {number}
|
|
23469
|
+
* @memberof ItemAutoOrderStep
|
|
23470
|
+
*/
|
|
23471
|
+
pause_until_minimum_delay_days?: number;
|
|
23460
23472
|
/**
|
|
23461
23473
|
* If set, a pre-shipment notice is sent to the customer this many days in advance
|
|
23462
23474
|
* @type {number}
|
|
@@ -23520,7 +23532,8 @@ export namespace ItemAutoOrderStep {
|
|
|
23520
23532
|
Item = <any> 'item',
|
|
23521
23533
|
Pause = <any> 'pause',
|
|
23522
23534
|
Loop = <any> 'loop',
|
|
23523
|
-
KitOnly = <any> 'kit only'
|
|
23535
|
+
KitOnly = <any> 'kit only',
|
|
23536
|
+
PauseUntil = <any> 'pause until'
|
|
23524
23537
|
}
|
|
23525
23538
|
}
|
|
23526
23539
|
|
package/dist/api.d.ts
CHANGED
|
@@ -22951,6 +22951,18 @@ export interface ItemAutoOrderStep {
|
|
|
22951
22951
|
* @memberof ItemAutoOrderStep
|
|
22952
22952
|
*/
|
|
22953
22953
|
pause_until_date?: string;
|
|
22954
|
+
/**
|
|
22955
|
+
* Pause until a specific day of the month
|
|
22956
|
+
* @type {number}
|
|
22957
|
+
* @memberof ItemAutoOrderStep
|
|
22958
|
+
*/
|
|
22959
|
+
pause_until_day_of_month?: number;
|
|
22960
|
+
/**
|
|
22961
|
+
* Pause at least this many days between the last order and the calculated next day of month
|
|
22962
|
+
* @type {number}
|
|
22963
|
+
* @memberof ItemAutoOrderStep
|
|
22964
|
+
*/
|
|
22965
|
+
pause_until_minimum_delay_days?: number;
|
|
22954
22966
|
/**
|
|
22955
22967
|
* If set, a pre-shipment notice is sent to the customer this many days in advance
|
|
22956
22968
|
* @type {number}
|
|
@@ -23013,7 +23025,8 @@ export declare namespace ItemAutoOrderStep {
|
|
|
23013
23025
|
Item,
|
|
23014
23026
|
Pause,
|
|
23015
23027
|
Loop,
|
|
23016
|
-
KitOnly
|
|
23028
|
+
KitOnly,
|
|
23029
|
+
PauseUntil
|
|
23017
23030
|
}
|
|
23018
23031
|
}
|
|
23019
23032
|
/**
|
package/dist/api.js
CHANGED
|
@@ -787,6 +787,7 @@ var ItemAutoOrderStep;
|
|
|
787
787
|
TypeEnum[TypeEnum["Pause"] = 'pause'] = "Pause";
|
|
788
788
|
TypeEnum[TypeEnum["Loop"] = 'loop'] = "Loop";
|
|
789
789
|
TypeEnum[TypeEnum["KitOnly"] = 'kit only'] = "KitOnly";
|
|
790
|
+
TypeEnum[TypeEnum["PauseUntil"] = 'pause until'] = "PauseUntil";
|
|
790
791
|
})(TypeEnum = ItemAutoOrderStep.TypeEnum || (ItemAutoOrderStep.TypeEnum = {}));
|
|
791
792
|
})(ItemAutoOrderStep = exports.ItemAutoOrderStep || (exports.ItemAutoOrderStep = {}));
|
|
792
793
|
/**
|