@teemill/product-catalog 1.68.0 → 1.68.2
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 +2 -2
- package/api.ts +6 -6
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +5 -5
- package/dist/api.js +4 -4
- 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 +5 -5
- package/dist/esm/api.js +4 -4
- 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/Image.md +1 -1
- package/docs/ProductsApi.md +3 -3
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/product-catalog@1.68.
|
|
1
|
+
## @teemill/product-catalog@1.68.2
|
|
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.68.
|
|
39
|
+
npm install @teemill/product-catalog@1.68.2 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
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.68.
|
|
7
|
+
* The version of the OpenAPI document: 1.68.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1419,7 +1419,7 @@ export interface Image {
|
|
|
1419
1419
|
* @type {string}
|
|
1420
1420
|
* @memberof Image
|
|
1421
1421
|
*/
|
|
1422
|
-
'src'
|
|
1422
|
+
'src': string;
|
|
1423
1423
|
/**
|
|
1424
1424
|
*
|
|
1425
1425
|
* @type {string}
|
|
@@ -4631,7 +4631,7 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
4631
4631
|
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
4632
4632
|
* @summary Import products
|
|
4633
4633
|
* @param {string} project What project it is
|
|
4634
|
-
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
4634
|
+
* @param {string} [body] A base64 data URL of a CSV file containing data for one or more products.
|
|
4635
4635
|
* @param {*} [options] Override http request option.
|
|
4636
4636
|
* @throws {RequiredError}
|
|
4637
4637
|
*/
|
|
@@ -4663,7 +4663,7 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
4663
4663
|
|
|
4664
4664
|
|
|
4665
4665
|
|
|
4666
|
-
localVarHeaderParameter['Content-Type'] = 'text/
|
|
4666
|
+
localVarHeaderParameter['Content-Type'] = 'text/plain; charset=utf-8';
|
|
4667
4667
|
|
|
4668
4668
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4669
4669
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5011,7 +5011,7 @@ export const ProductsApiFp = function(configuration?: Configuration) {
|
|
|
5011
5011
|
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
5012
5012
|
* @summary Import products
|
|
5013
5013
|
* @param {string} project What project it is
|
|
5014
|
-
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
5014
|
+
* @param {string} [body] A base64 data URL of a CSV file containing data for one or more products.
|
|
5015
5015
|
* @param {*} [options] Override http request option.
|
|
5016
5016
|
* @throws {RequiredError}
|
|
5017
5017
|
*/
|
|
@@ -5348,7 +5348,7 @@ export interface ProductsApiImportProductsRequest {
|
|
|
5348
5348
|
readonly project: string
|
|
5349
5349
|
|
|
5350
5350
|
/**
|
|
5351
|
-
* A data URL of a CSV file containing data for one or more products.
|
|
5351
|
+
* A base64 data URL of a CSV file containing data for one or more products.
|
|
5352
5352
|
* @type {string}
|
|
5353
5353
|
* @memberof ProductsApiImportProducts
|
|
5354
5354
|
*/
|
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.68.
|
|
7
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
7
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
7
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
5
|
+
* The version of the OpenAPI document: 1.68.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1385,7 +1385,7 @@ export interface Image {
|
|
|
1385
1385
|
* @type {string}
|
|
1386
1386
|
* @memberof Image
|
|
1387
1387
|
*/
|
|
1388
|
-
'src'
|
|
1388
|
+
'src': string;
|
|
1389
1389
|
/**
|
|
1390
1390
|
*
|
|
1391
1391
|
* @type {string}
|
|
@@ -3710,7 +3710,7 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3710
3710
|
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
3711
3711
|
* @summary Import products
|
|
3712
3712
|
* @param {string} project What project it is
|
|
3713
|
-
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
3713
|
+
* @param {string} [body] A base64 data URL of a CSV file containing data for one or more products.
|
|
3714
3714
|
* @param {*} [options] Override http request option.
|
|
3715
3715
|
* @throws {RequiredError}
|
|
3716
3716
|
*/
|
|
@@ -3823,7 +3823,7 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
3823
3823
|
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
3824
3824
|
* @summary Import products
|
|
3825
3825
|
* @param {string} project What project it is
|
|
3826
|
-
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
3826
|
+
* @param {string} [body] A base64 data URL of a CSV file containing data for one or more products.
|
|
3827
3827
|
* @param {*} [options] Override http request option.
|
|
3828
3828
|
* @throws {RequiredError}
|
|
3829
3829
|
*/
|
|
@@ -4094,7 +4094,7 @@ export interface ProductsApiImportProductsRequest {
|
|
|
4094
4094
|
*/
|
|
4095
4095
|
readonly project: string;
|
|
4096
4096
|
/**
|
|
4097
|
-
* A data URL of a CSV file containing data for one or more products.
|
|
4097
|
+
* A base64 data URL of a CSV file containing data for one or more products.
|
|
4098
4098
|
* @type {string}
|
|
4099
4099
|
* @memberof ProductsApiImportProducts
|
|
4100
4100
|
*/
|
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.68.
|
|
8
|
+
* The version of the OpenAPI document: 1.68.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1373,7 +1373,7 @@ const ProductsApiAxiosParamCreator = function (configuration) {
|
|
|
1373
1373
|
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
1374
1374
|
* @summary Import products
|
|
1375
1375
|
* @param {string} project What project it is
|
|
1376
|
-
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
1376
|
+
* @param {string} [body] A base64 data URL of a CSV file containing data for one or more products.
|
|
1377
1377
|
* @param {*} [options] Override http request option.
|
|
1378
1378
|
* @throws {RequiredError}
|
|
1379
1379
|
*/
|
|
@@ -1398,7 +1398,7 @@ const ProductsApiAxiosParamCreator = function (configuration) {
|
|
|
1398
1398
|
if (project !== undefined) {
|
|
1399
1399
|
localVarQueryParameter['project'] = project;
|
|
1400
1400
|
}
|
|
1401
|
-
localVarHeaderParameter['Content-Type'] = 'text/
|
|
1401
|
+
localVarHeaderParameter['Content-Type'] = 'text/plain; charset=utf-8';
|
|
1402
1402
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1403
1403
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1404
1404
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1719,7 +1719,7 @@ const ProductsApiFp = function (configuration) {
|
|
|
1719
1719
|
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
1720
1720
|
* @summary Import products
|
|
1721
1721
|
* @param {string} project What project it is
|
|
1722
|
-
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
1722
|
+
* @param {string} [body] A base64 data URL of a CSV file containing data for one or more products.
|
|
1723
1723
|
* @param {*} [options] Override http request option.
|
|
1724
1724
|
* @throws {RequiredError}
|
|
1725
1725
|
*/
|
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.68.
|
|
5
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
8
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
5
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
8
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
5
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
8
|
+
* The version of the OpenAPI document: 1.68.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* 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.68.
|
|
5
|
+
* The version of the OpenAPI document: 1.68.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1385,7 +1385,7 @@ export interface Image {
|
|
|
1385
1385
|
* @type {string}
|
|
1386
1386
|
* @memberof Image
|
|
1387
1387
|
*/
|
|
1388
|
-
'src'
|
|
1388
|
+
'src': string;
|
|
1389
1389
|
/**
|
|
1390
1390
|
*
|
|
1391
1391
|
* @type {string}
|
|
@@ -3710,7 +3710,7 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3710
3710
|
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
3711
3711
|
* @summary Import products
|
|
3712
3712
|
* @param {string} project What project it is
|
|
3713
|
-
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
3713
|
+
* @param {string} [body] A base64 data URL of a CSV file containing data for one or more products.
|
|
3714
3714
|
* @param {*} [options] Override http request option.
|
|
3715
3715
|
* @throws {RequiredError}
|
|
3716
3716
|
*/
|
|
@@ -3823,7 +3823,7 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
3823
3823
|
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
3824
3824
|
* @summary Import products
|
|
3825
3825
|
* @param {string} project What project it is
|
|
3826
|
-
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
3826
|
+
* @param {string} [body] A base64 data URL of a CSV file containing data for one or more products.
|
|
3827
3827
|
* @param {*} [options] Override http request option.
|
|
3828
3828
|
* @throws {RequiredError}
|
|
3829
3829
|
*/
|
|
@@ -4094,7 +4094,7 @@ export interface ProductsApiImportProductsRequest {
|
|
|
4094
4094
|
*/
|
|
4095
4095
|
readonly project: string;
|
|
4096
4096
|
/**
|
|
4097
|
-
* A data URL of a CSV file containing data for one or more products.
|
|
4097
|
+
* A base64 data URL of a CSV file containing data for one or more products.
|
|
4098
4098
|
* @type {string}
|
|
4099
4099
|
* @memberof ProductsApiImportProducts
|
|
4100
4100
|
*/
|
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.68.
|
|
7
|
+
* The version of the OpenAPI document: 1.68.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1358,7 +1358,7 @@ export const ProductsApiAxiosParamCreator = function (configuration) {
|
|
|
1358
1358
|
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
1359
1359
|
* @summary Import products
|
|
1360
1360
|
* @param {string} project What project it is
|
|
1361
|
-
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
1361
|
+
* @param {string} [body] A base64 data URL of a CSV file containing data for one or more products.
|
|
1362
1362
|
* @param {*} [options] Override http request option.
|
|
1363
1363
|
* @throws {RequiredError}
|
|
1364
1364
|
*/
|
|
@@ -1383,7 +1383,7 @@ export const ProductsApiAxiosParamCreator = function (configuration) {
|
|
|
1383
1383
|
if (project !== undefined) {
|
|
1384
1384
|
localVarQueryParameter['project'] = project;
|
|
1385
1385
|
}
|
|
1386
|
-
localVarHeaderParameter['Content-Type'] = 'text/
|
|
1386
|
+
localVarHeaderParameter['Content-Type'] = 'text/plain; charset=utf-8';
|
|
1387
1387
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1388
1388
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1389
1389
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1703,7 +1703,7 @@ export const ProductsApiFp = function (configuration) {
|
|
|
1703
1703
|
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
1704
1704
|
* @summary Import products
|
|
1705
1705
|
* @param {string} project What project it is
|
|
1706
|
-
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
1706
|
+
* @param {string} [body] A base64 data URL of a CSV file containing data for one or more products.
|
|
1707
1707
|
* @param {*} [options] Override http request option.
|
|
1708
1708
|
* @throws {RequiredError}
|
|
1709
1709
|
*/
|
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.68.
|
|
5
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
7
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
5
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
7
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
5
|
+
* The version of the OpenAPI document: 1.68.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.68.
|
|
7
|
+
* The version of the OpenAPI document: 1.68.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* 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.68.
|
|
5
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
7
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
5
|
+
* The version of the OpenAPI document: 1.68.2
|
|
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.68.
|
|
8
|
+
* The version of the OpenAPI document: 1.68.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/docs/Image.md
CHANGED
|
@@ -7,7 +7,7 @@ Image description
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
9
|
**id** | **string** | Unique object identifier | [optional] [default to undefined]
|
|
10
|
-
**src** | **string** | | [
|
|
10
|
+
**src** | **string** | | [default to undefined]
|
|
11
11
|
**type** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**alt** | **string** | | [optional] [default to undefined]
|
|
13
13
|
**variantIds** | **Array<string>** | List of variant Ids | [optional] [default to undefined]
|
package/docs/ProductsApi.md
CHANGED
|
@@ -390,7 +390,7 @@ const configuration = new Configuration();
|
|
|
390
390
|
const apiInstance = new ProductsApi(configuration);
|
|
391
391
|
|
|
392
392
|
let project: string; //What project it is (default to undefined)
|
|
393
|
-
let body: string; //A data URL of a CSV file containing data for one or more products. (optional)
|
|
393
|
+
let body: string; //A base64 data URL of a CSV file containing data for one or more products. (optional)
|
|
394
394
|
|
|
395
395
|
const { status, data } = await apiInstance.importProducts(
|
|
396
396
|
project,
|
|
@@ -402,7 +402,7 @@ const { status, data } = await apiInstance.importProducts(
|
|
|
402
402
|
|
|
403
403
|
|Name | Type | Description | Notes|
|
|
404
404
|
|------------- | ------------- | ------------- | -------------|
|
|
405
|
-
| **body** | **string**| A data URL of a CSV file containing data for one or more products. | |
|
|
405
|
+
| **body** | **string**| A base64 data URL of a CSV file containing data for one or more products. | |
|
|
406
406
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
407
407
|
|
|
408
408
|
|
|
@@ -416,7 +416,7 @@ const { status, data } = await apiInstance.importProducts(
|
|
|
416
416
|
|
|
417
417
|
### HTTP request headers
|
|
418
418
|
|
|
419
|
-
- **Content-Type**: text/
|
|
419
|
+
- **Content-Type**: text/plain; charset=utf-8
|
|
420
420
|
- **Accept**: application/json
|
|
421
421
|
|
|
422
422
|
|
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.68.
|
|
7
|
+
* The version of the OpenAPI document: 1.68.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|