@teemill/product-catalog 1.81.2 → 1.82.0
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 +35 -4
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +35 -4
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +35 -4
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/BundleProduct.md +1 -1
- package/docs/CreateBundleProduct.md +1 -1
- package/docs/CreateBundleProductSeoMetadata.md +22 -0
- package/docs/CreateProductRequest.md +1 -1
- package/docs/ProductBundleItemsInner.md +1 -1
- package/docs/SEOMetadata.md +2 -0
- package/docs/SEOMetadata1.md +23 -0
- package/docs/UpdateProductsRequestProductsInnerSeoMetadata.md +2 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/product-catalog@1.
|
|
1
|
+
## @teemill/product-catalog@1.82.0
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). 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 @teemill/product-catalog@1.
|
|
39
|
+
npm install @teemill/product-catalog@1.82.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -112,6 +112,7 @@ Class | Method | HTTP request | Description
|
|
|
112
112
|
- [CreateApplicationSetRequestRecordsInnerAttributesInner](docs/CreateApplicationSetRequestRecordsInnerAttributesInner.md)
|
|
113
113
|
- [CreateBundleProduct](docs/CreateBundleProduct.md)
|
|
114
114
|
- [CreateBundleProductBundleItemsInner](docs/CreateBundleProductBundleItemsInner.md)
|
|
115
|
+
- [CreateBundleProductSeoMetadata](docs/CreateBundleProductSeoMetadata.md)
|
|
115
116
|
- [CreateProduct](docs/CreateProduct.md)
|
|
116
117
|
- [CreateProductAdditionalFilesInner](docs/CreateProductAdditionalFilesInner.md)
|
|
117
118
|
- [CreateProductImagesInner](docs/CreateProductImagesInner.md)
|
|
@@ -141,6 +142,7 @@ Class | Method | HTTP request | Description
|
|
|
141
142
|
- [ProductsResponse](docs/ProductsResponse.md)
|
|
142
143
|
- [RequiredPrice](docs/RequiredPrice.md)
|
|
143
144
|
- [SEOMetadata](docs/SEOMetadata.md)
|
|
145
|
+
- [SEOMetadata1](docs/SEOMetadata1.md)
|
|
144
146
|
- [SalePrice](docs/SalePrice.md)
|
|
145
147
|
- [SeoOptimiseProducts202Response](docs/SeoOptimiseProducts202Response.md)
|
|
146
148
|
- [SeoOptimiseProductsRequest](docs/SeoOptimiseProductsRequest.md)
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.82.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -400,7 +400,7 @@ export interface BundleProduct {
|
|
|
400
400
|
'slug'?: string;
|
|
401
401
|
'brand'?: string;
|
|
402
402
|
'enabled'?: boolean;
|
|
403
|
-
'seoMetadata'?:
|
|
403
|
+
'seoMetadata'?: SEOMetadata1;
|
|
404
404
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
405
405
|
'tags'?: Array<string>;
|
|
406
406
|
'internalTags'?: Array<string>;
|
|
@@ -648,7 +648,7 @@ export interface CreateBundleProduct {
|
|
|
648
648
|
* A custom URL slug for the product. This must be unique for each product on the project.
|
|
649
649
|
*/
|
|
650
650
|
'slug'?: string;
|
|
651
|
-
'seoMetadata'?:
|
|
651
|
+
'seoMetadata'?: CreateBundleProductSeoMetadata;
|
|
652
652
|
/**
|
|
653
653
|
* The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration
|
|
654
654
|
*/
|
|
@@ -699,6 +699,16 @@ export interface CreateBundleProductBundleItemsInner {
|
|
|
699
699
|
*/
|
|
700
700
|
'id'?: string;
|
|
701
701
|
}
|
|
702
|
+
export interface CreateBundleProductSeoMetadata {
|
|
703
|
+
/**
|
|
704
|
+
* Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used.
|
|
705
|
+
*/
|
|
706
|
+
'title'?: string;
|
|
707
|
+
/**
|
|
708
|
+
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
709
|
+
*/
|
|
710
|
+
'description'?: string | null;
|
|
711
|
+
}
|
|
702
712
|
export interface CreateProduct {
|
|
703
713
|
/**
|
|
704
714
|
* Reference to the product in the GFN catalog that will be used as a base for this product. A list of available products for the given project can be obtained from the GFN Catalog API.
|
|
@@ -1126,7 +1136,7 @@ export interface ProductBundleItemsInner {
|
|
|
1126
1136
|
'slug'?: string;
|
|
1127
1137
|
'brand'?: string;
|
|
1128
1138
|
'enabled'?: boolean;
|
|
1129
|
-
'seoMetadata'?:
|
|
1139
|
+
'seoMetadata'?: SEOMetadata1;
|
|
1130
1140
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
1131
1141
|
'tags'?: Array<string>;
|
|
1132
1142
|
'internalTags'?: Array<string>;
|
|
@@ -1245,6 +1255,23 @@ export interface SEOMetadata {
|
|
|
1245
1255
|
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
1246
1256
|
*/
|
|
1247
1257
|
'description'?: string | null;
|
|
1258
|
+
/**
|
|
1259
|
+
* Whether to prevent the product from being indexed by search engines.
|
|
1260
|
+
*/
|
|
1261
|
+
'noIndex'?: boolean;
|
|
1262
|
+
}
|
|
1263
|
+
/**
|
|
1264
|
+
* SEO metadata for the product
|
|
1265
|
+
*/
|
|
1266
|
+
export interface SEOMetadata1 {
|
|
1267
|
+
/**
|
|
1268
|
+
* Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used.
|
|
1269
|
+
*/
|
|
1270
|
+
'title'?: string;
|
|
1271
|
+
/**
|
|
1272
|
+
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
1273
|
+
*/
|
|
1274
|
+
'description'?: string | null;
|
|
1248
1275
|
}
|
|
1249
1276
|
/**
|
|
1250
1277
|
* Discounted price including tax.
|
|
@@ -1662,6 +1689,10 @@ export interface UpdateProductsRequestProductsInnerSeoMetadata {
|
|
|
1662
1689
|
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
1663
1690
|
*/
|
|
1664
1691
|
'description'?: string | null;
|
|
1692
|
+
/**
|
|
1693
|
+
* Whether to prevent the product from being indexed by search engines.
|
|
1694
|
+
*/
|
|
1695
|
+
'noIndex'?: boolean;
|
|
1665
1696
|
}
|
|
1666
1697
|
export interface UpdateProductsRequestProductsInnerVariantsInner {
|
|
1667
1698
|
/**
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.82.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.82.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Product Catalog API
|
|
4
4
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.82.0
|
|
7
7
|
*
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.82.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -375,7 +375,7 @@ export interface BundleProduct {
|
|
|
375
375
|
'slug'?: string;
|
|
376
376
|
'brand'?: string;
|
|
377
377
|
'enabled'?: boolean;
|
|
378
|
-
'seoMetadata'?:
|
|
378
|
+
'seoMetadata'?: SEOMetadata1;
|
|
379
379
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
380
380
|
'tags'?: Array<string>;
|
|
381
381
|
'internalTags'?: Array<string>;
|
|
@@ -615,7 +615,7 @@ export interface CreateBundleProduct {
|
|
|
615
615
|
* A custom URL slug for the product. This must be unique for each product on the project.
|
|
616
616
|
*/
|
|
617
617
|
'slug'?: string;
|
|
618
|
-
'seoMetadata'?:
|
|
618
|
+
'seoMetadata'?: CreateBundleProductSeoMetadata;
|
|
619
619
|
/**
|
|
620
620
|
* The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration
|
|
621
621
|
*/
|
|
@@ -666,6 +666,16 @@ export interface CreateBundleProductBundleItemsInner {
|
|
|
666
666
|
*/
|
|
667
667
|
'id'?: string;
|
|
668
668
|
}
|
|
669
|
+
export interface CreateBundleProductSeoMetadata {
|
|
670
|
+
/**
|
|
671
|
+
* Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used.
|
|
672
|
+
*/
|
|
673
|
+
'title'?: string;
|
|
674
|
+
/**
|
|
675
|
+
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
676
|
+
*/
|
|
677
|
+
'description'?: string | null;
|
|
678
|
+
}
|
|
669
679
|
export interface CreateProduct {
|
|
670
680
|
/**
|
|
671
681
|
* Reference to the product in the GFN catalog that will be used as a base for this product. A list of available products for the given project can be obtained from the GFN Catalog API.
|
|
@@ -1089,7 +1099,7 @@ export interface ProductBundleItemsInner {
|
|
|
1089
1099
|
'slug'?: string;
|
|
1090
1100
|
'brand'?: string;
|
|
1091
1101
|
'enabled'?: boolean;
|
|
1092
|
-
'seoMetadata'?:
|
|
1102
|
+
'seoMetadata'?: SEOMetadata1;
|
|
1093
1103
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
1094
1104
|
'tags'?: Array<string>;
|
|
1095
1105
|
'internalTags'?: Array<string>;
|
|
@@ -1205,6 +1215,23 @@ export interface SEOMetadata {
|
|
|
1205
1215
|
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
1206
1216
|
*/
|
|
1207
1217
|
'description'?: string | null;
|
|
1218
|
+
/**
|
|
1219
|
+
* Whether to prevent the product from being indexed by search engines.
|
|
1220
|
+
*/
|
|
1221
|
+
'noIndex'?: boolean;
|
|
1222
|
+
}
|
|
1223
|
+
/**
|
|
1224
|
+
* SEO metadata for the product
|
|
1225
|
+
*/
|
|
1226
|
+
export interface SEOMetadata1 {
|
|
1227
|
+
/**
|
|
1228
|
+
* Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used.
|
|
1229
|
+
*/
|
|
1230
|
+
'title'?: string;
|
|
1231
|
+
/**
|
|
1232
|
+
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
1233
|
+
*/
|
|
1234
|
+
'description'?: string | null;
|
|
1208
1235
|
}
|
|
1209
1236
|
/**
|
|
1210
1237
|
* Discounted price including tax.
|
|
@@ -1612,6 +1639,10 @@ export interface UpdateProductsRequestProductsInnerSeoMetadata {
|
|
|
1612
1639
|
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
1613
1640
|
*/
|
|
1614
1641
|
'description'?: string | null;
|
|
1642
|
+
/**
|
|
1643
|
+
* Whether to prevent the product from being indexed by search engines.
|
|
1644
|
+
*/
|
|
1645
|
+
'noIndex'?: boolean;
|
|
1615
1646
|
}
|
|
1616
1647
|
export interface UpdateProductsRequestProductsInnerVariantsInner {
|
|
1617
1648
|
/**
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.82.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.82.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.82.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.82.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.82.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.82.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.82.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.82.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -375,7 +375,7 @@ export interface BundleProduct {
|
|
|
375
375
|
'slug'?: string;
|
|
376
376
|
'brand'?: string;
|
|
377
377
|
'enabled'?: boolean;
|
|
378
|
-
'seoMetadata'?:
|
|
378
|
+
'seoMetadata'?: SEOMetadata1;
|
|
379
379
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
380
380
|
'tags'?: Array<string>;
|
|
381
381
|
'internalTags'?: Array<string>;
|
|
@@ -615,7 +615,7 @@ export interface CreateBundleProduct {
|
|
|
615
615
|
* A custom URL slug for the product. This must be unique for each product on the project.
|
|
616
616
|
*/
|
|
617
617
|
'slug'?: string;
|
|
618
|
-
'seoMetadata'?:
|
|
618
|
+
'seoMetadata'?: CreateBundleProductSeoMetadata;
|
|
619
619
|
/**
|
|
620
620
|
* The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration
|
|
621
621
|
*/
|
|
@@ -666,6 +666,16 @@ export interface CreateBundleProductBundleItemsInner {
|
|
|
666
666
|
*/
|
|
667
667
|
'id'?: string;
|
|
668
668
|
}
|
|
669
|
+
export interface CreateBundleProductSeoMetadata {
|
|
670
|
+
/**
|
|
671
|
+
* Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used.
|
|
672
|
+
*/
|
|
673
|
+
'title'?: string;
|
|
674
|
+
/**
|
|
675
|
+
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
676
|
+
*/
|
|
677
|
+
'description'?: string | null;
|
|
678
|
+
}
|
|
669
679
|
export interface CreateProduct {
|
|
670
680
|
/**
|
|
671
681
|
* Reference to the product in the GFN catalog that will be used as a base for this product. A list of available products for the given project can be obtained from the GFN Catalog API.
|
|
@@ -1089,7 +1099,7 @@ export interface ProductBundleItemsInner {
|
|
|
1089
1099
|
'slug'?: string;
|
|
1090
1100
|
'brand'?: string;
|
|
1091
1101
|
'enabled'?: boolean;
|
|
1092
|
-
'seoMetadata'?:
|
|
1102
|
+
'seoMetadata'?: SEOMetadata1;
|
|
1093
1103
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
1094
1104
|
'tags'?: Array<string>;
|
|
1095
1105
|
'internalTags'?: Array<string>;
|
|
@@ -1205,6 +1215,23 @@ export interface SEOMetadata {
|
|
|
1205
1215
|
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
1206
1216
|
*/
|
|
1207
1217
|
'description'?: string | null;
|
|
1218
|
+
/**
|
|
1219
|
+
* Whether to prevent the product from being indexed by search engines.
|
|
1220
|
+
*/
|
|
1221
|
+
'noIndex'?: boolean;
|
|
1222
|
+
}
|
|
1223
|
+
/**
|
|
1224
|
+
* SEO metadata for the product
|
|
1225
|
+
*/
|
|
1226
|
+
export interface SEOMetadata1 {
|
|
1227
|
+
/**
|
|
1228
|
+
* Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used.
|
|
1229
|
+
*/
|
|
1230
|
+
'title'?: string;
|
|
1231
|
+
/**
|
|
1232
|
+
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
1233
|
+
*/
|
|
1234
|
+
'description'?: string | null;
|
|
1208
1235
|
}
|
|
1209
1236
|
/**
|
|
1210
1237
|
* Discounted price including tax.
|
|
@@ -1612,6 +1639,10 @@ export interface UpdateProductsRequestProductsInnerSeoMetadata {
|
|
|
1612
1639
|
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
1613
1640
|
*/
|
|
1614
1641
|
'description'?: string | null;
|
|
1642
|
+
/**
|
|
1643
|
+
* Whether to prevent the product from being indexed by search engines.
|
|
1644
|
+
*/
|
|
1645
|
+
'noIndex'?: boolean;
|
|
1615
1646
|
}
|
|
1616
1647
|
export interface UpdateProductsRequestProductsInnerVariantsInner {
|
|
1617
1648
|
/**
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.82.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.82.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.82.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.82.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.82.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.82.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Product Catalog API
|
|
4
4
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.82.0
|
|
7
7
|
*
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.82.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.82.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.82.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.82.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/docs/BundleProduct.md
CHANGED
|
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**slug** | **string** | | [optional] [readonly] [default to undefined]
|
|
13
13
|
**brand** | **string** | | [optional] [default to undefined]
|
|
14
14
|
**enabled** | **boolean** | | [optional] [default to undefined]
|
|
15
|
-
**seoMetadata** | [**
|
|
15
|
+
**seoMetadata** | [**SEOMetadata1**](SEOMetadata1.md) | | [optional] [default to undefined]
|
|
16
16
|
**targetSearchPhraseData** | [**TargetSearchPhraseData**](TargetSearchPhraseData.md) | | [optional] [default to undefined]
|
|
17
17
|
**tags** | **Array<string>** | | [optional] [default to undefined]
|
|
18
18
|
**internalTags** | **Array<string>** | | [optional] [default to undefined]
|
|
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**description** | **string** | Product description | [optional] [default to undefined]
|
|
10
10
|
**enabled** | **boolean** | Whether the product is enabled upon creation. | [optional] [default to undefined]
|
|
11
11
|
**slug** | **string** | A custom URL slug for the product. This must be unique for each product on the project. | [optional] [default to undefined]
|
|
12
|
-
**seoMetadata** | [**
|
|
12
|
+
**seoMetadata** | [**CreateBundleProductSeoMetadata**](CreateBundleProductSeoMetadata.md) | | [optional] [default to undefined]
|
|
13
13
|
**targetSearchPhrase** | **string** | The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration | [optional] [default to undefined]
|
|
14
14
|
**targetSearchPhraseSynonyms** | **Array<string>** | Synonyms for the target search phrase. **Note:** This field requires the website integration | [optional] [default to undefined]
|
|
15
15
|
**tags** | **Array<string>** | Additional product tags used for searching and filtering. | [optional] [default to undefined]
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# CreateBundleProductSeoMetadata
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**title** | **string** | Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used. | [optional] [default to undefined]
|
|
9
|
+
**description** | **string** | Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used. | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { CreateBundleProductSeoMetadata } from '@teemill/product-catalog';
|
|
15
|
+
|
|
16
|
+
const instance: CreateBundleProductSeoMetadata = {
|
|
17
|
+
title,
|
|
18
|
+
description,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**enabled** | **boolean** | Whether the product is enabled upon creation. | [optional] [default to undefined]
|
|
12
12
|
**slug** | **string** | A custom URL slug for the product. This must be unique for each product on the project. | [optional] [default to undefined]
|
|
13
13
|
**brand** | **string** | The brand of the product. | [optional] [default to undefined]
|
|
14
|
-
**seoMetadata** | [**
|
|
14
|
+
**seoMetadata** | [**CreateBundleProductSeoMetadata**](CreateBundleProductSeoMetadata.md) | | [optional] [default to undefined]
|
|
15
15
|
**targetSearchPhrase** | **string** | The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration | [optional] [default to undefined]
|
|
16
16
|
**targetSearchPhraseSynonyms** | **Array<string>** | Synonyms for the target search phrase. **Note:** This field requires the website integration | [optional] [default to undefined]
|
|
17
17
|
**tags** | **Array<string>** | Additional product tags used for searching and filtering. | [optional] [default to undefined]
|
|
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**slug** | **string** | | [optional] [readonly] [default to undefined]
|
|
13
13
|
**brand** | **string** | | [optional] [default to undefined]
|
|
14
14
|
**enabled** | **boolean** | | [optional] [default to undefined]
|
|
15
|
-
**seoMetadata** | [**
|
|
15
|
+
**seoMetadata** | [**SEOMetadata1**](SEOMetadata1.md) | | [optional] [default to undefined]
|
|
16
16
|
**targetSearchPhraseData** | [**TargetSearchPhraseData**](TargetSearchPhraseData.md) | | [optional] [default to undefined]
|
|
17
17
|
**tags** | **Array<string>** | | [optional] [default to undefined]
|
|
18
18
|
**internalTags** | **Array<string>** | | [optional] [default to undefined]
|
package/docs/SEOMetadata.md
CHANGED
|
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
9
|
**title** | **string** | Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used. | [optional] [default to undefined]
|
|
10
10
|
**description** | **string** | Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used. | [optional] [default to undefined]
|
|
11
|
+
**noIndex** | **boolean** | Whether to prevent the product from being indexed by search engines. | [optional] [default to false]
|
|
11
12
|
|
|
12
13
|
## Example
|
|
13
14
|
|
|
@@ -17,6 +18,7 @@ import { SEOMetadata } from '@teemill/product-catalog';
|
|
|
17
18
|
const instance: SEOMetadata = {
|
|
18
19
|
title,
|
|
19
20
|
description,
|
|
21
|
+
noIndex,
|
|
20
22
|
};
|
|
21
23
|
```
|
|
22
24
|
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# SEOMetadata1
|
|
2
|
+
|
|
3
|
+
SEO metadata for the product
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**title** | **string** | Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used. | [optional] [default to undefined]
|
|
10
|
+
**description** | **string** | Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used. | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { SEOMetadata1 } from '@teemill/product-catalog';
|
|
16
|
+
|
|
17
|
+
const instance: SEOMetadata1 = {
|
|
18
|
+
title,
|
|
19
|
+
description,
|
|
20
|
+
};
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**title** | **string** | Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used. | [optional] [default to undefined]
|
|
9
9
|
**description** | **string** | Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used. | [optional] [default to undefined]
|
|
10
|
+
**noIndex** | **boolean** | Whether to prevent the product from being indexed by search engines. | [optional] [default to false]
|
|
10
11
|
|
|
11
12
|
## Example
|
|
12
13
|
|
|
@@ -16,6 +17,7 @@ import { UpdateProductsRequestProductsInnerSeoMetadata } from '@teemill/product-
|
|
|
16
17
|
const instance: UpdateProductsRequestProductsInnerSeoMetadata = {
|
|
17
18
|
title,
|
|
18
19
|
description,
|
|
20
|
+
noIndex,
|
|
19
21
|
};
|
|
20
22
|
```
|
|
21
23
|
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.82.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|