@teemill/schema 0.2.0 → 0.2.1
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 +24 -24
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +13 -13
- package/dist/api.js +16 -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 +13 -13
- package/dist/esm/api.js +16 -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/schema@0.2.
|
|
1
|
+
## @teemill/schema@0.2.1
|
|
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/schema@0.2.
|
|
39
|
+
npm install @teemill/schema@0.2.1 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Schema API
|
|
5
5
|
* View PodOS API Schemas 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.2.
|
|
7
|
+
* The version of the OpenAPI document: 0.2.1
|
|
8
8
|
* Contact: hello@podos.io
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -134,12 +134,11 @@ export const SchemasApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
134
134
|
* Get an API schema
|
|
135
135
|
* @summary Get schema
|
|
136
136
|
* @param {string} api API name
|
|
137
|
-
* @param {string} [search] Search term used to filter results by name or identifier
|
|
138
137
|
* @param {string} [project] Project unique identifier
|
|
139
138
|
* @param {*} [options] Override http request option.
|
|
140
139
|
* @throws {RequiredError}
|
|
141
140
|
*/
|
|
142
|
-
getSchema: async (api: string,
|
|
141
|
+
getSchema: async (api: string, project?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
143
142
|
// verify required parameter 'api' is not null or undefined
|
|
144
143
|
assertParamExists('getSchema', 'api', api)
|
|
145
144
|
const localVarPath = `/{api}`
|
|
@@ -162,10 +161,6 @@ export const SchemasApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
162
161
|
// authentication api-key required
|
|
163
162
|
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
164
163
|
|
|
165
|
-
if (search !== undefined) {
|
|
166
|
-
localVarQueryParameter['search'] = search;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
164
|
if (project !== undefined) {
|
|
170
165
|
localVarQueryParameter['project'] = project;
|
|
171
166
|
}
|
|
@@ -185,10 +180,11 @@ export const SchemasApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
185
180
|
* List all available schemas
|
|
186
181
|
* @summary List schemas
|
|
187
182
|
* @param {string} [project] Project unique identifier
|
|
183
|
+
* @param {string} [search] Search term used to filter results by name or identifier
|
|
188
184
|
* @param {*} [options] Override http request option.
|
|
189
185
|
* @throws {RequiredError}
|
|
190
186
|
*/
|
|
191
|
-
listSchemas: async (project?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
187
|
+
listSchemas: async (project?: string, search?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
192
188
|
const localVarPath = `/`;
|
|
193
189
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
194
190
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -212,6 +208,10 @@ export const SchemasApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
212
208
|
localVarQueryParameter['project'] = project;
|
|
213
209
|
}
|
|
214
210
|
|
|
211
|
+
if (search !== undefined) {
|
|
212
|
+
localVarQueryParameter['search'] = search;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
215
|
|
|
216
216
|
|
|
217
217
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -237,13 +237,12 @@ export const SchemasApiFp = function(configuration?: Configuration) {
|
|
|
237
237
|
* Get an API schema
|
|
238
238
|
* @summary Get schema
|
|
239
239
|
* @param {string} api API name
|
|
240
|
-
* @param {string} [search] Search term used to filter results by name or identifier
|
|
241
240
|
* @param {string} [project] Project unique identifier
|
|
242
241
|
* @param {*} [options] Override http request option.
|
|
243
242
|
* @throws {RequiredError}
|
|
244
243
|
*/
|
|
245
|
-
async getSchema(api: string,
|
|
246
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getSchema(api,
|
|
244
|
+
async getSchema(api: string, project?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Schema>> {
|
|
245
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSchema(api, project, options);
|
|
247
246
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
248
247
|
const localVarOperationServerBasePath = operationServerMap['SchemasApi.getSchema']?.[localVarOperationServerIndex]?.url;
|
|
249
248
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -252,11 +251,12 @@ export const SchemasApiFp = function(configuration?: Configuration) {
|
|
|
252
251
|
* List all available schemas
|
|
253
252
|
* @summary List schemas
|
|
254
253
|
* @param {string} [project] Project unique identifier
|
|
254
|
+
* @param {string} [search] Search term used to filter results by name or identifier
|
|
255
255
|
* @param {*} [options] Override http request option.
|
|
256
256
|
* @throws {RequiredError}
|
|
257
257
|
*/
|
|
258
|
-
async listSchemas(project?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Schemas>> {
|
|
259
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSchemas(project, options);
|
|
258
|
+
async listSchemas(project?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Schemas>> {
|
|
259
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSchemas(project, search, options);
|
|
260
260
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
261
261
|
const localVarOperationServerBasePath = operationServerMap['SchemasApi.listSchemas']?.[localVarOperationServerIndex]?.url;
|
|
262
262
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -279,7 +279,7 @@ export const SchemasApiFactory = function (configuration?: Configuration, basePa
|
|
|
279
279
|
* @throws {RequiredError}
|
|
280
280
|
*/
|
|
281
281
|
getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<Schema> {
|
|
282
|
-
return localVarFp.getSchema(requestParameters.api, requestParameters.
|
|
282
|
+
return localVarFp.getSchema(requestParameters.api, requestParameters.project, options).then((request) => request(axios, basePath));
|
|
283
283
|
},
|
|
284
284
|
/**
|
|
285
285
|
* List all available schemas
|
|
@@ -289,7 +289,7 @@ export const SchemasApiFactory = function (configuration?: Configuration, basePa
|
|
|
289
289
|
* @throws {RequiredError}
|
|
290
290
|
*/
|
|
291
291
|
listSchemas(requestParameters: SchemasApiListSchemasRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<Schemas> {
|
|
292
|
-
return localVarFp.listSchemas(requestParameters.project, options).then((request) => request(axios, basePath));
|
|
292
|
+
return localVarFp.listSchemas(requestParameters.project, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
293
293
|
},
|
|
294
294
|
};
|
|
295
295
|
};
|
|
@@ -307,13 +307,6 @@ export interface SchemasApiGetSchemaRequest {
|
|
|
307
307
|
*/
|
|
308
308
|
readonly api: string
|
|
309
309
|
|
|
310
|
-
/**
|
|
311
|
-
* Search term used to filter results by name or identifier
|
|
312
|
-
* @type {string}
|
|
313
|
-
* @memberof SchemasApiGetSchema
|
|
314
|
-
*/
|
|
315
|
-
readonly search?: string
|
|
316
|
-
|
|
317
310
|
/**
|
|
318
311
|
* Project unique identifier
|
|
319
312
|
* @type {string}
|
|
@@ -334,6 +327,13 @@ export interface SchemasApiListSchemasRequest {
|
|
|
334
327
|
* @memberof SchemasApiListSchemas
|
|
335
328
|
*/
|
|
336
329
|
readonly project?: string
|
|
330
|
+
|
|
331
|
+
/**
|
|
332
|
+
* Search term used to filter results by name or identifier
|
|
333
|
+
* @type {string}
|
|
334
|
+
* @memberof SchemasApiListSchemas
|
|
335
|
+
*/
|
|
336
|
+
readonly search?: string
|
|
337
337
|
}
|
|
338
338
|
|
|
339
339
|
/**
|
|
@@ -352,7 +352,7 @@ export class SchemasApi extends BaseAPI {
|
|
|
352
352
|
* @memberof SchemasApi
|
|
353
353
|
*/
|
|
354
354
|
public getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig) {
|
|
355
|
-
return SchemasApiFp(this.configuration).getSchema(requestParameters.api, requestParameters.
|
|
355
|
+
return SchemasApiFp(this.configuration).getSchema(requestParameters.api, requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
356
356
|
}
|
|
357
357
|
|
|
358
358
|
/**
|
|
@@ -364,7 +364,7 @@ export class SchemasApi extends BaseAPI {
|
|
|
364
364
|
* @memberof SchemasApi
|
|
365
365
|
*/
|
|
366
366
|
public listSchemas(requestParameters: SchemasApiListSchemasRequest = {}, options?: RawAxiosRequestConfig) {
|
|
367
|
-
return SchemasApiFp(this.configuration).listSchemas(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
367
|
+
return SchemasApiFp(this.configuration).listSchemas(requestParameters.project, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
|
|
368
368
|
}
|
|
369
369
|
}
|
|
370
370
|
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Schema API
|
|
5
5
|
* View PodOS API Schemas 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.2.
|
|
7
|
+
* The version of the OpenAPI document: 0.2.1
|
|
8
8
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
5
5
|
* View PodOS API Schemas 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.2.
|
|
7
|
+
* The version of the OpenAPI document: 0.2.1
|
|
8
8
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
5
5
|
* View PodOS API Schemas 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.2.
|
|
7
|
+
* The version of the OpenAPI document: 0.2.1
|
|
8
8
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
3
3
|
* View PodOS API Schemas 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.2.
|
|
5
|
+
* The version of the OpenAPI document: 0.2.1
|
|
6
6
|
* Contact: hello@podos.io
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -124,20 +124,20 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
|
|
|
124
124
|
* Get an API schema
|
|
125
125
|
* @summary Get schema
|
|
126
126
|
* @param {string} api API name
|
|
127
|
-
* @param {string} [search] Search term used to filter results by name or identifier
|
|
128
127
|
* @param {string} [project] Project unique identifier
|
|
129
128
|
* @param {*} [options] Override http request option.
|
|
130
129
|
* @throws {RequiredError}
|
|
131
130
|
*/
|
|
132
|
-
getSchema: (api: string,
|
|
131
|
+
getSchema: (api: string, project?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
133
132
|
/**
|
|
134
133
|
* List all available schemas
|
|
135
134
|
* @summary List schemas
|
|
136
135
|
* @param {string} [project] Project unique identifier
|
|
136
|
+
* @param {string} [search] Search term used to filter results by name or identifier
|
|
137
137
|
* @param {*} [options] Override http request option.
|
|
138
138
|
* @throws {RequiredError}
|
|
139
139
|
*/
|
|
140
|
-
listSchemas: (project?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
140
|
+
listSchemas: (project?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
141
141
|
};
|
|
142
142
|
/**
|
|
143
143
|
* SchemasApi - functional programming interface
|
|
@@ -148,20 +148,20 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
|
|
|
148
148
|
* Get an API schema
|
|
149
149
|
* @summary Get schema
|
|
150
150
|
* @param {string} api API name
|
|
151
|
-
* @param {string} [search] Search term used to filter results by name or identifier
|
|
152
151
|
* @param {string} [project] Project unique identifier
|
|
153
152
|
* @param {*} [options] Override http request option.
|
|
154
153
|
* @throws {RequiredError}
|
|
155
154
|
*/
|
|
156
|
-
getSchema(api: string,
|
|
155
|
+
getSchema(api: string, project?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Schema>>;
|
|
157
156
|
/**
|
|
158
157
|
* List all available schemas
|
|
159
158
|
* @summary List schemas
|
|
160
159
|
* @param {string} [project] Project unique identifier
|
|
160
|
+
* @param {string} [search] Search term used to filter results by name or identifier
|
|
161
161
|
* @param {*} [options] Override http request option.
|
|
162
162
|
* @throws {RequiredError}
|
|
163
163
|
*/
|
|
164
|
-
listSchemas(project?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Schemas>>;
|
|
164
|
+
listSchemas(project?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Schemas>>;
|
|
165
165
|
};
|
|
166
166
|
/**
|
|
167
167
|
* SchemasApi - factory interface
|
|
@@ -197,12 +197,6 @@ export interface SchemasApiGetSchemaRequest {
|
|
|
197
197
|
* @memberof SchemasApiGetSchema
|
|
198
198
|
*/
|
|
199
199
|
readonly api: string;
|
|
200
|
-
/**
|
|
201
|
-
* Search term used to filter results by name or identifier
|
|
202
|
-
* @type {string}
|
|
203
|
-
* @memberof SchemasApiGetSchema
|
|
204
|
-
*/
|
|
205
|
-
readonly search?: string;
|
|
206
200
|
/**
|
|
207
201
|
* Project unique identifier
|
|
208
202
|
* @type {string}
|
|
@@ -222,6 +216,12 @@ export interface SchemasApiListSchemasRequest {
|
|
|
222
216
|
* @memberof SchemasApiListSchemas
|
|
223
217
|
*/
|
|
224
218
|
readonly project?: string;
|
|
219
|
+
/**
|
|
220
|
+
* Search term used to filter results by name or identifier
|
|
221
|
+
* @type {string}
|
|
222
|
+
* @memberof SchemasApiListSchemas
|
|
223
|
+
*/
|
|
224
|
+
readonly search?: string;
|
|
225
225
|
}
|
|
226
226
|
/**
|
|
227
227
|
* SchemasApi - object-oriented interface
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Schema API
|
|
6
6
|
* View PodOS API Schemas 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.2.
|
|
8
|
+
* The version of the OpenAPI document: 0.2.1
|
|
9
9
|
* Contact: hello@podos.io
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -39,12 +39,11 @@ const SchemasApiAxiosParamCreator = function (configuration) {
|
|
|
39
39
|
* Get an API schema
|
|
40
40
|
* @summary Get schema
|
|
41
41
|
* @param {string} api API name
|
|
42
|
-
* @param {string} [search] Search term used to filter results by name or identifier
|
|
43
42
|
* @param {string} [project] Project unique identifier
|
|
44
43
|
* @param {*} [options] Override http request option.
|
|
45
44
|
* @throws {RequiredError}
|
|
46
45
|
*/
|
|
47
|
-
getSchema: (api_1,
|
|
46
|
+
getSchema: (api_1, project_1, ...args_1) => __awaiter(this, [api_1, project_1, ...args_1], void 0, function* (api, project, options = {}) {
|
|
48
47
|
// verify required parameter 'api' is not null or undefined
|
|
49
48
|
(0, common_1.assertParamExists)('getSchema', 'api', api);
|
|
50
49
|
const localVarPath = `/{api}`
|
|
@@ -63,9 +62,6 @@ const SchemasApiAxiosParamCreator = function (configuration) {
|
|
|
63
62
|
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
64
63
|
// authentication api-key required
|
|
65
64
|
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
66
|
-
if (search !== undefined) {
|
|
67
|
-
localVarQueryParameter['search'] = search;
|
|
68
|
-
}
|
|
69
65
|
if (project !== undefined) {
|
|
70
66
|
localVarQueryParameter['project'] = project;
|
|
71
67
|
}
|
|
@@ -81,10 +77,11 @@ const SchemasApiAxiosParamCreator = function (configuration) {
|
|
|
81
77
|
* List all available schemas
|
|
82
78
|
* @summary List schemas
|
|
83
79
|
* @param {string} [project] Project unique identifier
|
|
80
|
+
* @param {string} [search] Search term used to filter results by name or identifier
|
|
84
81
|
* @param {*} [options] Override http request option.
|
|
85
82
|
* @throws {RequiredError}
|
|
86
83
|
*/
|
|
87
|
-
listSchemas: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
|
|
84
|
+
listSchemas: (project_1, search_1, ...args_1) => __awaiter(this, [project_1, search_1, ...args_1], void 0, function* (project, search, options = {}) {
|
|
88
85
|
const localVarPath = `/`;
|
|
89
86
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
90
87
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -103,6 +100,9 @@ const SchemasApiAxiosParamCreator = function (configuration) {
|
|
|
103
100
|
if (project !== undefined) {
|
|
104
101
|
localVarQueryParameter['project'] = project;
|
|
105
102
|
}
|
|
103
|
+
if (search !== undefined) {
|
|
104
|
+
localVarQueryParameter['search'] = search;
|
|
105
|
+
}
|
|
106
106
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
107
107
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
108
108
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -125,15 +125,14 @@ const SchemasApiFp = function (configuration) {
|
|
|
125
125
|
* Get an API schema
|
|
126
126
|
* @summary Get schema
|
|
127
127
|
* @param {string} api API name
|
|
128
|
-
* @param {string} [search] Search term used to filter results by name or identifier
|
|
129
128
|
* @param {string} [project] Project unique identifier
|
|
130
129
|
* @param {*} [options] Override http request option.
|
|
131
130
|
* @throws {RequiredError}
|
|
132
131
|
*/
|
|
133
|
-
getSchema(api,
|
|
132
|
+
getSchema(api, project, options) {
|
|
134
133
|
return __awaiter(this, void 0, void 0, function* () {
|
|
135
134
|
var _a, _b, _c;
|
|
136
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSchema(api,
|
|
135
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSchema(api, project, options);
|
|
137
136
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
138
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;
|
|
139
138
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -143,13 +142,14 @@ const SchemasApiFp = function (configuration) {
|
|
|
143
142
|
* List all available schemas
|
|
144
143
|
* @summary List schemas
|
|
145
144
|
* @param {string} [project] Project unique identifier
|
|
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, options) {
|
|
149
|
+
listSchemas(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, options);
|
|
152
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listSchemas(project, search, options);
|
|
153
153
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
154
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;
|
|
155
155
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -173,7 +173,7 @@ const SchemasApiFactory = function (configuration, basePath, axios) {
|
|
|
173
173
|
* @throws {RequiredError}
|
|
174
174
|
*/
|
|
175
175
|
getSchema(requestParameters, options) {
|
|
176
|
-
return localVarFp.getSchema(requestParameters.api, requestParameters.
|
|
176
|
+
return localVarFp.getSchema(requestParameters.api, requestParameters.project, options).then((request) => request(axios, basePath));
|
|
177
177
|
},
|
|
178
178
|
/**
|
|
179
179
|
* List all available schemas
|
|
@@ -183,7 +183,7 @@ const SchemasApiFactory = function (configuration, basePath, axios) {
|
|
|
183
183
|
* @throws {RequiredError}
|
|
184
184
|
*/
|
|
185
185
|
listSchemas(requestParameters = {}, options) {
|
|
186
|
-
return localVarFp.listSchemas(requestParameters.project, options).then((request) => request(axios, basePath));
|
|
186
|
+
return localVarFp.listSchemas(requestParameters.project, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
187
187
|
},
|
|
188
188
|
};
|
|
189
189
|
};
|
|
@@ -204,7 +204,7 @@ class SchemasApi extends base_1.BaseAPI {
|
|
|
204
204
|
* @memberof SchemasApi
|
|
205
205
|
*/
|
|
206
206
|
getSchema(requestParameters, options) {
|
|
207
|
-
return (0, exports.SchemasApiFp)(this.configuration).getSchema(requestParameters.api, requestParameters.
|
|
207
|
+
return (0, exports.SchemasApiFp)(this.configuration).getSchema(requestParameters.api, requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
208
208
|
}
|
|
209
209
|
/**
|
|
210
210
|
* List all available schemas
|
|
@@ -215,7 +215,7 @@ class SchemasApi extends base_1.BaseAPI {
|
|
|
215
215
|
* @memberof SchemasApi
|
|
216
216
|
*/
|
|
217
217
|
listSchemas(requestParameters = {}, options) {
|
|
218
|
-
return (0, exports.SchemasApiFp)(this.configuration).listSchemas(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
218
|
+
return (0, exports.SchemasApiFp)(this.configuration).listSchemas(requestParameters.project, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
|
|
219
219
|
}
|
|
220
220
|
}
|
|
221
221
|
exports.SchemasApi = SchemasApi;
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Schema API
|
|
3
3
|
* View PodOS API Schemas 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.2.
|
|
5
|
+
* The version of the OpenAPI document: 0.2.1
|
|
6
6
|
* Contact: hello@podos.io
|
|
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 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.2.
|
|
8
|
+
* The version of the OpenAPI document: 0.2.1
|
|
9
9
|
* Contact: hello@podos.io
|
|
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 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.2.
|
|
5
|
+
* The version of the OpenAPI document: 0.2.1
|
|
6
6
|
* Contact: hello@podos.io
|
|
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 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.2.
|
|
8
|
+
* The version of the OpenAPI document: 0.2.1
|
|
9
9
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
3
3
|
* View PodOS API Schemas 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.2.
|
|
5
|
+
* The version of the OpenAPI document: 0.2.1
|
|
6
6
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
6
6
|
* View PodOS API Schemas 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.2.
|
|
8
|
+
* The version of the OpenAPI document: 0.2.1
|
|
9
9
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
3
3
|
* View PodOS API Schemas 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.2.
|
|
5
|
+
* The version of the OpenAPI document: 0.2.1
|
|
6
6
|
* Contact: hello@podos.io
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -124,20 +124,20 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
|
|
|
124
124
|
* Get an API schema
|
|
125
125
|
* @summary Get schema
|
|
126
126
|
* @param {string} api API name
|
|
127
|
-
* @param {string} [search] Search term used to filter results by name or identifier
|
|
128
127
|
* @param {string} [project] Project unique identifier
|
|
129
128
|
* @param {*} [options] Override http request option.
|
|
130
129
|
* @throws {RequiredError}
|
|
131
130
|
*/
|
|
132
|
-
getSchema: (api: string,
|
|
131
|
+
getSchema: (api: string, project?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
133
132
|
/**
|
|
134
133
|
* List all available schemas
|
|
135
134
|
* @summary List schemas
|
|
136
135
|
* @param {string} [project] Project unique identifier
|
|
136
|
+
* @param {string} [search] Search term used to filter results by name or identifier
|
|
137
137
|
* @param {*} [options] Override http request option.
|
|
138
138
|
* @throws {RequiredError}
|
|
139
139
|
*/
|
|
140
|
-
listSchemas: (project?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
140
|
+
listSchemas: (project?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
141
141
|
};
|
|
142
142
|
/**
|
|
143
143
|
* SchemasApi - functional programming interface
|
|
@@ -148,20 +148,20 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
|
|
|
148
148
|
* Get an API schema
|
|
149
149
|
* @summary Get schema
|
|
150
150
|
* @param {string} api API name
|
|
151
|
-
* @param {string} [search] Search term used to filter results by name or identifier
|
|
152
151
|
* @param {string} [project] Project unique identifier
|
|
153
152
|
* @param {*} [options] Override http request option.
|
|
154
153
|
* @throws {RequiredError}
|
|
155
154
|
*/
|
|
156
|
-
getSchema(api: string,
|
|
155
|
+
getSchema(api: string, project?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Schema>>;
|
|
157
156
|
/**
|
|
158
157
|
* List all available schemas
|
|
159
158
|
* @summary List schemas
|
|
160
159
|
* @param {string} [project] Project unique identifier
|
|
160
|
+
* @param {string} [search] Search term used to filter results by name or identifier
|
|
161
161
|
* @param {*} [options] Override http request option.
|
|
162
162
|
* @throws {RequiredError}
|
|
163
163
|
*/
|
|
164
|
-
listSchemas(project?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Schemas>>;
|
|
164
|
+
listSchemas(project?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Schemas>>;
|
|
165
165
|
};
|
|
166
166
|
/**
|
|
167
167
|
* SchemasApi - factory interface
|
|
@@ -197,12 +197,6 @@ export interface SchemasApiGetSchemaRequest {
|
|
|
197
197
|
* @memberof SchemasApiGetSchema
|
|
198
198
|
*/
|
|
199
199
|
readonly api: string;
|
|
200
|
-
/**
|
|
201
|
-
* Search term used to filter results by name or identifier
|
|
202
|
-
* @type {string}
|
|
203
|
-
* @memberof SchemasApiGetSchema
|
|
204
|
-
*/
|
|
205
|
-
readonly search?: string;
|
|
206
200
|
/**
|
|
207
201
|
* Project unique identifier
|
|
208
202
|
* @type {string}
|
|
@@ -222,6 +216,12 @@ export interface SchemasApiListSchemasRequest {
|
|
|
222
216
|
* @memberof SchemasApiListSchemas
|
|
223
217
|
*/
|
|
224
218
|
readonly project?: string;
|
|
219
|
+
/**
|
|
220
|
+
* Search term used to filter results by name or identifier
|
|
221
|
+
* @type {string}
|
|
222
|
+
* @memberof SchemasApiListSchemas
|
|
223
|
+
*/
|
|
224
|
+
readonly search?: string;
|
|
225
225
|
}
|
|
226
226
|
/**
|
|
227
227
|
* SchemasApi - object-oriented interface
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Schema API
|
|
5
5
|
* View PodOS API Schemas 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.2.
|
|
7
|
+
* The version of the OpenAPI document: 0.2.1
|
|
8
8
|
* Contact: hello@podos.io
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -36,12 +36,11 @@ export const SchemasApiAxiosParamCreator = function (configuration) {
|
|
|
36
36
|
* Get an API schema
|
|
37
37
|
* @summary Get schema
|
|
38
38
|
* @param {string} api API name
|
|
39
|
-
* @param {string} [search] Search term used to filter results by name or identifier
|
|
40
39
|
* @param {string} [project] Project unique identifier
|
|
41
40
|
* @param {*} [options] Override http request option.
|
|
42
41
|
* @throws {RequiredError}
|
|
43
42
|
*/
|
|
44
|
-
getSchema: (api_1,
|
|
43
|
+
getSchema: (api_1, project_1, ...args_1) => __awaiter(this, [api_1, project_1, ...args_1], void 0, function* (api, project, options = {}) {
|
|
45
44
|
// verify required parameter 'api' is not null or undefined
|
|
46
45
|
assertParamExists('getSchema', 'api', api);
|
|
47
46
|
const localVarPath = `/{api}`
|
|
@@ -60,9 +59,6 @@ export const SchemasApiAxiosParamCreator = function (configuration) {
|
|
|
60
59
|
yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
61
60
|
// authentication api-key required
|
|
62
61
|
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
63
|
-
if (search !== undefined) {
|
|
64
|
-
localVarQueryParameter['search'] = search;
|
|
65
|
-
}
|
|
66
62
|
if (project !== undefined) {
|
|
67
63
|
localVarQueryParameter['project'] = project;
|
|
68
64
|
}
|
|
@@ -78,10 +74,11 @@ export const SchemasApiAxiosParamCreator = function (configuration) {
|
|
|
78
74
|
* List all available schemas
|
|
79
75
|
* @summary List schemas
|
|
80
76
|
* @param {string} [project] Project unique identifier
|
|
77
|
+
* @param {string} [search] Search term used to filter results by name or identifier
|
|
81
78
|
* @param {*} [options] Override http request option.
|
|
82
79
|
* @throws {RequiredError}
|
|
83
80
|
*/
|
|
84
|
-
listSchemas: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
|
|
81
|
+
listSchemas: (project_1, search_1, ...args_1) => __awaiter(this, [project_1, search_1, ...args_1], void 0, function* (project, search, options = {}) {
|
|
85
82
|
const localVarPath = `/`;
|
|
86
83
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
87
84
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -100,6 +97,9 @@ export const SchemasApiAxiosParamCreator = function (configuration) {
|
|
|
100
97
|
if (project !== undefined) {
|
|
101
98
|
localVarQueryParameter['project'] = project;
|
|
102
99
|
}
|
|
100
|
+
if (search !== undefined) {
|
|
101
|
+
localVarQueryParameter['search'] = search;
|
|
102
|
+
}
|
|
103
103
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
104
104
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
105
105
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -121,15 +121,14 @@ export const SchemasApiFp = function (configuration) {
|
|
|
121
121
|
* Get an API schema
|
|
122
122
|
* @summary Get schema
|
|
123
123
|
* @param {string} api API name
|
|
124
|
-
* @param {string} [search] Search term used to filter results by name or identifier
|
|
125
124
|
* @param {string} [project] Project unique identifier
|
|
126
125
|
* @param {*} [options] Override http request option.
|
|
127
126
|
* @throws {RequiredError}
|
|
128
127
|
*/
|
|
129
|
-
getSchema(api,
|
|
128
|
+
getSchema(api, project, options) {
|
|
130
129
|
return __awaiter(this, void 0, void 0, function* () {
|
|
131
130
|
var _a, _b, _c;
|
|
132
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSchema(api,
|
|
131
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSchema(api, project, options);
|
|
133
132
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
134
133
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SchemasApi.getSchema']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
135
134
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -139,13 +138,14 @@ export const SchemasApiFp = function (configuration) {
|
|
|
139
138
|
* List all available schemas
|
|
140
139
|
* @summary List schemas
|
|
141
140
|
* @param {string} [project] Project unique identifier
|
|
141
|
+
* @param {string} [search] Search term used to filter results by name or identifier
|
|
142
142
|
* @param {*} [options] Override http request option.
|
|
143
143
|
* @throws {RequiredError}
|
|
144
144
|
*/
|
|
145
|
-
listSchemas(project, options) {
|
|
145
|
+
listSchemas(project, search, options) {
|
|
146
146
|
return __awaiter(this, void 0, void 0, function* () {
|
|
147
147
|
var _a, _b, _c;
|
|
148
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listSchemas(project, options);
|
|
148
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listSchemas(project, search, options);
|
|
149
149
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
150
150
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SchemasApi.listSchemas']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
151
151
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -168,7 +168,7 @@ export const SchemasApiFactory = function (configuration, basePath, axios) {
|
|
|
168
168
|
* @throws {RequiredError}
|
|
169
169
|
*/
|
|
170
170
|
getSchema(requestParameters, options) {
|
|
171
|
-
return localVarFp.getSchema(requestParameters.api, requestParameters.
|
|
171
|
+
return localVarFp.getSchema(requestParameters.api, requestParameters.project, options).then((request) => request(axios, basePath));
|
|
172
172
|
},
|
|
173
173
|
/**
|
|
174
174
|
* List all available schemas
|
|
@@ -178,7 +178,7 @@ export const SchemasApiFactory = function (configuration, basePath, axios) {
|
|
|
178
178
|
* @throws {RequiredError}
|
|
179
179
|
*/
|
|
180
180
|
listSchemas(requestParameters = {}, options) {
|
|
181
|
-
return localVarFp.listSchemas(requestParameters.project, options).then((request) => request(axios, basePath));
|
|
181
|
+
return localVarFp.listSchemas(requestParameters.project, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
182
182
|
},
|
|
183
183
|
};
|
|
184
184
|
};
|
|
@@ -198,7 +198,7 @@ export class SchemasApi extends BaseAPI {
|
|
|
198
198
|
* @memberof SchemasApi
|
|
199
199
|
*/
|
|
200
200
|
getSchema(requestParameters, options) {
|
|
201
|
-
return SchemasApiFp(this.configuration).getSchema(requestParameters.api, requestParameters.
|
|
201
|
+
return SchemasApiFp(this.configuration).getSchema(requestParameters.api, requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
202
202
|
}
|
|
203
203
|
/**
|
|
204
204
|
* List all available schemas
|
|
@@ -209,6 +209,6 @@ export class SchemasApi extends BaseAPI {
|
|
|
209
209
|
* @memberof SchemasApi
|
|
210
210
|
*/
|
|
211
211
|
listSchemas(requestParameters = {}, options) {
|
|
212
|
-
return SchemasApiFp(this.configuration).listSchemas(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
212
|
+
return SchemasApiFp(this.configuration).listSchemas(requestParameters.project, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
|
|
213
213
|
}
|
|
214
214
|
}
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Schema API
|
|
3
3
|
* View PodOS API Schemas 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.2.
|
|
5
|
+
* The version of the OpenAPI document: 0.2.1
|
|
6
6
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
5
5
|
* View PodOS API Schemas 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.2.
|
|
7
|
+
* The version of the OpenAPI document: 0.2.1
|
|
8
8
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
3
3
|
* View PodOS API Schemas 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.2.
|
|
5
|
+
* The version of the OpenAPI document: 0.2.1
|
|
6
6
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
5
5
|
* View PodOS API Schemas 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.2.
|
|
7
|
+
* The version of the OpenAPI document: 0.2.1
|
|
8
8
|
* Contact: hello@podos.io
|
|
9
9
|
*
|
|
10
10
|
* 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 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.2.
|
|
5
|
+
* The version of the OpenAPI document: 0.2.1
|
|
6
6
|
* Contact: hello@podos.io
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Schema API
|
|
5
5
|
* View PodOS API Schemas 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.2.
|
|
7
|
+
* The version of the OpenAPI document: 0.2.1
|
|
8
8
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
3
3
|
* View PodOS API Schemas 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.2.
|
|
5
|
+
* The version of the OpenAPI document: 0.2.1
|
|
6
6
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
5
5
|
* View PodOS API Schemas 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.2.
|
|
7
|
+
* The version of the OpenAPI document: 0.2.1
|
|
8
8
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
3
3
|
* View PodOS API Schemas 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.2.
|
|
5
|
+
* The version of the OpenAPI document: 0.2.1
|
|
6
6
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
6
6
|
* View PodOS API Schemas 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.2.
|
|
8
|
+
* The version of the OpenAPI document: 0.2.1
|
|
9
9
|
* Contact: hello@podos.io
|
|
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
|
* Schema API
|
|
5
5
|
* View PodOS API Schemas 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.2.
|
|
7
|
+
* The version of the OpenAPI document: 0.2.1
|
|
8
8
|
* Contact: hello@podos.io
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|