ultracart_rest_api_v2_typescript 3.10.71 → 3.10.72
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 +18 -0
- package/dist/api.d.ts +18 -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.72
|
|
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.72 --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.72 | 11/30/2022 | order item - addl fields for linking kits to kit components |
|
|
57
58
|
| 3.10.71 | 11/29/2022 | converstation marked convo read method |
|
|
58
59
|
| 3.10.70 | 11/21/2022 | coupon - addl optional minimums for percent off msrp items coupon |
|
|
59
60
|
| 3.10.69 | 11/21/2022 | conversation context method |
|
package/api.ts
CHANGED
|
@@ -27963,6 +27963,12 @@ export interface OrderItem {
|
|
|
27963
27963
|
* @memberof OrderItem
|
|
27964
27964
|
*/
|
|
27965
27965
|
height?: Distance;
|
|
27966
|
+
/**
|
|
27967
|
+
* Index of the item on the order (one based index)
|
|
27968
|
+
* @type {number}
|
|
27969
|
+
* @memberof OrderItem
|
|
27970
|
+
*/
|
|
27971
|
+
item_index?: number;
|
|
27966
27972
|
/**
|
|
27967
27973
|
* Item reference object identifier used to linked to auto order item record
|
|
27968
27974
|
* @type {number}
|
|
@@ -28035,6 +28041,18 @@ export interface OrderItem {
|
|
|
28035
28041
|
* @memberof OrderItem
|
|
28036
28042
|
*/
|
|
28037
28043
|
packed_by_user?: string;
|
|
28044
|
+
/**
|
|
28045
|
+
* If this item is a kit component, this is the item index of the parent item (kit)
|
|
28046
|
+
* @type {number}
|
|
28047
|
+
* @memberof OrderItem
|
|
28048
|
+
*/
|
|
28049
|
+
parent_item_index?: number;
|
|
28050
|
+
/**
|
|
28051
|
+
* If this item is a kit component, this is the item id of the parent item (kit)
|
|
28052
|
+
* @type {string}
|
|
28053
|
+
* @memberof OrderItem
|
|
28054
|
+
*/
|
|
28055
|
+
parent_merchant_item_id?: string;
|
|
28038
28056
|
/**
|
|
28039
28057
|
* Perishable class of the item
|
|
28040
28058
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -27379,6 +27379,12 @@ export interface OrderItem {
|
|
|
27379
27379
|
* @memberof OrderItem
|
|
27380
27380
|
*/
|
|
27381
27381
|
height?: Distance;
|
|
27382
|
+
/**
|
|
27383
|
+
* Index of the item on the order (one based index)
|
|
27384
|
+
* @type {number}
|
|
27385
|
+
* @memberof OrderItem
|
|
27386
|
+
*/
|
|
27387
|
+
item_index?: number;
|
|
27382
27388
|
/**
|
|
27383
27389
|
* Item reference object identifier used to linked to auto order item record
|
|
27384
27390
|
* @type {number}
|
|
@@ -27451,6 +27457,18 @@ export interface OrderItem {
|
|
|
27451
27457
|
* @memberof OrderItem
|
|
27452
27458
|
*/
|
|
27453
27459
|
packed_by_user?: string;
|
|
27460
|
+
/**
|
|
27461
|
+
* If this item is a kit component, this is the item index of the parent item (kit)
|
|
27462
|
+
* @type {number}
|
|
27463
|
+
* @memberof OrderItem
|
|
27464
|
+
*/
|
|
27465
|
+
parent_item_index?: number;
|
|
27466
|
+
/**
|
|
27467
|
+
* If this item is a kit component, this is the item id of the parent item (kit)
|
|
27468
|
+
* @type {string}
|
|
27469
|
+
* @memberof OrderItem
|
|
27470
|
+
*/
|
|
27471
|
+
parent_merchant_item_id?: string;
|
|
27454
27472
|
/**
|
|
27455
27473
|
* Perishable class of the item
|
|
27456
27474
|
* @type {string}
|