@teemill/projects 1.22.0 → 1.23.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/projects@1.22.0
1
+ ## @teemill/projects@1.23.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/projects@1.22.0 --save
39
+ npm install @teemill/projects@1.23.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.22.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -75,10 +75,10 @@ export interface CreateProjectRequest {
75
75
  'name': string;
76
76
  /**
77
77
  *
78
- * @type {Template}
78
+ * @type {TemplateCode}
79
79
  * @memberof CreateProjectRequest
80
80
  */
81
- 'template'?: Template;
81
+ 'template'?: TemplateCode;
82
82
  /**
83
83
  *
84
84
  * @type {object}
@@ -94,6 +94,31 @@ export interface CreateProjectRequest {
94
94
  }
95
95
 
96
96
 
97
+ /**
98
+ *
99
+ * @export
100
+ * @interface Icon
101
+ */
102
+ export interface Icon {
103
+ /**
104
+ *
105
+ * @type {string}
106
+ * @memberof Icon
107
+ */
108
+ 'prefix': string;
109
+ /**
110
+ *
111
+ * @type {string}
112
+ * @memberof Icon
113
+ */
114
+ 'iconName': string;
115
+ /**
116
+ *
117
+ * @type {Array<any>}
118
+ * @memberof Icon
119
+ */
120
+ 'icon': Array<any>;
121
+ }
97
122
  /**
98
123
  *
99
124
  * @export
@@ -454,13 +479,52 @@ export interface ProjectsResponse {
454
479
  */
455
480
  'projects': Array<Project>;
456
481
  }
482
+ /**
483
+ *
484
+ * @export
485
+ * @interface Template
486
+ */
487
+ export interface Template {
488
+ /**
489
+ *
490
+ * @type {string}
491
+ * @memberof Template
492
+ */
493
+ 'name'?: string;
494
+ /**
495
+ *
496
+ * @type {string}
497
+ * @memberof Template
498
+ */
499
+ 'description'?: string;
500
+ /**
501
+ *
502
+ * @type {TemplateCode}
503
+ * @memberof Template
504
+ */
505
+ 'code'?: TemplateCode;
506
+ /**
507
+ *
508
+ * @type {boolean}
509
+ * @memberof Template
510
+ */
511
+ 'highlighted'?: boolean;
512
+ /**
513
+ *
514
+ * @type {Icon}
515
+ * @memberof Template
516
+ */
517
+ 'icon'?: Icon;
518
+ }
519
+
520
+
457
521
  /**
458
522
  *
459
523
  * @export
460
524
  * @enum {string}
461
525
  */
462
526
 
463
- export const Template = {
527
+ export const TemplateCode = {
464
528
  Shop: 'shop',
465
529
  ShopHeadless: 'shop-headless',
466
530
  ShopCommercial: 'shop-commercial',
@@ -468,7 +532,7 @@ export const Template = {
468
532
  Shopify: 'shopify'
469
533
  } as const;
470
534
 
471
- export type Template = typeof Template[keyof typeof Template];
535
+ export type TemplateCode = typeof TemplateCode[keyof typeof TemplateCode];
472
536
 
473
537
 
474
538
  /**
@@ -1161,12 +1225,12 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
1161
1225
  * Install an integration template on the project
1162
1226
  * @summary Install integration template
1163
1227
  * @param {string} project Projects unique identifier
1164
- * @param {Template} template Templates unique code
1228
+ * @param {TemplateCode} template Templates unique code
1165
1229
  * @param {InstallTemplateRequest} installTemplateRequest Request body to install template
1166
1230
  * @param {*} [options] Override http request option.
1167
1231
  * @throws {RequiredError}
1168
1232
  */
1169
- installTemplate: async (project: string, template: Template, installTemplateRequest: InstallTemplateRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1233
+ installTemplate: async (project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1170
1234
  // verify required parameter 'project' is not null or undefined
1171
1235
  assertParamExists('installTemplate', 'project', project)
1172
1236
  // verify required parameter 'template' is not null or undefined
@@ -1610,12 +1674,12 @@ export const ProjectsApiFp = function(configuration?: Configuration) {
1610
1674
  * Install an integration template on the project
1611
1675
  * @summary Install integration template
1612
1676
  * @param {string} project Projects unique identifier
1613
- * @param {Template} template Templates unique code
1677
+ * @param {TemplateCode} template Templates unique code
1614
1678
  * @param {InstallTemplateRequest} installTemplateRequest Request body to install template
1615
1679
  * @param {*} [options] Override http request option.
1616
1680
  * @throws {RequiredError}
1617
1681
  */
1618
- async installTemplate(project: string, template: Template, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationsResponse>> {
1682
+ async installTemplate(project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationsResponse>> {
1619
1683
  const localVarAxiosArgs = await localVarAxiosParamCreator.installTemplate(project, template, installTemplateRequest, options);
1620
1684
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1621
1685
  const localVarOperationServerBasePath = operationServerMap['ProjectsApi.installTemplate']?.[localVarOperationServerIndex]?.url;
@@ -2169,10 +2233,10 @@ export interface ProjectsApiInstallTemplateRequest {
2169
2233
 
2170
2234
  /**
2171
2235
  * Templates unique code
2172
- * @type {Template}
2236
+ * @type {TemplateCode}
2173
2237
  * @memberof ProjectsApiInstallTemplate
2174
2238
  */
2175
- readonly template: Template
2239
+ readonly template: TemplateCode
2176
2240
 
2177
2241
  /**
2178
2242
  * Request body to install template
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.22.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
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
  * Projects API
5
5
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.22.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
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
  * Projects API
5
5
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.22.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
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
  * Projects API
3
3
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.22.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -65,10 +65,10 @@ export interface CreateProjectRequest {
65
65
  'name': string;
66
66
  /**
67
67
  *
68
- * @type {Template}
68
+ * @type {TemplateCode}
69
69
  * @memberof CreateProjectRequest
70
70
  */
71
- 'template'?: Template;
71
+ 'template'?: TemplateCode;
72
72
  /**
73
73
  *
74
74
  * @type {object}
@@ -82,6 +82,31 @@ export interface CreateProjectRequest {
82
82
  */
83
83
  'platformId'?: string | null;
84
84
  }
85
+ /**
86
+ *
87
+ * @export
88
+ * @interface Icon
89
+ */
90
+ export interface Icon {
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof Icon
95
+ */
96
+ 'prefix': string;
97
+ /**
98
+ *
99
+ * @type {string}
100
+ * @memberof Icon
101
+ */
102
+ 'iconName': string;
103
+ /**
104
+ *
105
+ * @type {Array<any>}
106
+ * @memberof Icon
107
+ */
108
+ 'icon': Array<any>;
109
+ }
85
110
  /**
86
111
  *
87
112
  * @export
@@ -441,19 +466,56 @@ export interface ProjectsResponse {
441
466
  */
442
467
  'projects': Array<Project>;
443
468
  }
469
+ /**
470
+ *
471
+ * @export
472
+ * @interface Template
473
+ */
474
+ export interface Template {
475
+ /**
476
+ *
477
+ * @type {string}
478
+ * @memberof Template
479
+ */
480
+ 'name'?: string;
481
+ /**
482
+ *
483
+ * @type {string}
484
+ * @memberof Template
485
+ */
486
+ 'description'?: string;
487
+ /**
488
+ *
489
+ * @type {TemplateCode}
490
+ * @memberof Template
491
+ */
492
+ 'code'?: TemplateCode;
493
+ /**
494
+ *
495
+ * @type {boolean}
496
+ * @memberof Template
497
+ */
498
+ 'highlighted'?: boolean;
499
+ /**
500
+ *
501
+ * @type {Icon}
502
+ * @memberof Template
503
+ */
504
+ 'icon'?: Icon;
505
+ }
444
506
  /**
445
507
  *
446
508
  * @export
447
509
  * @enum {string}
448
510
  */
449
- export declare const Template: {
511
+ export declare const TemplateCode: {
450
512
  readonly Shop: "shop";
451
513
  readonly ShopHeadless: "shop-headless";
452
514
  readonly ShopCommercial: "shop-commercial";
453
515
  readonly Factory: "factory";
454
516
  readonly Shopify: "shopify";
455
517
  };
456
- export type Template = typeof Template[keyof typeof Template];
518
+ export type TemplateCode = typeof TemplateCode[keyof typeof TemplateCode];
457
519
  /**
458
520
  *
459
521
  * @export
@@ -632,12 +694,12 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
632
694
  * Install an integration template on the project
633
695
  * @summary Install integration template
634
696
  * @param {string} project Projects unique identifier
635
- * @param {Template} template Templates unique code
697
+ * @param {TemplateCode} template Templates unique code
636
698
  * @param {InstallTemplateRequest} installTemplateRequest Request body to install template
637
699
  * @param {*} [options] Override http request option.
638
700
  * @throws {RequiredError}
639
701
  */
640
- installTemplate: (project: string, template: Template, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
702
+ installTemplate: (project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
641
703
  /**
642
704
  * Setup an integration on the project
643
705
  * @summary Setup integration
@@ -810,12 +872,12 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
810
872
  * Install an integration template on the project
811
873
  * @summary Install integration template
812
874
  * @param {string} project Projects unique identifier
813
- * @param {Template} template Templates unique code
875
+ * @param {TemplateCode} template Templates unique code
814
876
  * @param {InstallTemplateRequest} installTemplateRequest Request body to install template
815
877
  * @param {*} [options] Override http request option.
816
878
  * @throws {RequiredError}
817
879
  */
818
- installTemplate(project: string, template: Template, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationsResponse>>;
880
+ installTemplate(project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationsResponse>>;
819
881
  /**
820
882
  * Setup an integration on the project
821
883
  * @summary Setup integration
@@ -1273,10 +1335,10 @@ export interface ProjectsApiInstallTemplateRequest {
1273
1335
  readonly project: string;
1274
1336
  /**
1275
1337
  * Templates unique code
1276
- * @type {Template}
1338
+ * @type {TemplateCode}
1277
1339
  * @memberof ProjectsApiInstallTemplate
1278
1340
  */
1279
- readonly template: Template;
1341
+ readonly template: TemplateCode;
1280
1342
  /**
1281
1343
  * Request body to install template
1282
1344
  * @type {InstallTemplateRequest}
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Projects API
6
6
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.22.0
8
+ * The version of the OpenAPI document: 1.23.0
9
9
  * Contact: hello@teemill.com
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.ProjectsApi = exports.ProjectsApiFactory = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.Template = exports.ProjectUserTypeEnum = void 0;
25
+ exports.ProjectsApi = exports.ProjectsApiFactory = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.TemplateCode = exports.ProjectUserTypeEnum = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -39,7 +39,7 @@ exports.ProjectUserTypeEnum = {
39
39
  * @export
40
40
  * @enum {string}
41
41
  */
42
- exports.Template = {
42
+ exports.TemplateCode = {
43
43
  Shop: 'shop',
44
44
  ShopHeadless: 'shop-headless',
45
45
  ShopCommercial: 'shop-commercial',
@@ -582,7 +582,7 @@ const ProjectsApiAxiosParamCreator = function (configuration) {
582
582
  * Install an integration template on the project
583
583
  * @summary Install integration template
584
584
  * @param {string} project Projects unique identifier
585
- * @param {Template} template Templates unique code
585
+ * @param {TemplateCode} template Templates unique code
586
586
  * @param {InstallTemplateRequest} installTemplateRequest Request body to install template
587
587
  * @param {*} [options] Override http request option.
588
588
  * @throws {RequiredError}
@@ -1034,7 +1034,7 @@ const ProjectsApiFp = function (configuration) {
1034
1034
  * Install an integration template on the project
1035
1035
  * @summary Install integration template
1036
1036
  * @param {string} project Projects unique identifier
1037
- * @param {Template} template Templates unique code
1037
+ * @param {TemplateCode} template Templates unique code
1038
1038
  * @param {InstallTemplateRequest} installTemplateRequest Request body to install template
1039
1039
  * @param {*} [options] Override http request option.
1040
1040
  * @throws {RequiredError}
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.22.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
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
  * Projects API
6
6
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.22.0
8
+ * The version of the OpenAPI document: 1.23.0
9
9
  * Contact: hello@teemill.com
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
  * Projects API
3
3
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.22.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
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
  * Projects API
6
6
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.22.0
8
+ * The version of the OpenAPI document: 1.23.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.22.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Projects API
6
6
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.22.0
8
+ * The version of the OpenAPI document: 1.23.0
9
9
  * Contact: hello@teemill.com
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
  * Projects API
3
3
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.22.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -65,10 +65,10 @@ export interface CreateProjectRequest {
65
65
  'name': string;
66
66
  /**
67
67
  *
68
- * @type {Template}
68
+ * @type {TemplateCode}
69
69
  * @memberof CreateProjectRequest
70
70
  */
71
- 'template'?: Template;
71
+ 'template'?: TemplateCode;
72
72
  /**
73
73
  *
74
74
  * @type {object}
@@ -82,6 +82,31 @@ export interface CreateProjectRequest {
82
82
  */
83
83
  'platformId'?: string | null;
84
84
  }
85
+ /**
86
+ *
87
+ * @export
88
+ * @interface Icon
89
+ */
90
+ export interface Icon {
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof Icon
95
+ */
96
+ 'prefix': string;
97
+ /**
98
+ *
99
+ * @type {string}
100
+ * @memberof Icon
101
+ */
102
+ 'iconName': string;
103
+ /**
104
+ *
105
+ * @type {Array<any>}
106
+ * @memberof Icon
107
+ */
108
+ 'icon': Array<any>;
109
+ }
85
110
  /**
86
111
  *
87
112
  * @export
@@ -441,19 +466,56 @@ export interface ProjectsResponse {
441
466
  */
442
467
  'projects': Array<Project>;
443
468
  }
469
+ /**
470
+ *
471
+ * @export
472
+ * @interface Template
473
+ */
474
+ export interface Template {
475
+ /**
476
+ *
477
+ * @type {string}
478
+ * @memberof Template
479
+ */
480
+ 'name'?: string;
481
+ /**
482
+ *
483
+ * @type {string}
484
+ * @memberof Template
485
+ */
486
+ 'description'?: string;
487
+ /**
488
+ *
489
+ * @type {TemplateCode}
490
+ * @memberof Template
491
+ */
492
+ 'code'?: TemplateCode;
493
+ /**
494
+ *
495
+ * @type {boolean}
496
+ * @memberof Template
497
+ */
498
+ 'highlighted'?: boolean;
499
+ /**
500
+ *
501
+ * @type {Icon}
502
+ * @memberof Template
503
+ */
504
+ 'icon'?: Icon;
505
+ }
444
506
  /**
445
507
  *
446
508
  * @export
447
509
  * @enum {string}
448
510
  */
449
- export declare const Template: {
511
+ export declare const TemplateCode: {
450
512
  readonly Shop: "shop";
451
513
  readonly ShopHeadless: "shop-headless";
452
514
  readonly ShopCommercial: "shop-commercial";
453
515
  readonly Factory: "factory";
454
516
  readonly Shopify: "shopify";
455
517
  };
456
- export type Template = typeof Template[keyof typeof Template];
518
+ export type TemplateCode = typeof TemplateCode[keyof typeof TemplateCode];
457
519
  /**
458
520
  *
459
521
  * @export
@@ -632,12 +694,12 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
632
694
  * Install an integration template on the project
633
695
  * @summary Install integration template
634
696
  * @param {string} project Projects unique identifier
635
- * @param {Template} template Templates unique code
697
+ * @param {TemplateCode} template Templates unique code
636
698
  * @param {InstallTemplateRequest} installTemplateRequest Request body to install template
637
699
  * @param {*} [options] Override http request option.
638
700
  * @throws {RequiredError}
639
701
  */
640
- installTemplate: (project: string, template: Template, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
702
+ installTemplate: (project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
641
703
  /**
642
704
  * Setup an integration on the project
643
705
  * @summary Setup integration
@@ -810,12 +872,12 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
810
872
  * Install an integration template on the project
811
873
  * @summary Install integration template
812
874
  * @param {string} project Projects unique identifier
813
- * @param {Template} template Templates unique code
875
+ * @param {TemplateCode} template Templates unique code
814
876
  * @param {InstallTemplateRequest} installTemplateRequest Request body to install template
815
877
  * @param {*} [options] Override http request option.
816
878
  * @throws {RequiredError}
817
879
  */
818
- installTemplate(project: string, template: Template, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationsResponse>>;
880
+ installTemplate(project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationsResponse>>;
819
881
  /**
820
882
  * Setup an integration on the project
821
883
  * @summary Setup integration
@@ -1273,10 +1335,10 @@ export interface ProjectsApiInstallTemplateRequest {
1273
1335
  readonly project: string;
1274
1336
  /**
1275
1337
  * Templates unique code
1276
- * @type {Template}
1338
+ * @type {TemplateCode}
1277
1339
  * @memberof ProjectsApiInstallTemplate
1278
1340
  */
1279
- readonly template: Template;
1341
+ readonly template: TemplateCode;
1280
1342
  /**
1281
1343
  * Request body to install template
1282
1344
  * @type {InstallTemplateRequest}
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.22.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,7 +36,7 @@ export const ProjectUserTypeEnum = {
36
36
  * @export
37
37
  * @enum {string}
38
38
  */
39
- export const Template = {
39
+ export const TemplateCode = {
40
40
  Shop: 'shop',
41
41
  ShopHeadless: 'shop-headless',
42
42
  ShopCommercial: 'shop-commercial',
@@ -579,7 +579,7 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
579
579
  * Install an integration template on the project
580
580
  * @summary Install integration template
581
581
  * @param {string} project Projects unique identifier
582
- * @param {Template} template Templates unique code
582
+ * @param {TemplateCode} template Templates unique code
583
583
  * @param {InstallTemplateRequest} installTemplateRequest Request body to install template
584
584
  * @param {*} [options] Override http request option.
585
585
  * @throws {RequiredError}
@@ -1030,7 +1030,7 @@ export const ProjectsApiFp = function (configuration) {
1030
1030
  * Install an integration template on the project
1031
1031
  * @summary Install integration template
1032
1032
  * @param {string} project Projects unique identifier
1033
- * @param {Template} template Templates unique code
1033
+ * @param {TemplateCode} template Templates unique code
1034
1034
  * @param {InstallTemplateRequest} installTemplateRequest Request body to install template
1035
1035
  * @param {*} [options] Override http request option.
1036
1036
  * @throws {RequiredError}
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.22.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
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
  * Projects API
5
5
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.22.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.22.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.22.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.22.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.22.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.22.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
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
  * Projects API
5
5
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.22.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
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
  * Projects API
3
3
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.22.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
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
  * Projects API
6
6
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.22.0
8
+ * The version of the OpenAPI document: 1.23.0
9
9
  * Contact: hello@teemill.com
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
  * Projects API
5
5
  * Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.22.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
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/projects",
3
- "version": "1.22.0",
3
+ "version": "1.23.0",
4
4
  "description": "OpenAPI client for @teemill/projects",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {