@teemill/product-catalog 1.81.1 → 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 +45 -14
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +44 -13
- package/dist/api.js +7 -7
- 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 +44 -13
- package/dist/esm/api.js +7 -7
- 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/ApplicationSetsApi.md +2 -2
- 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/ProductsApi.md +2 -2
- package/docs/SEOMetadata.md +2 -0
- package/docs/SEOMetadata1.md +23 -0
- package/docs/UpdateProductsRequestProductsInnerSeoMetadata.md +2 -0
- package/docs/VariantsApi.md +2 -2
- 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).
|
|
@@ -18,7 +18,7 @@ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
|
18
18
|
import globalAxios from 'axios';
|
|
19
19
|
// Some imports not used depending on template conditions
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';
|
|
21
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, replaceWithSerializableTypeIfNeeded } from './common';
|
|
22
22
|
import type { RequestArgs } from './base';
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerMap } from './base';
|
|
@@ -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
|
/**
|
|
@@ -2571,7 +2602,7 @@ export const ApplicationSetsApiAxiosParamCreator = function (configuration?: Con
|
|
|
2571
2602
|
* @summary List application sets
|
|
2572
2603
|
* @param {string} project What project it is
|
|
2573
2604
|
* @param {number} [pageToken] Page reference token
|
|
2574
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2605
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2575
2606
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2576
2607
|
* @param {*} [options] Override http request option.
|
|
2577
2608
|
* @throws {RequiredError}
|
|
@@ -2732,7 +2763,7 @@ export const ApplicationSetsApiFp = function(configuration?: Configuration) {
|
|
|
2732
2763
|
* @summary List application sets
|
|
2733
2764
|
* @param {string} project What project it is
|
|
2734
2765
|
* @param {number} [pageToken] Page reference token
|
|
2735
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2766
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2736
2767
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2737
2768
|
* @param {*} [options] Override http request option.
|
|
2738
2769
|
* @throws {RequiredError}
|
|
@@ -2880,7 +2911,7 @@ export interface ApplicationSetsApiListApplicationSetsRequest {
|
|
|
2880
2911
|
readonly pageToken?: number
|
|
2881
2912
|
|
|
2882
2913
|
/**
|
|
2883
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2914
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2884
2915
|
*/
|
|
2885
2916
|
readonly search?: string
|
|
2886
2917
|
|
|
@@ -3438,7 +3469,7 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3438
3469
|
* @summary List products
|
|
3439
3470
|
* @param {string} project What project it is
|
|
3440
3471
|
* @param {number} [pageToken] Page reference token
|
|
3441
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
3472
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
3442
3473
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
3443
3474
|
* @param {string} [start] Start of date range to filter
|
|
3444
3475
|
* @param {string} [end] End of date range to filter
|
|
@@ -3780,7 +3811,7 @@ export const ProductsApiFp = function(configuration?: Configuration) {
|
|
|
3780
3811
|
* @summary List products
|
|
3781
3812
|
* @param {string} project What project it is
|
|
3782
3813
|
* @param {number} [pageToken] Page reference token
|
|
3783
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
3814
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
3784
3815
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
3785
3816
|
* @param {string} [start] Start of date range to filter
|
|
3786
3817
|
* @param {string} [end] End of date range to filter
|
|
@@ -4078,7 +4109,7 @@ export interface ProductsApiListProductsRequest {
|
|
|
4078
4109
|
readonly pageToken?: number
|
|
4079
4110
|
|
|
4080
4111
|
/**
|
|
4081
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
4112
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
4082
4113
|
*/
|
|
4083
4114
|
readonly search?: string
|
|
4084
4115
|
|
|
@@ -4355,7 +4386,7 @@ export const VariantsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
4355
4386
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
4356
4387
|
* @summary List variants
|
|
4357
4388
|
* @param {string} project What project it is
|
|
4358
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
4389
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
4359
4390
|
* @param {number} [pageToken] Page reference token
|
|
4360
4391
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4361
4392
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
@@ -4443,7 +4474,7 @@ export const VariantsApiFp = function(configuration?: Configuration) {
|
|
|
4443
4474
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
4444
4475
|
* @summary List variants
|
|
4445
4476
|
* @param {string} project What project it is
|
|
4446
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
4477
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
4447
4478
|
* @param {number} [pageToken] Page reference token
|
|
4448
4479
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4449
4480
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
@@ -4518,7 +4549,7 @@ export interface VariantsApiListVariantsRequest {
|
|
|
4518
4549
|
readonly project: string
|
|
4519
4550
|
|
|
4520
4551
|
/**
|
|
4521
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
4552
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
4522
4553
|
*/
|
|
4523
4554
|
readonly search?: string
|
|
4524
4555
|
|
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
|
/**
|
|
@@ -2113,7 +2144,7 @@ export declare const ApplicationSetsApiAxiosParamCreator: (configuration?: Confi
|
|
|
2113
2144
|
* @summary List application sets
|
|
2114
2145
|
* @param {string} project What project it is
|
|
2115
2146
|
* @param {number} [pageToken] Page reference token
|
|
2116
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2147
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2117
2148
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2118
2149
|
* @param {*} [options] Override http request option.
|
|
2119
2150
|
* @throws {RequiredError}
|
|
@@ -2166,7 +2197,7 @@ export declare const ApplicationSetsApiFp: (configuration?: Configuration) => {
|
|
|
2166
2197
|
* @summary List application sets
|
|
2167
2198
|
* @param {string} project What project it is
|
|
2168
2199
|
* @param {number} [pageToken] Page reference token
|
|
2169
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2200
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2170
2201
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2171
2202
|
* @param {*} [options] Override http request option.
|
|
2172
2203
|
* @throws {RequiredError}
|
|
@@ -2280,7 +2311,7 @@ export interface ApplicationSetsApiListApplicationSetsRequest {
|
|
|
2280
2311
|
*/
|
|
2281
2312
|
readonly pageToken?: number;
|
|
2282
2313
|
/**
|
|
2283
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2314
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2284
2315
|
*/
|
|
2285
2316
|
readonly search?: string;
|
|
2286
2317
|
/**
|
|
@@ -2483,7 +2514,7 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
2483
2514
|
* @summary List products
|
|
2484
2515
|
* @param {string} project What project it is
|
|
2485
2516
|
* @param {number} [pageToken] Page reference token
|
|
2486
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2517
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2487
2518
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2488
2519
|
* @param {string} [start] Start of date range to filter
|
|
2489
2520
|
* @param {string} [end] End of date range to filter
|
|
@@ -2595,7 +2626,7 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
2595
2626
|
* @summary List products
|
|
2596
2627
|
* @param {string} project What project it is
|
|
2597
2628
|
* @param {number} [pageToken] Page reference token
|
|
2598
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2629
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2599
2630
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2600
2631
|
* @param {string} [start] Start of date range to filter
|
|
2601
2632
|
* @param {string} [end] End of date range to filter
|
|
@@ -2829,7 +2860,7 @@ export interface ProductsApiListProductsRequest {
|
|
|
2829
2860
|
*/
|
|
2830
2861
|
readonly pageToken?: number;
|
|
2831
2862
|
/**
|
|
2832
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2863
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2833
2864
|
*/
|
|
2834
2865
|
readonly search?: string;
|
|
2835
2866
|
/**
|
|
@@ -3013,7 +3044,7 @@ export declare const VariantsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3013
3044
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
3014
3045
|
* @summary List variants
|
|
3015
3046
|
* @param {string} project What project it is
|
|
3016
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
3047
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
3017
3048
|
* @param {number} [pageToken] Page reference token
|
|
3018
3049
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3019
3050
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
@@ -3040,7 +3071,7 @@ export declare const VariantsApiFp: (configuration?: Configuration) => {
|
|
|
3040
3071
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
3041
3072
|
* @summary List variants
|
|
3042
3073
|
* @param {string} project What project it is
|
|
3043
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
3074
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
3044
3075
|
* @param {number} [pageToken] Page reference token
|
|
3045
3076
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3046
3077
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
@@ -3096,7 +3127,7 @@ export interface VariantsApiListVariantsRequest {
|
|
|
3096
3127
|
*/
|
|
3097
3128
|
readonly project: string;
|
|
3098
3129
|
/**
|
|
3099
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
3130
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
3100
3131
|
*/
|
|
3101
3132
|
readonly search?: string;
|
|
3102
3133
|
/**
|
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).
|
|
@@ -701,7 +701,7 @@ const ApplicationSetsApiAxiosParamCreator = function (configuration) {
|
|
|
701
701
|
* @summary List application sets
|
|
702
702
|
* @param {string} project What project it is
|
|
703
703
|
* @param {number} [pageToken] Page reference token
|
|
704
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
704
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
705
705
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
706
706
|
* @param {*} [options] Override http request option.
|
|
707
707
|
* @throws {RequiredError}
|
|
@@ -854,7 +854,7 @@ const ApplicationSetsApiFp = function (configuration) {
|
|
|
854
854
|
* @summary List application sets
|
|
855
855
|
* @param {string} project What project it is
|
|
856
856
|
* @param {number} [pageToken] Page reference token
|
|
857
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
857
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
858
858
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
859
859
|
* @param {*} [options] Override http request option.
|
|
860
860
|
* @throws {RequiredError}
|
|
@@ -1404,7 +1404,7 @@ const ProductsApiAxiosParamCreator = function (configuration) {
|
|
|
1404
1404
|
* @summary List products
|
|
1405
1405
|
* @param {string} project What project it is
|
|
1406
1406
|
* @param {number} [pageToken] Page reference token
|
|
1407
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
1407
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
1408
1408
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
1409
1409
|
* @param {string} [start] Start of date range to filter
|
|
1410
1410
|
* @param {string} [end] End of date range to filter
|
|
@@ -1731,7 +1731,7 @@ const ProductsApiFp = function (configuration) {
|
|
|
1731
1731
|
* @summary List products
|
|
1732
1732
|
* @param {string} project What project it is
|
|
1733
1733
|
* @param {number} [pageToken] Page reference token
|
|
1734
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
1734
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
1735
1735
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
1736
1736
|
* @param {string} [start] Start of date range to filter
|
|
1737
1737
|
* @param {string} [end] End of date range to filter
|
|
@@ -2098,7 +2098,7 @@ const VariantsApiAxiosParamCreator = function (configuration) {
|
|
|
2098
2098
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
2099
2099
|
* @summary List variants
|
|
2100
2100
|
* @param {string} project What project it is
|
|
2101
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2101
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2102
2102
|
* @param {number} [pageToken] Page reference token
|
|
2103
2103
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2104
2104
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
@@ -2178,7 +2178,7 @@ const VariantsApiFp = function (configuration) {
|
|
|
2178
2178
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
2179
2179
|
* @summary List variants
|
|
2180
2180
|
* @param {string} project What project it is
|
|
2181
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2181
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2182
2182
|
* @param {number} [pageToken] Page reference token
|
|
2183
2183
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2184
2184
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
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
|
/**
|
|
@@ -2113,7 +2144,7 @@ export declare const ApplicationSetsApiAxiosParamCreator: (configuration?: Confi
|
|
|
2113
2144
|
* @summary List application sets
|
|
2114
2145
|
* @param {string} project What project it is
|
|
2115
2146
|
* @param {number} [pageToken] Page reference token
|
|
2116
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2147
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2117
2148
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2118
2149
|
* @param {*} [options] Override http request option.
|
|
2119
2150
|
* @throws {RequiredError}
|
|
@@ -2166,7 +2197,7 @@ export declare const ApplicationSetsApiFp: (configuration?: Configuration) => {
|
|
|
2166
2197
|
* @summary List application sets
|
|
2167
2198
|
* @param {string} project What project it is
|
|
2168
2199
|
* @param {number} [pageToken] Page reference token
|
|
2169
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2200
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2170
2201
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2171
2202
|
* @param {*} [options] Override http request option.
|
|
2172
2203
|
* @throws {RequiredError}
|
|
@@ -2280,7 +2311,7 @@ export interface ApplicationSetsApiListApplicationSetsRequest {
|
|
|
2280
2311
|
*/
|
|
2281
2312
|
readonly pageToken?: number;
|
|
2282
2313
|
/**
|
|
2283
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2314
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2284
2315
|
*/
|
|
2285
2316
|
readonly search?: string;
|
|
2286
2317
|
/**
|
|
@@ -2483,7 +2514,7 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
2483
2514
|
* @summary List products
|
|
2484
2515
|
* @param {string} project What project it is
|
|
2485
2516
|
* @param {number} [pageToken] Page reference token
|
|
2486
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2517
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2487
2518
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2488
2519
|
* @param {string} [start] Start of date range to filter
|
|
2489
2520
|
* @param {string} [end] End of date range to filter
|
|
@@ -2595,7 +2626,7 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
2595
2626
|
* @summary List products
|
|
2596
2627
|
* @param {string} project What project it is
|
|
2597
2628
|
* @param {number} [pageToken] Page reference token
|
|
2598
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2629
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2599
2630
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2600
2631
|
* @param {string} [start] Start of date range to filter
|
|
2601
2632
|
* @param {string} [end] End of date range to filter
|
|
@@ -2829,7 +2860,7 @@ export interface ProductsApiListProductsRequest {
|
|
|
2829
2860
|
*/
|
|
2830
2861
|
readonly pageToken?: number;
|
|
2831
2862
|
/**
|
|
2832
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2863
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2833
2864
|
*/
|
|
2834
2865
|
readonly search?: string;
|
|
2835
2866
|
/**
|
|
@@ -3013,7 +3044,7 @@ export declare const VariantsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3013
3044
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
3014
3045
|
* @summary List variants
|
|
3015
3046
|
* @param {string} project What project it is
|
|
3016
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
3047
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
3017
3048
|
* @param {number} [pageToken] Page reference token
|
|
3018
3049
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3019
3050
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
@@ -3040,7 +3071,7 @@ export declare const VariantsApiFp: (configuration?: Configuration) => {
|
|
|
3040
3071
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
3041
3072
|
* @summary List variants
|
|
3042
3073
|
* @param {string} project What project it is
|
|
3043
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
3074
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
3044
3075
|
* @param {number} [pageToken] Page reference token
|
|
3045
3076
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3046
3077
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
@@ -3096,7 +3127,7 @@ export interface VariantsApiListVariantsRequest {
|
|
|
3096
3127
|
*/
|
|
3097
3128
|
readonly project: string;
|
|
3098
3129
|
/**
|
|
3099
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
3130
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
3100
3131
|
*/
|
|
3101
3132
|
readonly search?: string;
|
|
3102
3133
|
/**
|
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).
|
|
@@ -694,7 +694,7 @@ export const ApplicationSetsApiAxiosParamCreator = function (configuration) {
|
|
|
694
694
|
* @summary List application sets
|
|
695
695
|
* @param {string} project What project it is
|
|
696
696
|
* @param {number} [pageToken] Page reference token
|
|
697
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
697
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
698
698
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
699
699
|
* @param {*} [options] Override http request option.
|
|
700
700
|
* @throws {RequiredError}
|
|
@@ -846,7 +846,7 @@ export const ApplicationSetsApiFp = function (configuration) {
|
|
|
846
846
|
* @summary List application sets
|
|
847
847
|
* @param {string} project What project it is
|
|
848
848
|
* @param {number} [pageToken] Page reference token
|
|
849
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
849
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
850
850
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
851
851
|
* @param {*} [options] Override http request option.
|
|
852
852
|
* @throws {RequiredError}
|
|
@@ -1389,7 +1389,7 @@ export const ProductsApiAxiosParamCreator = function (configuration) {
|
|
|
1389
1389
|
* @summary List products
|
|
1390
1390
|
* @param {string} project What project it is
|
|
1391
1391
|
* @param {number} [pageToken] Page reference token
|
|
1392
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
1392
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
1393
1393
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
1394
1394
|
* @param {string} [start] Start of date range to filter
|
|
1395
1395
|
* @param {string} [end] End of date range to filter
|
|
@@ -1715,7 +1715,7 @@ export const ProductsApiFp = function (configuration) {
|
|
|
1715
1715
|
* @summary List products
|
|
1716
1716
|
* @param {string} project What project it is
|
|
1717
1717
|
* @param {number} [pageToken] Page reference token
|
|
1718
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
1718
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
1719
1719
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
1720
1720
|
* @param {string} [start] Start of date range to filter
|
|
1721
1721
|
* @param {string} [end] End of date range to filter
|
|
@@ -2079,7 +2079,7 @@ export const VariantsApiAxiosParamCreator = function (configuration) {
|
|
|
2079
2079
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
2080
2080
|
* @summary List variants
|
|
2081
2081
|
* @param {string} project What project it is
|
|
2082
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2082
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2083
2083
|
* @param {number} [pageToken] Page reference token
|
|
2084
2084
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2085
2085
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
@@ -2158,7 +2158,7 @@ export const VariantsApiFp = function (configuration) {
|
|
|
2158
2158
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
2159
2159
|
* @summary List variants
|
|
2160
2160
|
* @param {string} project What project it is
|
|
2161
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2161
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2162
2162
|
* @param {number} [pageToken] Page reference token
|
|
2163
2163
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2164
2164
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
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).
|
|
@@ -206,7 +206,7 @@ const apiInstance = new ApplicationSetsApi(configuration);
|
|
|
206
206
|
|
|
207
207
|
let project: string; //What project it is (default to undefined)
|
|
208
208
|
let pageToken: number; //Page reference token (optional) (default to 1)
|
|
209
|
-
let search: string; //Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
209
|
+
let search: string; //Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas. (optional) (default to 'enabled:true')
|
|
210
210
|
let pageSize: number; //Max page size. This is the maximum page size that will be returned, but it might be smaller. (optional) (default to 10)
|
|
211
211
|
|
|
212
212
|
const { status, data } = await apiInstance.listApplicationSets(
|
|
@@ -223,7 +223,7 @@ const { status, data } = await apiInstance.listApplicationSets(
|
|
|
223
223
|
|------------- | ------------- | ------------- | -------------|
|
|
224
224
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
225
225
|
| **pageToken** | [**number**] | Page reference token | (optional) defaults to 1|
|
|
226
|
-
| **search** | [**string**] | Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
226
|
+
| **search** | [**string**] | Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas. | (optional) defaults to 'enabled:true'|
|
|
227
227
|
| **pageSize** | [**number**] | Max page size. This is the maximum page size that will be returned, but it might be smaller. | (optional) defaults to 10|
|
|
228
228
|
|
|
229
229
|
|
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/ProductsApi.md
CHANGED
|
@@ -451,7 +451,7 @@ const apiInstance = new ProductsApi(configuration);
|
|
|
451
451
|
|
|
452
452
|
let project: string; //What project it is (default to undefined)
|
|
453
453
|
let pageToken: number; //Page reference token (optional) (default to 1)
|
|
454
|
-
let search: string; //Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
454
|
+
let search: string; //Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas. (optional) (default to 'enabled:true')
|
|
455
455
|
let sortBy: Array<string>; //An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending. (optional) (default to undefined)
|
|
456
456
|
let start: string; //Start of date range to filter (optional) (default to undefined)
|
|
457
457
|
let end: string; //End of date range to filter (optional) (default to undefined)
|
|
@@ -478,7 +478,7 @@ const { status, data } = await apiInstance.listProducts(
|
|
|
478
478
|
|------------- | ------------- | ------------- | -------------|
|
|
479
479
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
480
480
|
| **pageToken** | [**number**] | Page reference token | (optional) defaults to 1|
|
|
481
|
-
| **search** | [**string**] | Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
481
|
+
| **search** | [**string**] | Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas. | (optional) defaults to 'enabled:true'|
|
|
482
482
|
| **sortBy** | **Array<string>** | An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending. | (optional) defaults to undefined|
|
|
483
483
|
| **start** | [**string**] | Start of date range to filter | (optional) defaults to undefined|
|
|
484
484
|
| **end** | [**string**] | End of date range to filter | (optional) defaults 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/docs/VariantsApi.md
CHANGED
|
@@ -86,7 +86,7 @@ const configuration = new Configuration();
|
|
|
86
86
|
const apiInstance = new VariantsApi(configuration);
|
|
87
87
|
|
|
88
88
|
let project: string; //What project it is (default to undefined)
|
|
89
|
-
let search: string; //Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
89
|
+
let search: string; //Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas. (optional) (default to 'enabled:true')
|
|
90
90
|
let pageToken: number; //Page reference token (optional) (default to 1)
|
|
91
91
|
let pageSize: number; //Max page size. This is the maximum page size that will be returned, but it might be smaller. (optional) (default to 100)
|
|
92
92
|
let fields: string; //Filter response fields to only include a subset of the resource. (optional) (default to undefined)
|
|
@@ -105,7 +105,7 @@ const { status, data } = await apiInstance.listVariants(
|
|
|
105
105
|
|Name | Type | Description | Notes|
|
|
106
106
|
|------------- | ------------- | ------------- | -------------|
|
|
107
107
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
108
|
-
| **search** | [**string**] | Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
108
|
+
| **search** | [**string**] | Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas. | (optional) defaults to 'enabled:true'|
|
|
109
109
|
| **pageToken** | [**number**] | Page reference token | (optional) defaults to 1|
|
|
110
110
|
| **pageSize** | [**number**] | Max page size. This is the maximum page size that will be returned, but it might be smaller. | (optional) defaults to 100|
|
|
111
111
|
| **fields** | [**string**] | Filter response fields to only include a subset of the resource. | (optional) defaults to undefined|
|
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).
|