ultracart_rest_api_v2_typescript 3.10.158 → 3.10.160
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 +54 -0
- package/dist/api.d.ts +54 -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.160
|
|
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.160 --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.160 | 09/15/2023 | new item fields for additional barcodes |
|
|
58
|
+
| 3.10.159 | 09/12/2023 | added oids to customer properties |
|
|
57
59
|
| 3.10.158 | 09/06/2023 | esp condition for survey trigger |
|
|
58
60
|
| 3.10.157 | 09/05/2023 | auto order schedule - add intervals for 4 6 and 8 weeks |
|
|
59
61
|
| 3.10.156 | 08/31/2023 | new coupon - free item and free shipping with purchase |
|
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}
|
|
@@ -25160,6 +25166,30 @@ export interface ItemIdentifiers {
|
|
|
25160
25166
|
* @memberof ItemIdentifiers
|
|
25161
25167
|
*/
|
|
25162
25168
|
barcode?: string;
|
|
25169
|
+
/**
|
|
25170
|
+
* Barcode - GTIN 12
|
|
25171
|
+
* @type {string}
|
|
25172
|
+
* @memberof ItemIdentifiers
|
|
25173
|
+
*/
|
|
25174
|
+
barcode_gtin12?: string;
|
|
25175
|
+
/**
|
|
25176
|
+
* Barcode - GTIN 14
|
|
25177
|
+
* @type {string}
|
|
25178
|
+
* @memberof ItemIdentifiers
|
|
25179
|
+
*/
|
|
25180
|
+
barcode_gtin14?: string;
|
|
25181
|
+
/**
|
|
25182
|
+
* Barcode - UPC 11
|
|
25183
|
+
* @type {string}
|
|
25184
|
+
* @memberof ItemIdentifiers
|
|
25185
|
+
*/
|
|
25186
|
+
barcode_upc11?: string;
|
|
25187
|
+
/**
|
|
25188
|
+
* Barcode - UPC 12
|
|
25189
|
+
* @type {string}
|
|
25190
|
+
* @memberof ItemIdentifiers
|
|
25191
|
+
*/
|
|
25192
|
+
barcode_upc12?: string;
|
|
25163
25193
|
/**
|
|
25164
25194
|
* Manufacturer Name
|
|
25165
25195
|
* @type {string}
|
|
@@ -30385,6 +30415,30 @@ export interface OrderItem {
|
|
|
30385
30415
|
* @memberof OrderItem
|
|
30386
30416
|
*/
|
|
30387
30417
|
barcode?: string;
|
|
30418
|
+
/**
|
|
30419
|
+
* Barcode - GTIN 12
|
|
30420
|
+
* @type {string}
|
|
30421
|
+
* @memberof OrderItem
|
|
30422
|
+
*/
|
|
30423
|
+
barcode_gtin12?: string;
|
|
30424
|
+
/**
|
|
30425
|
+
* Barcode - GTIN 14
|
|
30426
|
+
* @type {string}
|
|
30427
|
+
* @memberof OrderItem
|
|
30428
|
+
*/
|
|
30429
|
+
barcode_gtin14?: string;
|
|
30430
|
+
/**
|
|
30431
|
+
* Barcode - UPC 11
|
|
30432
|
+
* @type {string}
|
|
30433
|
+
* @memberof OrderItem
|
|
30434
|
+
*/
|
|
30435
|
+
barcode_upc11?: string;
|
|
30436
|
+
/**
|
|
30437
|
+
* Barcode - UPC 12
|
|
30438
|
+
* @type {string}
|
|
30439
|
+
* @memberof OrderItem
|
|
30440
|
+
*/
|
|
30441
|
+
barcode_upc12?: string;
|
|
30388
30442
|
/**
|
|
30389
30443
|
* Channel partner item id if this order came through a channel partner and the channel partner item id was mapped to an internal item id
|
|
30390
30444
|
* @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}
|
|
@@ -24628,6 +24634,30 @@ export interface ItemIdentifiers {
|
|
|
24628
24634
|
* @memberof ItemIdentifiers
|
|
24629
24635
|
*/
|
|
24630
24636
|
barcode?: string;
|
|
24637
|
+
/**
|
|
24638
|
+
* Barcode - GTIN 12
|
|
24639
|
+
* @type {string}
|
|
24640
|
+
* @memberof ItemIdentifiers
|
|
24641
|
+
*/
|
|
24642
|
+
barcode_gtin12?: string;
|
|
24643
|
+
/**
|
|
24644
|
+
* Barcode - GTIN 14
|
|
24645
|
+
* @type {string}
|
|
24646
|
+
* @memberof ItemIdentifiers
|
|
24647
|
+
*/
|
|
24648
|
+
barcode_gtin14?: string;
|
|
24649
|
+
/**
|
|
24650
|
+
* Barcode - UPC 11
|
|
24651
|
+
* @type {string}
|
|
24652
|
+
* @memberof ItemIdentifiers
|
|
24653
|
+
*/
|
|
24654
|
+
barcode_upc11?: string;
|
|
24655
|
+
/**
|
|
24656
|
+
* Barcode - UPC 12
|
|
24657
|
+
* @type {string}
|
|
24658
|
+
* @memberof ItemIdentifiers
|
|
24659
|
+
*/
|
|
24660
|
+
barcode_upc12?: string;
|
|
24631
24661
|
/**
|
|
24632
24662
|
* Manufacturer Name
|
|
24633
24663
|
* @type {string}
|
|
@@ -29742,6 +29772,30 @@ export interface OrderItem {
|
|
|
29742
29772
|
* @memberof OrderItem
|
|
29743
29773
|
*/
|
|
29744
29774
|
barcode?: string;
|
|
29775
|
+
/**
|
|
29776
|
+
* Barcode - GTIN 12
|
|
29777
|
+
* @type {string}
|
|
29778
|
+
* @memberof OrderItem
|
|
29779
|
+
*/
|
|
29780
|
+
barcode_gtin12?: string;
|
|
29781
|
+
/**
|
|
29782
|
+
* Barcode - GTIN 14
|
|
29783
|
+
* @type {string}
|
|
29784
|
+
* @memberof OrderItem
|
|
29785
|
+
*/
|
|
29786
|
+
barcode_gtin14?: string;
|
|
29787
|
+
/**
|
|
29788
|
+
* Barcode - UPC 11
|
|
29789
|
+
* @type {string}
|
|
29790
|
+
* @memberof OrderItem
|
|
29791
|
+
*/
|
|
29792
|
+
barcode_upc11?: string;
|
|
29793
|
+
/**
|
|
29794
|
+
* Barcode - UPC 12
|
|
29795
|
+
* @type {string}
|
|
29796
|
+
* @memberof OrderItem
|
|
29797
|
+
*/
|
|
29798
|
+
barcode_upc12?: string;
|
|
29745
29799
|
/**
|
|
29746
29800
|
* Channel partner item id if this order came through a channel partner and the channel partner item id was mapped to an internal item id
|
|
29747
29801
|
* @type {string}
|