@teemill/product-catalog 1.51.0 → 1.53.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.51.0
1
+ ## @teemill/product-catalog@1.53.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.51.0 --save
39
+ npm install @teemill/product-catalog@1.53.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -56,6 +56,7 @@ Class | Method | HTTP request | Description
56
56
  *ApplicationSetsApi* | [**getApplicationSet**](docs/ApplicationSetsApi.md#getapplicationset) | **GET** /v1/catalog/applications/sets/{applicationSetId} | Get an application set
57
57
  *ApplicationSetsApi* | [**listApplicationSets**](docs/ApplicationSetsApi.md#listapplicationsets) | **GET** /v1/catalog/applications/sets | List application sets
58
58
  *ApplicationSetsApi* | [**updateApplicationSet**](docs/ApplicationSetsApi.md#updateapplicationset) | **PATCH** /v1/catalog/applications/sets/{applicationSetId} | Update application set
59
+ *ApplicationTechnologiesApi* | [**listTechnologies**](docs/ApplicationTechnologiesApi.md#listtechnologies) | **GET** /v1/catalog/applications/technologies | List technologies available to this project
59
60
  *ProductsApi* | [**createProduct**](docs/ProductsApi.md#createproduct) | **POST** /v1/catalog/products | Create product
60
61
  *ProductsApi* | [**deleteProduct**](docs/ProductsApi.md#deleteproduct) | **DELETE** /v1/catalog/products/{productId} | Delete catalog product
61
62
  *ProductsApi* | [**deleteProducts**](docs/ProductsApi.md#deleteproducts) | **DELETE** /v1/catalog/products | Delete products
@@ -81,6 +82,9 @@ Class | Method | HTTP request | Description
81
82
  - [ApplicationSet1](docs/ApplicationSet1.md)
82
83
  - [ApplicationSetRecord](docs/ApplicationSetRecord.md)
83
84
  - [ApplicationSetsResponse](docs/ApplicationSetsResponse.md)
85
+ - [ApplicationTechnologiesResponse](docs/ApplicationTechnologiesResponse.md)
86
+ - [ApplicationTechnology](docs/ApplicationTechnology.md)
87
+ - [ApplicationTechnologyIntegrationProduct](docs/ApplicationTechnologyIntegrationProduct.md)
84
88
  - [Attribute](docs/Attribute.md)
85
89
  - [AttributeThumbnail](docs/AttributeThumbnail.md)
86
90
  - [Attributes1Inner](docs/Attributes1Inner.md)
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.51.0
7
+ * The version of the OpenAPI document: 1.53.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -79,6 +79,12 @@ export interface Application {
79
79
  * @memberof Application
80
80
  */
81
81
  'placement': ApplicationPlacementEnum;
82
+ /**
83
+ * Any additional instructions for the application
84
+ * @type {string}
85
+ * @memberof Application
86
+ */
87
+ 'additionalInstructions'?: string | null;
82
88
  /**
83
89
  * Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files.
84
90
  * @type {string}
@@ -277,6 +283,69 @@ export interface ApplicationSetsResponse {
277
283
  */
278
284
  'nextPageToken'?: number | null;
279
285
  }
286
+ /**
287
+ *
288
+ * @export
289
+ * @interface ApplicationTechnologiesResponse
290
+ */
291
+ export interface ApplicationTechnologiesResponse {
292
+ /**
293
+ *
294
+ * @type {Array<ApplicationTechnology>}
295
+ * @memberof ApplicationTechnologiesResponse
296
+ */
297
+ 'applicationTechnologies'?: Array<ApplicationTechnology>;
298
+ }
299
+ /**
300
+ *
301
+ * @export
302
+ * @interface ApplicationTechnology
303
+ */
304
+ export interface ApplicationTechnology {
305
+ /**
306
+ * Unique object identifier
307
+ * @type {string}
308
+ * @memberof ApplicationTechnology
309
+ */
310
+ 'id'?: string;
311
+ /**
312
+ * Name of the application technology
313
+ * @type {string}
314
+ * @memberof ApplicationTechnology
315
+ */
316
+ 'name'?: string;
317
+ /**
318
+ * Code of the application technology
319
+ * @type {string}
320
+ * @memberof ApplicationTechnology
321
+ */
322
+ 'code'?: string;
323
+ /**
324
+ *
325
+ * @type {ApplicationTechnologyIntegrationProduct}
326
+ * @memberof ApplicationTechnology
327
+ */
328
+ 'integrationProduct'?: ApplicationTechnologyIntegrationProduct;
329
+ }
330
+ /**
331
+ *
332
+ * @export
333
+ * @interface ApplicationTechnologyIntegrationProduct
334
+ */
335
+ export interface ApplicationTechnologyIntegrationProduct {
336
+ /**
337
+ * SKU of the product in the integration
338
+ * @type {string}
339
+ * @memberof ApplicationTechnologyIntegrationProduct
340
+ */
341
+ 'sku'?: string;
342
+ /**
343
+ * A reference to the resource location
344
+ * @type {string}
345
+ * @memberof ApplicationTechnologyIntegrationProduct
346
+ */
347
+ 'ref'?: string;
348
+ }
280
349
  /**
281
350
  *
282
351
  * @export
@@ -373,6 +442,12 @@ export interface CreateApplication {
373
442
  * @memberof CreateApplication
374
443
  */
375
444
  'placement': CreateApplicationPlacementEnum;
445
+ /**
446
+ * Any additional instructions for the application
447
+ * @type {string}
448
+ * @memberof CreateApplication
449
+ */
450
+ 'additionalInstructions'?: string | null;
376
451
  /**
377
452
  * Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files.
378
453
  * @type {string}
@@ -2823,6 +2898,138 @@ export class ApplicationSetsApi extends BaseAPI {
2823
2898
 
2824
2899
 
2825
2900
 
2901
+ /**
2902
+ * ApplicationTechnologiesApi - axios parameter creator
2903
+ * @export
2904
+ */
2905
+ export const ApplicationTechnologiesApiAxiosParamCreator = function (configuration?: Configuration) {
2906
+ return {
2907
+ /**
2908
+ * Lists all technologies available to this project.
2909
+ * @summary List technologies available to this project
2910
+ * @param {string} project What project it is
2911
+ * @param {*} [options] Override http request option.
2912
+ * @throws {RequiredError}
2913
+ */
2914
+ listTechnologies: async (project: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
2915
+ // verify required parameter 'project' is not null or undefined
2916
+ assertParamExists('listTechnologies', 'project', project)
2917
+ const localVarPath = `/v1/catalog/applications/technologies`;
2918
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
2919
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2920
+ let baseOptions;
2921
+ if (configuration) {
2922
+ baseOptions = configuration.baseOptions;
2923
+ }
2924
+
2925
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
2926
+ const localVarHeaderParameter = {} as any;
2927
+ const localVarQueryParameter = {} as any;
2928
+
2929
+ // authentication session-oauth required
2930
+ // oauth required
2931
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
2932
+
2933
+ // authentication api-key required
2934
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
2935
+
2936
+ if (project !== undefined) {
2937
+ localVarQueryParameter['project'] = project;
2938
+ }
2939
+
2940
+
2941
+
2942
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
2943
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2944
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
2945
+
2946
+ return {
2947
+ url: toPathString(localVarUrlObj),
2948
+ options: localVarRequestOptions,
2949
+ };
2950
+ },
2951
+ }
2952
+ };
2953
+
2954
+ /**
2955
+ * ApplicationTechnologiesApi - functional programming interface
2956
+ * @export
2957
+ */
2958
+ export const ApplicationTechnologiesApiFp = function(configuration?: Configuration) {
2959
+ const localVarAxiosParamCreator = ApplicationTechnologiesApiAxiosParamCreator(configuration)
2960
+ return {
2961
+ /**
2962
+ * Lists all technologies available to this project.
2963
+ * @summary List technologies available to this project
2964
+ * @param {string} project What project it is
2965
+ * @param {*} [options] Override http request option.
2966
+ * @throws {RequiredError}
2967
+ */
2968
+ async listTechnologies(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationTechnologiesResponse>> {
2969
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listTechnologies(project, options);
2970
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
2971
+ const localVarOperationServerBasePath = operationServerMap['ApplicationTechnologiesApi.listTechnologies']?.[localVarOperationServerIndex]?.url;
2972
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2973
+ },
2974
+ }
2975
+ };
2976
+
2977
+ /**
2978
+ * ApplicationTechnologiesApi - factory interface
2979
+ * @export
2980
+ */
2981
+ export const ApplicationTechnologiesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
2982
+ const localVarFp = ApplicationTechnologiesApiFp(configuration)
2983
+ return {
2984
+ /**
2985
+ * Lists all technologies available to this project.
2986
+ * @summary List technologies available to this project
2987
+ * @param {ApplicationTechnologiesApiListTechnologiesRequest} requestParameters Request parameters.
2988
+ * @param {*} [options] Override http request option.
2989
+ * @throws {RequiredError}
2990
+ */
2991
+ listTechnologies(requestParameters: ApplicationTechnologiesApiListTechnologiesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationTechnologiesResponse> {
2992
+ return localVarFp.listTechnologies(requestParameters.project, options).then((request) => request(axios, basePath));
2993
+ },
2994
+ };
2995
+ };
2996
+
2997
+ /**
2998
+ * Request parameters for listTechnologies operation in ApplicationTechnologiesApi.
2999
+ * @export
3000
+ * @interface ApplicationTechnologiesApiListTechnologiesRequest
3001
+ */
3002
+ export interface ApplicationTechnologiesApiListTechnologiesRequest {
3003
+ /**
3004
+ * What project it is
3005
+ * @type {string}
3006
+ * @memberof ApplicationTechnologiesApiListTechnologies
3007
+ */
3008
+ readonly project: string
3009
+ }
3010
+
3011
+ /**
3012
+ * ApplicationTechnologiesApi - object-oriented interface
3013
+ * @export
3014
+ * @class ApplicationTechnologiesApi
3015
+ * @extends {BaseAPI}
3016
+ */
3017
+ export class ApplicationTechnologiesApi extends BaseAPI {
3018
+ /**
3019
+ * Lists all technologies available to this project.
3020
+ * @summary List technologies available to this project
3021
+ * @param {ApplicationTechnologiesApiListTechnologiesRequest} requestParameters Request parameters.
3022
+ * @param {*} [options] Override http request option.
3023
+ * @throws {RequiredError}
3024
+ * @memberof ApplicationTechnologiesApi
3025
+ */
3026
+ public listTechnologies(requestParameters: ApplicationTechnologiesApiListTechnologiesRequest, options?: RawAxiosRequestConfig) {
3027
+ return ApplicationTechnologiesApiFp(this.configuration).listTechnologies(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
3028
+ }
3029
+ }
3030
+
3031
+
3032
+
2826
3033
  /**
2827
3034
  * ProductsApi - axios parameter creator
2828
3035
  * @export
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.51.0
7
+ * The version of the OpenAPI document: 1.53.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.51.0
7
+ * The version of the OpenAPI document: 1.53.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.51.0
7
+ * The version of the OpenAPI document: 1.53.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.51.0
5
+ * The version of the OpenAPI document: 1.53.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -69,6 +69,12 @@ export interface Application {
69
69
  * @memberof Application
70
70
  */
71
71
  'placement': ApplicationPlacementEnum;
72
+ /**
73
+ * Any additional instructions for the application
74
+ * @type {string}
75
+ * @memberof Application
76
+ */
77
+ 'additionalInstructions'?: string | null;
72
78
  /**
73
79
  * Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files.
74
80
  * @type {string}
@@ -263,6 +269,69 @@ export interface ApplicationSetsResponse {
263
269
  */
264
270
  'nextPageToken'?: number | null;
265
271
  }
272
+ /**
273
+ *
274
+ * @export
275
+ * @interface ApplicationTechnologiesResponse
276
+ */
277
+ export interface ApplicationTechnologiesResponse {
278
+ /**
279
+ *
280
+ * @type {Array<ApplicationTechnology>}
281
+ * @memberof ApplicationTechnologiesResponse
282
+ */
283
+ 'applicationTechnologies'?: Array<ApplicationTechnology>;
284
+ }
285
+ /**
286
+ *
287
+ * @export
288
+ * @interface ApplicationTechnology
289
+ */
290
+ export interface ApplicationTechnology {
291
+ /**
292
+ * Unique object identifier
293
+ * @type {string}
294
+ * @memberof ApplicationTechnology
295
+ */
296
+ 'id'?: string;
297
+ /**
298
+ * Name of the application technology
299
+ * @type {string}
300
+ * @memberof ApplicationTechnology
301
+ */
302
+ 'name'?: string;
303
+ /**
304
+ * Code of the application technology
305
+ * @type {string}
306
+ * @memberof ApplicationTechnology
307
+ */
308
+ 'code'?: string;
309
+ /**
310
+ *
311
+ * @type {ApplicationTechnologyIntegrationProduct}
312
+ * @memberof ApplicationTechnology
313
+ */
314
+ 'integrationProduct'?: ApplicationTechnologyIntegrationProduct;
315
+ }
316
+ /**
317
+ *
318
+ * @export
319
+ * @interface ApplicationTechnologyIntegrationProduct
320
+ */
321
+ export interface ApplicationTechnologyIntegrationProduct {
322
+ /**
323
+ * SKU of the product in the integration
324
+ * @type {string}
325
+ * @memberof ApplicationTechnologyIntegrationProduct
326
+ */
327
+ 'sku'?: string;
328
+ /**
329
+ * A reference to the resource location
330
+ * @type {string}
331
+ * @memberof ApplicationTechnologyIntegrationProduct
332
+ */
333
+ 'ref'?: string;
334
+ }
266
335
  /**
267
336
  *
268
337
  * @export
@@ -356,6 +425,12 @@ export interface CreateApplication {
356
425
  * @memberof CreateApplication
357
426
  */
358
427
  'placement': CreateApplicationPlacementEnum;
428
+ /**
429
+ * Any additional instructions for the application
430
+ * @type {string}
431
+ * @memberof CreateApplication
432
+ */
433
+ 'additionalInstructions'?: string | null;
359
434
  /**
360
435
  * Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files.
361
436
  * @type {string}
@@ -2505,6 +2580,78 @@ export declare class ApplicationSetsApi extends BaseAPI {
2505
2580
  */
2506
2581
  updateApplicationSet(requestParameters: ApplicationSetsApiUpdateApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSet, any>>;
2507
2582
  }
2583
+ /**
2584
+ * ApplicationTechnologiesApi - axios parameter creator
2585
+ * @export
2586
+ */
2587
+ export declare const ApplicationTechnologiesApiAxiosParamCreator: (configuration?: Configuration) => {
2588
+ /**
2589
+ * Lists all technologies available to this project.
2590
+ * @summary List technologies available to this project
2591
+ * @param {string} project What project it is
2592
+ * @param {*} [options] Override http request option.
2593
+ * @throws {RequiredError}
2594
+ */
2595
+ listTechnologies: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2596
+ };
2597
+ /**
2598
+ * ApplicationTechnologiesApi - functional programming interface
2599
+ * @export
2600
+ */
2601
+ export declare const ApplicationTechnologiesApiFp: (configuration?: Configuration) => {
2602
+ /**
2603
+ * Lists all technologies available to this project.
2604
+ * @summary List technologies available to this project
2605
+ * @param {string} project What project it is
2606
+ * @param {*} [options] Override http request option.
2607
+ * @throws {RequiredError}
2608
+ */
2609
+ listTechnologies(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationTechnologiesResponse>>;
2610
+ };
2611
+ /**
2612
+ * ApplicationTechnologiesApi - factory interface
2613
+ * @export
2614
+ */
2615
+ export declare const ApplicationTechnologiesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2616
+ /**
2617
+ * Lists all technologies available to this project.
2618
+ * @summary List technologies available to this project
2619
+ * @param {ApplicationTechnologiesApiListTechnologiesRequest} requestParameters Request parameters.
2620
+ * @param {*} [options] Override http request option.
2621
+ * @throws {RequiredError}
2622
+ */
2623
+ listTechnologies(requestParameters: ApplicationTechnologiesApiListTechnologiesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationTechnologiesResponse>;
2624
+ };
2625
+ /**
2626
+ * Request parameters for listTechnologies operation in ApplicationTechnologiesApi.
2627
+ * @export
2628
+ * @interface ApplicationTechnologiesApiListTechnologiesRequest
2629
+ */
2630
+ export interface ApplicationTechnologiesApiListTechnologiesRequest {
2631
+ /**
2632
+ * What project it is
2633
+ * @type {string}
2634
+ * @memberof ApplicationTechnologiesApiListTechnologies
2635
+ */
2636
+ readonly project: string;
2637
+ }
2638
+ /**
2639
+ * ApplicationTechnologiesApi - object-oriented interface
2640
+ * @export
2641
+ * @class ApplicationTechnologiesApi
2642
+ * @extends {BaseAPI}
2643
+ */
2644
+ export declare class ApplicationTechnologiesApi extends BaseAPI {
2645
+ /**
2646
+ * Lists all technologies available to this project.
2647
+ * @summary List technologies available to this project
2648
+ * @param {ApplicationTechnologiesApiListTechnologiesRequest} requestParameters Request parameters.
2649
+ * @param {*} [options] Override http request option.
2650
+ * @throws {RequiredError}
2651
+ * @memberof ApplicationTechnologiesApi
2652
+ */
2653
+ listTechnologies(requestParameters: ApplicationTechnologiesApiListTechnologiesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationTechnologiesResponse, any>>;
2654
+ }
2508
2655
  /**
2509
2656
  * ProductsApi - axios parameter creator
2510
2657
  * @export
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.51.0
8
+ * The version of the OpenAPI document: 1.53.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
22
22
  });
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.VariantsApi = exports.VariantsApiFactory = exports.VariantsApiFp = exports.VariantsApiAxiosParamCreator = exports.ProductsApi = exports.ProductsApiFactory = exports.ProductsApiFp = exports.ProductsApiAxiosParamCreator = exports.ApplicationSetsApi = exports.ApplicationSetsApiFactory = exports.ApplicationSetsApiFp = exports.ApplicationSetsApiAxiosParamCreator = exports.UpdateProductsRequestProductsInnerVariantsInnerSalePriceCurrencyCodeEnum = exports.UpdateProductsRequestProductsInnerVariantsInnerRetailPriceCurrencyCodeEnum = exports.UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum = exports.PriceCurrencyCodeEnum = exports.CreateApplicationPlacementEnum = exports.CreateApplicationTechnologyEnum = exports.AttributeThumbnailTypeEnum = exports.ApplicationPlacementEnum = exports.ApplicationTechnologyEnum = void 0;
25
+ exports.VariantsApi = exports.VariantsApiFactory = exports.VariantsApiFp = exports.VariantsApiAxiosParamCreator = exports.ProductsApi = exports.ProductsApiFactory = exports.ProductsApiFp = exports.ProductsApiAxiosParamCreator = exports.ApplicationTechnologiesApi = exports.ApplicationTechnologiesApiFactory = exports.ApplicationTechnologiesApiFp = exports.ApplicationTechnologiesApiAxiosParamCreator = exports.ApplicationSetsApi = exports.ApplicationSetsApiFactory = exports.ApplicationSetsApiFp = exports.ApplicationSetsApiAxiosParamCreator = exports.UpdateProductsRequestProductsInnerVariantsInnerSalePriceCurrencyCodeEnum = exports.UpdateProductsRequestProductsInnerVariantsInnerRetailPriceCurrencyCodeEnum = exports.UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum = exports.PriceCurrencyCodeEnum = exports.CreateApplicationPlacementEnum = exports.CreateApplicationTechnologyEnum = exports.AttributeThumbnailTypeEnum = exports.ApplicationPlacementEnum = exports.ApplicationTechnologyEnum = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -524,6 +524,117 @@ class ApplicationSetsApi extends base_1.BaseAPI {
524
524
  }
525
525
  }
526
526
  exports.ApplicationSetsApi = ApplicationSetsApi;
527
+ /**
528
+ * ApplicationTechnologiesApi - axios parameter creator
529
+ * @export
530
+ */
531
+ const ApplicationTechnologiesApiAxiosParamCreator = function (configuration) {
532
+ return {
533
+ /**
534
+ * Lists all technologies available to this project.
535
+ * @summary List technologies available to this project
536
+ * @param {string} project What project it is
537
+ * @param {*} [options] Override http request option.
538
+ * @throws {RequiredError}
539
+ */
540
+ listTechnologies: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
541
+ // verify required parameter 'project' is not null or undefined
542
+ (0, common_1.assertParamExists)('listTechnologies', 'project', project);
543
+ const localVarPath = `/v1/catalog/applications/technologies`;
544
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
545
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
546
+ let baseOptions;
547
+ if (configuration) {
548
+ baseOptions = configuration.baseOptions;
549
+ }
550
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
551
+ const localVarHeaderParameter = {};
552
+ const localVarQueryParameter = {};
553
+ // authentication session-oauth required
554
+ // oauth required
555
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
556
+ // authentication api-key required
557
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
558
+ if (project !== undefined) {
559
+ localVarQueryParameter['project'] = project;
560
+ }
561
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
562
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
563
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
564
+ return {
565
+ url: (0, common_1.toPathString)(localVarUrlObj),
566
+ options: localVarRequestOptions,
567
+ };
568
+ }),
569
+ };
570
+ };
571
+ exports.ApplicationTechnologiesApiAxiosParamCreator = ApplicationTechnologiesApiAxiosParamCreator;
572
+ /**
573
+ * ApplicationTechnologiesApi - functional programming interface
574
+ * @export
575
+ */
576
+ const ApplicationTechnologiesApiFp = function (configuration) {
577
+ const localVarAxiosParamCreator = (0, exports.ApplicationTechnologiesApiAxiosParamCreator)(configuration);
578
+ return {
579
+ /**
580
+ * Lists all technologies available to this project.
581
+ * @summary List technologies available to this project
582
+ * @param {string} project What project it is
583
+ * @param {*} [options] Override http request option.
584
+ * @throws {RequiredError}
585
+ */
586
+ listTechnologies(project, options) {
587
+ return __awaiter(this, void 0, void 0, function* () {
588
+ var _a, _b, _c;
589
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listTechnologies(project, options);
590
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
591
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ApplicationTechnologiesApi.listTechnologies']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
592
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
593
+ });
594
+ },
595
+ };
596
+ };
597
+ exports.ApplicationTechnologiesApiFp = ApplicationTechnologiesApiFp;
598
+ /**
599
+ * ApplicationTechnologiesApi - factory interface
600
+ * @export
601
+ */
602
+ const ApplicationTechnologiesApiFactory = function (configuration, basePath, axios) {
603
+ const localVarFp = (0, exports.ApplicationTechnologiesApiFp)(configuration);
604
+ return {
605
+ /**
606
+ * Lists all technologies available to this project.
607
+ * @summary List technologies available to this project
608
+ * @param {ApplicationTechnologiesApiListTechnologiesRequest} requestParameters Request parameters.
609
+ * @param {*} [options] Override http request option.
610
+ * @throws {RequiredError}
611
+ */
612
+ listTechnologies(requestParameters, options) {
613
+ return localVarFp.listTechnologies(requestParameters.project, options).then((request) => request(axios, basePath));
614
+ },
615
+ };
616
+ };
617
+ exports.ApplicationTechnologiesApiFactory = ApplicationTechnologiesApiFactory;
618
+ /**
619
+ * ApplicationTechnologiesApi - object-oriented interface
620
+ * @export
621
+ * @class ApplicationTechnologiesApi
622
+ * @extends {BaseAPI}
623
+ */
624
+ class ApplicationTechnologiesApi extends base_1.BaseAPI {
625
+ /**
626
+ * Lists all technologies available to this project.
627
+ * @summary List technologies available to this project
628
+ * @param {ApplicationTechnologiesApiListTechnologiesRequest} requestParameters Request parameters.
629
+ * @param {*} [options] Override http request option.
630
+ * @throws {RequiredError}
631
+ * @memberof ApplicationTechnologiesApi
632
+ */
633
+ listTechnologies(requestParameters, options) {
634
+ return (0, exports.ApplicationTechnologiesApiFp)(this.configuration).listTechnologies(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
635
+ }
636
+ }
637
+ exports.ApplicationTechnologiesApi = ApplicationTechnologiesApi;
527
638
  /**
528
639
  * ProductsApi - axios parameter creator
529
640
  * @export
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.51.0
5
+ * The version of the OpenAPI document: 1.53.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.51.0
8
+ * The version of the OpenAPI document: 1.53.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.51.0
5
+ * The version of the OpenAPI document: 1.53.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.51.0
8
+ * The version of the OpenAPI document: 1.53.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.51.0
5
+ * The version of the OpenAPI document: 1.53.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.51.0
8
+ * The version of the OpenAPI document: 1.53.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.51.0
5
+ * The version of the OpenAPI document: 1.53.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -69,6 +69,12 @@ export interface Application {
69
69
  * @memberof Application
70
70
  */
71
71
  'placement': ApplicationPlacementEnum;
72
+ /**
73
+ * Any additional instructions for the application
74
+ * @type {string}
75
+ * @memberof Application
76
+ */
77
+ 'additionalInstructions'?: string | null;
72
78
  /**
73
79
  * Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files.
74
80
  * @type {string}
@@ -263,6 +269,69 @@ export interface ApplicationSetsResponse {
263
269
  */
264
270
  'nextPageToken'?: number | null;
265
271
  }
272
+ /**
273
+ *
274
+ * @export
275
+ * @interface ApplicationTechnologiesResponse
276
+ */
277
+ export interface ApplicationTechnologiesResponse {
278
+ /**
279
+ *
280
+ * @type {Array<ApplicationTechnology>}
281
+ * @memberof ApplicationTechnologiesResponse
282
+ */
283
+ 'applicationTechnologies'?: Array<ApplicationTechnology>;
284
+ }
285
+ /**
286
+ *
287
+ * @export
288
+ * @interface ApplicationTechnology
289
+ */
290
+ export interface ApplicationTechnology {
291
+ /**
292
+ * Unique object identifier
293
+ * @type {string}
294
+ * @memberof ApplicationTechnology
295
+ */
296
+ 'id'?: string;
297
+ /**
298
+ * Name of the application technology
299
+ * @type {string}
300
+ * @memberof ApplicationTechnology
301
+ */
302
+ 'name'?: string;
303
+ /**
304
+ * Code of the application technology
305
+ * @type {string}
306
+ * @memberof ApplicationTechnology
307
+ */
308
+ 'code'?: string;
309
+ /**
310
+ *
311
+ * @type {ApplicationTechnologyIntegrationProduct}
312
+ * @memberof ApplicationTechnology
313
+ */
314
+ 'integrationProduct'?: ApplicationTechnologyIntegrationProduct;
315
+ }
316
+ /**
317
+ *
318
+ * @export
319
+ * @interface ApplicationTechnologyIntegrationProduct
320
+ */
321
+ export interface ApplicationTechnologyIntegrationProduct {
322
+ /**
323
+ * SKU of the product in the integration
324
+ * @type {string}
325
+ * @memberof ApplicationTechnologyIntegrationProduct
326
+ */
327
+ 'sku'?: string;
328
+ /**
329
+ * A reference to the resource location
330
+ * @type {string}
331
+ * @memberof ApplicationTechnologyIntegrationProduct
332
+ */
333
+ 'ref'?: string;
334
+ }
266
335
  /**
267
336
  *
268
337
  * @export
@@ -356,6 +425,12 @@ export interface CreateApplication {
356
425
  * @memberof CreateApplication
357
426
  */
358
427
  'placement': CreateApplicationPlacementEnum;
428
+ /**
429
+ * Any additional instructions for the application
430
+ * @type {string}
431
+ * @memberof CreateApplication
432
+ */
433
+ 'additionalInstructions'?: string | null;
359
434
  /**
360
435
  * Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files.
361
436
  * @type {string}
@@ -2505,6 +2580,78 @@ export declare class ApplicationSetsApi extends BaseAPI {
2505
2580
  */
2506
2581
  updateApplicationSet(requestParameters: ApplicationSetsApiUpdateApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSet, any>>;
2507
2582
  }
2583
+ /**
2584
+ * ApplicationTechnologiesApi - axios parameter creator
2585
+ * @export
2586
+ */
2587
+ export declare const ApplicationTechnologiesApiAxiosParamCreator: (configuration?: Configuration) => {
2588
+ /**
2589
+ * Lists all technologies available to this project.
2590
+ * @summary List technologies available to this project
2591
+ * @param {string} project What project it is
2592
+ * @param {*} [options] Override http request option.
2593
+ * @throws {RequiredError}
2594
+ */
2595
+ listTechnologies: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2596
+ };
2597
+ /**
2598
+ * ApplicationTechnologiesApi - functional programming interface
2599
+ * @export
2600
+ */
2601
+ export declare const ApplicationTechnologiesApiFp: (configuration?: Configuration) => {
2602
+ /**
2603
+ * Lists all technologies available to this project.
2604
+ * @summary List technologies available to this project
2605
+ * @param {string} project What project it is
2606
+ * @param {*} [options] Override http request option.
2607
+ * @throws {RequiredError}
2608
+ */
2609
+ listTechnologies(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationTechnologiesResponse>>;
2610
+ };
2611
+ /**
2612
+ * ApplicationTechnologiesApi - factory interface
2613
+ * @export
2614
+ */
2615
+ export declare const ApplicationTechnologiesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2616
+ /**
2617
+ * Lists all technologies available to this project.
2618
+ * @summary List technologies available to this project
2619
+ * @param {ApplicationTechnologiesApiListTechnologiesRequest} requestParameters Request parameters.
2620
+ * @param {*} [options] Override http request option.
2621
+ * @throws {RequiredError}
2622
+ */
2623
+ listTechnologies(requestParameters: ApplicationTechnologiesApiListTechnologiesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationTechnologiesResponse>;
2624
+ };
2625
+ /**
2626
+ * Request parameters for listTechnologies operation in ApplicationTechnologiesApi.
2627
+ * @export
2628
+ * @interface ApplicationTechnologiesApiListTechnologiesRequest
2629
+ */
2630
+ export interface ApplicationTechnologiesApiListTechnologiesRequest {
2631
+ /**
2632
+ * What project it is
2633
+ * @type {string}
2634
+ * @memberof ApplicationTechnologiesApiListTechnologies
2635
+ */
2636
+ readonly project: string;
2637
+ }
2638
+ /**
2639
+ * ApplicationTechnologiesApi - object-oriented interface
2640
+ * @export
2641
+ * @class ApplicationTechnologiesApi
2642
+ * @extends {BaseAPI}
2643
+ */
2644
+ export declare class ApplicationTechnologiesApi extends BaseAPI {
2645
+ /**
2646
+ * Lists all technologies available to this project.
2647
+ * @summary List technologies available to this project
2648
+ * @param {ApplicationTechnologiesApiListTechnologiesRequest} requestParameters Request parameters.
2649
+ * @param {*} [options] Override http request option.
2650
+ * @throws {RequiredError}
2651
+ * @memberof ApplicationTechnologiesApi
2652
+ */
2653
+ listTechnologies(requestParameters: ApplicationTechnologiesApiListTechnologiesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationTechnologiesResponse, any>>;
2654
+ }
2508
2655
  /**
2509
2656
  * ProductsApi - axios parameter creator
2510
2657
  * @export
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.51.0
7
+ * The version of the OpenAPI document: 1.53.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -517,6 +517,113 @@ export class ApplicationSetsApi extends BaseAPI {
517
517
  return ApplicationSetsApiFp(this.configuration).updateApplicationSet(requestParameters.project, requestParameters.applicationSetId, requestParameters.updateApplicationSetRequest, options).then((request) => request(this.axios, this.basePath));
518
518
  }
519
519
  }
520
+ /**
521
+ * ApplicationTechnologiesApi - axios parameter creator
522
+ * @export
523
+ */
524
+ export const ApplicationTechnologiesApiAxiosParamCreator = function (configuration) {
525
+ return {
526
+ /**
527
+ * Lists all technologies available to this project.
528
+ * @summary List technologies available to this project
529
+ * @param {string} project What project it is
530
+ * @param {*} [options] Override http request option.
531
+ * @throws {RequiredError}
532
+ */
533
+ listTechnologies: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
534
+ // verify required parameter 'project' is not null or undefined
535
+ assertParamExists('listTechnologies', 'project', project);
536
+ const localVarPath = `/v1/catalog/applications/technologies`;
537
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
538
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
539
+ let baseOptions;
540
+ if (configuration) {
541
+ baseOptions = configuration.baseOptions;
542
+ }
543
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
544
+ const localVarHeaderParameter = {};
545
+ const localVarQueryParameter = {};
546
+ // authentication session-oauth required
547
+ // oauth required
548
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
549
+ // authentication api-key required
550
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
551
+ if (project !== undefined) {
552
+ localVarQueryParameter['project'] = project;
553
+ }
554
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
555
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
556
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
557
+ return {
558
+ url: toPathString(localVarUrlObj),
559
+ options: localVarRequestOptions,
560
+ };
561
+ }),
562
+ };
563
+ };
564
+ /**
565
+ * ApplicationTechnologiesApi - functional programming interface
566
+ * @export
567
+ */
568
+ export const ApplicationTechnologiesApiFp = function (configuration) {
569
+ const localVarAxiosParamCreator = ApplicationTechnologiesApiAxiosParamCreator(configuration);
570
+ return {
571
+ /**
572
+ * Lists all technologies available to this project.
573
+ * @summary List technologies available to this project
574
+ * @param {string} project What project it is
575
+ * @param {*} [options] Override http request option.
576
+ * @throws {RequiredError}
577
+ */
578
+ listTechnologies(project, options) {
579
+ return __awaiter(this, void 0, void 0, function* () {
580
+ var _a, _b, _c;
581
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listTechnologies(project, options);
582
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
583
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ApplicationTechnologiesApi.listTechnologies']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
584
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
585
+ });
586
+ },
587
+ };
588
+ };
589
+ /**
590
+ * ApplicationTechnologiesApi - factory interface
591
+ * @export
592
+ */
593
+ export const ApplicationTechnologiesApiFactory = function (configuration, basePath, axios) {
594
+ const localVarFp = ApplicationTechnologiesApiFp(configuration);
595
+ return {
596
+ /**
597
+ * Lists all technologies available to this project.
598
+ * @summary List technologies available to this project
599
+ * @param {ApplicationTechnologiesApiListTechnologiesRequest} requestParameters Request parameters.
600
+ * @param {*} [options] Override http request option.
601
+ * @throws {RequiredError}
602
+ */
603
+ listTechnologies(requestParameters, options) {
604
+ return localVarFp.listTechnologies(requestParameters.project, options).then((request) => request(axios, basePath));
605
+ },
606
+ };
607
+ };
608
+ /**
609
+ * ApplicationTechnologiesApi - object-oriented interface
610
+ * @export
611
+ * @class ApplicationTechnologiesApi
612
+ * @extends {BaseAPI}
613
+ */
614
+ export class ApplicationTechnologiesApi extends BaseAPI {
615
+ /**
616
+ * Lists all technologies available to this project.
617
+ * @summary List technologies available to this project
618
+ * @param {ApplicationTechnologiesApiListTechnologiesRequest} requestParameters Request parameters.
619
+ * @param {*} [options] Override http request option.
620
+ * @throws {RequiredError}
621
+ * @memberof ApplicationTechnologiesApi
622
+ */
623
+ listTechnologies(requestParameters, options) {
624
+ return ApplicationTechnologiesApiFp(this.configuration).listTechnologies(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
625
+ }
626
+ }
520
627
  /**
521
628
  * ProductsApi - axios parameter creator
522
629
  * @export
@@ -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.51.0
5
+ * The version of the OpenAPI document: 1.53.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.51.0
7
+ * The version of the OpenAPI document: 1.53.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.51.0
5
+ * The version of the OpenAPI document: 1.53.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.51.0
7
+ * The version of the OpenAPI document: 1.53.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.51.0
5
+ * The version of the OpenAPI document: 1.53.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.51.0
7
+ * The version of the OpenAPI document: 1.53.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.51.0
5
+ * The version of the OpenAPI document: 1.53.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.51.0
7
+ * The version of the OpenAPI document: 1.53.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.51.0
5
+ * The version of the OpenAPI document: 1.53.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.51.0
8
+ * The version of the OpenAPI document: 1.53.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **id** | **string** | Unique object identifier | [optional] [default to undefined]
9
9
  **technology** | **string** | Technology to use for the application. | [default to undefined]
10
10
  **placement** | **string** | Placement of the application. Available placements depend on the chosen product and technology. | [default to undefined]
11
+ **additionalInstructions** | **string** | Any additional instructions for the application | [optional] [default to undefined]
11
12
  **src** | **string** | Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files. | [default to undefined]
12
13
  **mockup** | [**ApplicationMockup**](ApplicationMockup.md) | | [optional] [default to undefined]
13
14
  **stockedOnly** | **boolean** | If set to true, transfers for this application will not be printed on demand, and will need to be stocked in trays in the factory. Note that this can only be set if the technology is stockable, such as DTF. | [optional] [default to undefined]
@@ -21,6 +22,7 @@ const instance: Application = {
21
22
  id,
22
23
  technology,
23
24
  placement,
25
+ additionalInstructions,
24
26
  src,
25
27
  mockup,
26
28
  stockedOnly,
@@ -0,0 +1,63 @@
1
+ # ApplicationTechnologiesApi
2
+
3
+ All URIs are relative to *https://api.podos.io*
4
+
5
+ |Method | HTTP request | Description|
6
+ |------------- | ------------- | -------------|
7
+ |[**listTechnologies**](#listtechnologies) | **GET** /v1/catalog/applications/technologies | List technologies available to this project|
8
+
9
+ # **listTechnologies**
10
+ > ApplicationTechnologiesResponse listTechnologies()
11
+
12
+ Lists all technologies available to this project.
13
+
14
+ ### Example
15
+
16
+ ```typescript
17
+ import {
18
+ ApplicationTechnologiesApi,
19
+ Configuration
20
+ } from '@teemill/product-catalog';
21
+
22
+ const configuration = new Configuration();
23
+ const apiInstance = new ApplicationTechnologiesApi(configuration);
24
+
25
+ let project: string; //What project it is (default to undefined)
26
+
27
+ const { status, data } = await apiInstance.listTechnologies(
28
+ project
29
+ );
30
+ ```
31
+
32
+ ### Parameters
33
+
34
+ |Name | Type | Description | Notes|
35
+ |------------- | ------------- | ------------- | -------------|
36
+ | **project** | [**string**] | What project it is | defaults to undefined|
37
+
38
+
39
+ ### Return type
40
+
41
+ **ApplicationTechnologiesResponse**
42
+
43
+ ### Authorization
44
+
45
+ [session-oauth](../README.md#session-oauth), [api-key](../README.md#api-key)
46
+
47
+ ### HTTP request headers
48
+
49
+ - **Content-Type**: Not defined
50
+ - **Accept**: application/json
51
+
52
+
53
+ ### HTTP response details
54
+ | Status code | Description | Response headers |
55
+ |-------------|-------------|------------------|
56
+ |**200** | Successfully retrieved all application technologies. | - |
57
+ |**400** | Failed validation. | - |
58
+ |**401** | Not authorised to access this resource. | - |
59
+ |**403** | Refuse to authorize. | - |
60
+ |**500** | Unknown server error. | - |
61
+
62
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
63
+
@@ -0,0 +1,20 @@
1
+ # ApplicationTechnologiesResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **applicationTechnologies** | [**Array&lt;ApplicationTechnology&gt;**](ApplicationTechnology.md) | | [optional] [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { ApplicationTechnologiesResponse } from '@teemill/product-catalog';
14
+
15
+ const instance: ApplicationTechnologiesResponse = {
16
+ applicationTechnologies,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # ApplicationTechnology
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | Unique object identifier | [optional] [default to undefined]
9
+ **name** | **string** | Name of the application technology | [optional] [default to undefined]
10
+ **code** | **string** | Code of the application technology | [optional] [default to undefined]
11
+ **integrationProduct** | [**ApplicationTechnologyIntegrationProduct**](ApplicationTechnologyIntegrationProduct.md) | | [optional] [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { ApplicationTechnology } from '@teemill/product-catalog';
17
+
18
+ const instance: ApplicationTechnology = {
19
+ id,
20
+ name,
21
+ code,
22
+ integrationProduct,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,22 @@
1
+ # ApplicationTechnologyIntegrationProduct
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **sku** | **string** | SKU of the product in the integration | [optional] [default to undefined]
9
+ **ref** | **string** | A reference to the resource location | [optional] [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { ApplicationTechnologyIntegrationProduct } from '@teemill/product-catalog';
15
+
16
+ const instance: ApplicationTechnologyIntegrationProduct = {
17
+ sku,
18
+ ref,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **technology** | **string** | Technology to use for the application. | [default to undefined]
9
9
  **placement** | **string** | Placement of the application. Available placements depend on the chosen product and technology. | [default to undefined]
10
+ **additionalInstructions** | **string** | Any additional instructions for the application | [optional] [default to undefined]
10
11
  **src** | **string** | Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files. | [default to undefined]
11
12
  **stockedOnly** | **boolean** | If set to true, transfers for this application will not be printed on demand, and will need to be stocked in trays in the factory. Note that this can only be set if the technology is stockable, such as DTF. | [optional] [default to undefined]
12
13
 
@@ -18,6 +19,7 @@ import { CreateApplication } from '@teemill/product-catalog';
18
19
  const instance: CreateApplication = {
19
20
  technology,
20
21
  placement,
22
+ additionalInstructions,
21
23
  src,
22
24
  stockedOnly,
23
25
  };
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.51.0
7
+ * The version of the OpenAPI document: 1.53.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.51.0",
3
+ "version": "1.53.0",
4
4
  "description": "OpenAPI client for @teemill/product-catalog",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {