ultracart_rest_api_v2_typescript 3.10.219 → 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 +3 -2
- package/api.ts +19 -1
- package/dist/api.d.ts +19 -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,7 @@ 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 |
|
|
57
58
|
| 3.10.219 | 11/07/2024 | Coupon - PercentOffWithItemsQuantityPurchase - added support for tags |
|
|
58
59
|
| 3.10.218 | 11/04/2024 | item - new constant for auto order schedule of every 5 months |
|
|
59
60
|
| 3.10.217 | 10/24/2024 | storefront page attribute edit method |
|
package/api.ts
CHANGED
|
@@ -26519,11 +26519,29 @@ export interface ItemContent {
|
|
|
26519
26519
|
*/
|
|
26520
26520
|
extended_description?: string;
|
|
26521
26521
|
/**
|
|
26522
|
-
*
|
|
26522
|
+
* Extended description text translation instance identifier
|
|
26523
26523
|
* @type {number}
|
|
26524
26524
|
* @memberof ItemContent
|
|
26525
26525
|
*/
|
|
26526
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;
|
|
26527
26545
|
/**
|
|
26528
26546
|
* Multimedia
|
|
26529
26547
|
* @type {Array<ItemContentMultimedia>}
|
package/dist/api.d.ts
CHANGED
|
@@ -25950,11 +25950,29 @@ export interface ItemContent {
|
|
|
25950
25950
|
*/
|
|
25951
25951
|
extended_description?: string;
|
|
25952
25952
|
/**
|
|
25953
|
-
*
|
|
25953
|
+
* Extended description text translation instance identifier
|
|
25954
25954
|
* @type {number}
|
|
25955
25955
|
* @memberof ItemContent
|
|
25956
25956
|
*/
|
|
25957
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;
|
|
25958
25976
|
/**
|
|
25959
25977
|
* Multimedia
|
|
25960
25978
|
* @type {Array<ItemContentMultimedia>}
|