@teemill/website 0.1.6 → 0.2.6

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/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Website API
3
3
  * Manage your Teemill Website Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.1.6
5
+ * The version of the OpenAPI document: 0.2.6
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -45,6 +45,56 @@ export interface AuthorizeStripe200Response {
45
45
  */
46
46
  'redirect_url': string;
47
47
  }
48
+ /**
49
+ *
50
+ * @export
51
+ * @interface Menu
52
+ */
53
+ export interface Menu {
54
+ /**
55
+ *
56
+ * @type {Array<MenuItem>}
57
+ * @memberof Menu
58
+ */
59
+ 'items': Array<MenuItem>;
60
+ }
61
+ /**
62
+ *
63
+ * @export
64
+ * @interface MenuItem
65
+ */
66
+ export interface MenuItem {
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof MenuItem
71
+ */
72
+ 'id': string;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof MenuItem
77
+ */
78
+ 'text': string;
79
+ /**
80
+ *
81
+ * @type {string}
82
+ * @memberof MenuItem
83
+ */
84
+ 'link': string;
85
+ /**
86
+ *
87
+ * @type {number}
88
+ * @memberof MenuItem
89
+ */
90
+ 'order': number;
91
+ /**
92
+ *
93
+ * @type {Array<SubmenuInner>}
94
+ * @memberof MenuItem
95
+ */
96
+ 'submenu': Array<SubmenuInner>;
97
+ }
48
98
  /**
49
99
  *
50
100
  * @export
@@ -77,6 +127,318 @@ export declare const PaymentAccountMethodEnum: {
77
127
  readonly Paypal: "paypal";
78
128
  };
79
129
  export type PaymentAccountMethodEnum = typeof PaymentAccountMethodEnum[keyof typeof PaymentAccountMethodEnum];
130
+ /**
131
+ *
132
+ * @export
133
+ * @interface SubmenuInner
134
+ */
135
+ export interface SubmenuInner {
136
+ /**
137
+ *
138
+ * @type {string}
139
+ * @memberof SubmenuInner
140
+ */
141
+ 'id': string;
142
+ /**
143
+ *
144
+ * @type {string}
145
+ * @memberof SubmenuInner
146
+ */
147
+ 'title': string;
148
+ /**
149
+ *
150
+ * @type {string}
151
+ * @memberof SubmenuInner
152
+ */
153
+ 'image': string | null;
154
+ /**
155
+ *
156
+ * @type {number}
157
+ * @memberof SubmenuInner
158
+ */
159
+ 'order': number;
160
+ /**
161
+ *
162
+ * @type {Array<SubmenuItem>}
163
+ * @memberof SubmenuInner
164
+ */
165
+ 'items': Array<SubmenuItem>;
166
+ }
167
+ /**
168
+ *
169
+ * @export
170
+ * @interface SubmenuItem
171
+ */
172
+ export interface SubmenuItem {
173
+ /**
174
+ *
175
+ * @type {string}
176
+ * @memberof SubmenuItem
177
+ */
178
+ 'id': string;
179
+ /**
180
+ *
181
+ * @type {string}
182
+ * @memberof SubmenuItem
183
+ */
184
+ 'text': string;
185
+ /**
186
+ *
187
+ * @type {string}
188
+ * @memberof SubmenuItem
189
+ */
190
+ 'link': string;
191
+ /**
192
+ *
193
+ * @type {number}
194
+ * @memberof SubmenuItem
195
+ */
196
+ 'order': number;
197
+ }
198
+ /**
199
+ *
200
+ * @export
201
+ * @interface UpdateMenuRequest
202
+ */
203
+ export interface UpdateMenuRequest {
204
+ /**
205
+ *
206
+ * @type {Array<UpdateMenuRequestItem>}
207
+ * @memberof UpdateMenuRequest
208
+ */
209
+ 'items'?: Array<UpdateMenuRequestItem>;
210
+ }
211
+ /**
212
+ *
213
+ * @export
214
+ * @interface UpdateMenuRequestItem
215
+ */
216
+ export interface UpdateMenuRequestItem {
217
+ /**
218
+ *
219
+ * @type {string}
220
+ * @memberof UpdateMenuRequestItem
221
+ */
222
+ 'id': string | null;
223
+ /**
224
+ *
225
+ * @type {string}
226
+ * @memberof UpdateMenuRequestItem
227
+ */
228
+ 'text': string;
229
+ /**
230
+ *
231
+ * @type {string}
232
+ * @memberof UpdateMenuRequestItem
233
+ */
234
+ 'link': string;
235
+ /**
236
+ *
237
+ * @type {number}
238
+ * @memberof UpdateMenuRequestItem
239
+ */
240
+ 'order': number;
241
+ /**
242
+ *
243
+ * @type {Array<UpdateMenuRequestItemSubmenuInner>}
244
+ * @memberof UpdateMenuRequestItem
245
+ */
246
+ 'submenu': Array<UpdateMenuRequestItemSubmenuInner>;
247
+ }
248
+ /**
249
+ *
250
+ * @export
251
+ * @interface UpdateMenuRequestItemSubmenuInner
252
+ */
253
+ export interface UpdateMenuRequestItemSubmenuInner {
254
+ /**
255
+ *
256
+ * @type {string}
257
+ * @memberof UpdateMenuRequestItemSubmenuInner
258
+ */
259
+ 'id': string | null;
260
+ /**
261
+ *
262
+ * @type {string}
263
+ * @memberof UpdateMenuRequestItemSubmenuInner
264
+ */
265
+ 'title': string;
266
+ /**
267
+ *
268
+ * @type {string}
269
+ * @memberof UpdateMenuRequestItemSubmenuInner
270
+ */
271
+ 'image': string | null;
272
+ /**
273
+ *
274
+ * @type {number}
275
+ * @memberof UpdateMenuRequestItemSubmenuInner
276
+ */
277
+ 'order': number;
278
+ /**
279
+ *
280
+ * @type {Array<UpdateMenuRequestSubmenuItem>}
281
+ * @memberof UpdateMenuRequestItemSubmenuInner
282
+ */
283
+ 'items': Array<UpdateMenuRequestSubmenuItem>;
284
+ }
285
+ /**
286
+ *
287
+ * @export
288
+ * @interface UpdateMenuRequestSubmenuItem
289
+ */
290
+ export interface UpdateMenuRequestSubmenuItem {
291
+ /**
292
+ *
293
+ * @type {string}
294
+ * @memberof UpdateMenuRequestSubmenuItem
295
+ */
296
+ 'id': string | null;
297
+ /**
298
+ *
299
+ * @type {string}
300
+ * @memberof UpdateMenuRequestSubmenuItem
301
+ */
302
+ 'text': string;
303
+ /**
304
+ *
305
+ * @type {string}
306
+ * @memberof UpdateMenuRequestSubmenuItem
307
+ */
308
+ 'link': string;
309
+ /**
310
+ *
311
+ * @type {number}
312
+ * @memberof UpdateMenuRequestSubmenuItem
313
+ */
314
+ 'order': number;
315
+ }
316
+ /**
317
+ * MenuApi - axios parameter creator
318
+ * @export
319
+ */
320
+ export declare const MenuApiAxiosParamCreator: (configuration?: Configuration) => {
321
+ /**
322
+ * Get menu
323
+ * @summary Get menu
324
+ * @param {string} project What project it is
325
+ * @param {*} [options] Override http request option.
326
+ * @throws {RequiredError}
327
+ */
328
+ getMenu: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
329
+ /**
330
+ * Update menu
331
+ * @summary Update menu
332
+ * @param {string} project What project it is
333
+ * @param {UpdateMenuRequest} [updateMenuRequest] Update menu request
334
+ * @param {*} [options] Override http request option.
335
+ * @throws {RequiredError}
336
+ */
337
+ updateMenu: (project: string, updateMenuRequest?: UpdateMenuRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
338
+ };
339
+ /**
340
+ * MenuApi - functional programming interface
341
+ * @export
342
+ */
343
+ export declare const MenuApiFp: (configuration?: Configuration) => {
344
+ /**
345
+ * Get menu
346
+ * @summary Get menu
347
+ * @param {string} project What project it is
348
+ * @param {*} [options] Override http request option.
349
+ * @throws {RequiredError}
350
+ */
351
+ getMenu(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Menu>>;
352
+ /**
353
+ * Update menu
354
+ * @summary Update menu
355
+ * @param {string} project What project it is
356
+ * @param {UpdateMenuRequest} [updateMenuRequest] Update menu request
357
+ * @param {*} [options] Override http request option.
358
+ * @throws {RequiredError}
359
+ */
360
+ updateMenu(project: string, updateMenuRequest?: UpdateMenuRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Menu>>;
361
+ };
362
+ /**
363
+ * MenuApi - factory interface
364
+ * @export
365
+ */
366
+ export declare const MenuApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
367
+ /**
368
+ * Get menu
369
+ * @summary Get menu
370
+ * @param {MenuApiGetMenuRequest} requestParameters Request parameters.
371
+ * @param {*} [options] Override http request option.
372
+ * @throws {RequiredError}
373
+ */
374
+ getMenu(requestParameters: MenuApiGetMenuRequest, options?: RawAxiosRequestConfig): AxiosPromise<Menu>;
375
+ /**
376
+ * Update menu
377
+ * @summary Update menu
378
+ * @param {MenuApiUpdateMenuRequest} requestParameters Request parameters.
379
+ * @param {*} [options] Override http request option.
380
+ * @throws {RequiredError}
381
+ */
382
+ updateMenu(requestParameters: MenuApiUpdateMenuRequest, options?: RawAxiosRequestConfig): AxiosPromise<Menu>;
383
+ };
384
+ /**
385
+ * Request parameters for getMenu operation in MenuApi.
386
+ * @export
387
+ * @interface MenuApiGetMenuRequest
388
+ */
389
+ export interface MenuApiGetMenuRequest {
390
+ /**
391
+ * What project it is
392
+ * @type {string}
393
+ * @memberof MenuApiGetMenu
394
+ */
395
+ readonly project: string;
396
+ }
397
+ /**
398
+ * Request parameters for updateMenu operation in MenuApi.
399
+ * @export
400
+ * @interface MenuApiUpdateMenuRequest
401
+ */
402
+ export interface MenuApiUpdateMenuRequest {
403
+ /**
404
+ * What project it is
405
+ * @type {string}
406
+ * @memberof MenuApiUpdateMenu
407
+ */
408
+ readonly project: string;
409
+ /**
410
+ * Update menu request
411
+ * @type {UpdateMenuRequest}
412
+ * @memberof MenuApiUpdateMenu
413
+ */
414
+ readonly updateMenuRequest?: UpdateMenuRequest;
415
+ }
416
+ /**
417
+ * MenuApi - object-oriented interface
418
+ * @export
419
+ * @class MenuApi
420
+ * @extends {BaseAPI}
421
+ */
422
+ export declare class MenuApi extends BaseAPI {
423
+ /**
424
+ * Get menu
425
+ * @summary Get menu
426
+ * @param {MenuApiGetMenuRequest} requestParameters Request parameters.
427
+ * @param {*} [options] Override http request option.
428
+ * @throws {RequiredError}
429
+ * @memberof MenuApi
430
+ */
431
+ getMenu(requestParameters: MenuApiGetMenuRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Menu, any>>;
432
+ /**
433
+ * Update menu
434
+ * @summary Update menu
435
+ * @param {MenuApiUpdateMenuRequest} requestParameters Request parameters.
436
+ * @param {*} [options] Override http request option.
437
+ * @throws {RequiredError}
438
+ * @memberof MenuApi
439
+ */
440
+ updateMenu(requestParameters: MenuApiUpdateMenuRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Menu, any>>;
441
+ }
80
442
  /**
81
443
  * PaymentApi - axios parameter creator
82
444
  * @export
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Website API
5
5
  * Manage your Teemill Website Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.1.6
7
+ * The version of the OpenAPI document: 0.2.6
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,13 +23,197 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
23
23
  import globalAxios from 'axios';
24
24
  // Some imports not used depending on template conditions
25
25
  // @ts-ignore
26
- import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setOAuthToObject, setSearchParams, toPathString, createRequestFunction } from './common';
26
+ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';
27
27
  // @ts-ignore
28
28
  import { BASE_PATH, BaseAPI, operationServerMap } from './base';
29
29
  export const PaymentAccountMethodEnum = {
30
30
  Stripe: 'stripe',
31
31
  Paypal: 'paypal'
32
32
  };
33
+ /**
34
+ * MenuApi - axios parameter creator
35
+ * @export
36
+ */
37
+ export const MenuApiAxiosParamCreator = function (configuration) {
38
+ return {
39
+ /**
40
+ * Get menu
41
+ * @summary Get menu
42
+ * @param {string} project What project it is
43
+ * @param {*} [options] Override http request option.
44
+ * @throws {RequiredError}
45
+ */
46
+ getMenu: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
47
+ // verify required parameter 'project' is not null or undefined
48
+ assertParamExists('getMenu', 'project', project);
49
+ const localVarPath = `/v1/website/menu`;
50
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
51
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
52
+ let baseOptions;
53
+ if (configuration) {
54
+ baseOptions = configuration.baseOptions;
55
+ }
56
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
57
+ const localVarHeaderParameter = {};
58
+ const localVarQueryParameter = {};
59
+ // authentication session-oauth required
60
+ // oauth required
61
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
62
+ // authentication api-key required
63
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
64
+ if (project !== undefined) {
65
+ localVarQueryParameter['project'] = project;
66
+ }
67
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
68
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
69
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
70
+ return {
71
+ url: toPathString(localVarUrlObj),
72
+ options: localVarRequestOptions,
73
+ };
74
+ }),
75
+ /**
76
+ * Update menu
77
+ * @summary Update menu
78
+ * @param {string} project What project it is
79
+ * @param {UpdateMenuRequest} [updateMenuRequest] Update menu request
80
+ * @param {*} [options] Override http request option.
81
+ * @throws {RequiredError}
82
+ */
83
+ updateMenu: (project_1, updateMenuRequest_1, ...args_1) => __awaiter(this, [project_1, updateMenuRequest_1, ...args_1], void 0, function* (project, updateMenuRequest, options = {}) {
84
+ // verify required parameter 'project' is not null or undefined
85
+ assertParamExists('updateMenu', 'project', project);
86
+ const localVarPath = `/v1/website/menu`;
87
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
88
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
89
+ let baseOptions;
90
+ if (configuration) {
91
+ baseOptions = configuration.baseOptions;
92
+ }
93
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
94
+ const localVarHeaderParameter = {};
95
+ const localVarQueryParameter = {};
96
+ // authentication session-oauth required
97
+ // oauth required
98
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
99
+ // authentication api-key required
100
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
101
+ if (project !== undefined) {
102
+ localVarQueryParameter['project'] = project;
103
+ }
104
+ localVarHeaderParameter['Content-Type'] = 'application/json';
105
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
106
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
107
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
108
+ localVarRequestOptions.data = serializeDataIfNeeded(updateMenuRequest, localVarRequestOptions, configuration);
109
+ return {
110
+ url: toPathString(localVarUrlObj),
111
+ options: localVarRequestOptions,
112
+ };
113
+ }),
114
+ };
115
+ };
116
+ /**
117
+ * MenuApi - functional programming interface
118
+ * @export
119
+ */
120
+ export const MenuApiFp = function (configuration) {
121
+ const localVarAxiosParamCreator = MenuApiAxiosParamCreator(configuration);
122
+ return {
123
+ /**
124
+ * Get menu
125
+ * @summary Get menu
126
+ * @param {string} project What project it is
127
+ * @param {*} [options] Override http request option.
128
+ * @throws {RequiredError}
129
+ */
130
+ getMenu(project, options) {
131
+ return __awaiter(this, void 0, void 0, function* () {
132
+ var _a, _b, _c;
133
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getMenu(project, options);
134
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
135
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['MenuApi.getMenu']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
136
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
137
+ });
138
+ },
139
+ /**
140
+ * Update menu
141
+ * @summary Update menu
142
+ * @param {string} project What project it is
143
+ * @param {UpdateMenuRequest} [updateMenuRequest] Update menu request
144
+ * @param {*} [options] Override http request option.
145
+ * @throws {RequiredError}
146
+ */
147
+ updateMenu(project, updateMenuRequest, options) {
148
+ return __awaiter(this, void 0, void 0, function* () {
149
+ var _a, _b, _c;
150
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.updateMenu(project, updateMenuRequest, options);
151
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
152
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['MenuApi.updateMenu']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
153
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
154
+ });
155
+ },
156
+ };
157
+ };
158
+ /**
159
+ * MenuApi - factory interface
160
+ * @export
161
+ */
162
+ export const MenuApiFactory = function (configuration, basePath, axios) {
163
+ const localVarFp = MenuApiFp(configuration);
164
+ return {
165
+ /**
166
+ * Get menu
167
+ * @summary Get menu
168
+ * @param {MenuApiGetMenuRequest} requestParameters Request parameters.
169
+ * @param {*} [options] Override http request option.
170
+ * @throws {RequiredError}
171
+ */
172
+ getMenu(requestParameters, options) {
173
+ return localVarFp.getMenu(requestParameters.project, options).then((request) => request(axios, basePath));
174
+ },
175
+ /**
176
+ * Update menu
177
+ * @summary Update menu
178
+ * @param {MenuApiUpdateMenuRequest} requestParameters Request parameters.
179
+ * @param {*} [options] Override http request option.
180
+ * @throws {RequiredError}
181
+ */
182
+ updateMenu(requestParameters, options) {
183
+ return localVarFp.updateMenu(requestParameters.project, requestParameters.updateMenuRequest, options).then((request) => request(axios, basePath));
184
+ },
185
+ };
186
+ };
187
+ /**
188
+ * MenuApi - object-oriented interface
189
+ * @export
190
+ * @class MenuApi
191
+ * @extends {BaseAPI}
192
+ */
193
+ export class MenuApi extends BaseAPI {
194
+ /**
195
+ * Get menu
196
+ * @summary Get menu
197
+ * @param {MenuApiGetMenuRequest} requestParameters Request parameters.
198
+ * @param {*} [options] Override http request option.
199
+ * @throws {RequiredError}
200
+ * @memberof MenuApi
201
+ */
202
+ getMenu(requestParameters, options) {
203
+ return MenuApiFp(this.configuration).getMenu(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
204
+ }
205
+ /**
206
+ * Update menu
207
+ * @summary Update menu
208
+ * @param {MenuApiUpdateMenuRequest} requestParameters Request parameters.
209
+ * @param {*} [options] Override http request option.
210
+ * @throws {RequiredError}
211
+ * @memberof MenuApi
212
+ */
213
+ updateMenu(requestParameters, options) {
214
+ return MenuApiFp(this.configuration).updateMenu(requestParameters.project, requestParameters.updateMenuRequest, options).then((request) => request(this.axios, this.basePath));
215
+ }
216
+ }
33
217
  /**
34
218
  * PaymentApi - axios parameter creator
35
219
  * @export
@@ -79,7 +263,7 @@ export const PaymentApiAxiosParamCreator = function (configuration) {
79
263
  * @param {*} [options] Override http request option.
80
264
  * @throws {RequiredError}
81
265
  */
82
- deauthorizeStripe: (project_2, ...args_2) => __awaiter(this, [project_2, ...args_2], void 0, function* (project, options = {}) {
266
+ deauthorizeStripe: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
83
267
  // verify required parameter 'project' is not null or undefined
84
268
  assertParamExists('deauthorizeStripe', 'project', project);
85
269
  const localVarPath = `/v1/website/payment/stripe/deauthorize`;
@@ -115,7 +299,7 @@ export const PaymentApiAxiosParamCreator = function (configuration) {
115
299
  * @param {*} [options] Override http request option.
116
300
  * @throws {RequiredError}
117
301
  */
118
- getStripePaymentAccount: (project_3, ...args_3) => __awaiter(this, [project_3, ...args_3], void 0, function* (project, options = {}) {
302
+ getStripePaymentAccount: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
119
303
  // verify required parameter 'project' is not null or undefined
120
304
  assertParamExists('getStripePaymentAccount', 'project', project);
121
305
  const localVarPath = `/v1/website/payment/stripe`;
@@ -2,7 +2,7 @@
2
2
  * Website API
3
3
  * Manage your Teemill Website Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.1.6
5
+ * The version of the OpenAPI document: 0.2.6
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
  * Website API
5
5
  * Manage your Teemill Website Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.1.6
7
+ * The version of the OpenAPI document: 0.2.6
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
  * Website API
3
3
  * Manage your Teemill Website Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.1.6
5
+ * The version of the OpenAPI document: 0.2.6
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
  * Website API
5
5
  * Manage your Teemill Website Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.1.6
7
+ * The version of the OpenAPI document: 0.2.6
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
  * Website API
3
3
  * Manage your Teemill Website Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.1.6
5
+ * The version of the OpenAPI document: 0.2.6
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
  * Website API
5
5
  * Manage your Teemill Website Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.1.6
7
+ * The version of the OpenAPI document: 0.2.6
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
  * Website API
3
3
  * Manage your Teemill Website Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.1.6
5
+ * The version of the OpenAPI document: 0.2.6
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
  * Website API
5
5
  * Manage your Teemill Website Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.1.6
7
+ * The version of the OpenAPI document: 0.2.6
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).