ultracart_rest_api_v2_typescript 3.10.218 → 3.10.220
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 +31 -1
- package/dist/api.d.ts +31 -1
- 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.220
|
|
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.220 --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.220 | 11/11/2024 | added seo properties to item.content object |
|
|
58
|
+
| 3.10.219 | 11/07/2024 | Coupon - PercentOffWithItemsQuantityPurchase - added support for tags |
|
|
57
59
|
| 3.10.218 | 11/04/2024 | item - new constant for auto order schedule of every 5 months |
|
|
58
60
|
| 3.10.217 | 10/24/2024 | storefront page attribute edit method |
|
|
59
61
|
| 3.10.216 | 09/18/2024 | order payment constant for PayPal Fastlane |
|
package/api.ts
CHANGED
|
@@ -13273,6 +13273,12 @@ export interface CouponPercentOffItemWithItemsQuantityPurchase {
|
|
|
13273
13273
|
* @memberof CouponPercentOffItemWithItemsQuantityPurchase
|
|
13274
13274
|
*/
|
|
13275
13275
|
discount_percent?: number;
|
|
13276
|
+
/**
|
|
13277
|
+
* An optional list of item tags which will receive a discount if one of the required purchased items is purchased.
|
|
13278
|
+
* @type {Array<string>}
|
|
13279
|
+
* @memberof CouponPercentOffItemWithItemsQuantityPurchase
|
|
13280
|
+
*/
|
|
13281
|
+
item_tags?: Array<string>;
|
|
13276
13282
|
/**
|
|
13277
13283
|
* A list of items which will receive a discount if one of the required purchase items is purchased.
|
|
13278
13284
|
* @type {Array<string>}
|
|
@@ -13291,6 +13297,12 @@ export interface CouponPercentOffItemWithItemsQuantityPurchase {
|
|
|
13291
13297
|
* @memberof CouponPercentOffItemWithItemsQuantityPurchase
|
|
13292
13298
|
*/
|
|
13293
13299
|
required_purchase_items?: Array<string>;
|
|
13300
|
+
/**
|
|
13301
|
+
* Required item tags (at least one from the list) that must be purchase for coupon to be valid.
|
|
13302
|
+
* @type {Array<string>}
|
|
13303
|
+
* @memberof CouponPercentOffItemWithItemsQuantityPurchase
|
|
13304
|
+
*/
|
|
13305
|
+
required_purchase_items_tags?: Array<string>;
|
|
13294
13306
|
/**
|
|
13295
13307
|
* The quantity of items that must be purchased for the discount to be applied.
|
|
13296
13308
|
* @type {number}
|
|
@@ -26507,11 +26519,29 @@ export interface ItemContent {
|
|
|
26507
26519
|
*/
|
|
26508
26520
|
extended_description?: string;
|
|
26509
26521
|
/**
|
|
26510
|
-
*
|
|
26522
|
+
* Extended description text translation instance identifier
|
|
26511
26523
|
* @type {number}
|
|
26512
26524
|
* @memberof ItemContent
|
|
26513
26525
|
*/
|
|
26514
26526
|
extended_description_translated_text_instance_oid?: number;
|
|
26527
|
+
/**
|
|
26528
|
+
* SEO meta description used by Storefronts
|
|
26529
|
+
* @type {string}
|
|
26530
|
+
* @memberof ItemContent
|
|
26531
|
+
*/
|
|
26532
|
+
meta_description?: string;
|
|
26533
|
+
/**
|
|
26534
|
+
* SEO meta keywords used by Storefronts
|
|
26535
|
+
* @type {string}
|
|
26536
|
+
* @memberof ItemContent
|
|
26537
|
+
*/
|
|
26538
|
+
meta_keywords?: string;
|
|
26539
|
+
/**
|
|
26540
|
+
* SEO meta title used by Storefronts
|
|
26541
|
+
* @type {string}
|
|
26542
|
+
* @memberof ItemContent
|
|
26543
|
+
*/
|
|
26544
|
+
meta_title?: string;
|
|
26515
26545
|
/**
|
|
26516
26546
|
* Multimedia
|
|
26517
26547
|
* @type {Array<ItemContentMultimedia>}
|
package/dist/api.d.ts
CHANGED
|
@@ -12955,6 +12955,12 @@ export interface CouponPercentOffItemWithItemsQuantityPurchase {
|
|
|
12955
12955
|
* @memberof CouponPercentOffItemWithItemsQuantityPurchase
|
|
12956
12956
|
*/
|
|
12957
12957
|
discount_percent?: number;
|
|
12958
|
+
/**
|
|
12959
|
+
* An optional list of item tags which will receive a discount if one of the required purchased items is purchased.
|
|
12960
|
+
* @type {Array<string>}
|
|
12961
|
+
* @memberof CouponPercentOffItemWithItemsQuantityPurchase
|
|
12962
|
+
*/
|
|
12963
|
+
item_tags?: Array<string>;
|
|
12958
12964
|
/**
|
|
12959
12965
|
* A list of items which will receive a discount if one of the required purchase items is purchased.
|
|
12960
12966
|
* @type {Array<string>}
|
|
@@ -12973,6 +12979,12 @@ export interface CouponPercentOffItemWithItemsQuantityPurchase {
|
|
|
12973
12979
|
* @memberof CouponPercentOffItemWithItemsQuantityPurchase
|
|
12974
12980
|
*/
|
|
12975
12981
|
required_purchase_items?: Array<string>;
|
|
12982
|
+
/**
|
|
12983
|
+
* Required item tags (at least one from the list) that must be purchase for coupon to be valid.
|
|
12984
|
+
* @type {Array<string>}
|
|
12985
|
+
* @memberof CouponPercentOffItemWithItemsQuantityPurchase
|
|
12986
|
+
*/
|
|
12987
|
+
required_purchase_items_tags?: Array<string>;
|
|
12976
12988
|
/**
|
|
12977
12989
|
* The quantity of items that must be purchased for the discount to be applied.
|
|
12978
12990
|
* @type {number}
|
|
@@ -25938,11 +25950,29 @@ export interface ItemContent {
|
|
|
25938
25950
|
*/
|
|
25939
25951
|
extended_description?: string;
|
|
25940
25952
|
/**
|
|
25941
|
-
*
|
|
25953
|
+
* Extended description text translation instance identifier
|
|
25942
25954
|
* @type {number}
|
|
25943
25955
|
* @memberof ItemContent
|
|
25944
25956
|
*/
|
|
25945
25957
|
extended_description_translated_text_instance_oid?: number;
|
|
25958
|
+
/**
|
|
25959
|
+
* SEO meta description used by Storefronts
|
|
25960
|
+
* @type {string}
|
|
25961
|
+
* @memberof ItemContent
|
|
25962
|
+
*/
|
|
25963
|
+
meta_description?: string;
|
|
25964
|
+
/**
|
|
25965
|
+
* SEO meta keywords used by Storefronts
|
|
25966
|
+
* @type {string}
|
|
25967
|
+
* @memberof ItemContent
|
|
25968
|
+
*/
|
|
25969
|
+
meta_keywords?: string;
|
|
25970
|
+
/**
|
|
25971
|
+
* SEO meta title used by Storefronts
|
|
25972
|
+
* @type {string}
|
|
25973
|
+
* @memberof ItemContent
|
|
25974
|
+
*/
|
|
25975
|
+
meta_title?: string;
|
|
25946
25976
|
/**
|
|
25947
25977
|
* Multimedia
|
|
25948
25978
|
* @type {Array<ItemContentMultimedia>}
|