@teemill/product-catalog 1.31.0 → 1.33.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 +2 -2
- package/api.ts +50 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +50 -1
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +50 -1
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/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.33.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.33.0 --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.
|
|
7
|
+
* The version of the OpenAPI document: 1.33.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -484,6 +484,18 @@ export interface CreateProductRequest {
|
|
|
484
484
|
* @memberof CreateProductRequest
|
|
485
485
|
*/
|
|
486
486
|
'seoMetadata'?: CreateProductRequestSeoMetadata;
|
|
487
|
+
/**
|
|
488
|
+
* 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
|
|
489
|
+
* @type {string}
|
|
490
|
+
* @memberof CreateProductRequest
|
|
491
|
+
*/
|
|
492
|
+
'targetSearchPhrase'?: string;
|
|
493
|
+
/**
|
|
494
|
+
* Synonyms for the target search phrase. **Note:** This field requires the website integration
|
|
495
|
+
* @type {Array<string>}
|
|
496
|
+
* @memberof CreateProductRequest
|
|
497
|
+
*/
|
|
498
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
487
499
|
/**
|
|
488
500
|
* Additional product tags used for searching and filtering.
|
|
489
501
|
* @type {Array<string>}
|
|
@@ -924,6 +936,12 @@ export interface Product {
|
|
|
924
936
|
* @memberof Product
|
|
925
937
|
*/
|
|
926
938
|
'seoMetadata'?: SeoMetadata;
|
|
939
|
+
/**
|
|
940
|
+
*
|
|
941
|
+
* @type {TargetSearchPhraseData}
|
|
942
|
+
* @memberof Product
|
|
943
|
+
*/
|
|
944
|
+
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
927
945
|
/**
|
|
928
946
|
*
|
|
929
947
|
* @type {Array<string>}
|
|
@@ -1153,6 +1171,25 @@ export interface Stock {
|
|
|
1153
1171
|
*/
|
|
1154
1172
|
'level'?: number;
|
|
1155
1173
|
}
|
|
1174
|
+
/**
|
|
1175
|
+
*
|
|
1176
|
+
* @export
|
|
1177
|
+
* @interface TargetSearchPhraseData
|
|
1178
|
+
*/
|
|
1179
|
+
export interface TargetSearchPhraseData {
|
|
1180
|
+
/**
|
|
1181
|
+
* The primary target search phrase for the product that you wish to rank for in search engine results.
|
|
1182
|
+
* @type {string}
|
|
1183
|
+
* @memberof TargetSearchPhraseData
|
|
1184
|
+
*/
|
|
1185
|
+
'targetSearchPhrase'?: string;
|
|
1186
|
+
/**
|
|
1187
|
+
* Synonyms for the target search phrase.
|
|
1188
|
+
* @type {Array<string>}
|
|
1189
|
+
* @memberof TargetSearchPhraseData
|
|
1190
|
+
*/
|
|
1191
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1192
|
+
}
|
|
1156
1193
|
/**
|
|
1157
1194
|
*
|
|
1158
1195
|
* @export
|
|
@@ -1282,6 +1319,18 @@ export interface UpdateProductRequest {
|
|
|
1282
1319
|
* @memberof UpdateProductRequest
|
|
1283
1320
|
*/
|
|
1284
1321
|
'seoMetadata'?: CreateProductRequestSeoMetadata;
|
|
1322
|
+
/**
|
|
1323
|
+
* 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
|
|
1324
|
+
* @type {string}
|
|
1325
|
+
* @memberof UpdateProductRequest
|
|
1326
|
+
*/
|
|
1327
|
+
'targetSearchPhrase'?: string | null;
|
|
1328
|
+
/**
|
|
1329
|
+
* Synonyms for the target search phrase. **Note:** This field requires the website integration
|
|
1330
|
+
* @type {Array<string>}
|
|
1331
|
+
* @memberof UpdateProductRequest
|
|
1332
|
+
*/
|
|
1333
|
+
'targetSearchPhraseSynonyms'?: Array<string> | null;
|
|
1285
1334
|
/**
|
|
1286
1335
|
* Additional product tags used for searching and filtering.
|
|
1287
1336
|
* @type {Array<string>}
|
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.33.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.33.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.33.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.33.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -463,6 +463,18 @@ export interface CreateProductRequest {
|
|
|
463
463
|
* @memberof CreateProductRequest
|
|
464
464
|
*/
|
|
465
465
|
'seoMetadata'?: CreateProductRequestSeoMetadata;
|
|
466
|
+
/**
|
|
467
|
+
* 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
|
|
468
|
+
* @type {string}
|
|
469
|
+
* @memberof CreateProductRequest
|
|
470
|
+
*/
|
|
471
|
+
'targetSearchPhrase'?: string;
|
|
472
|
+
/**
|
|
473
|
+
* Synonyms for the target search phrase. **Note:** This field requires the website integration
|
|
474
|
+
* @type {Array<string>}
|
|
475
|
+
* @memberof CreateProductRequest
|
|
476
|
+
*/
|
|
477
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
466
478
|
/**
|
|
467
479
|
* Additional product tags used for searching and filtering.
|
|
468
480
|
* @type {Array<string>}
|
|
@@ -891,6 +903,12 @@ export interface Product {
|
|
|
891
903
|
* @memberof Product
|
|
892
904
|
*/
|
|
893
905
|
'seoMetadata'?: SeoMetadata;
|
|
906
|
+
/**
|
|
907
|
+
*
|
|
908
|
+
* @type {TargetSearchPhraseData}
|
|
909
|
+
* @memberof Product
|
|
910
|
+
*/
|
|
911
|
+
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
894
912
|
/**
|
|
895
913
|
*
|
|
896
914
|
* @type {Array<string>}
|
|
@@ -1120,6 +1138,25 @@ export interface Stock {
|
|
|
1120
1138
|
*/
|
|
1121
1139
|
'level'?: number;
|
|
1122
1140
|
}
|
|
1141
|
+
/**
|
|
1142
|
+
*
|
|
1143
|
+
* @export
|
|
1144
|
+
* @interface TargetSearchPhraseData
|
|
1145
|
+
*/
|
|
1146
|
+
export interface TargetSearchPhraseData {
|
|
1147
|
+
/**
|
|
1148
|
+
* The primary target search phrase for the product that you wish to rank for in search engine results.
|
|
1149
|
+
* @type {string}
|
|
1150
|
+
* @memberof TargetSearchPhraseData
|
|
1151
|
+
*/
|
|
1152
|
+
'targetSearchPhrase'?: string;
|
|
1153
|
+
/**
|
|
1154
|
+
* Synonyms for the target search phrase.
|
|
1155
|
+
* @type {Array<string>}
|
|
1156
|
+
* @memberof TargetSearchPhraseData
|
|
1157
|
+
*/
|
|
1158
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1159
|
+
}
|
|
1123
1160
|
/**
|
|
1124
1161
|
*
|
|
1125
1162
|
* @export
|
|
@@ -1249,6 +1286,18 @@ export interface UpdateProductRequest {
|
|
|
1249
1286
|
* @memberof UpdateProductRequest
|
|
1250
1287
|
*/
|
|
1251
1288
|
'seoMetadata'?: CreateProductRequestSeoMetadata;
|
|
1289
|
+
/**
|
|
1290
|
+
* 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
|
|
1291
|
+
* @type {string}
|
|
1292
|
+
* @memberof UpdateProductRequest
|
|
1293
|
+
*/
|
|
1294
|
+
'targetSearchPhrase'?: string | null;
|
|
1295
|
+
/**
|
|
1296
|
+
* Synonyms for the target search phrase. **Note:** This field requires the website integration
|
|
1297
|
+
* @type {Array<string>}
|
|
1298
|
+
* @memberof UpdateProductRequest
|
|
1299
|
+
*/
|
|
1300
|
+
'targetSearchPhraseSynonyms'?: Array<string> | null;
|
|
1252
1301
|
/**
|
|
1253
1302
|
* Additional product tags used for searching and filtering.
|
|
1254
1303
|
* @type {Array<string>}
|
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.33.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.33.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.33.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.33.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.33.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.33.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.33.0
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.33.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -463,6 +463,18 @@ export interface CreateProductRequest {
|
|
|
463
463
|
* @memberof CreateProductRequest
|
|
464
464
|
*/
|
|
465
465
|
'seoMetadata'?: CreateProductRequestSeoMetadata;
|
|
466
|
+
/**
|
|
467
|
+
* 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
|
|
468
|
+
* @type {string}
|
|
469
|
+
* @memberof CreateProductRequest
|
|
470
|
+
*/
|
|
471
|
+
'targetSearchPhrase'?: string;
|
|
472
|
+
/**
|
|
473
|
+
* Synonyms for the target search phrase. **Note:** This field requires the website integration
|
|
474
|
+
* @type {Array<string>}
|
|
475
|
+
* @memberof CreateProductRequest
|
|
476
|
+
*/
|
|
477
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
466
478
|
/**
|
|
467
479
|
* Additional product tags used for searching and filtering.
|
|
468
480
|
* @type {Array<string>}
|
|
@@ -891,6 +903,12 @@ export interface Product {
|
|
|
891
903
|
* @memberof Product
|
|
892
904
|
*/
|
|
893
905
|
'seoMetadata'?: SeoMetadata;
|
|
906
|
+
/**
|
|
907
|
+
*
|
|
908
|
+
* @type {TargetSearchPhraseData}
|
|
909
|
+
* @memberof Product
|
|
910
|
+
*/
|
|
911
|
+
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
894
912
|
/**
|
|
895
913
|
*
|
|
896
914
|
* @type {Array<string>}
|
|
@@ -1120,6 +1138,25 @@ export interface Stock {
|
|
|
1120
1138
|
*/
|
|
1121
1139
|
'level'?: number;
|
|
1122
1140
|
}
|
|
1141
|
+
/**
|
|
1142
|
+
*
|
|
1143
|
+
* @export
|
|
1144
|
+
* @interface TargetSearchPhraseData
|
|
1145
|
+
*/
|
|
1146
|
+
export interface TargetSearchPhraseData {
|
|
1147
|
+
/**
|
|
1148
|
+
* The primary target search phrase for the product that you wish to rank for in search engine results.
|
|
1149
|
+
* @type {string}
|
|
1150
|
+
* @memberof TargetSearchPhraseData
|
|
1151
|
+
*/
|
|
1152
|
+
'targetSearchPhrase'?: string;
|
|
1153
|
+
/**
|
|
1154
|
+
* Synonyms for the target search phrase.
|
|
1155
|
+
* @type {Array<string>}
|
|
1156
|
+
* @memberof TargetSearchPhraseData
|
|
1157
|
+
*/
|
|
1158
|
+
'targetSearchPhraseSynonyms'?: Array<string>;
|
|
1159
|
+
}
|
|
1123
1160
|
/**
|
|
1124
1161
|
*
|
|
1125
1162
|
* @export
|
|
@@ -1249,6 +1286,18 @@ export interface UpdateProductRequest {
|
|
|
1249
1286
|
* @memberof UpdateProductRequest
|
|
1250
1287
|
*/
|
|
1251
1288
|
'seoMetadata'?: CreateProductRequestSeoMetadata;
|
|
1289
|
+
/**
|
|
1290
|
+
* 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
|
|
1291
|
+
* @type {string}
|
|
1292
|
+
* @memberof UpdateProductRequest
|
|
1293
|
+
*/
|
|
1294
|
+
'targetSearchPhrase'?: string | null;
|
|
1295
|
+
/**
|
|
1296
|
+
* Synonyms for the target search phrase. **Note:** This field requires the website integration
|
|
1297
|
+
* @type {Array<string>}
|
|
1298
|
+
* @memberof UpdateProductRequest
|
|
1299
|
+
*/
|
|
1300
|
+
'targetSearchPhraseSynonyms'?: Array<string> | null;
|
|
1252
1301
|
/**
|
|
1253
1302
|
* Additional product tags used for searching and filtering.
|
|
1254
1303
|
* @type {Array<string>}
|
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.33.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.33.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.33.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.33.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.33.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.33.0
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.33.0
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.33.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.33.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.33.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.33.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
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.33.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|