@teemill/product-catalog 1.48.0 → 1.50.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 +117 -2
- package/api.ts +127 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +74 -1
- package/dist/api.js +80 -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 +74 -1
- package/dist/esm/api.js +80 -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/AdditionalFile.md +20 -0
- package/docs/ApiError.md +22 -0
- package/docs/Application.md +28 -0
- package/docs/ApplicationMockup.md +22 -0
- package/docs/ApplicationSet.md +38 -0
- package/docs/ApplicationSet1.md +22 -0
- package/docs/ApplicationSetRecord.md +26 -0
- package/docs/ApplicationSetsApi.md +317 -0
- package/docs/ApplicationSetsResponse.md +22 -0
- package/docs/Attribute.md +26 -0
- package/docs/AttributeThumbnail.md +23 -0
- package/docs/Attributes1Inner.md +22 -0
- package/docs/CreateApplication.md +24 -0
- package/docs/CreateApplicationSetRequest.md +30 -0
- package/docs/CreateApplicationSetRequestRecordsInner.md +22 -0
- package/docs/CreateApplicationSetRequestRecordsInnerAttributesInner.md +22 -0
- package/docs/CreateBundleProduct.md +54 -0
- package/docs/CreateProduct.md +56 -0
- package/docs/CreateProductAdditionalFilesInner.md +20 -0
- package/docs/CreateProductImagesInner.md +22 -0
- package/docs/CreateProductRequest.md +64 -0
- package/docs/CreateProductVariant.md +36 -0
- package/docs/CreateProductVariantImagesInner.md +20 -0
- package/docs/CreateProductVideosInner.md +20 -0
- package/docs/DeleteProductsRequest.md +20 -0
- package/docs/DuplicateProducts202Response.md +20 -0
- package/docs/DuplicateProductsRequest.md +22 -0
- package/docs/ExportProducts202Response.md +20 -0
- package/docs/Image.md +35 -0
- package/docs/ImageFile.md +22 -0
- package/docs/ImportProducts200Response.md +20 -0
- package/docs/Location.md +22 -0
- package/docs/MetaField.md +23 -0
- package/docs/OptimisationHistoryItem.md +22 -0
- package/docs/Price.md +23 -0
- package/docs/Product.md +86 -0
- package/docs/ProductAdditionalFilesInner.md +22 -0
- package/docs/ProductApplicationSetsInner.md +24 -0
- package/docs/ProductWarehouseProduct.md +22 -0
- package/docs/ProductsApi.md +687 -0
- package/docs/ProductsResponse.md +22 -0
- package/docs/SEOMetadata.md +23 -0
- package/docs/SeoOptimiseProducts202Response.md +20 -0
- package/docs/SeoOptimiseProductsRequest.md +22 -0
- package/docs/Stock.md +22 -0
- package/docs/TargetSearchPhraseData.md +22 -0
- package/docs/UpdateApplicationSetRequest.md +30 -0
- package/docs/UpdateApplicationSetRequestRecordsInner.md +22 -0
- package/docs/UpdateApplicationSetRequestRecordsInnerAttributesInner.md +22 -0
- package/docs/UpdateProductRequest.md +64 -0
- package/docs/UpdateProductRequestIntegrationConnectionsInner.md +22 -0
- package/docs/UpdateProductsRequest.md +20 -0
- package/docs/UpdateProductsRequestProductsInner.md +42 -0
- package/docs/UpdateProductsRequestProductsInnerIntegrationConnectionsInner.md +22 -0
- package/docs/UpdateProductsRequestProductsInnerSeoMetadata.md +22 -0
- package/docs/UpdateProductsRequestProductsInnerVariantsInner.md +30 -0
- package/docs/UpdateProductsRequestProductsInnerVariantsInnerAttributesInner.md +22 -0
- package/docs/UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner.md +22 -0
- package/docs/UpdateProductsRequestProductsInnerVariantsInnerRetailPrice.md +23 -0
- package/docs/UpdateProductsRequestProductsInnerVariantsInnerSalePrice.md +23 -0
- package/docs/Variant.md +58 -0
- package/docs/VariantIntegrationConnectionsInner.md +22 -0
- package/docs/VariantProduct.md +22 -0
- package/docs/VariantsApi.md +138 -0
- package/docs/VariantsResponse.md +22 -0
- package/docs/Video.md +31 -0
- package/docs/VideoFile.md +20 -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.50.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.50.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -44,3 +44,118 @@ _unPublished (not recommended):_
|
|
|
44
44
|
```
|
|
45
45
|
npm install PATH_TO_GENERATED_PACKAGE --save
|
|
46
46
|
```
|
|
47
|
+
|
|
48
|
+
### Documentation for API Endpoints
|
|
49
|
+
|
|
50
|
+
All URIs are relative to *https://api.podos.io*
|
|
51
|
+
|
|
52
|
+
Class | Method | HTTP request | Description
|
|
53
|
+
------------ | ------------- | ------------- | -------------
|
|
54
|
+
*ApplicationSetsApi* | [**createApplicationSet**](docs/ApplicationSetsApi.md#createapplicationset) | **POST** /v1/catalog/applications/sets | Create application set
|
|
55
|
+
*ApplicationSetsApi* | [**deleteApplicationSet**](docs/ApplicationSetsApi.md#deleteapplicationset) | **DELETE** /v1/catalog/applications/sets/{applicationSetId} | Delete an application set
|
|
56
|
+
*ApplicationSetsApi* | [**getApplicationSet**](docs/ApplicationSetsApi.md#getapplicationset) | **GET** /v1/catalog/applications/sets/{applicationSetId} | Get an application set
|
|
57
|
+
*ApplicationSetsApi* | [**listApplicationSets**](docs/ApplicationSetsApi.md#listapplicationsets) | **GET** /v1/catalog/applications/sets | List application sets
|
|
58
|
+
*ApplicationSetsApi* | [**updateApplicationSet**](docs/ApplicationSetsApi.md#updateapplicationset) | **PATCH** /v1/catalog/applications/sets/{applicationSetId} | Update application set
|
|
59
|
+
*ProductsApi* | [**createProduct**](docs/ProductsApi.md#createproduct) | **POST** /v1/catalog/products | Create product
|
|
60
|
+
*ProductsApi* | [**deleteProduct**](docs/ProductsApi.md#deleteproduct) | **DELETE** /v1/catalog/products/{productId} | Delete catalog product
|
|
61
|
+
*ProductsApi* | [**deleteProducts**](docs/ProductsApi.md#deleteproducts) | **DELETE** /v1/catalog/products | Delete products
|
|
62
|
+
*ProductsApi* | [**duplicateProducts**](docs/ProductsApi.md#duplicateproducts) | **POST** /v1/catalog/products/duplicate | Duplicate products.
|
|
63
|
+
*ProductsApi* | [**exportProducts**](docs/ProductsApi.md#exportproducts) | **GET** /v1/catalog/products/export | Export products
|
|
64
|
+
*ProductsApi* | [**getProduct**](docs/ProductsApi.md#getproduct) | **GET** /v1/catalog/products/{productId} | Get product
|
|
65
|
+
*ProductsApi* | [**importProducts**](docs/ProductsApi.md#importproducts) | **POST** /v1/catalog/products/import | Import products
|
|
66
|
+
*ProductsApi* | [**listProducts**](docs/ProductsApi.md#listproducts) | **GET** /v1/catalog/products | List products
|
|
67
|
+
*ProductsApi* | [**seoOptimiseProducts**](docs/ProductsApi.md#seooptimiseproducts) | **POST** /v1/catalog/products/ai-seo-optimise | AI SEO optimise products.
|
|
68
|
+
*ProductsApi* | [**updateProduct**](docs/ProductsApi.md#updateproduct) | **PATCH** /v1/catalog/products/{productId} | Update product
|
|
69
|
+
*ProductsApi* | [**updateProducts**](docs/ProductsApi.md#updateproducts) | **PATCH** /v1/catalog/products | Update products
|
|
70
|
+
*VariantsApi* | [**getVariant**](docs/VariantsApi.md#getvariant) | **GET** /v1/catalog/variants/{variantId} | Get variant
|
|
71
|
+
*VariantsApi* | [**listVariants**](docs/VariantsApi.md#listvariants) | **GET** /v1/catalog/variants | List variants
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Documentation For Models
|
|
75
|
+
|
|
76
|
+
- [AdditionalFile](docs/AdditionalFile.md)
|
|
77
|
+
- [ApiError](docs/ApiError.md)
|
|
78
|
+
- [Application](docs/Application.md)
|
|
79
|
+
- [ApplicationMockup](docs/ApplicationMockup.md)
|
|
80
|
+
- [ApplicationSet](docs/ApplicationSet.md)
|
|
81
|
+
- [ApplicationSet1](docs/ApplicationSet1.md)
|
|
82
|
+
- [ApplicationSetRecord](docs/ApplicationSetRecord.md)
|
|
83
|
+
- [ApplicationSetsResponse](docs/ApplicationSetsResponse.md)
|
|
84
|
+
- [Attribute](docs/Attribute.md)
|
|
85
|
+
- [AttributeThumbnail](docs/AttributeThumbnail.md)
|
|
86
|
+
- [Attributes1Inner](docs/Attributes1Inner.md)
|
|
87
|
+
- [CreateApplication](docs/CreateApplication.md)
|
|
88
|
+
- [CreateApplicationSetRequest](docs/CreateApplicationSetRequest.md)
|
|
89
|
+
- [CreateApplicationSetRequestRecordsInner](docs/CreateApplicationSetRequestRecordsInner.md)
|
|
90
|
+
- [CreateApplicationSetRequestRecordsInnerAttributesInner](docs/CreateApplicationSetRequestRecordsInnerAttributesInner.md)
|
|
91
|
+
- [CreateBundleProduct](docs/CreateBundleProduct.md)
|
|
92
|
+
- [CreateProduct](docs/CreateProduct.md)
|
|
93
|
+
- [CreateProductAdditionalFilesInner](docs/CreateProductAdditionalFilesInner.md)
|
|
94
|
+
- [CreateProductImagesInner](docs/CreateProductImagesInner.md)
|
|
95
|
+
- [CreateProductRequest](docs/CreateProductRequest.md)
|
|
96
|
+
- [CreateProductVariant](docs/CreateProductVariant.md)
|
|
97
|
+
- [CreateProductVariantImagesInner](docs/CreateProductVariantImagesInner.md)
|
|
98
|
+
- [CreateProductVideosInner](docs/CreateProductVideosInner.md)
|
|
99
|
+
- [DeleteProductsRequest](docs/DeleteProductsRequest.md)
|
|
100
|
+
- [DuplicateProducts202Response](docs/DuplicateProducts202Response.md)
|
|
101
|
+
- [DuplicateProductsRequest](docs/DuplicateProductsRequest.md)
|
|
102
|
+
- [ExportProducts202Response](docs/ExportProducts202Response.md)
|
|
103
|
+
- [Image](docs/Image.md)
|
|
104
|
+
- [ImageFile](docs/ImageFile.md)
|
|
105
|
+
- [ImportProducts200Response](docs/ImportProducts200Response.md)
|
|
106
|
+
- [Location](docs/Location.md)
|
|
107
|
+
- [MetaField](docs/MetaField.md)
|
|
108
|
+
- [OptimisationHistoryItem](docs/OptimisationHistoryItem.md)
|
|
109
|
+
- [Price](docs/Price.md)
|
|
110
|
+
- [Product](docs/Product.md)
|
|
111
|
+
- [ProductAdditionalFilesInner](docs/ProductAdditionalFilesInner.md)
|
|
112
|
+
- [ProductApplicationSetsInner](docs/ProductApplicationSetsInner.md)
|
|
113
|
+
- [ProductWarehouseProduct](docs/ProductWarehouseProduct.md)
|
|
114
|
+
- [ProductsResponse](docs/ProductsResponse.md)
|
|
115
|
+
- [SEOMetadata](docs/SEOMetadata.md)
|
|
116
|
+
- [SeoOptimiseProducts202Response](docs/SeoOptimiseProducts202Response.md)
|
|
117
|
+
- [SeoOptimiseProductsRequest](docs/SeoOptimiseProductsRequest.md)
|
|
118
|
+
- [Stock](docs/Stock.md)
|
|
119
|
+
- [TargetSearchPhraseData](docs/TargetSearchPhraseData.md)
|
|
120
|
+
- [UpdateApplicationSetRequest](docs/UpdateApplicationSetRequest.md)
|
|
121
|
+
- [UpdateApplicationSetRequestRecordsInner](docs/UpdateApplicationSetRequestRecordsInner.md)
|
|
122
|
+
- [UpdateApplicationSetRequestRecordsInnerAttributesInner](docs/UpdateApplicationSetRequestRecordsInnerAttributesInner.md)
|
|
123
|
+
- [UpdateProductRequest](docs/UpdateProductRequest.md)
|
|
124
|
+
- [UpdateProductRequestIntegrationConnectionsInner](docs/UpdateProductRequestIntegrationConnectionsInner.md)
|
|
125
|
+
- [UpdateProductsRequest](docs/UpdateProductsRequest.md)
|
|
126
|
+
- [UpdateProductsRequestProductsInner](docs/UpdateProductsRequestProductsInner.md)
|
|
127
|
+
- [UpdateProductsRequestProductsInnerIntegrationConnectionsInner](docs/UpdateProductsRequestProductsInnerIntegrationConnectionsInner.md)
|
|
128
|
+
- [UpdateProductsRequestProductsInnerSeoMetadata](docs/UpdateProductsRequestProductsInnerSeoMetadata.md)
|
|
129
|
+
- [UpdateProductsRequestProductsInnerVariantsInner](docs/UpdateProductsRequestProductsInnerVariantsInner.md)
|
|
130
|
+
- [UpdateProductsRequestProductsInnerVariantsInnerAttributesInner](docs/UpdateProductsRequestProductsInnerVariantsInnerAttributesInner.md)
|
|
131
|
+
- [UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner](docs/UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner.md)
|
|
132
|
+
- [UpdateProductsRequestProductsInnerVariantsInnerRetailPrice](docs/UpdateProductsRequestProductsInnerVariantsInnerRetailPrice.md)
|
|
133
|
+
- [UpdateProductsRequestProductsInnerVariantsInnerSalePrice](docs/UpdateProductsRequestProductsInnerVariantsInnerSalePrice.md)
|
|
134
|
+
- [Variant](docs/Variant.md)
|
|
135
|
+
- [VariantIntegrationConnectionsInner](docs/VariantIntegrationConnectionsInner.md)
|
|
136
|
+
- [VariantProduct](docs/VariantProduct.md)
|
|
137
|
+
- [VariantsResponse](docs/VariantsResponse.md)
|
|
138
|
+
- [Video](docs/Video.md)
|
|
139
|
+
- [VideoFile](docs/VideoFile.md)
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
<a id="documentation-for-authorization"></a>
|
|
143
|
+
## Documentation For Authorization
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
Authentication schemes defined for the API:
|
|
147
|
+
<a id="api-key"></a>
|
|
148
|
+
### api-key
|
|
149
|
+
|
|
150
|
+
- **Type**: API key
|
|
151
|
+
- **API key parameter name**: Authorization
|
|
152
|
+
- **Location**: HTTP header
|
|
153
|
+
|
|
154
|
+
<a id="session-oauth"></a>
|
|
155
|
+
### session-oauth
|
|
156
|
+
|
|
157
|
+
- **Type**: OAuth
|
|
158
|
+
- **Flow**: password
|
|
159
|
+
- **Authorization URL**:
|
|
160
|
+
- **Scopes**: N/A
|
|
161
|
+
|
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.50.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -840,6 +840,19 @@ export interface CreateProductVideosInner {
|
|
|
840
840
|
*/
|
|
841
841
|
'src'?: string;
|
|
842
842
|
}
|
|
843
|
+
/**
|
|
844
|
+
*
|
|
845
|
+
* @export
|
|
846
|
+
* @interface DeleteProductsRequest
|
|
847
|
+
*/
|
|
848
|
+
export interface DeleteProductsRequest {
|
|
849
|
+
/**
|
|
850
|
+
*
|
|
851
|
+
* @type {Array<string>}
|
|
852
|
+
* @memberof DeleteProductsRequest
|
|
853
|
+
*/
|
|
854
|
+
'products'?: Array<string>;
|
|
855
|
+
}
|
|
843
856
|
/**
|
|
844
857
|
*
|
|
845
858
|
* @export
|
|
@@ -1392,6 +1405,12 @@ export interface SeoOptimiseProductsRequest {
|
|
|
1392
1405
|
* @memberof SeoOptimiseProductsRequest
|
|
1393
1406
|
*/
|
|
1394
1407
|
'ids'?: Array<string>;
|
|
1408
|
+
/**
|
|
1409
|
+
* If provided, only the specified fields will be updated.
|
|
1410
|
+
* @type {Array<string>}
|
|
1411
|
+
* @memberof SeoOptimiseProductsRequest
|
|
1412
|
+
*/
|
|
1413
|
+
'fields'?: Array<string>;
|
|
1395
1414
|
}
|
|
1396
1415
|
/**
|
|
1397
1416
|
*
|
|
@@ -2894,6 +2913,56 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
2894
2913
|
options: localVarRequestOptions,
|
|
2895
2914
|
};
|
|
2896
2915
|
},
|
|
2916
|
+
/**
|
|
2917
|
+
* Deletes catalog products for the given project.
|
|
2918
|
+
* @summary Delete products
|
|
2919
|
+
* @param {string} project What project it is
|
|
2920
|
+
* @param {DeleteProductsRequest} deleteProductsRequest Delete products in bulk.
|
|
2921
|
+
* @param {*} [options] Override http request option.
|
|
2922
|
+
* @throws {RequiredError}
|
|
2923
|
+
*/
|
|
2924
|
+
deleteProducts: async (project: string, deleteProductsRequest: DeleteProductsRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2925
|
+
// verify required parameter 'project' is not null or undefined
|
|
2926
|
+
assertParamExists('deleteProducts', 'project', project)
|
|
2927
|
+
// verify required parameter 'deleteProductsRequest' is not null or undefined
|
|
2928
|
+
assertParamExists('deleteProducts', 'deleteProductsRequest', deleteProductsRequest)
|
|
2929
|
+
const localVarPath = `/v1/catalog/products`;
|
|
2930
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2931
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2932
|
+
let baseOptions;
|
|
2933
|
+
if (configuration) {
|
|
2934
|
+
baseOptions = configuration.baseOptions;
|
|
2935
|
+
}
|
|
2936
|
+
|
|
2937
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
2938
|
+
const localVarHeaderParameter = {} as any;
|
|
2939
|
+
const localVarQueryParameter = {} as any;
|
|
2940
|
+
|
|
2941
|
+
// authentication session-oauth required
|
|
2942
|
+
// oauth required
|
|
2943
|
+
await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
|
|
2944
|
+
|
|
2945
|
+
// authentication api-key required
|
|
2946
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
2947
|
+
|
|
2948
|
+
if (project !== undefined) {
|
|
2949
|
+
localVarQueryParameter['project'] = project;
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2952
|
+
|
|
2953
|
+
|
|
2954
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2955
|
+
|
|
2956
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2957
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2958
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2959
|
+
localVarRequestOptions.data = serializeDataIfNeeded(deleteProductsRequest, localVarRequestOptions, configuration)
|
|
2960
|
+
|
|
2961
|
+
return {
|
|
2962
|
+
url: toPathString(localVarUrlObj),
|
|
2963
|
+
options: localVarRequestOptions,
|
|
2964
|
+
};
|
|
2965
|
+
},
|
|
2897
2966
|
/**
|
|
2898
2967
|
* Duplicate products by a set of given IDs to a set of given project IDs.
|
|
2899
2968
|
* @summary Duplicate products.
|
|
@@ -3344,6 +3413,20 @@ export const ProductsApiFp = function(configuration?: Configuration) {
|
|
|
3344
3413
|
const localVarOperationServerBasePath = operationServerMap['ProductsApi.deleteProduct']?.[localVarOperationServerIndex]?.url;
|
|
3345
3414
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3346
3415
|
},
|
|
3416
|
+
/**
|
|
3417
|
+
* Deletes catalog products for the given project.
|
|
3418
|
+
* @summary Delete products
|
|
3419
|
+
* @param {string} project What project it is
|
|
3420
|
+
* @param {DeleteProductsRequest} deleteProductsRequest Delete products in bulk.
|
|
3421
|
+
* @param {*} [options] Override http request option.
|
|
3422
|
+
* @throws {RequiredError}
|
|
3423
|
+
*/
|
|
3424
|
+
async deleteProducts(project: string, deleteProductsRequest: DeleteProductsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
3425
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteProducts(project, deleteProductsRequest, options);
|
|
3426
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3427
|
+
const localVarOperationServerBasePath = operationServerMap['ProductsApi.deleteProducts']?.[localVarOperationServerIndex]?.url;
|
|
3428
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3429
|
+
},
|
|
3347
3430
|
/**
|
|
3348
3431
|
* Duplicate products by a set of given IDs to a set of given project IDs.
|
|
3349
3432
|
* @summary Duplicate products.
|
|
@@ -3491,6 +3574,16 @@ export const ProductsApiFactory = function (configuration?: Configuration, baseP
|
|
|
3491
3574
|
deleteProduct(requestParameters: ProductsApiDeleteProductRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
3492
3575
|
return localVarFp.deleteProduct(requestParameters.project, requestParameters.productId, options).then((request) => request(axios, basePath));
|
|
3493
3576
|
},
|
|
3577
|
+
/**
|
|
3578
|
+
* Deletes catalog products for the given project.
|
|
3579
|
+
* @summary Delete products
|
|
3580
|
+
* @param {ProductsApiDeleteProductsRequest} requestParameters Request parameters.
|
|
3581
|
+
* @param {*} [options] Override http request option.
|
|
3582
|
+
* @throws {RequiredError}
|
|
3583
|
+
*/
|
|
3584
|
+
deleteProducts(requestParameters: ProductsApiDeleteProductsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
3585
|
+
return localVarFp.deleteProducts(requestParameters.project, requestParameters.deleteProductsRequest, options).then((request) => request(axios, basePath));
|
|
3586
|
+
},
|
|
3494
3587
|
/**
|
|
3495
3588
|
* Duplicate products by a set of given IDs to a set of given project IDs.
|
|
3496
3589
|
* @summary Duplicate products.
|
|
@@ -3616,6 +3709,27 @@ export interface ProductsApiDeleteProductRequest {
|
|
|
3616
3709
|
readonly productId: string
|
|
3617
3710
|
}
|
|
3618
3711
|
|
|
3712
|
+
/**
|
|
3713
|
+
* Request parameters for deleteProducts operation in ProductsApi.
|
|
3714
|
+
* @export
|
|
3715
|
+
* @interface ProductsApiDeleteProductsRequest
|
|
3716
|
+
*/
|
|
3717
|
+
export interface ProductsApiDeleteProductsRequest {
|
|
3718
|
+
/**
|
|
3719
|
+
* What project it is
|
|
3720
|
+
* @type {string}
|
|
3721
|
+
* @memberof ProductsApiDeleteProducts
|
|
3722
|
+
*/
|
|
3723
|
+
readonly project: string
|
|
3724
|
+
|
|
3725
|
+
/**
|
|
3726
|
+
* Delete products in bulk.
|
|
3727
|
+
* @type {DeleteProductsRequest}
|
|
3728
|
+
* @memberof ProductsApiDeleteProducts
|
|
3729
|
+
*/
|
|
3730
|
+
readonly deleteProductsRequest: DeleteProductsRequest
|
|
3731
|
+
}
|
|
3732
|
+
|
|
3619
3733
|
/**
|
|
3620
3734
|
* Request parameters for duplicateProducts operation in ProductsApi.
|
|
3621
3735
|
* @export
|
|
@@ -3850,6 +3964,18 @@ export class ProductsApi extends BaseAPI {
|
|
|
3850
3964
|
return ProductsApiFp(this.configuration).deleteProduct(requestParameters.project, requestParameters.productId, options).then((request) => request(this.axios, this.basePath));
|
|
3851
3965
|
}
|
|
3852
3966
|
|
|
3967
|
+
/**
|
|
3968
|
+
* Deletes catalog products for the given project.
|
|
3969
|
+
* @summary Delete products
|
|
3970
|
+
* @param {ProductsApiDeleteProductsRequest} requestParameters Request parameters.
|
|
3971
|
+
* @param {*} [options] Override http request option.
|
|
3972
|
+
* @throws {RequiredError}
|
|
3973
|
+
* @memberof ProductsApi
|
|
3974
|
+
*/
|
|
3975
|
+
public deleteProducts(requestParameters: ProductsApiDeleteProductsRequest, options?: RawAxiosRequestConfig) {
|
|
3976
|
+
return ProductsApiFp(this.configuration).deleteProducts(requestParameters.project, requestParameters.deleteProductsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3977
|
+
}
|
|
3978
|
+
|
|
3853
3979
|
/**
|
|
3854
3980
|
* Duplicate products by a set of given IDs to a set of given project IDs.
|
|
3855
3981
|
* @summary Duplicate products.
|
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.50.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.50.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.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.50.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* 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.50.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -818,6 +818,19 @@ export interface CreateProductVideosInner {
|
|
|
818
818
|
*/
|
|
819
819
|
'src'?: string;
|
|
820
820
|
}
|
|
821
|
+
/**
|
|
822
|
+
*
|
|
823
|
+
* @export
|
|
824
|
+
* @interface DeleteProductsRequest
|
|
825
|
+
*/
|
|
826
|
+
export interface DeleteProductsRequest {
|
|
827
|
+
/**
|
|
828
|
+
*
|
|
829
|
+
* @type {Array<string>}
|
|
830
|
+
* @memberof DeleteProductsRequest
|
|
831
|
+
*/
|
|
832
|
+
'products'?: Array<string>;
|
|
833
|
+
}
|
|
821
834
|
/**
|
|
822
835
|
*
|
|
823
836
|
* @export
|
|
@@ -1367,6 +1380,12 @@ export interface SeoOptimiseProductsRequest {
|
|
|
1367
1380
|
* @memberof SeoOptimiseProductsRequest
|
|
1368
1381
|
*/
|
|
1369
1382
|
'ids'?: Array<string>;
|
|
1383
|
+
/**
|
|
1384
|
+
* If provided, only the specified fields will be updated.
|
|
1385
|
+
* @type {Array<string>}
|
|
1386
|
+
* @memberof SeoOptimiseProductsRequest
|
|
1387
|
+
*/
|
|
1388
|
+
'fields'?: Array<string>;
|
|
1370
1389
|
}
|
|
1371
1390
|
/**
|
|
1372
1391
|
*
|
|
@@ -2497,6 +2516,15 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
2497
2516
|
* @throws {RequiredError}
|
|
2498
2517
|
*/
|
|
2499
2518
|
deleteProduct: (project: string, productId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2519
|
+
/**
|
|
2520
|
+
* Deletes catalog products for the given project.
|
|
2521
|
+
* @summary Delete products
|
|
2522
|
+
* @param {string} project What project it is
|
|
2523
|
+
* @param {DeleteProductsRequest} deleteProductsRequest Delete products in bulk.
|
|
2524
|
+
* @param {*} [options] Override http request option.
|
|
2525
|
+
* @throws {RequiredError}
|
|
2526
|
+
*/
|
|
2527
|
+
deleteProducts: (project: string, deleteProductsRequest: DeleteProductsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2500
2528
|
/**
|
|
2501
2529
|
* Duplicate products by a set of given IDs to a set of given project IDs.
|
|
2502
2530
|
* @summary Duplicate products.
|
|
@@ -2598,6 +2626,15 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
2598
2626
|
* @throws {RequiredError}
|
|
2599
2627
|
*/
|
|
2600
2628
|
deleteProduct(project: string, productId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2629
|
+
/**
|
|
2630
|
+
* Deletes catalog products for the given project.
|
|
2631
|
+
* @summary Delete products
|
|
2632
|
+
* @param {string} project What project it is
|
|
2633
|
+
* @param {DeleteProductsRequest} deleteProductsRequest Delete products in bulk.
|
|
2634
|
+
* @param {*} [options] Override http request option.
|
|
2635
|
+
* @throws {RequiredError}
|
|
2636
|
+
*/
|
|
2637
|
+
deleteProducts(project: string, deleteProductsRequest: DeleteProductsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2601
2638
|
/**
|
|
2602
2639
|
* Duplicate products by a set of given IDs to a set of given project IDs.
|
|
2603
2640
|
* @summary Duplicate products.
|
|
@@ -2697,6 +2734,14 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
2697
2734
|
* @throws {RequiredError}
|
|
2698
2735
|
*/
|
|
2699
2736
|
deleteProduct(requestParameters: ProductsApiDeleteProductRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2737
|
+
/**
|
|
2738
|
+
* Deletes catalog products for the given project.
|
|
2739
|
+
* @summary Delete products
|
|
2740
|
+
* @param {ProductsApiDeleteProductsRequest} requestParameters Request parameters.
|
|
2741
|
+
* @param {*} [options] Override http request option.
|
|
2742
|
+
* @throws {RequiredError}
|
|
2743
|
+
*/
|
|
2744
|
+
deleteProducts(requestParameters: ProductsApiDeleteProductsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2700
2745
|
/**
|
|
2701
2746
|
* Duplicate products by a set of given IDs to a set of given project IDs.
|
|
2702
2747
|
* @summary Duplicate products.
|
|
@@ -2800,6 +2845,25 @@ export interface ProductsApiDeleteProductRequest {
|
|
|
2800
2845
|
*/
|
|
2801
2846
|
readonly productId: string;
|
|
2802
2847
|
}
|
|
2848
|
+
/**
|
|
2849
|
+
* Request parameters for deleteProducts operation in ProductsApi.
|
|
2850
|
+
* @export
|
|
2851
|
+
* @interface ProductsApiDeleteProductsRequest
|
|
2852
|
+
*/
|
|
2853
|
+
export interface ProductsApiDeleteProductsRequest {
|
|
2854
|
+
/**
|
|
2855
|
+
* What project it is
|
|
2856
|
+
* @type {string}
|
|
2857
|
+
* @memberof ProductsApiDeleteProducts
|
|
2858
|
+
*/
|
|
2859
|
+
readonly project: string;
|
|
2860
|
+
/**
|
|
2861
|
+
* Delete products in bulk.
|
|
2862
|
+
* @type {DeleteProductsRequest}
|
|
2863
|
+
* @memberof ProductsApiDeleteProducts
|
|
2864
|
+
*/
|
|
2865
|
+
readonly deleteProductsRequest: DeleteProductsRequest;
|
|
2866
|
+
}
|
|
2803
2867
|
/**
|
|
2804
2868
|
* Request parameters for duplicateProducts operation in ProductsApi.
|
|
2805
2869
|
* @export
|
|
@@ -3007,6 +3071,15 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
3007
3071
|
* @memberof ProductsApi
|
|
3008
3072
|
*/
|
|
3009
3073
|
deleteProduct(requestParameters: ProductsApiDeleteProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
3074
|
+
/**
|
|
3075
|
+
* Deletes catalog products for the given project.
|
|
3076
|
+
* @summary Delete products
|
|
3077
|
+
* @param {ProductsApiDeleteProductsRequest} requestParameters Request parameters.
|
|
3078
|
+
* @param {*} [options] Override http request option.
|
|
3079
|
+
* @throws {RequiredError}
|
|
3080
|
+
* @memberof ProductsApi
|
|
3081
|
+
*/
|
|
3082
|
+
deleteProducts(requestParameters: ProductsApiDeleteProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
3010
3083
|
/**
|
|
3011
3084
|
* Duplicate products by a set of given IDs to a set of given project IDs.
|
|
3012
3085
|
* @summary Duplicate products.
|
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.50.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -609,6 +609,47 @@ const ProductsApiAxiosParamCreator = function (configuration) {
|
|
|
609
609
|
options: localVarRequestOptions,
|
|
610
610
|
};
|
|
611
611
|
}),
|
|
612
|
+
/**
|
|
613
|
+
* Deletes catalog products for the given project.
|
|
614
|
+
* @summary Delete products
|
|
615
|
+
* @param {string} project What project it is
|
|
616
|
+
* @param {DeleteProductsRequest} deleteProductsRequest Delete products in bulk.
|
|
617
|
+
* @param {*} [options] Override http request option.
|
|
618
|
+
* @throws {RequiredError}
|
|
619
|
+
*/
|
|
620
|
+
deleteProducts: (project_1, deleteProductsRequest_1, ...args_1) => __awaiter(this, [project_1, deleteProductsRequest_1, ...args_1], void 0, function* (project, deleteProductsRequest, options = {}) {
|
|
621
|
+
// verify required parameter 'project' is not null or undefined
|
|
622
|
+
(0, common_1.assertParamExists)('deleteProducts', 'project', project);
|
|
623
|
+
// verify required parameter 'deleteProductsRequest' is not null or undefined
|
|
624
|
+
(0, common_1.assertParamExists)('deleteProducts', 'deleteProductsRequest', deleteProductsRequest);
|
|
625
|
+
const localVarPath = `/v1/catalog/products`;
|
|
626
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
627
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
628
|
+
let baseOptions;
|
|
629
|
+
if (configuration) {
|
|
630
|
+
baseOptions = configuration.baseOptions;
|
|
631
|
+
}
|
|
632
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
633
|
+
const localVarHeaderParameter = {};
|
|
634
|
+
const localVarQueryParameter = {};
|
|
635
|
+
// authentication session-oauth required
|
|
636
|
+
// oauth required
|
|
637
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
638
|
+
// authentication api-key required
|
|
639
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
640
|
+
if (project !== undefined) {
|
|
641
|
+
localVarQueryParameter['project'] = project;
|
|
642
|
+
}
|
|
643
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
644
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
645
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
646
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
647
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(deleteProductsRequest, localVarRequestOptions, configuration);
|
|
648
|
+
return {
|
|
649
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
650
|
+
options: localVarRequestOptions,
|
|
651
|
+
};
|
|
652
|
+
}),
|
|
612
653
|
/**
|
|
613
654
|
* Duplicate products by a set of given IDs to a set of given project IDs.
|
|
614
655
|
* @summary Duplicate products.
|
|
@@ -990,6 +1031,23 @@ const ProductsApiFp = function (configuration) {
|
|
|
990
1031
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
991
1032
|
});
|
|
992
1033
|
},
|
|
1034
|
+
/**
|
|
1035
|
+
* Deletes catalog products for the given project.
|
|
1036
|
+
* @summary Delete products
|
|
1037
|
+
* @param {string} project What project it is
|
|
1038
|
+
* @param {DeleteProductsRequest} deleteProductsRequest Delete products in bulk.
|
|
1039
|
+
* @param {*} [options] Override http request option.
|
|
1040
|
+
* @throws {RequiredError}
|
|
1041
|
+
*/
|
|
1042
|
+
deleteProducts(project, deleteProductsRequest, options) {
|
|
1043
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1044
|
+
var _a, _b, _c;
|
|
1045
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteProducts(project, deleteProductsRequest, options);
|
|
1046
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1047
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProductsApi.deleteProducts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1048
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1049
|
+
});
|
|
1050
|
+
},
|
|
993
1051
|
/**
|
|
994
1052
|
* Duplicate products by a set of given IDs to a set of given project IDs.
|
|
995
1053
|
* @summary Duplicate products.
|
|
@@ -1161,6 +1219,16 @@ const ProductsApiFactory = function (configuration, basePath, axios) {
|
|
|
1161
1219
|
deleteProduct(requestParameters, options) {
|
|
1162
1220
|
return localVarFp.deleteProduct(requestParameters.project, requestParameters.productId, options).then((request) => request(axios, basePath));
|
|
1163
1221
|
},
|
|
1222
|
+
/**
|
|
1223
|
+
* Deletes catalog products for the given project.
|
|
1224
|
+
* @summary Delete products
|
|
1225
|
+
* @param {ProductsApiDeleteProductsRequest} requestParameters Request parameters.
|
|
1226
|
+
* @param {*} [options] Override http request option.
|
|
1227
|
+
* @throws {RequiredError}
|
|
1228
|
+
*/
|
|
1229
|
+
deleteProducts(requestParameters, options) {
|
|
1230
|
+
return localVarFp.deleteProducts(requestParameters.project, requestParameters.deleteProductsRequest, options).then((request) => request(axios, basePath));
|
|
1231
|
+
},
|
|
1164
1232
|
/**
|
|
1165
1233
|
* Duplicate products by a set of given IDs to a set of given project IDs.
|
|
1166
1234
|
* @summary Duplicate products.
|
|
@@ -1273,6 +1341,17 @@ class ProductsApi extends base_1.BaseAPI {
|
|
|
1273
1341
|
deleteProduct(requestParameters, options) {
|
|
1274
1342
|
return (0, exports.ProductsApiFp)(this.configuration).deleteProduct(requestParameters.project, requestParameters.productId, options).then((request) => request(this.axios, this.basePath));
|
|
1275
1343
|
}
|
|
1344
|
+
/**
|
|
1345
|
+
* Deletes catalog products for the given project.
|
|
1346
|
+
* @summary Delete products
|
|
1347
|
+
* @param {ProductsApiDeleteProductsRequest} requestParameters Request parameters.
|
|
1348
|
+
* @param {*} [options] Override http request option.
|
|
1349
|
+
* @throws {RequiredError}
|
|
1350
|
+
* @memberof ProductsApi
|
|
1351
|
+
*/
|
|
1352
|
+
deleteProducts(requestParameters, options) {
|
|
1353
|
+
return (0, exports.ProductsApiFp)(this.configuration).deleteProducts(requestParameters.project, requestParameters.deleteProductsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1354
|
+
}
|
|
1276
1355
|
/**
|
|
1277
1356
|
* Duplicate products by a set of given IDs to a set of given project IDs.
|
|
1278
1357
|
* @summary Duplicate products.
|
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.50.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.50.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.50.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.50.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.50.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
|
@@ -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.50.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|