@teemill/product-catalog 1.29.0 → 1.31.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 +21 -9
- package/base.ts +4 -4
- package/common.ts +3 -3
- package/configuration.ts +3 -3
- package/dist/api.d.ts +21 -9
- package/dist/api.js +3 -3
- package/dist/base.d.ts +3 -3
- package/dist/base.js +4 -4
- package/dist/common.d.ts +3 -3
- package/dist/common.js +3 -3
- package/dist/configuration.d.ts +3 -3
- package/dist/configuration.js +3 -3
- package/dist/esm/api.d.ts +21 -9
- package/dist/esm/api.js +3 -3
- package/dist/esm/base.d.ts +3 -3
- package/dist/esm/base.js +4 -4
- package/dist/esm/common.d.ts +3 -3
- package/dist/esm/common.js +3 -3
- package/dist/esm/configuration.d.ts +3 -3
- package/dist/esm/configuration.js +3 -3
- package/dist/esm/index.d.ts +3 -3
- package/dist/esm/index.js +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/index.ts +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/product-catalog@1.
|
|
1
|
+
## @teemill/product-catalog@1.31.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.31.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
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.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 1.31.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -241,11 +241,11 @@ export interface ApplicationSetsResponse {
|
|
|
241
241
|
*/
|
|
242
242
|
'applicationSets'?: Array<ApplicationSet>;
|
|
243
243
|
/**
|
|
244
|
-
*
|
|
244
|
+
* The token referencing the next page number
|
|
245
245
|
* @type {number}
|
|
246
246
|
* @memberof ApplicationSetsResponse
|
|
247
247
|
*/
|
|
248
|
-
'nextPageToken'?: number;
|
|
248
|
+
'nextPageToken'?: number | null;
|
|
249
249
|
}
|
|
250
250
|
/**
|
|
251
251
|
*
|
|
@@ -1008,6 +1008,18 @@ export interface Product {
|
|
|
1008
1008
|
* @memberof Product
|
|
1009
1009
|
*/
|
|
1010
1010
|
'sales'?: number;
|
|
1011
|
+
/**
|
|
1012
|
+
*
|
|
1013
|
+
* @type {string}
|
|
1014
|
+
* @memberof Product
|
|
1015
|
+
*/
|
|
1016
|
+
'salesStart'?: string;
|
|
1017
|
+
/**
|
|
1018
|
+
*
|
|
1019
|
+
* @type {string}
|
|
1020
|
+
* @memberof Product
|
|
1021
|
+
*/
|
|
1022
|
+
'salesEnd'?: string;
|
|
1011
1023
|
/**
|
|
1012
1024
|
*
|
|
1013
1025
|
* @type {boolean}
|
|
@@ -1103,11 +1115,11 @@ export interface ProductsResponse {
|
|
|
1103
1115
|
*/
|
|
1104
1116
|
'products'?: Array<Product>;
|
|
1105
1117
|
/**
|
|
1106
|
-
*
|
|
1118
|
+
* The token referencing the next page number
|
|
1107
1119
|
* @type {number}
|
|
1108
1120
|
* @memberof ProductsResponse
|
|
1109
1121
|
*/
|
|
1110
|
-
'nextPageToken'?: number;
|
|
1122
|
+
'nextPageToken'?: number | null;
|
|
1111
1123
|
}
|
|
1112
1124
|
/**
|
|
1113
1125
|
* SEO metadata for the product
|
|
@@ -1466,11 +1478,11 @@ export interface VariantsResponse {
|
|
|
1466
1478
|
*/
|
|
1467
1479
|
'variants'?: Array<Variant>;
|
|
1468
1480
|
/**
|
|
1469
|
-
*
|
|
1481
|
+
* The token referencing the next page number
|
|
1470
1482
|
* @type {number}
|
|
1471
1483
|
* @memberof VariantsResponse
|
|
1472
1484
|
*/
|
|
1473
|
-
'nextPageToken'?: number;
|
|
1485
|
+
'nextPageToken'?: number | null;
|
|
1474
1486
|
}
|
|
1475
1487
|
/**
|
|
1476
1488
|
* Video object
|
package/base.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
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.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 1.31.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -19,7 +19,7 @@ import type { Configuration } from './configuration';
|
|
|
19
19
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
20
20
|
import globalAxios from 'axios';
|
|
21
21
|
|
|
22
|
-
export const BASE_PATH = "https://api.
|
|
22
|
+
export const BASE_PATH = "https://api.podos.io".replace(/\/+$/, "");
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
25
|
*
|
package/common.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
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.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 1.31.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/configuration.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
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.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 1.31.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/api.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.31.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.29.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -227,11 +227,11 @@ export interface ApplicationSetsResponse {
|
|
|
227
227
|
*/
|
|
228
228
|
'applicationSets'?: Array<ApplicationSet>;
|
|
229
229
|
/**
|
|
230
|
-
*
|
|
230
|
+
* The token referencing the next page number
|
|
231
231
|
* @type {number}
|
|
232
232
|
* @memberof ApplicationSetsResponse
|
|
233
233
|
*/
|
|
234
|
-
'nextPageToken'?: number;
|
|
234
|
+
'nextPageToken'?: number | null;
|
|
235
235
|
}
|
|
236
236
|
/**
|
|
237
237
|
*
|
|
@@ -975,6 +975,18 @@ export interface Product {
|
|
|
975
975
|
* @memberof Product
|
|
976
976
|
*/
|
|
977
977
|
'sales'?: number;
|
|
978
|
+
/**
|
|
979
|
+
*
|
|
980
|
+
* @type {string}
|
|
981
|
+
* @memberof Product
|
|
982
|
+
*/
|
|
983
|
+
'salesStart'?: string;
|
|
984
|
+
/**
|
|
985
|
+
*
|
|
986
|
+
* @type {string}
|
|
987
|
+
* @memberof Product
|
|
988
|
+
*/
|
|
989
|
+
'salesEnd'?: string;
|
|
978
990
|
/**
|
|
979
991
|
*
|
|
980
992
|
* @type {boolean}
|
|
@@ -1070,11 +1082,11 @@ export interface ProductsResponse {
|
|
|
1070
1082
|
*/
|
|
1071
1083
|
'products'?: Array<Product>;
|
|
1072
1084
|
/**
|
|
1073
|
-
*
|
|
1085
|
+
* The token referencing the next page number
|
|
1074
1086
|
* @type {number}
|
|
1075
1087
|
* @memberof ProductsResponse
|
|
1076
1088
|
*/
|
|
1077
|
-
'nextPageToken'?: number;
|
|
1089
|
+
'nextPageToken'?: number | null;
|
|
1078
1090
|
}
|
|
1079
1091
|
/**
|
|
1080
1092
|
* SEO metadata for the product
|
|
@@ -1433,11 +1445,11 @@ export interface VariantsResponse {
|
|
|
1433
1445
|
*/
|
|
1434
1446
|
'variants'?: Array<Variant>;
|
|
1435
1447
|
/**
|
|
1436
|
-
*
|
|
1448
|
+
* The token referencing the next page number
|
|
1437
1449
|
* @type {number}
|
|
1438
1450
|
* @memberof VariantsResponse
|
|
1439
1451
|
*/
|
|
1440
|
-
'nextPageToken'?: number;
|
|
1452
|
+
'nextPageToken'?: number | null;
|
|
1441
1453
|
}
|
|
1442
1454
|
/**
|
|
1443
1455
|
* Video object
|
package/dist/api.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Product Catalog API
|
|
6
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.31.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.29.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/base.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.31.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.29.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/base.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Product Catalog API
|
|
6
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.31.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.29.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.operationServerMap = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
|
|
17
17
|
const axios_1 = require("axios");
|
|
18
|
-
exports.BASE_PATH = "https://api.
|
|
18
|
+
exports.BASE_PATH = "https://api.podos.io".replace(/\/+$/, "");
|
|
19
19
|
/**
|
|
20
20
|
*
|
|
21
21
|
* @export
|
package/dist/common.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.31.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.29.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/common.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Product Catalog API
|
|
6
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.31.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.29.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/configuration.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.31.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.29.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/configuration.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Product Catalog API
|
|
6
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.31.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.29.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.31.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.29.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -227,11 +227,11 @@ export interface ApplicationSetsResponse {
|
|
|
227
227
|
*/
|
|
228
228
|
'applicationSets'?: Array<ApplicationSet>;
|
|
229
229
|
/**
|
|
230
|
-
*
|
|
230
|
+
* The token referencing the next page number
|
|
231
231
|
* @type {number}
|
|
232
232
|
* @memberof ApplicationSetsResponse
|
|
233
233
|
*/
|
|
234
|
-
'nextPageToken'?: number;
|
|
234
|
+
'nextPageToken'?: number | null;
|
|
235
235
|
}
|
|
236
236
|
/**
|
|
237
237
|
*
|
|
@@ -975,6 +975,18 @@ export interface Product {
|
|
|
975
975
|
* @memberof Product
|
|
976
976
|
*/
|
|
977
977
|
'sales'?: number;
|
|
978
|
+
/**
|
|
979
|
+
*
|
|
980
|
+
* @type {string}
|
|
981
|
+
* @memberof Product
|
|
982
|
+
*/
|
|
983
|
+
'salesStart'?: string;
|
|
984
|
+
/**
|
|
985
|
+
*
|
|
986
|
+
* @type {string}
|
|
987
|
+
* @memberof Product
|
|
988
|
+
*/
|
|
989
|
+
'salesEnd'?: string;
|
|
978
990
|
/**
|
|
979
991
|
*
|
|
980
992
|
* @type {boolean}
|
|
@@ -1070,11 +1082,11 @@ export interface ProductsResponse {
|
|
|
1070
1082
|
*/
|
|
1071
1083
|
'products'?: Array<Product>;
|
|
1072
1084
|
/**
|
|
1073
|
-
*
|
|
1085
|
+
* The token referencing the next page number
|
|
1074
1086
|
* @type {number}
|
|
1075
1087
|
* @memberof ProductsResponse
|
|
1076
1088
|
*/
|
|
1077
|
-
'nextPageToken'?: number;
|
|
1089
|
+
'nextPageToken'?: number | null;
|
|
1078
1090
|
}
|
|
1079
1091
|
/**
|
|
1080
1092
|
* SEO metadata for the product
|
|
@@ -1433,11 +1445,11 @@ export interface VariantsResponse {
|
|
|
1433
1445
|
*/
|
|
1434
1446
|
'variants'?: Array<Variant>;
|
|
1435
1447
|
/**
|
|
1436
|
-
*
|
|
1448
|
+
* The token referencing the next page number
|
|
1437
1449
|
* @type {number}
|
|
1438
1450
|
* @memberof VariantsResponse
|
|
1439
1451
|
*/
|
|
1440
|
-
'nextPageToken'?: number;
|
|
1452
|
+
'nextPageToken'?: number | null;
|
|
1441
1453
|
}
|
|
1442
1454
|
/**
|
|
1443
1455
|
* Video object
|
package/dist/esm/api.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.31.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.29.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.31.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.29.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/esm/base.js
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.31.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.29.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import globalAxios from 'axios';
|
|
15
|
-
export const BASE_PATH = "https://api.
|
|
15
|
+
export const BASE_PATH = "https://api.podos.io".replace(/\/+$/, "");
|
|
16
16
|
/**
|
|
17
17
|
*
|
|
18
18
|
* @export
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.31.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.29.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/esm/common.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.31.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.29.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.31.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.29.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.31.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.29.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.31.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.29.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/esm/index.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.31.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.29.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.31.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.29.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/index.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Product Catalog API
|
|
6
|
-
* Manage Product Catalog
|
|
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
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.31.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.29.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/index.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
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.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 1.31.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|