ultracart_rest_api_v2_typescript 3.10.157 → 3.10.159
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 +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.159
|
|
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.159 --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.159 | 09/12/2023 | added oids to customer properties |
|
|
58
|
+
| 3.10.158 | 09/06/2023 | esp condition for survey trigger |
|
|
57
59
|
| 3.10.157 | 09/05/2023 | auto order schedule - add intervals for 4 6 and 8 weeks |
|
|
58
60
|
| 3.10.156 | 08/31/2023 | new coupon - free item and free shipping with purchase |
|
|
59
61
|
| 3.10.155 | 08/16/2023 | added validate_original_order query param to auto order update method |
|
package/api.ts
CHANGED
|
@@ -13140,6 +13140,12 @@ export interface CustomerPrivacy {
|
|
|
13140
13140
|
* @interface CustomerProperty
|
|
13141
13141
|
*/
|
|
13142
13142
|
export interface CustomerProperty {
|
|
13143
|
+
/**
|
|
13144
|
+
* Customer profile property oid
|
|
13145
|
+
* @type {number}
|
|
13146
|
+
* @memberof CustomerProperty
|
|
13147
|
+
*/
|
|
13148
|
+
customer_profile_property_oid?: number;
|
|
13143
13149
|
/**
|
|
13144
13150
|
* The date/time that the property expires and is deleted
|
|
13145
13151
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -12821,6 +12821,12 @@ export interface CustomerPrivacy {
|
|
|
12821
12821
|
* @interface CustomerProperty
|
|
12822
12822
|
*/
|
|
12823
12823
|
export interface CustomerProperty {
|
|
12824
|
+
/**
|
|
12825
|
+
* Customer profile property oid
|
|
12826
|
+
* @type {number}
|
|
12827
|
+
* @memberof CustomerProperty
|
|
12828
|
+
*/
|
|
12829
|
+
customer_profile_property_oid?: number;
|
|
12824
12830
|
/**
|
|
12825
12831
|
* The date/time that the property expires and is deleted
|
|
12826
12832
|
* @type {string}
|