@teemill/website 0.1.6 → 0.3.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/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Website API
6
6
  * 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)
7
7
  *
8
- * The version of the OpenAPI document: 0.1.6
8
+ * The version of the OpenAPI document: 0.3.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.PaymentApi = exports.PaymentApiFactory = exports.PaymentApiFp = exports.PaymentApiAxiosParamCreator = exports.PaymentAccountMethodEnum = void 0;
25
+ exports.PaymentApi = exports.PaymentApiFactory = exports.PaymentApiFp = exports.PaymentApiAxiosParamCreator = exports.MenuApi = exports.MenuApiFactory = exports.MenuApiFp = exports.MenuApiAxiosParamCreator = exports.CrossSellApi = exports.CrossSellApiFactory = exports.CrossSellApiFp = exports.CrossSellApiAxiosParamCreator = exports.PaymentAccountMethodEnum = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -33,6 +33,392 @@ exports.PaymentAccountMethodEnum = {
33
33
  Stripe: 'stripe',
34
34
  Paypal: 'paypal'
35
35
  };
36
+ /**
37
+ * CrossSellApi - axios parameter creator
38
+ * @export
39
+ */
40
+ const CrossSellApiAxiosParamCreator = function (configuration) {
41
+ return {
42
+ /**
43
+ * Attaches a list of products to the given product as cross-sell products.
44
+ * @summary Attach cross-sell products
45
+ * @param {string} project What project it is
46
+ * @param {string} productId Product\'s unique identifier
47
+ * @param {Array<string>} [requestBody]
48
+ * @param {*} [options] Override http request option.
49
+ * @throws {RequiredError}
50
+ */
51
+ attachCrossSellProducts: (project_1, productId_1, requestBody_1, ...args_1) => __awaiter(this, [project_1, productId_1, requestBody_1, ...args_1], void 0, function* (project, productId, requestBody, options = {}) {
52
+ // verify required parameter 'project' is not null or undefined
53
+ (0, common_1.assertParamExists)('attachCrossSellProducts', 'project', project);
54
+ // verify required parameter 'productId' is not null or undefined
55
+ (0, common_1.assertParamExists)('attachCrossSellProducts', 'productId', productId);
56
+ const localVarPath = `/v1/website/products/{productId}/cross-sell/products`
57
+ .replace(`{${"productId"}}`, encodeURIComponent(String(productId)));
58
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
59
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
60
+ let baseOptions;
61
+ if (configuration) {
62
+ baseOptions = configuration.baseOptions;
63
+ }
64
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
65
+ const localVarHeaderParameter = {};
66
+ const localVarQueryParameter = {};
67
+ // authentication session-oauth required
68
+ // oauth required
69
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
70
+ // authentication api-key required
71
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
72
+ if (project !== undefined) {
73
+ localVarQueryParameter['project'] = project;
74
+ }
75
+ localVarHeaderParameter['Content-Type'] = 'application/json';
76
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
77
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
78
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
79
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(requestBody, localVarRequestOptions, configuration);
80
+ return {
81
+ url: (0, common_1.toPathString)(localVarUrlObj),
82
+ options: localVarRequestOptions,
83
+ };
84
+ }),
85
+ /**
86
+ *
87
+ * @summary Get cross-sell products linked to a product
88
+ * @param {string} project What project it is
89
+ * @param {string} productId Product\&#39;s unique identifier
90
+ * @param {*} [options] Override http request option.
91
+ * @throws {RequiredError}
92
+ */
93
+ getCrossSellProducts: (project_1, productId_1, ...args_1) => __awaiter(this, [project_1, productId_1, ...args_1], void 0, function* (project, productId, options = {}) {
94
+ // verify required parameter 'project' is not null or undefined
95
+ (0, common_1.assertParamExists)('getCrossSellProducts', 'project', project);
96
+ // verify required parameter 'productId' is not null or undefined
97
+ (0, common_1.assertParamExists)('getCrossSellProducts', 'productId', productId);
98
+ const localVarPath = `/v1/website/products/{productId}/cross-sell/products`
99
+ .replace(`{${"productId"}}`, encodeURIComponent(String(productId)));
100
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
101
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
102
+ let baseOptions;
103
+ if (configuration) {
104
+ baseOptions = configuration.baseOptions;
105
+ }
106
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
107
+ const localVarHeaderParameter = {};
108
+ const localVarQueryParameter = {};
109
+ // authentication session-oauth required
110
+ // oauth required
111
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
112
+ // authentication api-key required
113
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
114
+ if (project !== undefined) {
115
+ localVarQueryParameter['project'] = project;
116
+ }
117
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
118
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
119
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
120
+ return {
121
+ url: (0, common_1.toPathString)(localVarUrlObj),
122
+ options: localVarRequestOptions,
123
+ };
124
+ }),
125
+ };
126
+ };
127
+ exports.CrossSellApiAxiosParamCreator = CrossSellApiAxiosParamCreator;
128
+ /**
129
+ * CrossSellApi - functional programming interface
130
+ * @export
131
+ */
132
+ const CrossSellApiFp = function (configuration) {
133
+ const localVarAxiosParamCreator = (0, exports.CrossSellApiAxiosParamCreator)(configuration);
134
+ return {
135
+ /**
136
+ * Attaches a list of products to the given product as cross-sell products.
137
+ * @summary Attach cross-sell products
138
+ * @param {string} project What project it is
139
+ * @param {string} productId Product\&#39;s unique identifier
140
+ * @param {Array<string>} [requestBody]
141
+ * @param {*} [options] Override http request option.
142
+ * @throws {RequiredError}
143
+ */
144
+ attachCrossSellProducts(project, productId, requestBody, options) {
145
+ return __awaiter(this, void 0, void 0, function* () {
146
+ var _a, _b, _c;
147
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.attachCrossSellProducts(project, productId, requestBody, options);
148
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
149
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['CrossSellApi.attachCrossSellProducts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
150
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
151
+ });
152
+ },
153
+ /**
154
+ *
155
+ * @summary Get cross-sell products linked to a product
156
+ * @param {string} project What project it is
157
+ * @param {string} productId Product\&#39;s unique identifier
158
+ * @param {*} [options] Override http request option.
159
+ * @throws {RequiredError}
160
+ */
161
+ getCrossSellProducts(project, productId, options) {
162
+ return __awaiter(this, void 0, void 0, function* () {
163
+ var _a, _b, _c;
164
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getCrossSellProducts(project, productId, options);
165
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
166
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['CrossSellApi.getCrossSellProducts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
167
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
168
+ });
169
+ },
170
+ };
171
+ };
172
+ exports.CrossSellApiFp = CrossSellApiFp;
173
+ /**
174
+ * CrossSellApi - factory interface
175
+ * @export
176
+ */
177
+ const CrossSellApiFactory = function (configuration, basePath, axios) {
178
+ const localVarFp = (0, exports.CrossSellApiFp)(configuration);
179
+ return {
180
+ /**
181
+ * Attaches a list of products to the given product as cross-sell products.
182
+ * @summary Attach cross-sell products
183
+ * @param {CrossSellApiAttachCrossSellProductsRequest} requestParameters Request parameters.
184
+ * @param {*} [options] Override http request option.
185
+ * @throws {RequiredError}
186
+ */
187
+ attachCrossSellProducts(requestParameters, options) {
188
+ return localVarFp.attachCrossSellProducts(requestParameters.project, requestParameters.productId, requestParameters.requestBody, options).then((request) => request(axios, basePath));
189
+ },
190
+ /**
191
+ *
192
+ * @summary Get cross-sell products linked to a product
193
+ * @param {CrossSellApiGetCrossSellProductsRequest} requestParameters Request parameters.
194
+ * @param {*} [options] Override http request option.
195
+ * @throws {RequiredError}
196
+ */
197
+ getCrossSellProducts(requestParameters, options) {
198
+ return localVarFp.getCrossSellProducts(requestParameters.project, requestParameters.productId, options).then((request) => request(axios, basePath));
199
+ },
200
+ };
201
+ };
202
+ exports.CrossSellApiFactory = CrossSellApiFactory;
203
+ /**
204
+ * CrossSellApi - object-oriented interface
205
+ * @export
206
+ * @class CrossSellApi
207
+ * @extends {BaseAPI}
208
+ */
209
+ class CrossSellApi extends base_1.BaseAPI {
210
+ /**
211
+ * Attaches a list of products to the given product as cross-sell products.
212
+ * @summary Attach cross-sell products
213
+ * @param {CrossSellApiAttachCrossSellProductsRequest} requestParameters Request parameters.
214
+ * @param {*} [options] Override http request option.
215
+ * @throws {RequiredError}
216
+ * @memberof CrossSellApi
217
+ */
218
+ attachCrossSellProducts(requestParameters, options) {
219
+ return (0, exports.CrossSellApiFp)(this.configuration).attachCrossSellProducts(requestParameters.project, requestParameters.productId, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
220
+ }
221
+ /**
222
+ *
223
+ * @summary Get cross-sell products linked to a product
224
+ * @param {CrossSellApiGetCrossSellProductsRequest} requestParameters Request parameters.
225
+ * @param {*} [options] Override http request option.
226
+ * @throws {RequiredError}
227
+ * @memberof CrossSellApi
228
+ */
229
+ getCrossSellProducts(requestParameters, options) {
230
+ return (0, exports.CrossSellApiFp)(this.configuration).getCrossSellProducts(requestParameters.project, requestParameters.productId, options).then((request) => request(this.axios, this.basePath));
231
+ }
232
+ }
233
+ exports.CrossSellApi = CrossSellApi;
234
+ /**
235
+ * MenuApi - axios parameter creator
236
+ * @export
237
+ */
238
+ const MenuApiAxiosParamCreator = function (configuration) {
239
+ return {
240
+ /**
241
+ * Get menu
242
+ * @summary Get menu
243
+ * @param {string} project What project it is
244
+ * @param {*} [options] Override http request option.
245
+ * @throws {RequiredError}
246
+ */
247
+ getMenu: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
248
+ // verify required parameter 'project' is not null or undefined
249
+ (0, common_1.assertParamExists)('getMenu', 'project', project);
250
+ const localVarPath = `/v1/website/menu`;
251
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
252
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
253
+ let baseOptions;
254
+ if (configuration) {
255
+ baseOptions = configuration.baseOptions;
256
+ }
257
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
258
+ const localVarHeaderParameter = {};
259
+ const localVarQueryParameter = {};
260
+ // authentication session-oauth required
261
+ // oauth required
262
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
263
+ // authentication api-key required
264
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
265
+ if (project !== undefined) {
266
+ localVarQueryParameter['project'] = project;
267
+ }
268
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
269
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
270
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
271
+ return {
272
+ url: (0, common_1.toPathString)(localVarUrlObj),
273
+ options: localVarRequestOptions,
274
+ };
275
+ }),
276
+ /**
277
+ * Update menu
278
+ * @summary Update menu
279
+ * @param {string} project What project it is
280
+ * @param {UpdateMenuRequest} [updateMenuRequest] Update menu request
281
+ * @param {*} [options] Override http request option.
282
+ * @throws {RequiredError}
283
+ */
284
+ updateMenu: (project_1, updateMenuRequest_1, ...args_1) => __awaiter(this, [project_1, updateMenuRequest_1, ...args_1], void 0, function* (project, updateMenuRequest, options = {}) {
285
+ // verify required parameter 'project' is not null or undefined
286
+ (0, common_1.assertParamExists)('updateMenu', 'project', project);
287
+ const localVarPath = `/v1/website/menu`;
288
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
289
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
290
+ let baseOptions;
291
+ if (configuration) {
292
+ baseOptions = configuration.baseOptions;
293
+ }
294
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
295
+ const localVarHeaderParameter = {};
296
+ const localVarQueryParameter = {};
297
+ // authentication session-oauth required
298
+ // oauth required
299
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
300
+ // authentication api-key required
301
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
302
+ if (project !== undefined) {
303
+ localVarQueryParameter['project'] = project;
304
+ }
305
+ localVarHeaderParameter['Content-Type'] = 'application/json';
306
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
307
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
308
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
309
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(updateMenuRequest, localVarRequestOptions, configuration);
310
+ return {
311
+ url: (0, common_1.toPathString)(localVarUrlObj),
312
+ options: localVarRequestOptions,
313
+ };
314
+ }),
315
+ };
316
+ };
317
+ exports.MenuApiAxiosParamCreator = MenuApiAxiosParamCreator;
318
+ /**
319
+ * MenuApi - functional programming interface
320
+ * @export
321
+ */
322
+ const MenuApiFp = function (configuration) {
323
+ const localVarAxiosParamCreator = (0, exports.MenuApiAxiosParamCreator)(configuration);
324
+ return {
325
+ /**
326
+ * Get menu
327
+ * @summary Get menu
328
+ * @param {string} project What project it is
329
+ * @param {*} [options] Override http request option.
330
+ * @throws {RequiredError}
331
+ */
332
+ getMenu(project, options) {
333
+ return __awaiter(this, void 0, void 0, function* () {
334
+ var _a, _b, _c;
335
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getMenu(project, options);
336
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
337
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['MenuApi.getMenu']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
338
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
339
+ });
340
+ },
341
+ /**
342
+ * Update menu
343
+ * @summary Update menu
344
+ * @param {string} project What project it is
345
+ * @param {UpdateMenuRequest} [updateMenuRequest] Update menu request
346
+ * @param {*} [options] Override http request option.
347
+ * @throws {RequiredError}
348
+ */
349
+ updateMenu(project, updateMenuRequest, options) {
350
+ return __awaiter(this, void 0, void 0, function* () {
351
+ var _a, _b, _c;
352
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.updateMenu(project, updateMenuRequest, options);
353
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
354
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['MenuApi.updateMenu']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
355
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
356
+ });
357
+ },
358
+ };
359
+ };
360
+ exports.MenuApiFp = MenuApiFp;
361
+ /**
362
+ * MenuApi - factory interface
363
+ * @export
364
+ */
365
+ const MenuApiFactory = function (configuration, basePath, axios) {
366
+ const localVarFp = (0, exports.MenuApiFp)(configuration);
367
+ return {
368
+ /**
369
+ * Get menu
370
+ * @summary Get menu
371
+ * @param {MenuApiGetMenuRequest} requestParameters Request parameters.
372
+ * @param {*} [options] Override http request option.
373
+ * @throws {RequiredError}
374
+ */
375
+ getMenu(requestParameters, options) {
376
+ return localVarFp.getMenu(requestParameters.project, options).then((request) => request(axios, basePath));
377
+ },
378
+ /**
379
+ * Update menu
380
+ * @summary Update menu
381
+ * @param {MenuApiUpdateMenuRequest} requestParameters Request parameters.
382
+ * @param {*} [options] Override http request option.
383
+ * @throws {RequiredError}
384
+ */
385
+ updateMenu(requestParameters, options) {
386
+ return localVarFp.updateMenu(requestParameters.project, requestParameters.updateMenuRequest, options).then((request) => request(axios, basePath));
387
+ },
388
+ };
389
+ };
390
+ exports.MenuApiFactory = MenuApiFactory;
391
+ /**
392
+ * MenuApi - object-oriented interface
393
+ * @export
394
+ * @class MenuApi
395
+ * @extends {BaseAPI}
396
+ */
397
+ class MenuApi extends base_1.BaseAPI {
398
+ /**
399
+ * Get menu
400
+ * @summary Get menu
401
+ * @param {MenuApiGetMenuRequest} requestParameters Request parameters.
402
+ * @param {*} [options] Override http request option.
403
+ * @throws {RequiredError}
404
+ * @memberof MenuApi
405
+ */
406
+ getMenu(requestParameters, options) {
407
+ return (0, exports.MenuApiFp)(this.configuration).getMenu(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
408
+ }
409
+ /**
410
+ * Update menu
411
+ * @summary Update menu
412
+ * @param {MenuApiUpdateMenuRequest} requestParameters Request parameters.
413
+ * @param {*} [options] Override http request option.
414
+ * @throws {RequiredError}
415
+ * @memberof MenuApi
416
+ */
417
+ updateMenu(requestParameters, options) {
418
+ return (0, exports.MenuApiFp)(this.configuration).updateMenu(requestParameters.project, requestParameters.updateMenuRequest, options).then((request) => request(this.axios, this.basePath));
419
+ }
420
+ }
421
+ exports.MenuApi = MenuApi;
36
422
  /**
37
423
  * PaymentApi - axios parameter creator
38
424
  * @export
@@ -82,7 +468,7 @@ const PaymentApiAxiosParamCreator = function (configuration) {
82
468
  * @param {*} [options] Override http request option.
83
469
  * @throws {RequiredError}
84
470
  */
85
- deauthorizeStripe: (project_2, ...args_2) => __awaiter(this, [project_2, ...args_2], void 0, function* (project, options = {}) {
471
+ deauthorizeStripe: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
86
472
  // verify required parameter 'project' is not null or undefined
87
473
  (0, common_1.assertParamExists)('deauthorizeStripe', 'project', project);
88
474
  const localVarPath = `/v1/website/payment/stripe/deauthorize`;
@@ -118,7 +504,7 @@ const PaymentApiAxiosParamCreator = function (configuration) {
118
504
  * @param {*} [options] Override http request option.
119
505
  * @throws {RequiredError}
120
506
  */
121
- getStripePaymentAccount: (project_3, ...args_3) => __awaiter(this, [project_3, ...args_3], void 0, function* (project, options = {}) {
507
+ getStripePaymentAccount: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
122
508
  // verify required parameter 'project' is not null or undefined
123
509
  (0, common_1.assertParamExists)('getStripePaymentAccount', 'project', project);
124
510
  const localVarPath = `/v1/website/payment/stripe`;
package/dist/base.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.3.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
  * Website API
6
6
  * 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)
7
7
  *
8
- * The version of the OpenAPI document: 0.1.6
8
+ * The version of the OpenAPI document: 0.3.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
  * 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.3.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
  * Website API
6
6
  * 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)
7
7
  *
8
- * The version of the OpenAPI document: 0.1.6
8
+ * The version of the OpenAPI document: 0.3.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
  * 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.3.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
  * Website API
6
6
  * 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)
7
7
  *
8
- * The version of the OpenAPI document: 0.1.6
8
+ * The version of the OpenAPI document: 0.3.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).