@teemill/product-catalog 1.30.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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/product-catalog@1.30.0
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.30.0 --save
39
+ npm install @teemill/product-catalog@1.31.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.30.0
7
+ * The version of the OpenAPI document: 1.31.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (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
  *
@@ -1115,11 +1115,11 @@ export interface ProductsResponse {
1115
1115
  */
1116
1116
  'products'?: Array<Product>;
1117
1117
  /**
1118
- *
1118
+ * The token referencing the next page number
1119
1119
  * @type {number}
1120
1120
  * @memberof ProductsResponse
1121
1121
  */
1122
- 'nextPageToken'?: number;
1122
+ 'nextPageToken'?: number | null;
1123
1123
  }
1124
1124
  /**
1125
1125
  * SEO metadata for the product
@@ -1478,11 +1478,11 @@ export interface VariantsResponse {
1478
1478
  */
1479
1479
  'variants'?: Array<Variant>;
1480
1480
  /**
1481
- *
1481
+ * The token referencing the next page number
1482
1482
  * @type {number}
1483
1483
  * @memberof VariantsResponse
1484
1484
  */
1485
- 'nextPageToken'?: number;
1485
+ 'nextPageToken'?: number | null;
1486
1486
  }
1487
1487
  /**
1488
1488
  * Video object
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.30.0
7
+ * The version of the OpenAPI document: 1.31.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.30.0
7
+ * The version of the OpenAPI document: 1.31.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.30.0
7
+ * The version of the OpenAPI document: 1.31.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.30.0
5
+ * The version of the OpenAPI document: 1.31.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (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
  *
@@ -1082,11 +1082,11 @@ export interface ProductsResponse {
1082
1082
  */
1083
1083
  'products'?: Array<Product>;
1084
1084
  /**
1085
- *
1085
+ * The token referencing the next page number
1086
1086
  * @type {number}
1087
1087
  * @memberof ProductsResponse
1088
1088
  */
1089
- 'nextPageToken'?: number;
1089
+ 'nextPageToken'?: number | null;
1090
1090
  }
1091
1091
  /**
1092
1092
  * SEO metadata for the product
@@ -1445,11 +1445,11 @@ export interface VariantsResponse {
1445
1445
  */
1446
1446
  'variants'?: Array<Variant>;
1447
1447
  /**
1448
- *
1448
+ * The token referencing the next page number
1449
1449
  * @type {number}
1450
1450
  * @memberof VariantsResponse
1451
1451
  */
1452
- 'nextPageToken'?: number;
1452
+ 'nextPageToken'?: number | null;
1453
1453
  }
1454
1454
  /**
1455
1455
  * Video object
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.30.0
8
+ * The version of the OpenAPI document: 1.31.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.30.0
5
+ * The version of the OpenAPI document: 1.31.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.30.0
8
+ * The version of the OpenAPI document: 1.31.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.30.0
5
+ * The version of the OpenAPI document: 1.31.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.30.0
8
+ * The version of the OpenAPI document: 1.31.0
9
9
  *
10
10
  *
11
11
  * 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.30.0
5
+ * The version of the OpenAPI document: 1.31.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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.30.0
8
+ * The version of the OpenAPI document: 1.31.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.30.0
5
+ * The version of the OpenAPI document: 1.31.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (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
  *
@@ -1082,11 +1082,11 @@ export interface ProductsResponse {
1082
1082
  */
1083
1083
  'products'?: Array<Product>;
1084
1084
  /**
1085
- *
1085
+ * The token referencing the next page number
1086
1086
  * @type {number}
1087
1087
  * @memberof ProductsResponse
1088
1088
  */
1089
- 'nextPageToken'?: number;
1089
+ 'nextPageToken'?: number | null;
1090
1090
  }
1091
1091
  /**
1092
1092
  * SEO metadata for the product
@@ -1445,11 +1445,11 @@ export interface VariantsResponse {
1445
1445
  */
1446
1446
  'variants'?: Array<Variant>;
1447
1447
  /**
1448
- *
1448
+ * The token referencing the next page number
1449
1449
  * @type {number}
1450
1450
  * @memberof VariantsResponse
1451
1451
  */
1452
- 'nextPageToken'?: number;
1452
+ 'nextPageToken'?: number | null;
1453
1453
  }
1454
1454
  /**
1455
1455
  * Video object
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.30.0
7
+ * The version of the OpenAPI document: 1.31.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.30.0
5
+ * The version of the OpenAPI document: 1.31.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.30.0
7
+ * The version of the OpenAPI document: 1.31.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.30.0
5
+ * The version of the OpenAPI document: 1.31.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.30.0
7
+ * The version of the OpenAPI document: 1.31.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.30.0
5
+ * The version of the OpenAPI document: 1.31.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.30.0
7
+ * The version of the OpenAPI document: 1.31.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.30.0
5
+ * The version of the OpenAPI document: 1.31.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.30.0
7
+ * The version of the OpenAPI document: 1.31.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.30.0
5
+ * The version of the OpenAPI document: 1.31.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.30.0
8
+ * The version of the OpenAPI document: 1.31.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.30.0
7
+ * The version of the OpenAPI document: 1.31.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/product-catalog",
3
- "version": "1.30.0",
3
+ "version": "1.31.0",
4
4
  "description": "OpenAPI client for @teemill/product-catalog",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {