@teemill/platform 0.2.0 → 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/README.md +2 -2
- package/api.ts +54 -15
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +47 -11
- package/dist/api.js +14 -16
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +47 -11
- package/dist/esm/api.js +14 -16
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/platform@0.
|
|
1
|
+
## @teemill/platform@0.3.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/platform@0.
|
|
39
|
+
npm install @teemill/platform@0.3.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform 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.
|
|
7
|
+
* The version of the OpenAPI document: 0.3.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -48,6 +48,12 @@ export interface ApiError {
|
|
|
48
48
|
* @interface Platform
|
|
49
49
|
*/
|
|
50
50
|
export interface Platform {
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof Platform
|
|
55
|
+
*/
|
|
56
|
+
'id': string;
|
|
51
57
|
/**
|
|
52
58
|
*
|
|
53
59
|
* @type {string}
|
|
@@ -269,27 +275,61 @@ export const PlatformApiFactory = function (configuration?: Configuration, baseP
|
|
|
269
275
|
/**
|
|
270
276
|
*
|
|
271
277
|
* @summary Get platform details
|
|
272
|
-
* @param {
|
|
278
|
+
* @param {PlatformApiGetPlatformRequest} requestParameters Request parameters.
|
|
273
279
|
* @param {*} [options] Override http request option.
|
|
274
280
|
* @throws {RequiredError}
|
|
275
281
|
*/
|
|
276
|
-
getPlatform(
|
|
277
|
-
return localVarFp.getPlatform(project, options).then((request) => request(axios, basePath));
|
|
282
|
+
getPlatform(requestParameters: PlatformApiGetPlatformRequest, options?: RawAxiosRequestConfig): AxiosPromise<Platform> {
|
|
283
|
+
return localVarFp.getPlatform(requestParameters.project, options).then((request) => request(axios, basePath));
|
|
278
284
|
},
|
|
279
285
|
/**
|
|
280
286
|
*
|
|
281
287
|
* @summary Update platform
|
|
282
|
-
* @param {
|
|
283
|
-
* @param {UpdatePlatformRequest} updatePlatformRequest
|
|
288
|
+
* @param {PlatformApiUpdatePlatformRequest} requestParameters Request parameters.
|
|
284
289
|
* @param {*} [options] Override http request option.
|
|
285
290
|
* @throws {RequiredError}
|
|
286
291
|
*/
|
|
287
|
-
updatePlatform(
|
|
288
|
-
return localVarFp.updatePlatform(project, updatePlatformRequest, options).then((request) => request(axios, basePath));
|
|
292
|
+
updatePlatform(requestParameters: PlatformApiUpdatePlatformRequest, options?: RawAxiosRequestConfig): AxiosPromise<Platform> {
|
|
293
|
+
return localVarFp.updatePlatform(requestParameters.project, requestParameters.updatePlatformRequest, options).then((request) => request(axios, basePath));
|
|
289
294
|
},
|
|
290
295
|
};
|
|
291
296
|
};
|
|
292
297
|
|
|
298
|
+
/**
|
|
299
|
+
* Request parameters for getPlatform operation in PlatformApi.
|
|
300
|
+
* @export
|
|
301
|
+
* @interface PlatformApiGetPlatformRequest
|
|
302
|
+
*/
|
|
303
|
+
export interface PlatformApiGetPlatformRequest {
|
|
304
|
+
/**
|
|
305
|
+
* Project unique identifier
|
|
306
|
+
* @type {string}
|
|
307
|
+
* @memberof PlatformApiGetPlatform
|
|
308
|
+
*/
|
|
309
|
+
readonly project: string
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* Request parameters for updatePlatform operation in PlatformApi.
|
|
314
|
+
* @export
|
|
315
|
+
* @interface PlatformApiUpdatePlatformRequest
|
|
316
|
+
*/
|
|
317
|
+
export interface PlatformApiUpdatePlatformRequest {
|
|
318
|
+
/**
|
|
319
|
+
* Project unique identifier
|
|
320
|
+
* @type {string}
|
|
321
|
+
* @memberof PlatformApiUpdatePlatform
|
|
322
|
+
*/
|
|
323
|
+
readonly project: string
|
|
324
|
+
|
|
325
|
+
/**
|
|
326
|
+
*
|
|
327
|
+
* @type {UpdatePlatformRequest}
|
|
328
|
+
* @memberof PlatformApiUpdatePlatform
|
|
329
|
+
*/
|
|
330
|
+
readonly updatePlatformRequest: UpdatePlatformRequest
|
|
331
|
+
}
|
|
332
|
+
|
|
293
333
|
/**
|
|
294
334
|
* PlatformApi - object-oriented interface
|
|
295
335
|
* @export
|
|
@@ -300,26 +340,25 @@ export class PlatformApi extends BaseAPI {
|
|
|
300
340
|
/**
|
|
301
341
|
*
|
|
302
342
|
* @summary Get platform details
|
|
303
|
-
* @param {
|
|
343
|
+
* @param {PlatformApiGetPlatformRequest} requestParameters Request parameters.
|
|
304
344
|
* @param {*} [options] Override http request option.
|
|
305
345
|
* @throws {RequiredError}
|
|
306
346
|
* @memberof PlatformApi
|
|
307
347
|
*/
|
|
308
|
-
public getPlatform(
|
|
309
|
-
return PlatformApiFp(this.configuration).getPlatform(project, options).then((request) => request(this.axios, this.basePath));
|
|
348
|
+
public getPlatform(requestParameters: PlatformApiGetPlatformRequest, options?: RawAxiosRequestConfig) {
|
|
349
|
+
return PlatformApiFp(this.configuration).getPlatform(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
310
350
|
}
|
|
311
351
|
|
|
312
352
|
/**
|
|
313
353
|
*
|
|
314
354
|
* @summary Update platform
|
|
315
|
-
* @param {
|
|
316
|
-
* @param {UpdatePlatformRequest} updatePlatformRequest
|
|
355
|
+
* @param {PlatformApiUpdatePlatformRequest} requestParameters Request parameters.
|
|
317
356
|
* @param {*} [options] Override http request option.
|
|
318
357
|
* @throws {RequiredError}
|
|
319
358
|
* @memberof PlatformApi
|
|
320
359
|
*/
|
|
321
|
-
public updatePlatform(
|
|
322
|
-
return PlatformApiFp(this.configuration).updatePlatform(project, updatePlatformRequest, options).then((request) => request(this.axios, this.basePath));
|
|
360
|
+
public updatePlatform(requestParameters: PlatformApiUpdatePlatformRequest, options?: RawAxiosRequestConfig) {
|
|
361
|
+
return PlatformApiFp(this.configuration).updatePlatform(requestParameters.project, requestParameters.updatePlatformRequest, options).then((request) => request(this.axios, this.basePath));
|
|
323
362
|
}
|
|
324
363
|
}
|
|
325
364
|
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform 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.
|
|
7
|
+
* The version of the OpenAPI document: 0.3.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
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform 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.
|
|
7
|
+
* The version of the OpenAPI document: 0.3.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
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform 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.
|
|
7
|
+
* The version of the OpenAPI document: 0.3.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
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform 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.
|
|
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).
|
|
@@ -38,6 +38,12 @@ export interface ApiError {
|
|
|
38
38
|
* @interface Platform
|
|
39
39
|
*/
|
|
40
40
|
export interface Platform {
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof Platform
|
|
45
|
+
*/
|
|
46
|
+
'id': string;
|
|
41
47
|
/**
|
|
42
48
|
*
|
|
43
49
|
* @type {string}
|
|
@@ -166,21 +172,52 @@ export declare const PlatformApiFactory: (configuration?: Configuration, basePat
|
|
|
166
172
|
/**
|
|
167
173
|
*
|
|
168
174
|
* @summary Get platform details
|
|
169
|
-
* @param {
|
|
175
|
+
* @param {PlatformApiGetPlatformRequest} requestParameters Request parameters.
|
|
170
176
|
* @param {*} [options] Override http request option.
|
|
171
177
|
* @throws {RequiredError}
|
|
172
178
|
*/
|
|
173
|
-
getPlatform(
|
|
179
|
+
getPlatform(requestParameters: PlatformApiGetPlatformRequest, options?: RawAxiosRequestConfig): AxiosPromise<Platform>;
|
|
174
180
|
/**
|
|
175
181
|
*
|
|
176
182
|
* @summary Update platform
|
|
177
|
-
* @param {
|
|
178
|
-
* @param {UpdatePlatformRequest} updatePlatformRequest
|
|
183
|
+
* @param {PlatformApiUpdatePlatformRequest} requestParameters Request parameters.
|
|
179
184
|
* @param {*} [options] Override http request option.
|
|
180
185
|
* @throws {RequiredError}
|
|
181
186
|
*/
|
|
182
|
-
updatePlatform(
|
|
187
|
+
updatePlatform(requestParameters: PlatformApiUpdatePlatformRequest, options?: RawAxiosRequestConfig): AxiosPromise<Platform>;
|
|
183
188
|
};
|
|
189
|
+
/**
|
|
190
|
+
* Request parameters for getPlatform operation in PlatformApi.
|
|
191
|
+
* @export
|
|
192
|
+
* @interface PlatformApiGetPlatformRequest
|
|
193
|
+
*/
|
|
194
|
+
export interface PlatformApiGetPlatformRequest {
|
|
195
|
+
/**
|
|
196
|
+
* Project unique identifier
|
|
197
|
+
* @type {string}
|
|
198
|
+
* @memberof PlatformApiGetPlatform
|
|
199
|
+
*/
|
|
200
|
+
readonly project: string;
|
|
201
|
+
}
|
|
202
|
+
/**
|
|
203
|
+
* Request parameters for updatePlatform operation in PlatformApi.
|
|
204
|
+
* @export
|
|
205
|
+
* @interface PlatformApiUpdatePlatformRequest
|
|
206
|
+
*/
|
|
207
|
+
export interface PlatformApiUpdatePlatformRequest {
|
|
208
|
+
/**
|
|
209
|
+
* Project unique identifier
|
|
210
|
+
* @type {string}
|
|
211
|
+
* @memberof PlatformApiUpdatePlatform
|
|
212
|
+
*/
|
|
213
|
+
readonly project: string;
|
|
214
|
+
/**
|
|
215
|
+
*
|
|
216
|
+
* @type {UpdatePlatformRequest}
|
|
217
|
+
* @memberof PlatformApiUpdatePlatform
|
|
218
|
+
*/
|
|
219
|
+
readonly updatePlatformRequest: UpdatePlatformRequest;
|
|
220
|
+
}
|
|
184
221
|
/**
|
|
185
222
|
* PlatformApi - object-oriented interface
|
|
186
223
|
* @export
|
|
@@ -191,20 +228,19 @@ export declare class PlatformApi extends BaseAPI {
|
|
|
191
228
|
/**
|
|
192
229
|
*
|
|
193
230
|
* @summary Get platform details
|
|
194
|
-
* @param {
|
|
231
|
+
* @param {PlatformApiGetPlatformRequest} requestParameters Request parameters.
|
|
195
232
|
* @param {*} [options] Override http request option.
|
|
196
233
|
* @throws {RequiredError}
|
|
197
234
|
* @memberof PlatformApi
|
|
198
235
|
*/
|
|
199
|
-
getPlatform(
|
|
236
|
+
getPlatform(requestParameters: PlatformApiGetPlatformRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Platform, any>>;
|
|
200
237
|
/**
|
|
201
238
|
*
|
|
202
239
|
* @summary Update platform
|
|
203
|
-
* @param {
|
|
204
|
-
* @param {UpdatePlatformRequest} updatePlatformRequest
|
|
240
|
+
* @param {PlatformApiUpdatePlatformRequest} requestParameters Request parameters.
|
|
205
241
|
* @param {*} [options] Override http request option.
|
|
206
242
|
* @throws {RequiredError}
|
|
207
243
|
* @memberof PlatformApi
|
|
208
244
|
*/
|
|
209
|
-
updatePlatform(
|
|
245
|
+
updatePlatform(requestParameters: PlatformApiUpdatePlatformRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Platform, any>>;
|
|
210
246
|
}
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Platform API
|
|
6
6
|
* Manage Your podOS platform 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.
|
|
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).
|
|
@@ -79,7 +79,7 @@ const PlatformApiAxiosParamCreator = function (configuration) {
|
|
|
79
79
|
* @param {*} [options] Override http request option.
|
|
80
80
|
* @throws {RequiredError}
|
|
81
81
|
*/
|
|
82
|
-
updatePlatform: (
|
|
82
|
+
updatePlatform: (project_1, updatePlatformRequest_1, ...args_1) => __awaiter(this, [project_1, updatePlatformRequest_1, ...args_1], void 0, function* (project, updatePlatformRequest, options = {}) {
|
|
83
83
|
// verify required parameter 'project' is not null or undefined
|
|
84
84
|
(0, common_1.assertParamExists)('updatePlatform', 'project', project);
|
|
85
85
|
// verify required parameter 'updatePlatformRequest' is not null or undefined
|
|
@@ -168,23 +168,22 @@ const PlatformApiFactory = function (configuration, basePath, axios) {
|
|
|
168
168
|
/**
|
|
169
169
|
*
|
|
170
170
|
* @summary Get platform details
|
|
171
|
-
* @param {
|
|
171
|
+
* @param {PlatformApiGetPlatformRequest} requestParameters Request parameters.
|
|
172
172
|
* @param {*} [options] Override http request option.
|
|
173
173
|
* @throws {RequiredError}
|
|
174
174
|
*/
|
|
175
|
-
getPlatform(
|
|
176
|
-
return localVarFp.getPlatform(project, options).then((request) => request(axios, basePath));
|
|
175
|
+
getPlatform(requestParameters, options) {
|
|
176
|
+
return localVarFp.getPlatform(requestParameters.project, options).then((request) => request(axios, basePath));
|
|
177
177
|
},
|
|
178
178
|
/**
|
|
179
179
|
*
|
|
180
180
|
* @summary Update platform
|
|
181
|
-
* @param {
|
|
182
|
-
* @param {UpdatePlatformRequest} updatePlatformRequest
|
|
181
|
+
* @param {PlatformApiUpdatePlatformRequest} requestParameters Request parameters.
|
|
183
182
|
* @param {*} [options] Override http request option.
|
|
184
183
|
* @throws {RequiredError}
|
|
185
184
|
*/
|
|
186
|
-
updatePlatform(
|
|
187
|
-
return localVarFp.updatePlatform(project, updatePlatformRequest, options).then((request) => request(axios, basePath));
|
|
185
|
+
updatePlatform(requestParameters, options) {
|
|
186
|
+
return localVarFp.updatePlatform(requestParameters.project, requestParameters.updatePlatformRequest, options).then((request) => request(axios, basePath));
|
|
188
187
|
},
|
|
189
188
|
};
|
|
190
189
|
};
|
|
@@ -199,25 +198,24 @@ class PlatformApi extends base_1.BaseAPI {
|
|
|
199
198
|
/**
|
|
200
199
|
*
|
|
201
200
|
* @summary Get platform details
|
|
202
|
-
* @param {
|
|
201
|
+
* @param {PlatformApiGetPlatformRequest} requestParameters Request parameters.
|
|
203
202
|
* @param {*} [options] Override http request option.
|
|
204
203
|
* @throws {RequiredError}
|
|
205
204
|
* @memberof PlatformApi
|
|
206
205
|
*/
|
|
207
|
-
getPlatform(
|
|
208
|
-
return (0, exports.PlatformApiFp)(this.configuration).getPlatform(project, options).then((request) => request(this.axios, this.basePath));
|
|
206
|
+
getPlatform(requestParameters, options) {
|
|
207
|
+
return (0, exports.PlatformApiFp)(this.configuration).getPlatform(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
209
208
|
}
|
|
210
209
|
/**
|
|
211
210
|
*
|
|
212
211
|
* @summary Update platform
|
|
213
|
-
* @param {
|
|
214
|
-
* @param {UpdatePlatformRequest} updatePlatformRequest
|
|
212
|
+
* @param {PlatformApiUpdatePlatformRequest} requestParameters Request parameters.
|
|
215
213
|
* @param {*} [options] Override http request option.
|
|
216
214
|
* @throws {RequiredError}
|
|
217
215
|
* @memberof PlatformApi
|
|
218
216
|
*/
|
|
219
|
-
updatePlatform(
|
|
220
|
-
return (0, exports.PlatformApiFp)(this.configuration).updatePlatform(project, updatePlatformRequest, options).then((request) => request(this.axios, this.basePath));
|
|
217
|
+
updatePlatform(requestParameters, options) {
|
|
218
|
+
return (0, exports.PlatformApiFp)(this.configuration).updatePlatform(requestParameters.project, requestParameters.updatePlatformRequest, options).then((request) => request(this.axios, this.basePath));
|
|
221
219
|
}
|
|
222
220
|
}
|
|
223
221
|
exports.PlatformApi = PlatformApi;
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform 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.
|
|
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
|
* Platform API
|
|
6
6
|
* Manage Your podOS platform 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.
|
|
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
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform 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.
|
|
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
|
* Platform API
|
|
6
6
|
* Manage Your podOS platform 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.
|
|
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/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform 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.
|
|
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/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Platform API
|
|
6
6
|
* Manage Your podOS platform 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.
|
|
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/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform 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.
|
|
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).
|
|
@@ -38,6 +38,12 @@ export interface ApiError {
|
|
|
38
38
|
* @interface Platform
|
|
39
39
|
*/
|
|
40
40
|
export interface Platform {
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof Platform
|
|
45
|
+
*/
|
|
46
|
+
'id': string;
|
|
41
47
|
/**
|
|
42
48
|
*
|
|
43
49
|
* @type {string}
|
|
@@ -166,21 +172,52 @@ export declare const PlatformApiFactory: (configuration?: Configuration, basePat
|
|
|
166
172
|
/**
|
|
167
173
|
*
|
|
168
174
|
* @summary Get platform details
|
|
169
|
-
* @param {
|
|
175
|
+
* @param {PlatformApiGetPlatformRequest} requestParameters Request parameters.
|
|
170
176
|
* @param {*} [options] Override http request option.
|
|
171
177
|
* @throws {RequiredError}
|
|
172
178
|
*/
|
|
173
|
-
getPlatform(
|
|
179
|
+
getPlatform(requestParameters: PlatformApiGetPlatformRequest, options?: RawAxiosRequestConfig): AxiosPromise<Platform>;
|
|
174
180
|
/**
|
|
175
181
|
*
|
|
176
182
|
* @summary Update platform
|
|
177
|
-
* @param {
|
|
178
|
-
* @param {UpdatePlatformRequest} updatePlatformRequest
|
|
183
|
+
* @param {PlatformApiUpdatePlatformRequest} requestParameters Request parameters.
|
|
179
184
|
* @param {*} [options] Override http request option.
|
|
180
185
|
* @throws {RequiredError}
|
|
181
186
|
*/
|
|
182
|
-
updatePlatform(
|
|
187
|
+
updatePlatform(requestParameters: PlatformApiUpdatePlatformRequest, options?: RawAxiosRequestConfig): AxiosPromise<Platform>;
|
|
183
188
|
};
|
|
189
|
+
/**
|
|
190
|
+
* Request parameters for getPlatform operation in PlatformApi.
|
|
191
|
+
* @export
|
|
192
|
+
* @interface PlatformApiGetPlatformRequest
|
|
193
|
+
*/
|
|
194
|
+
export interface PlatformApiGetPlatformRequest {
|
|
195
|
+
/**
|
|
196
|
+
* Project unique identifier
|
|
197
|
+
* @type {string}
|
|
198
|
+
* @memberof PlatformApiGetPlatform
|
|
199
|
+
*/
|
|
200
|
+
readonly project: string;
|
|
201
|
+
}
|
|
202
|
+
/**
|
|
203
|
+
* Request parameters for updatePlatform operation in PlatformApi.
|
|
204
|
+
* @export
|
|
205
|
+
* @interface PlatformApiUpdatePlatformRequest
|
|
206
|
+
*/
|
|
207
|
+
export interface PlatformApiUpdatePlatformRequest {
|
|
208
|
+
/**
|
|
209
|
+
* Project unique identifier
|
|
210
|
+
* @type {string}
|
|
211
|
+
* @memberof PlatformApiUpdatePlatform
|
|
212
|
+
*/
|
|
213
|
+
readonly project: string;
|
|
214
|
+
/**
|
|
215
|
+
*
|
|
216
|
+
* @type {UpdatePlatformRequest}
|
|
217
|
+
* @memberof PlatformApiUpdatePlatform
|
|
218
|
+
*/
|
|
219
|
+
readonly updatePlatformRequest: UpdatePlatformRequest;
|
|
220
|
+
}
|
|
184
221
|
/**
|
|
185
222
|
* PlatformApi - object-oriented interface
|
|
186
223
|
* @export
|
|
@@ -191,20 +228,19 @@ export declare class PlatformApi extends BaseAPI {
|
|
|
191
228
|
/**
|
|
192
229
|
*
|
|
193
230
|
* @summary Get platform details
|
|
194
|
-
* @param {
|
|
231
|
+
* @param {PlatformApiGetPlatformRequest} requestParameters Request parameters.
|
|
195
232
|
* @param {*} [options] Override http request option.
|
|
196
233
|
* @throws {RequiredError}
|
|
197
234
|
* @memberof PlatformApi
|
|
198
235
|
*/
|
|
199
|
-
getPlatform(
|
|
236
|
+
getPlatform(requestParameters: PlatformApiGetPlatformRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Platform, any>>;
|
|
200
237
|
/**
|
|
201
238
|
*
|
|
202
239
|
* @summary Update platform
|
|
203
|
-
* @param {
|
|
204
|
-
* @param {UpdatePlatformRequest} updatePlatformRequest
|
|
240
|
+
* @param {PlatformApiUpdatePlatformRequest} requestParameters Request parameters.
|
|
205
241
|
* @param {*} [options] Override http request option.
|
|
206
242
|
* @throws {RequiredError}
|
|
207
243
|
* @memberof PlatformApi
|
|
208
244
|
*/
|
|
209
|
-
updatePlatform(
|
|
245
|
+
updatePlatform(requestParameters: PlatformApiUpdatePlatformRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Platform, any>>;
|
|
210
246
|
}
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform 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.
|
|
7
|
+
* The version of the OpenAPI document: 0.3.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -76,7 +76,7 @@ export const PlatformApiAxiosParamCreator = function (configuration) {
|
|
|
76
76
|
* @param {*} [options] Override http request option.
|
|
77
77
|
* @throws {RequiredError}
|
|
78
78
|
*/
|
|
79
|
-
updatePlatform: (
|
|
79
|
+
updatePlatform: (project_1, updatePlatformRequest_1, ...args_1) => __awaiter(this, [project_1, updatePlatformRequest_1, ...args_1], void 0, function* (project, updatePlatformRequest, options = {}) {
|
|
80
80
|
// verify required parameter 'project' is not null or undefined
|
|
81
81
|
assertParamExists('updatePlatform', 'project', project);
|
|
82
82
|
// verify required parameter 'updatePlatformRequest' is not null or undefined
|
|
@@ -163,23 +163,22 @@ export const PlatformApiFactory = function (configuration, basePath, axios) {
|
|
|
163
163
|
/**
|
|
164
164
|
*
|
|
165
165
|
* @summary Get platform details
|
|
166
|
-
* @param {
|
|
166
|
+
* @param {PlatformApiGetPlatformRequest} requestParameters Request parameters.
|
|
167
167
|
* @param {*} [options] Override http request option.
|
|
168
168
|
* @throws {RequiredError}
|
|
169
169
|
*/
|
|
170
|
-
getPlatform(
|
|
171
|
-
return localVarFp.getPlatform(project, options).then((request) => request(axios, basePath));
|
|
170
|
+
getPlatform(requestParameters, options) {
|
|
171
|
+
return localVarFp.getPlatform(requestParameters.project, options).then((request) => request(axios, basePath));
|
|
172
172
|
},
|
|
173
173
|
/**
|
|
174
174
|
*
|
|
175
175
|
* @summary Update platform
|
|
176
|
-
* @param {
|
|
177
|
-
* @param {UpdatePlatformRequest} updatePlatformRequest
|
|
176
|
+
* @param {PlatformApiUpdatePlatformRequest} requestParameters Request parameters.
|
|
178
177
|
* @param {*} [options] Override http request option.
|
|
179
178
|
* @throws {RequiredError}
|
|
180
179
|
*/
|
|
181
|
-
updatePlatform(
|
|
182
|
-
return localVarFp.updatePlatform(project, updatePlatformRequest, options).then((request) => request(axios, basePath));
|
|
180
|
+
updatePlatform(requestParameters, options) {
|
|
181
|
+
return localVarFp.updatePlatform(requestParameters.project, requestParameters.updatePlatformRequest, options).then((request) => request(axios, basePath));
|
|
183
182
|
},
|
|
184
183
|
};
|
|
185
184
|
};
|
|
@@ -193,24 +192,23 @@ export class PlatformApi extends BaseAPI {
|
|
|
193
192
|
/**
|
|
194
193
|
*
|
|
195
194
|
* @summary Get platform details
|
|
196
|
-
* @param {
|
|
195
|
+
* @param {PlatformApiGetPlatformRequest} requestParameters Request parameters.
|
|
197
196
|
* @param {*} [options] Override http request option.
|
|
198
197
|
* @throws {RequiredError}
|
|
199
198
|
* @memberof PlatformApi
|
|
200
199
|
*/
|
|
201
|
-
getPlatform(
|
|
202
|
-
return PlatformApiFp(this.configuration).getPlatform(project, options).then((request) => request(this.axios, this.basePath));
|
|
200
|
+
getPlatform(requestParameters, options) {
|
|
201
|
+
return PlatformApiFp(this.configuration).getPlatform(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
203
202
|
}
|
|
204
203
|
/**
|
|
205
204
|
*
|
|
206
205
|
* @summary Update platform
|
|
207
|
-
* @param {
|
|
208
|
-
* @param {UpdatePlatformRequest} updatePlatformRequest
|
|
206
|
+
* @param {PlatformApiUpdatePlatformRequest} requestParameters Request parameters.
|
|
209
207
|
* @param {*} [options] Override http request option.
|
|
210
208
|
* @throws {RequiredError}
|
|
211
209
|
* @memberof PlatformApi
|
|
212
210
|
*/
|
|
213
|
-
updatePlatform(
|
|
214
|
-
return PlatformApiFp(this.configuration).updatePlatform(project, updatePlatformRequest, options).then((request) => request(this.axios, this.basePath));
|
|
211
|
+
updatePlatform(requestParameters, options) {
|
|
212
|
+
return PlatformApiFp(this.configuration).updatePlatform(requestParameters.project, requestParameters.updatePlatformRequest, options).then((request) => request(this.axios, this.basePath));
|
|
215
213
|
}
|
|
216
214
|
}
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform 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.
|
|
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/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform 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.
|
|
7
|
+
* The version of the OpenAPI document: 0.3.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/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform 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.
|
|
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/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform 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.
|
|
7
|
+
* The version of the OpenAPI document: 0.3.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
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform 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.
|
|
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).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform 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.
|
|
7
|
+
* The version of the OpenAPI document: 0.3.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/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform 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.
|
|
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/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform 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.
|
|
7
|
+
* The version of the OpenAPI document: 0.3.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
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform 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.
|
|
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/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Platform API
|
|
6
6
|
* Manage Your podOS platform 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.
|
|
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/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform 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.
|
|
7
|
+
* The version of the OpenAPI document: 0.3.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|