@teemill/schema 0.2.2 → 0.2.3

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.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Schema API
3
3
  * View PodOS API Schemas
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,83 +16,120 @@ import { BaseAPI } from './base';
16
16
  /**
17
17
  *
18
18
  * @export
19
- * @interface ApiError
19
+ * @interface Api
20
20
  */
21
- export interface ApiError {
21
+ export interface Api {
22
22
  /**
23
23
  *
24
24
  * @type {string}
25
- * @memberof ApiError
25
+ * @memberof Api
26
26
  */
27
- 'code'?: string;
27
+ 'id': string;
28
28
  /**
29
29
  *
30
30
  * @type {string}
31
- * @memberof ApiError
31
+ * @memberof Api
32
32
  */
33
- 'message': string;
33
+ 'name': string;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof Api
38
+ */
39
+ 'description': string;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof Api
44
+ */
45
+ 'version': string;
46
+ /**
47
+ *
48
+ * @type {string}
49
+ * @memberof Api
50
+ */
51
+ 'updatedAt': string;
52
+ /**
53
+ *
54
+ * @type {Array<ApiEndpointsInner>}
55
+ * @memberof Api
56
+ */
57
+ 'endpoints': Array<ApiEndpointsInner>;
58
+ /**
59
+ *
60
+ * @type {object}
61
+ * @memberof Api
62
+ */
63
+ 'schema'?: object;
34
64
  }
35
65
  /**
36
66
  *
37
67
  * @export
38
- * @interface Schema
68
+ * @interface ApiEndpointsInner
39
69
  */
40
- export interface Schema {
70
+ export interface ApiEndpointsInner {
41
71
  /**
42
72
  *
43
73
  * @type {string}
44
- * @memberof Schema
74
+ * @memberof ApiEndpointsInner
45
75
  */
46
- 'id': string;
76
+ 'name': string;
47
77
  /**
48
78
  *
49
79
  * @type {string}
50
- * @memberof Schema
80
+ * @memberof ApiEndpointsInner
51
81
  */
52
- 'name': string;
82
+ 'method': string;
53
83
  /**
54
84
  *
55
85
  * @type {string}
56
- * @memberof Schema
86
+ * @memberof ApiEndpointsInner
57
87
  */
58
- 'description': string;
88
+ 'path': string;
59
89
  /**
60
90
  *
61
- * @type {string}
62
- * @memberof Schema
91
+ * @type {Array<string>}
92
+ * @memberof ApiEndpointsInner
63
93
  */
64
- 'version': string;
94
+ 'tags': Array<string>;
65
95
  /**
66
96
  *
67
- * @type {string}
68
- * @memberof Schema
97
+ * @type {boolean}
98
+ * @memberof ApiEndpointsInner
69
99
  */
70
- 'updatedAt': string;
100
+ 'internal': boolean;
101
+ }
102
+ /**
103
+ *
104
+ * @export
105
+ * @interface ApiError
106
+ */
107
+ export interface ApiError {
71
108
  /**
72
109
  *
73
- * @type {Array<string>}
74
- * @memberof Schema
110
+ * @type {string}
111
+ * @memberof ApiError
75
112
  */
76
- 'paths': Array<string>;
113
+ 'code'?: string;
77
114
  /**
78
115
  *
79
- * @type {object}
80
- * @memberof Schema
116
+ * @type {string}
117
+ * @memberof ApiError
81
118
  */
82
- 'schema'?: object;
119
+ 'message': string;
83
120
  }
84
121
  /**
85
122
  *
86
123
  * @export
87
- * @interface Schemas
124
+ * @interface Apis
88
125
  */
89
- export interface Schemas {
126
+ export interface Apis {
90
127
  /**
91
128
  *
92
- * @type {Array<Schema>}
93
- * @memberof Schemas
129
+ * @type {Array<Api>}
130
+ * @memberof Apis
94
131
  */
95
- 'schemas': Array<Schema>;
132
+ 'apis'?: Array<Api>;
96
133
  }
97
134
  /**
98
135
  *
@@ -116,136 +153,136 @@ export interface ValidationError {
116
153
  };
117
154
  }
118
155
  /**
119
- * SchemasApi - axios parameter creator
156
+ * ApisApi - axios parameter creator
120
157
  * @export
121
158
  */
122
- export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration) => {
159
+ export declare const ApisApiAxiosParamCreator: (configuration?: Configuration) => {
123
160
  /**
124
- * Get an API schema
125
- * @summary Get schema
161
+ * Get an API
162
+ * @summary Get api
126
163
  * @param {string} api API name
127
164
  * @param {string} [project] Project unique identifier
128
165
  * @param {*} [options] Override http request option.
129
166
  * @throws {RequiredError}
130
167
  */
131
- getSchema: (api: string, project?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
168
+ getApi: (api: string, project?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
132
169
  /**
133
- * List all available schemas
134
- * @summary List schemas
170
+ * List all available APIs
171
+ * @summary List apis
135
172
  * @param {string} [project] Project unique identifier
136
173
  * @param {string} [search] Search term used to filter results by name or identifier
137
174
  * @param {*} [options] Override http request option.
138
175
  * @throws {RequiredError}
139
176
  */
140
- listSchemas: (project?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
177
+ listApis: (project?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
141
178
  };
142
179
  /**
143
- * SchemasApi - functional programming interface
180
+ * ApisApi - functional programming interface
144
181
  * @export
145
182
  */
146
- export declare const SchemasApiFp: (configuration?: Configuration) => {
183
+ export declare const ApisApiFp: (configuration?: Configuration) => {
147
184
  /**
148
- * Get an API schema
149
- * @summary Get schema
185
+ * Get an API
186
+ * @summary Get api
150
187
  * @param {string} api API name
151
188
  * @param {string} [project] Project unique identifier
152
189
  * @param {*} [options] Override http request option.
153
190
  * @throws {RequiredError}
154
191
  */
155
- getSchema(api: string, project?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Schema>>;
192
+ getApi(api: string, project?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Api>>;
156
193
  /**
157
- * List all available schemas
158
- * @summary List schemas
194
+ * List all available APIs
195
+ * @summary List apis
159
196
  * @param {string} [project] Project unique identifier
160
197
  * @param {string} [search] Search term used to filter results by name or identifier
161
198
  * @param {*} [options] Override http request option.
162
199
  * @throws {RequiredError}
163
200
  */
164
- listSchemas(project?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Schemas>>;
201
+ listApis(project?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Apis>>;
165
202
  };
166
203
  /**
167
- * SchemasApi - factory interface
204
+ * ApisApi - factory interface
168
205
  * @export
169
206
  */
170
- export declare const SchemasApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
207
+ export declare const ApisApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
171
208
  /**
172
- * Get an API schema
173
- * @summary Get schema
174
- * @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
209
+ * Get an API
210
+ * @summary Get api
211
+ * @param {ApisApiGetApiRequest} requestParameters Request parameters.
175
212
  * @param {*} [options] Override http request option.
176
213
  * @throws {RequiredError}
177
214
  */
178
- getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<Schema>;
215
+ getApi(requestParameters: ApisApiGetApiRequest, options?: RawAxiosRequestConfig): AxiosPromise<Api>;
179
216
  /**
180
- * List all available schemas
181
- * @summary List schemas
182
- * @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
217
+ * List all available APIs
218
+ * @summary List apis
219
+ * @param {ApisApiListApisRequest} requestParameters Request parameters.
183
220
  * @param {*} [options] Override http request option.
184
221
  * @throws {RequiredError}
185
222
  */
186
- listSchemas(requestParameters?: SchemasApiListSchemasRequest, options?: RawAxiosRequestConfig): AxiosPromise<Schemas>;
223
+ listApis(requestParameters?: ApisApiListApisRequest, options?: RawAxiosRequestConfig): AxiosPromise<Apis>;
187
224
  };
188
225
  /**
189
- * Request parameters for getSchema operation in SchemasApi.
226
+ * Request parameters for getApi operation in ApisApi.
190
227
  * @export
191
- * @interface SchemasApiGetSchemaRequest
228
+ * @interface ApisApiGetApiRequest
192
229
  */
193
- export interface SchemasApiGetSchemaRequest {
230
+ export interface ApisApiGetApiRequest {
194
231
  /**
195
232
  * API name
196
233
  * @type {string}
197
- * @memberof SchemasApiGetSchema
234
+ * @memberof ApisApiGetApi
198
235
  */
199
236
  readonly api: string;
200
237
  /**
201
238
  * Project unique identifier
202
239
  * @type {string}
203
- * @memberof SchemasApiGetSchema
240
+ * @memberof ApisApiGetApi
204
241
  */
205
242
  readonly project?: string;
206
243
  }
207
244
  /**
208
- * Request parameters for listSchemas operation in SchemasApi.
245
+ * Request parameters for listApis operation in ApisApi.
209
246
  * @export
210
- * @interface SchemasApiListSchemasRequest
247
+ * @interface ApisApiListApisRequest
211
248
  */
212
- export interface SchemasApiListSchemasRequest {
249
+ export interface ApisApiListApisRequest {
213
250
  /**
214
251
  * Project unique identifier
215
252
  * @type {string}
216
- * @memberof SchemasApiListSchemas
253
+ * @memberof ApisApiListApis
217
254
  */
218
255
  readonly project?: string;
219
256
  /**
220
257
  * Search term used to filter results by name or identifier
221
258
  * @type {string}
222
- * @memberof SchemasApiListSchemas
259
+ * @memberof ApisApiListApis
223
260
  */
224
261
  readonly search?: string;
225
262
  }
226
263
  /**
227
- * SchemasApi - object-oriented interface
264
+ * ApisApi - object-oriented interface
228
265
  * @export
229
- * @class SchemasApi
266
+ * @class ApisApi
230
267
  * @extends {BaseAPI}
231
268
  */
232
- export declare class SchemasApi extends BaseAPI {
269
+ export declare class ApisApi extends BaseAPI {
233
270
  /**
234
- * Get an API schema
235
- * @summary Get schema
236
- * @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
271
+ * Get an API
272
+ * @summary Get api
273
+ * @param {ApisApiGetApiRequest} requestParameters Request parameters.
237
274
  * @param {*} [options] Override http request option.
238
275
  * @throws {RequiredError}
239
- * @memberof SchemasApi
276
+ * @memberof ApisApi
240
277
  */
241
- getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Schema, any>>;
278
+ getApi(requestParameters: ApisApiGetApiRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Api, any>>;
242
279
  /**
243
- * List all available schemas
244
- * @summary List schemas
245
- * @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
280
+ * List all available APIs
281
+ * @summary List apis
282
+ * @param {ApisApiListApisRequest} requestParameters Request parameters.
246
283
  * @param {*} [options] Override http request option.
247
284
  * @throws {RequiredError}
248
- * @memberof SchemasApi
285
+ * @memberof ApisApi
249
286
  */
250
- listSchemas(requestParameters?: SchemasApiListSchemasRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Schemas, any>>;
287
+ listApis(requestParameters?: ApisApiListApisRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Apis, any>>;
251
288
  }
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Schema API
6
6
  * View PodOS API Schemas
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
22
22
  });
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.SchemasApi = exports.SchemasApiFactory = exports.SchemasApiFp = exports.SchemasApiAxiosParamCreator = void 0;
25
+ exports.ApisApi = exports.ApisApiFactory = exports.ApisApiFp = exports.ApisApiAxiosParamCreator = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -30,22 +30,22 @@ const common_1 = require("./common");
30
30
  // @ts-ignore
31
31
  const base_1 = require("./base");
32
32
  /**
33
- * SchemasApi - axios parameter creator
33
+ * ApisApi - axios parameter creator
34
34
  * @export
35
35
  */
36
- const SchemasApiAxiosParamCreator = function (configuration) {
36
+ const ApisApiAxiosParamCreator = function (configuration) {
37
37
  return {
38
38
  /**
39
- * Get an API schema
40
- * @summary Get schema
39
+ * Get an API
40
+ * @summary Get api
41
41
  * @param {string} api API name
42
42
  * @param {string} [project] Project unique identifier
43
43
  * @param {*} [options] Override http request option.
44
44
  * @throws {RequiredError}
45
45
  */
46
- getSchema: (api_1, project_1, ...args_1) => __awaiter(this, [api_1, project_1, ...args_1], void 0, function* (api, project, options = {}) {
46
+ getApi: (api_1, project_1, ...args_1) => __awaiter(this, [api_1, project_1, ...args_1], void 0, function* (api, project, options = {}) {
47
47
  // verify required parameter 'api' is not null or undefined
48
- (0, common_1.assertParamExists)('getSchema', 'api', api);
48
+ (0, common_1.assertParamExists)('getApi', 'api', api);
49
49
  const localVarPath = `/{api}`
50
50
  .replace(`{${"api"}}`, encodeURIComponent(String(api)));
51
51
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -74,14 +74,14 @@ const SchemasApiAxiosParamCreator = function (configuration) {
74
74
  };
75
75
  }),
76
76
  /**
77
- * List all available schemas
78
- * @summary List schemas
77
+ * List all available APIs
78
+ * @summary List apis
79
79
  * @param {string} [project] Project unique identifier
80
80
  * @param {string} [search] Search term used to filter results by name or identifier
81
81
  * @param {*} [options] Override http request option.
82
82
  * @throws {RequiredError}
83
83
  */
84
- listSchemas: (project_1, search_1, ...args_1) => __awaiter(this, [project_1, search_1, ...args_1], void 0, function* (project, search, options = {}) {
84
+ listApis: (project_1, search_1, ...args_1) => __awaiter(this, [project_1, search_1, ...args_1], void 0, function* (project, search, options = {}) {
85
85
  const localVarPath = `/`;
86
86
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
87
87
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -113,109 +113,109 @@ const SchemasApiAxiosParamCreator = function (configuration) {
113
113
  }),
114
114
  };
115
115
  };
116
- exports.SchemasApiAxiosParamCreator = SchemasApiAxiosParamCreator;
116
+ exports.ApisApiAxiosParamCreator = ApisApiAxiosParamCreator;
117
117
  /**
118
- * SchemasApi - functional programming interface
118
+ * ApisApi - functional programming interface
119
119
  * @export
120
120
  */
121
- const SchemasApiFp = function (configuration) {
122
- const localVarAxiosParamCreator = (0, exports.SchemasApiAxiosParamCreator)(configuration);
121
+ const ApisApiFp = function (configuration) {
122
+ const localVarAxiosParamCreator = (0, exports.ApisApiAxiosParamCreator)(configuration);
123
123
  return {
124
124
  /**
125
- * Get an API schema
126
- * @summary Get schema
125
+ * Get an API
126
+ * @summary Get api
127
127
  * @param {string} api API name
128
128
  * @param {string} [project] Project unique identifier
129
129
  * @param {*} [options] Override http request option.
130
130
  * @throws {RequiredError}
131
131
  */
132
- getSchema(api, project, options) {
132
+ getApi(api, project, options) {
133
133
  return __awaiter(this, void 0, void 0, function* () {
134
134
  var _a, _b, _c;
135
- const localVarAxiosArgs = yield localVarAxiosParamCreator.getSchema(api, project, options);
135
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getApi(api, project, options);
136
136
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
137
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SchemasApi.getSchema']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
137
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ApisApi.getApi']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
138
138
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
139
139
  });
140
140
  },
141
141
  /**
142
- * List all available schemas
143
- * @summary List schemas
142
+ * List all available APIs
143
+ * @summary List apis
144
144
  * @param {string} [project] Project unique identifier
145
145
  * @param {string} [search] Search term used to filter results by name or identifier
146
146
  * @param {*} [options] Override http request option.
147
147
  * @throws {RequiredError}
148
148
  */
149
- listSchemas(project, search, options) {
149
+ listApis(project, search, options) {
150
150
  return __awaiter(this, void 0, void 0, function* () {
151
151
  var _a, _b, _c;
152
- const localVarAxiosArgs = yield localVarAxiosParamCreator.listSchemas(project, search, options);
152
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listApis(project, search, options);
153
153
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
154
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SchemasApi.listSchemas']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
154
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ApisApi.listApis']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
155
155
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
156
156
  });
157
157
  },
158
158
  };
159
159
  };
160
- exports.SchemasApiFp = SchemasApiFp;
160
+ exports.ApisApiFp = ApisApiFp;
161
161
  /**
162
- * SchemasApi - factory interface
162
+ * ApisApi - factory interface
163
163
  * @export
164
164
  */
165
- const SchemasApiFactory = function (configuration, basePath, axios) {
166
- const localVarFp = (0, exports.SchemasApiFp)(configuration);
165
+ const ApisApiFactory = function (configuration, basePath, axios) {
166
+ const localVarFp = (0, exports.ApisApiFp)(configuration);
167
167
  return {
168
168
  /**
169
- * Get an API schema
170
- * @summary Get schema
171
- * @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
169
+ * Get an API
170
+ * @summary Get api
171
+ * @param {ApisApiGetApiRequest} requestParameters Request parameters.
172
172
  * @param {*} [options] Override http request option.
173
173
  * @throws {RequiredError}
174
174
  */
175
- getSchema(requestParameters, options) {
176
- return localVarFp.getSchema(requestParameters.api, requestParameters.project, options).then((request) => request(axios, basePath));
175
+ getApi(requestParameters, options) {
176
+ return localVarFp.getApi(requestParameters.api, requestParameters.project, options).then((request) => request(axios, basePath));
177
177
  },
178
178
  /**
179
- * List all available schemas
180
- * @summary List schemas
181
- * @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
179
+ * List all available APIs
180
+ * @summary List apis
181
+ * @param {ApisApiListApisRequest} requestParameters Request parameters.
182
182
  * @param {*} [options] Override http request option.
183
183
  * @throws {RequiredError}
184
184
  */
185
- listSchemas(requestParameters = {}, options) {
186
- return localVarFp.listSchemas(requestParameters.project, requestParameters.search, options).then((request) => request(axios, basePath));
185
+ listApis(requestParameters = {}, options) {
186
+ return localVarFp.listApis(requestParameters.project, requestParameters.search, options).then((request) => request(axios, basePath));
187
187
  },
188
188
  };
189
189
  };
190
- exports.SchemasApiFactory = SchemasApiFactory;
190
+ exports.ApisApiFactory = ApisApiFactory;
191
191
  /**
192
- * SchemasApi - object-oriented interface
192
+ * ApisApi - object-oriented interface
193
193
  * @export
194
- * @class SchemasApi
194
+ * @class ApisApi
195
195
  * @extends {BaseAPI}
196
196
  */
197
- class SchemasApi extends base_1.BaseAPI {
197
+ class ApisApi extends base_1.BaseAPI {
198
198
  /**
199
- * Get an API schema
200
- * @summary Get schema
201
- * @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
199
+ * Get an API
200
+ * @summary Get api
201
+ * @param {ApisApiGetApiRequest} requestParameters Request parameters.
202
202
  * @param {*} [options] Override http request option.
203
203
  * @throws {RequiredError}
204
- * @memberof SchemasApi
204
+ * @memberof ApisApi
205
205
  */
206
- getSchema(requestParameters, options) {
207
- return (0, exports.SchemasApiFp)(this.configuration).getSchema(requestParameters.api, requestParameters.project, options).then((request) => request(this.axios, this.basePath));
206
+ getApi(requestParameters, options) {
207
+ return (0, exports.ApisApiFp)(this.configuration).getApi(requestParameters.api, requestParameters.project, options).then((request) => request(this.axios, this.basePath));
208
208
  }
209
209
  /**
210
- * List all available schemas
211
- * @summary List schemas
212
- * @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
210
+ * List all available APIs
211
+ * @summary List apis
212
+ * @param {ApisApiListApisRequest} requestParameters Request parameters.
213
213
  * @param {*} [options] Override http request option.
214
214
  * @throws {RequiredError}
215
- * @memberof SchemasApi
215
+ * @memberof ApisApi
216
216
  */
217
- listSchemas(requestParameters = {}, options) {
218
- return (0, exports.SchemasApiFp)(this.configuration).listSchemas(requestParameters.project, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
217
+ listApis(requestParameters = {}, options) {
218
+ return (0, exports.ApisApiFp)(this.configuration).listApis(requestParameters.project, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
219
219
  }
220
220
  }
221
- exports.SchemasApi = SchemasApi;
221
+ exports.ApisApi = ApisApi;
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Schema API
3
3
  * View PodOS API Schemas
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Schema API
6
6
  * View PodOS API Schemas
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Schema API
3
3
  * View PodOS API Schemas
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Schema API
6
6
  * View PodOS API Schemas
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Schema API
3
3
  * View PodOS API Schemas
4
4
  *
5
- * The version of the OpenAPI document: 0.2.2
5
+ * The version of the OpenAPI document: 0.2.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Schema API
6
6
  * View PodOS API Schemas
7
7
  *
8
- * The version of the OpenAPI document: 0.2.2
8
+ * The version of the OpenAPI document: 0.2.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).