ultracart_rest_api_v2_typescript 3.10.153 → 3.10.154
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.154
|
|
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.154 --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.154 | 08/14/2023 | esp - add require_order_within_last to the settings object |
|
|
57
58
|
| 3.10.153 | 08/14/2023 | esp - expose rate limiter values in settings object |
|
|
58
59
|
| 3.10.152 | 07/27/2023 | dw bi - add settings to the report and page objects |
|
|
59
60
|
| 3.10.151 | 07/19/2023 | dw bi - add data_source_uuid to filter connection obj |
|
package/api.ts
CHANGED
|
@@ -19071,6 +19071,12 @@ export interface EmailSettings {
|
|
|
19071
19071
|
* @memberof EmailSettings
|
|
19072
19072
|
*/
|
|
19073
19073
|
postcard_from_state?: string;
|
|
19074
|
+
/**
|
|
19075
|
+
* Require order within last
|
|
19076
|
+
* @type {number}
|
|
19077
|
+
* @memberof EmailSettings
|
|
19078
|
+
*/
|
|
19079
|
+
require_order_within_last?: number;
|
|
19074
19080
|
/**
|
|
19075
19081
|
* True if the Reviews.io integration is configured
|
|
19076
19082
|
* @type {boolean}
|
package/dist/api.d.ts
CHANGED
|
@@ -18642,6 +18642,12 @@ export interface EmailSettings {
|
|
|
18642
18642
|
* @memberof EmailSettings
|
|
18643
18643
|
*/
|
|
18644
18644
|
postcard_from_state?: string;
|
|
18645
|
+
/**
|
|
18646
|
+
* Require order within last
|
|
18647
|
+
* @type {number}
|
|
18648
|
+
* @memberof EmailSettings
|
|
18649
|
+
*/
|
|
18650
|
+
require_order_within_last?: number;
|
|
18645
18651
|
/**
|
|
18646
18652
|
* True if the Reviews.io integration is configured
|
|
18647
18653
|
* @type {boolean}
|