@loopstack/hub-client 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +12 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +46 -0
- package/api.ts +2201 -0
- package/base.ts +86 -0
- package/common.ts +150 -0
- package/configuration.ts +116 -0
- package/dist/api.d.ts +1360 -0
- package/dist/api.js +1436 -0
- package/dist/base.d.ts +66 -0
- package/dist/base.js +65 -0
- package/dist/common.d.ts +65 -0
- package/dist/common.js +161 -0
- package/dist/configuration.d.ts +91 -0
- package/dist/configuration.js +44 -0
- package/dist/esm/api.d.ts +1360 -0
- package/dist/esm/api.js +1417 -0
- package/dist/esm/base.d.ts +66 -0
- package/dist/esm/base.js +60 -0
- package/dist/esm/common.d.ts +65 -0
- package/dist/esm/common.js +149 -0
- package/dist/esm/configuration.d.ts +91 -0
- package/dist/esm/configuration.js +40 -0
- package/dist/esm/index.d.ts +13 -0
- package/dist/esm/index.js +15 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +31 -0
- package/git_push.sh +57 -0
- package/index.ts +18 -0
- package/package.json +33 -0
- package/tsconfig.esm.json +7 -0
- package/tsconfig.json +18 -0
package/dist/api.d.ts
ADDED
|
@@ -0,0 +1,1360 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Loopstack Hub
|
|
3
|
+
* Loopstack Hub Documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Configuration } from './configuration';
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
|
+
import type { RequestArgs } from './base';
|
|
15
|
+
import { BaseAPI } from './base';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface PaginatedDto
|
|
20
|
+
*/
|
|
21
|
+
export interface PaginatedDto {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {Array<object>}
|
|
25
|
+
* @memberof PaginatedDto
|
|
26
|
+
*/
|
|
27
|
+
'data': Array<object>;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {number}
|
|
31
|
+
* @memberof PaginatedDto
|
|
32
|
+
*/
|
|
33
|
+
'total': number;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {number}
|
|
37
|
+
* @memberof PaginatedDto
|
|
38
|
+
*/
|
|
39
|
+
'page': number;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {number}
|
|
43
|
+
* @memberof PaginatedDto
|
|
44
|
+
*/
|
|
45
|
+
'limit': number;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @export
|
|
50
|
+
* @interface WorkerControllerBatchDeleteWorkers200Response
|
|
51
|
+
*/
|
|
52
|
+
export interface WorkerControllerBatchDeleteWorkers200Response {
|
|
53
|
+
/**
|
|
54
|
+
* Successfully deleted worker IDs
|
|
55
|
+
* @type {Array<string>}
|
|
56
|
+
* @memberof WorkerControllerBatchDeleteWorkers200Response
|
|
57
|
+
*/
|
|
58
|
+
'deleted'?: Array<string>;
|
|
59
|
+
/**
|
|
60
|
+
* Failed deletions with error details
|
|
61
|
+
* @type {Array<WorkerControllerBatchDeleteWorkers200ResponseFailedInner>}
|
|
62
|
+
* @memberof WorkerControllerBatchDeleteWorkers200Response
|
|
63
|
+
*/
|
|
64
|
+
'failed'?: Array<WorkerControllerBatchDeleteWorkers200ResponseFailedInner>;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @export
|
|
69
|
+
* @interface WorkerControllerBatchDeleteWorkers200ResponseFailedInner
|
|
70
|
+
*/
|
|
71
|
+
export interface WorkerControllerBatchDeleteWorkers200ResponseFailedInner {
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof WorkerControllerBatchDeleteWorkers200ResponseFailedInner
|
|
76
|
+
*/
|
|
77
|
+
'id'?: string;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof WorkerControllerBatchDeleteWorkers200ResponseFailedInner
|
|
82
|
+
*/
|
|
83
|
+
'error'?: string;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @export
|
|
88
|
+
* @interface WorkerControllerBatchDeleteWorkersRequest
|
|
89
|
+
*/
|
|
90
|
+
export interface WorkerControllerBatchDeleteWorkersRequest {
|
|
91
|
+
/**
|
|
92
|
+
* Array of worker IDs to delete
|
|
93
|
+
* @type {Array<string>}
|
|
94
|
+
* @memberof WorkerControllerBatchDeleteWorkersRequest
|
|
95
|
+
*/
|
|
96
|
+
'ids': Array<string>;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @export
|
|
101
|
+
* @interface WorkerControllerGetWorkers200Response
|
|
102
|
+
*/
|
|
103
|
+
export interface WorkerControllerGetWorkers200Response {
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {Array<WorkerItemDto>}
|
|
107
|
+
* @memberof WorkerControllerGetWorkers200Response
|
|
108
|
+
*/
|
|
109
|
+
'data': Array<WorkerItemDto>;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {number}
|
|
113
|
+
* @memberof WorkerControllerGetWorkers200Response
|
|
114
|
+
*/
|
|
115
|
+
'total': number;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {number}
|
|
119
|
+
* @memberof WorkerControllerGetWorkers200Response
|
|
120
|
+
*/
|
|
121
|
+
'page': number;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {number}
|
|
125
|
+
* @memberof WorkerControllerGetWorkers200Response
|
|
126
|
+
*/
|
|
127
|
+
'limit': number;
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @export
|
|
132
|
+
* @interface WorkerCreateDto
|
|
133
|
+
*/
|
|
134
|
+
export interface WorkerCreateDto {
|
|
135
|
+
/**
|
|
136
|
+
* URL of the worker
|
|
137
|
+
* @type {string}
|
|
138
|
+
* @memberof WorkerCreateDto
|
|
139
|
+
*/
|
|
140
|
+
'url': string;
|
|
141
|
+
/**
|
|
142
|
+
* Name of the worker
|
|
143
|
+
* @type {string}
|
|
144
|
+
* @memberof WorkerCreateDto
|
|
145
|
+
*/
|
|
146
|
+
'name': string;
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
*
|
|
150
|
+
* @export
|
|
151
|
+
* @interface WorkerDto
|
|
152
|
+
*/
|
|
153
|
+
export interface WorkerDto {
|
|
154
|
+
/**
|
|
155
|
+
* Unique identifier of the worker
|
|
156
|
+
* @type {string}
|
|
157
|
+
* @memberof WorkerDto
|
|
158
|
+
*/
|
|
159
|
+
'id': string;
|
|
160
|
+
/**
|
|
161
|
+
* URL of the worker
|
|
162
|
+
* @type {string}
|
|
163
|
+
* @memberof WorkerDto
|
|
164
|
+
*/
|
|
165
|
+
'url': string;
|
|
166
|
+
/**
|
|
167
|
+
* Name of the worker
|
|
168
|
+
* @type {string}
|
|
169
|
+
* @memberof WorkerDto
|
|
170
|
+
*/
|
|
171
|
+
'name': string;
|
|
172
|
+
/**
|
|
173
|
+
* Service Token
|
|
174
|
+
* @type {string}
|
|
175
|
+
* @memberof WorkerDto
|
|
176
|
+
*/
|
|
177
|
+
'serviceToken': string;
|
|
178
|
+
/**
|
|
179
|
+
* Setup Complete Flab
|
|
180
|
+
* @type {boolean}
|
|
181
|
+
* @memberof WorkerDto
|
|
182
|
+
*/
|
|
183
|
+
'isSetupComplete': boolean;
|
|
184
|
+
/**
|
|
185
|
+
* Timestamp when the worker was created
|
|
186
|
+
* @type {string}
|
|
187
|
+
* @memberof WorkerDto
|
|
188
|
+
*/
|
|
189
|
+
'createdAt': string;
|
|
190
|
+
/**
|
|
191
|
+
* Timestamp when the worker was last updated
|
|
192
|
+
* @type {string}
|
|
193
|
+
* @memberof WorkerDto
|
|
194
|
+
*/
|
|
195
|
+
'updatedAt': string;
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
*
|
|
199
|
+
* @export
|
|
200
|
+
* @interface WorkerFilterDto
|
|
201
|
+
*/
|
|
202
|
+
export interface WorkerFilterDto {
|
|
203
|
+
/**
|
|
204
|
+
* Filter by worker name
|
|
205
|
+
* @type {string}
|
|
206
|
+
* @memberof WorkerFilterDto
|
|
207
|
+
*/
|
|
208
|
+
'name'?: string;
|
|
209
|
+
/**
|
|
210
|
+
* Filter by worker URL
|
|
211
|
+
* @type {string}
|
|
212
|
+
* @memberof WorkerFilterDto
|
|
213
|
+
*/
|
|
214
|
+
'url'?: string;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
*
|
|
218
|
+
* @export
|
|
219
|
+
* @interface WorkerItemDto
|
|
220
|
+
*/
|
|
221
|
+
export interface WorkerItemDto {
|
|
222
|
+
/**
|
|
223
|
+
* Unique identifier of the worker
|
|
224
|
+
* @type {string}
|
|
225
|
+
* @memberof WorkerItemDto
|
|
226
|
+
*/
|
|
227
|
+
'id': string;
|
|
228
|
+
/**
|
|
229
|
+
* URL of the worker
|
|
230
|
+
* @type {string}
|
|
231
|
+
* @memberof WorkerItemDto
|
|
232
|
+
*/
|
|
233
|
+
'url': string;
|
|
234
|
+
/**
|
|
235
|
+
* Name of the worker
|
|
236
|
+
* @type {string}
|
|
237
|
+
* @memberof WorkerItemDto
|
|
238
|
+
*/
|
|
239
|
+
'name': string;
|
|
240
|
+
/**
|
|
241
|
+
* Setup Complete Flab
|
|
242
|
+
* @type {boolean}
|
|
243
|
+
* @memberof WorkerItemDto
|
|
244
|
+
*/
|
|
245
|
+
'isSetupComplete': boolean;
|
|
246
|
+
/**
|
|
247
|
+
* Timestamp when the worker was created
|
|
248
|
+
* @type {string}
|
|
249
|
+
* @memberof WorkerItemDto
|
|
250
|
+
*/
|
|
251
|
+
'createdAt': string;
|
|
252
|
+
/**
|
|
253
|
+
* Timestamp when the worker was last updated
|
|
254
|
+
* @type {string}
|
|
255
|
+
* @memberof WorkerItemDto
|
|
256
|
+
*/
|
|
257
|
+
'updatedAt': string;
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
*
|
|
261
|
+
* @export
|
|
262
|
+
* @interface WorkerSortByDto
|
|
263
|
+
*/
|
|
264
|
+
export interface WorkerSortByDto {
|
|
265
|
+
/**
|
|
266
|
+
*
|
|
267
|
+
* @type {string}
|
|
268
|
+
* @memberof WorkerSortByDto
|
|
269
|
+
*/
|
|
270
|
+
'field': WorkerSortByDtoFieldEnum;
|
|
271
|
+
/**
|
|
272
|
+
*
|
|
273
|
+
* @type {string}
|
|
274
|
+
* @memberof WorkerSortByDto
|
|
275
|
+
*/
|
|
276
|
+
'order': WorkerSortByDtoOrderEnum;
|
|
277
|
+
}
|
|
278
|
+
export declare const WorkerSortByDtoFieldEnum: {
|
|
279
|
+
readonly Id: "id";
|
|
280
|
+
readonly Url: "url";
|
|
281
|
+
readonly Name: "name";
|
|
282
|
+
readonly ServiceToken: "serviceToken";
|
|
283
|
+
readonly IsSetupComplete: "isSetupComplete";
|
|
284
|
+
readonly CreatedAt: "createdAt";
|
|
285
|
+
readonly UpdatedAt: "updatedAt";
|
|
286
|
+
readonly UserId: "userId";
|
|
287
|
+
};
|
|
288
|
+
export type WorkerSortByDtoFieldEnum = typeof WorkerSortByDtoFieldEnum[keyof typeof WorkerSortByDtoFieldEnum];
|
|
289
|
+
export declare const WorkerSortByDtoOrderEnum: {
|
|
290
|
+
readonly Asc: "ASC";
|
|
291
|
+
readonly Desc: "DESC";
|
|
292
|
+
};
|
|
293
|
+
export type WorkerSortByDtoOrderEnum = typeof WorkerSortByDtoOrderEnum[keyof typeof WorkerSortByDtoOrderEnum];
|
|
294
|
+
/**
|
|
295
|
+
*
|
|
296
|
+
* @export
|
|
297
|
+
* @interface WorkerUpdateDto
|
|
298
|
+
*/
|
|
299
|
+
export interface WorkerUpdateDto {
|
|
300
|
+
/**
|
|
301
|
+
* URL of the worker
|
|
302
|
+
* @type {string}
|
|
303
|
+
* @memberof WorkerUpdateDto
|
|
304
|
+
*/
|
|
305
|
+
'url'?: string;
|
|
306
|
+
/**
|
|
307
|
+
* Name of the worker
|
|
308
|
+
* @type {string}
|
|
309
|
+
* @memberof WorkerUpdateDto
|
|
310
|
+
*/
|
|
311
|
+
'name'?: string;
|
|
312
|
+
}
|
|
313
|
+
/**
|
|
314
|
+
* ApiV1AuthApi - axios parameter creator
|
|
315
|
+
* @export
|
|
316
|
+
*/
|
|
317
|
+
export declare const ApiV1AuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
318
|
+
/**
|
|
319
|
+
*
|
|
320
|
+
* @param {*} [options] Override http request option.
|
|
321
|
+
* @throws {RequiredError}
|
|
322
|
+
*/
|
|
323
|
+
authControllerDevLogin: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
324
|
+
/**
|
|
325
|
+
*
|
|
326
|
+
* @param {*} [options] Override http request option.
|
|
327
|
+
* @throws {RequiredError}
|
|
328
|
+
*/
|
|
329
|
+
authControllerGetAuthStrategies: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
330
|
+
/**
|
|
331
|
+
*
|
|
332
|
+
* @param {*} [options] Override http request option.
|
|
333
|
+
* @throws {RequiredError}
|
|
334
|
+
*/
|
|
335
|
+
authControllerGetProviders: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
336
|
+
/**
|
|
337
|
+
*
|
|
338
|
+
* @param {*} [options] Override http request option.
|
|
339
|
+
* @throws {RequiredError}
|
|
340
|
+
*/
|
|
341
|
+
authControllerGoogleAuth: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
342
|
+
/**
|
|
343
|
+
*
|
|
344
|
+
* @param {*} [options] Override http request option.
|
|
345
|
+
* @throws {RequiredError}
|
|
346
|
+
*/
|
|
347
|
+
authControllerGoogleCallback: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
348
|
+
/**
|
|
349
|
+
*
|
|
350
|
+
* @param {object} body
|
|
351
|
+
* @param {*} [options] Override http request option.
|
|
352
|
+
* @throws {RequiredError}
|
|
353
|
+
*/
|
|
354
|
+
authControllerLinkProvider: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
355
|
+
/**
|
|
356
|
+
*
|
|
357
|
+
* @param {object} body
|
|
358
|
+
* @param {*} [options] Override http request option.
|
|
359
|
+
* @throws {RequiredError}
|
|
360
|
+
*/
|
|
361
|
+
authControllerLogin: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
362
|
+
/**
|
|
363
|
+
*
|
|
364
|
+
* @param {*} [options] Override http request option.
|
|
365
|
+
* @throws {RequiredError}
|
|
366
|
+
*/
|
|
367
|
+
authControllerLogout: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
368
|
+
/**
|
|
369
|
+
*
|
|
370
|
+
* @param {*} [options] Override http request option.
|
|
371
|
+
* @throws {RequiredError}
|
|
372
|
+
*/
|
|
373
|
+
authControllerMe: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
374
|
+
/**
|
|
375
|
+
*
|
|
376
|
+
* @param {*} [options] Override http request option.
|
|
377
|
+
* @throws {RequiredError}
|
|
378
|
+
*/
|
|
379
|
+
authControllerRefresh: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
380
|
+
/**
|
|
381
|
+
*
|
|
382
|
+
* @param {object} body
|
|
383
|
+
* @param {*} [options] Override http request option.
|
|
384
|
+
* @throws {RequiredError}
|
|
385
|
+
*/
|
|
386
|
+
authControllerRegister: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
387
|
+
};
|
|
388
|
+
/**
|
|
389
|
+
* ApiV1AuthApi - functional programming interface
|
|
390
|
+
* @export
|
|
391
|
+
*/
|
|
392
|
+
export declare const ApiV1AuthApiFp: (configuration?: Configuration) => {
|
|
393
|
+
/**
|
|
394
|
+
*
|
|
395
|
+
* @param {*} [options] Override http request option.
|
|
396
|
+
* @throws {RequiredError}
|
|
397
|
+
*/
|
|
398
|
+
authControllerDevLogin(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
399
|
+
/**
|
|
400
|
+
*
|
|
401
|
+
* @param {*} [options] Override http request option.
|
|
402
|
+
* @throws {RequiredError}
|
|
403
|
+
*/
|
|
404
|
+
authControllerGetAuthStrategies(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
405
|
+
/**
|
|
406
|
+
*
|
|
407
|
+
* @param {*} [options] Override http request option.
|
|
408
|
+
* @throws {RequiredError}
|
|
409
|
+
*/
|
|
410
|
+
authControllerGetProviders(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
411
|
+
/**
|
|
412
|
+
*
|
|
413
|
+
* @param {*} [options] Override http request option.
|
|
414
|
+
* @throws {RequiredError}
|
|
415
|
+
*/
|
|
416
|
+
authControllerGoogleAuth(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
417
|
+
/**
|
|
418
|
+
*
|
|
419
|
+
* @param {*} [options] Override http request option.
|
|
420
|
+
* @throws {RequiredError}
|
|
421
|
+
*/
|
|
422
|
+
authControllerGoogleCallback(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
423
|
+
/**
|
|
424
|
+
*
|
|
425
|
+
* @param {object} body
|
|
426
|
+
* @param {*} [options] Override http request option.
|
|
427
|
+
* @throws {RequiredError}
|
|
428
|
+
*/
|
|
429
|
+
authControllerLinkProvider(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
430
|
+
/**
|
|
431
|
+
*
|
|
432
|
+
* @param {object} body
|
|
433
|
+
* @param {*} [options] Override http request option.
|
|
434
|
+
* @throws {RequiredError}
|
|
435
|
+
*/
|
|
436
|
+
authControllerLogin(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
437
|
+
/**
|
|
438
|
+
*
|
|
439
|
+
* @param {*} [options] Override http request option.
|
|
440
|
+
* @throws {RequiredError}
|
|
441
|
+
*/
|
|
442
|
+
authControllerLogout(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
443
|
+
/**
|
|
444
|
+
*
|
|
445
|
+
* @param {*} [options] Override http request option.
|
|
446
|
+
* @throws {RequiredError}
|
|
447
|
+
*/
|
|
448
|
+
authControllerMe(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
449
|
+
/**
|
|
450
|
+
*
|
|
451
|
+
* @param {*} [options] Override http request option.
|
|
452
|
+
* @throws {RequiredError}
|
|
453
|
+
*/
|
|
454
|
+
authControllerRefresh(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
455
|
+
/**
|
|
456
|
+
*
|
|
457
|
+
* @param {object} body
|
|
458
|
+
* @param {*} [options] Override http request option.
|
|
459
|
+
* @throws {RequiredError}
|
|
460
|
+
*/
|
|
461
|
+
authControllerRegister(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
462
|
+
};
|
|
463
|
+
/**
|
|
464
|
+
* ApiV1AuthApi - factory interface
|
|
465
|
+
* @export
|
|
466
|
+
*/
|
|
467
|
+
export declare const ApiV1AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
468
|
+
/**
|
|
469
|
+
*
|
|
470
|
+
* @param {*} [options] Override http request option.
|
|
471
|
+
* @throws {RequiredError}
|
|
472
|
+
*/
|
|
473
|
+
authControllerDevLogin(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
474
|
+
/**
|
|
475
|
+
*
|
|
476
|
+
* @param {*} [options] Override http request option.
|
|
477
|
+
* @throws {RequiredError}
|
|
478
|
+
*/
|
|
479
|
+
authControllerGetAuthStrategies(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
480
|
+
/**
|
|
481
|
+
*
|
|
482
|
+
* @param {*} [options] Override http request option.
|
|
483
|
+
* @throws {RequiredError}
|
|
484
|
+
*/
|
|
485
|
+
authControllerGetProviders(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
486
|
+
/**
|
|
487
|
+
*
|
|
488
|
+
* @param {*} [options] Override http request option.
|
|
489
|
+
* @throws {RequiredError}
|
|
490
|
+
*/
|
|
491
|
+
authControllerGoogleAuth(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
492
|
+
/**
|
|
493
|
+
*
|
|
494
|
+
* @param {*} [options] Override http request option.
|
|
495
|
+
* @throws {RequiredError}
|
|
496
|
+
*/
|
|
497
|
+
authControllerGoogleCallback(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
498
|
+
/**
|
|
499
|
+
*
|
|
500
|
+
* @param {ApiV1AuthApiAuthControllerLinkProviderRequest} requestParameters Request parameters.
|
|
501
|
+
* @param {*} [options] Override http request option.
|
|
502
|
+
* @throws {RequiredError}
|
|
503
|
+
*/
|
|
504
|
+
authControllerLinkProvider(requestParameters: ApiV1AuthApiAuthControllerLinkProviderRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
505
|
+
/**
|
|
506
|
+
*
|
|
507
|
+
* @param {ApiV1AuthApiAuthControllerLoginRequest} requestParameters Request parameters.
|
|
508
|
+
* @param {*} [options] Override http request option.
|
|
509
|
+
* @throws {RequiredError}
|
|
510
|
+
*/
|
|
511
|
+
authControllerLogin(requestParameters: ApiV1AuthApiAuthControllerLoginRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
512
|
+
/**
|
|
513
|
+
*
|
|
514
|
+
* @param {*} [options] Override http request option.
|
|
515
|
+
* @throws {RequiredError}
|
|
516
|
+
*/
|
|
517
|
+
authControllerLogout(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
518
|
+
/**
|
|
519
|
+
*
|
|
520
|
+
* @param {*} [options] Override http request option.
|
|
521
|
+
* @throws {RequiredError}
|
|
522
|
+
*/
|
|
523
|
+
authControllerMe(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
524
|
+
/**
|
|
525
|
+
*
|
|
526
|
+
* @param {*} [options] Override http request option.
|
|
527
|
+
* @throws {RequiredError}
|
|
528
|
+
*/
|
|
529
|
+
authControllerRefresh(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
530
|
+
/**
|
|
531
|
+
*
|
|
532
|
+
* @param {ApiV1AuthApiAuthControllerRegisterRequest} requestParameters Request parameters.
|
|
533
|
+
* @param {*} [options] Override http request option.
|
|
534
|
+
* @throws {RequiredError}
|
|
535
|
+
*/
|
|
536
|
+
authControllerRegister(requestParameters: ApiV1AuthApiAuthControllerRegisterRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
537
|
+
};
|
|
538
|
+
/**
|
|
539
|
+
* ApiV1AuthApi - interface
|
|
540
|
+
* @export
|
|
541
|
+
* @interface ApiV1AuthApi
|
|
542
|
+
*/
|
|
543
|
+
export interface ApiV1AuthApiInterface {
|
|
544
|
+
/**
|
|
545
|
+
*
|
|
546
|
+
* @param {*} [options] Override http request option.
|
|
547
|
+
* @throws {RequiredError}
|
|
548
|
+
* @memberof ApiV1AuthApiInterface
|
|
549
|
+
*/
|
|
550
|
+
authControllerDevLogin(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
551
|
+
/**
|
|
552
|
+
*
|
|
553
|
+
* @param {*} [options] Override http request option.
|
|
554
|
+
* @throws {RequiredError}
|
|
555
|
+
* @memberof ApiV1AuthApiInterface
|
|
556
|
+
*/
|
|
557
|
+
authControllerGetAuthStrategies(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
558
|
+
/**
|
|
559
|
+
*
|
|
560
|
+
* @param {*} [options] Override http request option.
|
|
561
|
+
* @throws {RequiredError}
|
|
562
|
+
* @memberof ApiV1AuthApiInterface
|
|
563
|
+
*/
|
|
564
|
+
authControllerGetProviders(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
565
|
+
/**
|
|
566
|
+
*
|
|
567
|
+
* @param {*} [options] Override http request option.
|
|
568
|
+
* @throws {RequiredError}
|
|
569
|
+
* @memberof ApiV1AuthApiInterface
|
|
570
|
+
*/
|
|
571
|
+
authControllerGoogleAuth(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
572
|
+
/**
|
|
573
|
+
*
|
|
574
|
+
* @param {*} [options] Override http request option.
|
|
575
|
+
* @throws {RequiredError}
|
|
576
|
+
* @memberof ApiV1AuthApiInterface
|
|
577
|
+
*/
|
|
578
|
+
authControllerGoogleCallback(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
579
|
+
/**
|
|
580
|
+
*
|
|
581
|
+
* @param {ApiV1AuthApiAuthControllerLinkProviderRequest} requestParameters Request parameters.
|
|
582
|
+
* @param {*} [options] Override http request option.
|
|
583
|
+
* @throws {RequiredError}
|
|
584
|
+
* @memberof ApiV1AuthApiInterface
|
|
585
|
+
*/
|
|
586
|
+
authControllerLinkProvider(requestParameters: ApiV1AuthApiAuthControllerLinkProviderRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
587
|
+
/**
|
|
588
|
+
*
|
|
589
|
+
* @param {ApiV1AuthApiAuthControllerLoginRequest} requestParameters Request parameters.
|
|
590
|
+
* @param {*} [options] Override http request option.
|
|
591
|
+
* @throws {RequiredError}
|
|
592
|
+
* @memberof ApiV1AuthApiInterface
|
|
593
|
+
*/
|
|
594
|
+
authControllerLogin(requestParameters: ApiV1AuthApiAuthControllerLoginRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
595
|
+
/**
|
|
596
|
+
*
|
|
597
|
+
* @param {*} [options] Override http request option.
|
|
598
|
+
* @throws {RequiredError}
|
|
599
|
+
* @memberof ApiV1AuthApiInterface
|
|
600
|
+
*/
|
|
601
|
+
authControllerLogout(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
602
|
+
/**
|
|
603
|
+
*
|
|
604
|
+
* @param {*} [options] Override http request option.
|
|
605
|
+
* @throws {RequiredError}
|
|
606
|
+
* @memberof ApiV1AuthApiInterface
|
|
607
|
+
*/
|
|
608
|
+
authControllerMe(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
609
|
+
/**
|
|
610
|
+
*
|
|
611
|
+
* @param {*} [options] Override http request option.
|
|
612
|
+
* @throws {RequiredError}
|
|
613
|
+
* @memberof ApiV1AuthApiInterface
|
|
614
|
+
*/
|
|
615
|
+
authControllerRefresh(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
616
|
+
/**
|
|
617
|
+
*
|
|
618
|
+
* @param {ApiV1AuthApiAuthControllerRegisterRequest} requestParameters Request parameters.
|
|
619
|
+
* @param {*} [options] Override http request option.
|
|
620
|
+
* @throws {RequiredError}
|
|
621
|
+
* @memberof ApiV1AuthApiInterface
|
|
622
|
+
*/
|
|
623
|
+
authControllerRegister(requestParameters: ApiV1AuthApiAuthControllerRegisterRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
624
|
+
}
|
|
625
|
+
/**
|
|
626
|
+
* Request parameters for authControllerLinkProvider operation in ApiV1AuthApi.
|
|
627
|
+
* @export
|
|
628
|
+
* @interface ApiV1AuthApiAuthControllerLinkProviderRequest
|
|
629
|
+
*/
|
|
630
|
+
export interface ApiV1AuthApiAuthControllerLinkProviderRequest {
|
|
631
|
+
/**
|
|
632
|
+
*
|
|
633
|
+
* @type {object}
|
|
634
|
+
* @memberof ApiV1AuthApiAuthControllerLinkProvider
|
|
635
|
+
*/
|
|
636
|
+
readonly body: object;
|
|
637
|
+
}
|
|
638
|
+
/**
|
|
639
|
+
* Request parameters for authControllerLogin operation in ApiV1AuthApi.
|
|
640
|
+
* @export
|
|
641
|
+
* @interface ApiV1AuthApiAuthControllerLoginRequest
|
|
642
|
+
*/
|
|
643
|
+
export interface ApiV1AuthApiAuthControllerLoginRequest {
|
|
644
|
+
/**
|
|
645
|
+
*
|
|
646
|
+
* @type {object}
|
|
647
|
+
* @memberof ApiV1AuthApiAuthControllerLogin
|
|
648
|
+
*/
|
|
649
|
+
readonly body: object;
|
|
650
|
+
}
|
|
651
|
+
/**
|
|
652
|
+
* Request parameters for authControllerRegister operation in ApiV1AuthApi.
|
|
653
|
+
* @export
|
|
654
|
+
* @interface ApiV1AuthApiAuthControllerRegisterRequest
|
|
655
|
+
*/
|
|
656
|
+
export interface ApiV1AuthApiAuthControllerRegisterRequest {
|
|
657
|
+
/**
|
|
658
|
+
*
|
|
659
|
+
* @type {object}
|
|
660
|
+
* @memberof ApiV1AuthApiAuthControllerRegister
|
|
661
|
+
*/
|
|
662
|
+
readonly body: object;
|
|
663
|
+
}
|
|
664
|
+
/**
|
|
665
|
+
* ApiV1AuthApi - object-oriented interface
|
|
666
|
+
* @export
|
|
667
|
+
* @class ApiV1AuthApi
|
|
668
|
+
* @extends {BaseAPI}
|
|
669
|
+
*/
|
|
670
|
+
export declare class ApiV1AuthApi extends BaseAPI implements ApiV1AuthApiInterface {
|
|
671
|
+
/**
|
|
672
|
+
*
|
|
673
|
+
* @param {*} [options] Override http request option.
|
|
674
|
+
* @throws {RequiredError}
|
|
675
|
+
* @memberof ApiV1AuthApi
|
|
676
|
+
*/
|
|
677
|
+
authControllerDevLogin(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
678
|
+
/**
|
|
679
|
+
*
|
|
680
|
+
* @param {*} [options] Override http request option.
|
|
681
|
+
* @throws {RequiredError}
|
|
682
|
+
* @memberof ApiV1AuthApi
|
|
683
|
+
*/
|
|
684
|
+
authControllerGetAuthStrategies(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
685
|
+
/**
|
|
686
|
+
*
|
|
687
|
+
* @param {*} [options] Override http request option.
|
|
688
|
+
* @throws {RequiredError}
|
|
689
|
+
* @memberof ApiV1AuthApi
|
|
690
|
+
*/
|
|
691
|
+
authControllerGetProviders(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
692
|
+
/**
|
|
693
|
+
*
|
|
694
|
+
* @param {*} [options] Override http request option.
|
|
695
|
+
* @throws {RequiredError}
|
|
696
|
+
* @memberof ApiV1AuthApi
|
|
697
|
+
*/
|
|
698
|
+
authControllerGoogleAuth(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
699
|
+
/**
|
|
700
|
+
*
|
|
701
|
+
* @param {*} [options] Override http request option.
|
|
702
|
+
* @throws {RequiredError}
|
|
703
|
+
* @memberof ApiV1AuthApi
|
|
704
|
+
*/
|
|
705
|
+
authControllerGoogleCallback(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
706
|
+
/**
|
|
707
|
+
*
|
|
708
|
+
* @param {ApiV1AuthApiAuthControllerLinkProviderRequest} requestParameters Request parameters.
|
|
709
|
+
* @param {*} [options] Override http request option.
|
|
710
|
+
* @throws {RequiredError}
|
|
711
|
+
* @memberof ApiV1AuthApi
|
|
712
|
+
*/
|
|
713
|
+
authControllerLinkProvider(requestParameters: ApiV1AuthApiAuthControllerLinkProviderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
714
|
+
/**
|
|
715
|
+
*
|
|
716
|
+
* @param {ApiV1AuthApiAuthControllerLoginRequest} requestParameters Request parameters.
|
|
717
|
+
* @param {*} [options] Override http request option.
|
|
718
|
+
* @throws {RequiredError}
|
|
719
|
+
* @memberof ApiV1AuthApi
|
|
720
|
+
*/
|
|
721
|
+
authControllerLogin(requestParameters: ApiV1AuthApiAuthControllerLoginRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
722
|
+
/**
|
|
723
|
+
*
|
|
724
|
+
* @param {*} [options] Override http request option.
|
|
725
|
+
* @throws {RequiredError}
|
|
726
|
+
* @memberof ApiV1AuthApi
|
|
727
|
+
*/
|
|
728
|
+
authControllerLogout(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
729
|
+
/**
|
|
730
|
+
*
|
|
731
|
+
* @param {*} [options] Override http request option.
|
|
732
|
+
* @throws {RequiredError}
|
|
733
|
+
* @memberof ApiV1AuthApi
|
|
734
|
+
*/
|
|
735
|
+
authControllerMe(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
736
|
+
/**
|
|
737
|
+
*
|
|
738
|
+
* @param {*} [options] Override http request option.
|
|
739
|
+
* @throws {RequiredError}
|
|
740
|
+
* @memberof ApiV1AuthApi
|
|
741
|
+
*/
|
|
742
|
+
authControllerRefresh(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
743
|
+
/**
|
|
744
|
+
*
|
|
745
|
+
* @param {ApiV1AuthApiAuthControllerRegisterRequest} requestParameters Request parameters.
|
|
746
|
+
* @param {*} [options] Override http request option.
|
|
747
|
+
* @throws {RequiredError}
|
|
748
|
+
* @memberof ApiV1AuthApi
|
|
749
|
+
*/
|
|
750
|
+
authControllerRegister(requestParameters: ApiV1AuthApiAuthControllerRegisterRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
751
|
+
}
|
|
752
|
+
/**
|
|
753
|
+
* ApiV1UserApi - axios parameter creator
|
|
754
|
+
* @export
|
|
755
|
+
*/
|
|
756
|
+
export declare const ApiV1UserApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
757
|
+
/**
|
|
758
|
+
*
|
|
759
|
+
* @param {*} [options] Override http request option.
|
|
760
|
+
* @throws {RequiredError}
|
|
761
|
+
*/
|
|
762
|
+
userControllerInfo: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
763
|
+
};
|
|
764
|
+
/**
|
|
765
|
+
* ApiV1UserApi - functional programming interface
|
|
766
|
+
* @export
|
|
767
|
+
*/
|
|
768
|
+
export declare const ApiV1UserApiFp: (configuration?: Configuration) => {
|
|
769
|
+
/**
|
|
770
|
+
*
|
|
771
|
+
* @param {*} [options] Override http request option.
|
|
772
|
+
* @throws {RequiredError}
|
|
773
|
+
*/
|
|
774
|
+
userControllerInfo(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
775
|
+
};
|
|
776
|
+
/**
|
|
777
|
+
* ApiV1UserApi - factory interface
|
|
778
|
+
* @export
|
|
779
|
+
*/
|
|
780
|
+
export declare const ApiV1UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
781
|
+
/**
|
|
782
|
+
*
|
|
783
|
+
* @param {*} [options] Override http request option.
|
|
784
|
+
* @throws {RequiredError}
|
|
785
|
+
*/
|
|
786
|
+
userControllerInfo(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
787
|
+
};
|
|
788
|
+
/**
|
|
789
|
+
* ApiV1UserApi - interface
|
|
790
|
+
* @export
|
|
791
|
+
* @interface ApiV1UserApi
|
|
792
|
+
*/
|
|
793
|
+
export interface ApiV1UserApiInterface {
|
|
794
|
+
/**
|
|
795
|
+
*
|
|
796
|
+
* @param {*} [options] Override http request option.
|
|
797
|
+
* @throws {RequiredError}
|
|
798
|
+
* @memberof ApiV1UserApiInterface
|
|
799
|
+
*/
|
|
800
|
+
userControllerInfo(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
801
|
+
}
|
|
802
|
+
/**
|
|
803
|
+
* ApiV1UserApi - object-oriented interface
|
|
804
|
+
* @export
|
|
805
|
+
* @class ApiV1UserApi
|
|
806
|
+
* @extends {BaseAPI}
|
|
807
|
+
*/
|
|
808
|
+
export declare class ApiV1UserApi extends BaseAPI implements ApiV1UserApiInterface {
|
|
809
|
+
/**
|
|
810
|
+
*
|
|
811
|
+
* @param {*} [options] Override http request option.
|
|
812
|
+
* @throws {RequiredError}
|
|
813
|
+
* @memberof ApiV1UserApi
|
|
814
|
+
*/
|
|
815
|
+
userControllerInfo(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
816
|
+
}
|
|
817
|
+
/**
|
|
818
|
+
* ApiV1WorkersApi - axios parameter creator
|
|
819
|
+
* @export
|
|
820
|
+
*/
|
|
821
|
+
export declare const ApiV1WorkersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
822
|
+
/**
|
|
823
|
+
*
|
|
824
|
+
* @summary Delete multiple workers by IDs
|
|
825
|
+
* @param {WorkerControllerBatchDeleteWorkersRequest} workerControllerBatchDeleteWorkersRequest Array of worker IDs to delete
|
|
826
|
+
* @param {*} [options] Override http request option.
|
|
827
|
+
* @throws {RequiredError}
|
|
828
|
+
*/
|
|
829
|
+
workerControllerBatchDeleteWorkers: (workerControllerBatchDeleteWorkersRequest: WorkerControllerBatchDeleteWorkersRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
830
|
+
/**
|
|
831
|
+
*
|
|
832
|
+
* @summary Create a new worker
|
|
833
|
+
* @param {WorkerCreateDto} workerCreateDto Worker data
|
|
834
|
+
* @param {*} [options] Override http request option.
|
|
835
|
+
* @throws {RequiredError}
|
|
836
|
+
*/
|
|
837
|
+
workerControllerCreateWorker: (workerCreateDto: WorkerCreateDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
838
|
+
/**
|
|
839
|
+
*
|
|
840
|
+
* @summary Delete a worker by ID
|
|
841
|
+
* @param {string} id The ID of the worker
|
|
842
|
+
* @param {*} [options] Override http request option.
|
|
843
|
+
* @throws {RequiredError}
|
|
844
|
+
*/
|
|
845
|
+
workerControllerDeleteWorker: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
846
|
+
/**
|
|
847
|
+
*
|
|
848
|
+
* @summary Get a worker by ID
|
|
849
|
+
* @param {string} id The ID of the worker
|
|
850
|
+
* @param {*} [options] Override http request option.
|
|
851
|
+
* @throws {RequiredError}
|
|
852
|
+
*/
|
|
853
|
+
workerControllerGetWorkerById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
854
|
+
/**
|
|
855
|
+
*
|
|
856
|
+
* @summary Retrieve workers with filters, sorting, pagination, and search
|
|
857
|
+
* @param {number} [page] Page number for pagination (starts at 1)
|
|
858
|
+
* @param {number} [limit] Number of items per page
|
|
859
|
+
* @param {string} [filter] JSON string of WorkerFilterDto object
|
|
860
|
+
* @param {string} [sortBy] JSON string array of WorkerSortByDto objects
|
|
861
|
+
* @param {string} [search] Search term to filter workers by name, url or other searchable fields
|
|
862
|
+
* @param {string} [searchColumns] JSON string array of columns to search in (defaults to name and url if not specified)
|
|
863
|
+
* @param {*} [options] Override http request option.
|
|
864
|
+
* @throws {RequiredError}
|
|
865
|
+
*/
|
|
866
|
+
workerControllerGetWorkers: (page?: number, limit?: number, filter?: string, sortBy?: string, search?: string, searchColumns?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
867
|
+
/**
|
|
868
|
+
*
|
|
869
|
+
* @summary Update a worker by ID
|
|
870
|
+
* @param {string} id The ID of the worker
|
|
871
|
+
* @param {WorkerUpdateDto} workerUpdateDto Updated worker data
|
|
872
|
+
* @param {*} [options] Override http request option.
|
|
873
|
+
* @throws {RequiredError}
|
|
874
|
+
*/
|
|
875
|
+
workerControllerUpdateWorker: (id: string, workerUpdateDto: WorkerUpdateDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
876
|
+
};
|
|
877
|
+
/**
|
|
878
|
+
* ApiV1WorkersApi - functional programming interface
|
|
879
|
+
* @export
|
|
880
|
+
*/
|
|
881
|
+
export declare const ApiV1WorkersApiFp: (configuration?: Configuration) => {
|
|
882
|
+
/**
|
|
883
|
+
*
|
|
884
|
+
* @summary Delete multiple workers by IDs
|
|
885
|
+
* @param {WorkerControllerBatchDeleteWorkersRequest} workerControllerBatchDeleteWorkersRequest Array of worker IDs to delete
|
|
886
|
+
* @param {*} [options] Override http request option.
|
|
887
|
+
* @throws {RequiredError}
|
|
888
|
+
*/
|
|
889
|
+
workerControllerBatchDeleteWorkers(workerControllerBatchDeleteWorkersRequest: WorkerControllerBatchDeleteWorkersRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkerControllerBatchDeleteWorkers200Response>>;
|
|
890
|
+
/**
|
|
891
|
+
*
|
|
892
|
+
* @summary Create a new worker
|
|
893
|
+
* @param {WorkerCreateDto} workerCreateDto Worker data
|
|
894
|
+
* @param {*} [options] Override http request option.
|
|
895
|
+
* @throws {RequiredError}
|
|
896
|
+
*/
|
|
897
|
+
workerControllerCreateWorker(workerCreateDto: WorkerCreateDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkerDto>>;
|
|
898
|
+
/**
|
|
899
|
+
*
|
|
900
|
+
* @summary Delete a worker by ID
|
|
901
|
+
* @param {string} id The ID of the worker
|
|
902
|
+
* @param {*} [options] Override http request option.
|
|
903
|
+
* @throws {RequiredError}
|
|
904
|
+
*/
|
|
905
|
+
workerControllerDeleteWorker(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
906
|
+
/**
|
|
907
|
+
*
|
|
908
|
+
* @summary Get a worker by ID
|
|
909
|
+
* @param {string} id The ID of the worker
|
|
910
|
+
* @param {*} [options] Override http request option.
|
|
911
|
+
* @throws {RequiredError}
|
|
912
|
+
*/
|
|
913
|
+
workerControllerGetWorkerById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkerDto>>;
|
|
914
|
+
/**
|
|
915
|
+
*
|
|
916
|
+
* @summary Retrieve workers with filters, sorting, pagination, and search
|
|
917
|
+
* @param {number} [page] Page number for pagination (starts at 1)
|
|
918
|
+
* @param {number} [limit] Number of items per page
|
|
919
|
+
* @param {string} [filter] JSON string of WorkerFilterDto object
|
|
920
|
+
* @param {string} [sortBy] JSON string array of WorkerSortByDto objects
|
|
921
|
+
* @param {string} [search] Search term to filter workers by name, url or other searchable fields
|
|
922
|
+
* @param {string} [searchColumns] JSON string array of columns to search in (defaults to name and url if not specified)
|
|
923
|
+
* @param {*} [options] Override http request option.
|
|
924
|
+
* @throws {RequiredError}
|
|
925
|
+
*/
|
|
926
|
+
workerControllerGetWorkers(page?: number, limit?: number, filter?: string, sortBy?: string, search?: string, searchColumns?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkerControllerGetWorkers200Response>>;
|
|
927
|
+
/**
|
|
928
|
+
*
|
|
929
|
+
* @summary Update a worker by ID
|
|
930
|
+
* @param {string} id The ID of the worker
|
|
931
|
+
* @param {WorkerUpdateDto} workerUpdateDto Updated worker data
|
|
932
|
+
* @param {*} [options] Override http request option.
|
|
933
|
+
* @throws {RequiredError}
|
|
934
|
+
*/
|
|
935
|
+
workerControllerUpdateWorker(id: string, workerUpdateDto: WorkerUpdateDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkerDto>>;
|
|
936
|
+
};
|
|
937
|
+
/**
|
|
938
|
+
* ApiV1WorkersApi - factory interface
|
|
939
|
+
* @export
|
|
940
|
+
*/
|
|
941
|
+
export declare const ApiV1WorkersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
942
|
+
/**
|
|
943
|
+
*
|
|
944
|
+
* @summary Delete multiple workers by IDs
|
|
945
|
+
* @param {ApiV1WorkersApiWorkerControllerBatchDeleteWorkersRequest} requestParameters Request parameters.
|
|
946
|
+
* @param {*} [options] Override http request option.
|
|
947
|
+
* @throws {RequiredError}
|
|
948
|
+
*/
|
|
949
|
+
workerControllerBatchDeleteWorkers(requestParameters: ApiV1WorkersApiWorkerControllerBatchDeleteWorkersRequest, options?: RawAxiosRequestConfig): AxiosPromise<WorkerControllerBatchDeleteWorkers200Response>;
|
|
950
|
+
/**
|
|
951
|
+
*
|
|
952
|
+
* @summary Create a new worker
|
|
953
|
+
* @param {ApiV1WorkersApiWorkerControllerCreateWorkerRequest} requestParameters Request parameters.
|
|
954
|
+
* @param {*} [options] Override http request option.
|
|
955
|
+
* @throws {RequiredError}
|
|
956
|
+
*/
|
|
957
|
+
workerControllerCreateWorker(requestParameters: ApiV1WorkersApiWorkerControllerCreateWorkerRequest, options?: RawAxiosRequestConfig): AxiosPromise<WorkerDto>;
|
|
958
|
+
/**
|
|
959
|
+
*
|
|
960
|
+
* @summary Delete a worker by ID
|
|
961
|
+
* @param {ApiV1WorkersApiWorkerControllerDeleteWorkerRequest} requestParameters Request parameters.
|
|
962
|
+
* @param {*} [options] Override http request option.
|
|
963
|
+
* @throws {RequiredError}
|
|
964
|
+
*/
|
|
965
|
+
workerControllerDeleteWorker(requestParameters: ApiV1WorkersApiWorkerControllerDeleteWorkerRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
966
|
+
/**
|
|
967
|
+
*
|
|
968
|
+
* @summary Get a worker by ID
|
|
969
|
+
* @param {ApiV1WorkersApiWorkerControllerGetWorkerByIdRequest} requestParameters Request parameters.
|
|
970
|
+
* @param {*} [options] Override http request option.
|
|
971
|
+
* @throws {RequiredError}
|
|
972
|
+
*/
|
|
973
|
+
workerControllerGetWorkerById(requestParameters: ApiV1WorkersApiWorkerControllerGetWorkerByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<WorkerDto>;
|
|
974
|
+
/**
|
|
975
|
+
*
|
|
976
|
+
* @summary Retrieve workers with filters, sorting, pagination, and search
|
|
977
|
+
* @param {ApiV1WorkersApiWorkerControllerGetWorkersRequest} requestParameters Request parameters.
|
|
978
|
+
* @param {*} [options] Override http request option.
|
|
979
|
+
* @throws {RequiredError}
|
|
980
|
+
*/
|
|
981
|
+
workerControllerGetWorkers(requestParameters?: ApiV1WorkersApiWorkerControllerGetWorkersRequest, options?: RawAxiosRequestConfig): AxiosPromise<WorkerControllerGetWorkers200Response>;
|
|
982
|
+
/**
|
|
983
|
+
*
|
|
984
|
+
* @summary Update a worker by ID
|
|
985
|
+
* @param {ApiV1WorkersApiWorkerControllerUpdateWorkerRequest} requestParameters Request parameters.
|
|
986
|
+
* @param {*} [options] Override http request option.
|
|
987
|
+
* @throws {RequiredError}
|
|
988
|
+
*/
|
|
989
|
+
workerControllerUpdateWorker(requestParameters: ApiV1WorkersApiWorkerControllerUpdateWorkerRequest, options?: RawAxiosRequestConfig): AxiosPromise<WorkerDto>;
|
|
990
|
+
};
|
|
991
|
+
/**
|
|
992
|
+
* ApiV1WorkersApi - interface
|
|
993
|
+
* @export
|
|
994
|
+
* @interface ApiV1WorkersApi
|
|
995
|
+
*/
|
|
996
|
+
export interface ApiV1WorkersApiInterface {
|
|
997
|
+
/**
|
|
998
|
+
*
|
|
999
|
+
* @summary Delete multiple workers by IDs
|
|
1000
|
+
* @param {ApiV1WorkersApiWorkerControllerBatchDeleteWorkersRequest} requestParameters Request parameters.
|
|
1001
|
+
* @param {*} [options] Override http request option.
|
|
1002
|
+
* @throws {RequiredError}
|
|
1003
|
+
* @memberof ApiV1WorkersApiInterface
|
|
1004
|
+
*/
|
|
1005
|
+
workerControllerBatchDeleteWorkers(requestParameters: ApiV1WorkersApiWorkerControllerBatchDeleteWorkersRequest, options?: RawAxiosRequestConfig): AxiosPromise<WorkerControllerBatchDeleteWorkers200Response>;
|
|
1006
|
+
/**
|
|
1007
|
+
*
|
|
1008
|
+
* @summary Create a new worker
|
|
1009
|
+
* @param {ApiV1WorkersApiWorkerControllerCreateWorkerRequest} requestParameters Request parameters.
|
|
1010
|
+
* @param {*} [options] Override http request option.
|
|
1011
|
+
* @throws {RequiredError}
|
|
1012
|
+
* @memberof ApiV1WorkersApiInterface
|
|
1013
|
+
*/
|
|
1014
|
+
workerControllerCreateWorker(requestParameters: ApiV1WorkersApiWorkerControllerCreateWorkerRequest, options?: RawAxiosRequestConfig): AxiosPromise<WorkerDto>;
|
|
1015
|
+
/**
|
|
1016
|
+
*
|
|
1017
|
+
* @summary Delete a worker by ID
|
|
1018
|
+
* @param {ApiV1WorkersApiWorkerControllerDeleteWorkerRequest} requestParameters Request parameters.
|
|
1019
|
+
* @param {*} [options] Override http request option.
|
|
1020
|
+
* @throws {RequiredError}
|
|
1021
|
+
* @memberof ApiV1WorkersApiInterface
|
|
1022
|
+
*/
|
|
1023
|
+
workerControllerDeleteWorker(requestParameters: ApiV1WorkersApiWorkerControllerDeleteWorkerRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1024
|
+
/**
|
|
1025
|
+
*
|
|
1026
|
+
* @summary Get a worker by ID
|
|
1027
|
+
* @param {ApiV1WorkersApiWorkerControllerGetWorkerByIdRequest} requestParameters Request parameters.
|
|
1028
|
+
* @param {*} [options] Override http request option.
|
|
1029
|
+
* @throws {RequiredError}
|
|
1030
|
+
* @memberof ApiV1WorkersApiInterface
|
|
1031
|
+
*/
|
|
1032
|
+
workerControllerGetWorkerById(requestParameters: ApiV1WorkersApiWorkerControllerGetWorkerByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<WorkerDto>;
|
|
1033
|
+
/**
|
|
1034
|
+
*
|
|
1035
|
+
* @summary Retrieve workers with filters, sorting, pagination, and search
|
|
1036
|
+
* @param {ApiV1WorkersApiWorkerControllerGetWorkersRequest} requestParameters Request parameters.
|
|
1037
|
+
* @param {*} [options] Override http request option.
|
|
1038
|
+
* @throws {RequiredError}
|
|
1039
|
+
* @memberof ApiV1WorkersApiInterface
|
|
1040
|
+
*/
|
|
1041
|
+
workerControllerGetWorkers(requestParameters?: ApiV1WorkersApiWorkerControllerGetWorkersRequest, options?: RawAxiosRequestConfig): AxiosPromise<WorkerControllerGetWorkers200Response>;
|
|
1042
|
+
/**
|
|
1043
|
+
*
|
|
1044
|
+
* @summary Update a worker by ID
|
|
1045
|
+
* @param {ApiV1WorkersApiWorkerControllerUpdateWorkerRequest} requestParameters Request parameters.
|
|
1046
|
+
* @param {*} [options] Override http request option.
|
|
1047
|
+
* @throws {RequiredError}
|
|
1048
|
+
* @memberof ApiV1WorkersApiInterface
|
|
1049
|
+
*/
|
|
1050
|
+
workerControllerUpdateWorker(requestParameters: ApiV1WorkersApiWorkerControllerUpdateWorkerRequest, options?: RawAxiosRequestConfig): AxiosPromise<WorkerDto>;
|
|
1051
|
+
}
|
|
1052
|
+
/**
|
|
1053
|
+
* Request parameters for workerControllerBatchDeleteWorkers operation in ApiV1WorkersApi.
|
|
1054
|
+
* @export
|
|
1055
|
+
* @interface ApiV1WorkersApiWorkerControllerBatchDeleteWorkersRequest
|
|
1056
|
+
*/
|
|
1057
|
+
export interface ApiV1WorkersApiWorkerControllerBatchDeleteWorkersRequest {
|
|
1058
|
+
/**
|
|
1059
|
+
* Array of worker IDs to delete
|
|
1060
|
+
* @type {WorkerControllerBatchDeleteWorkersRequest}
|
|
1061
|
+
* @memberof ApiV1WorkersApiWorkerControllerBatchDeleteWorkers
|
|
1062
|
+
*/
|
|
1063
|
+
readonly workerControllerBatchDeleteWorkersRequest: WorkerControllerBatchDeleteWorkersRequest;
|
|
1064
|
+
}
|
|
1065
|
+
/**
|
|
1066
|
+
* Request parameters for workerControllerCreateWorker operation in ApiV1WorkersApi.
|
|
1067
|
+
* @export
|
|
1068
|
+
* @interface ApiV1WorkersApiWorkerControllerCreateWorkerRequest
|
|
1069
|
+
*/
|
|
1070
|
+
export interface ApiV1WorkersApiWorkerControllerCreateWorkerRequest {
|
|
1071
|
+
/**
|
|
1072
|
+
* Worker data
|
|
1073
|
+
* @type {WorkerCreateDto}
|
|
1074
|
+
* @memberof ApiV1WorkersApiWorkerControllerCreateWorker
|
|
1075
|
+
*/
|
|
1076
|
+
readonly workerCreateDto: WorkerCreateDto;
|
|
1077
|
+
}
|
|
1078
|
+
/**
|
|
1079
|
+
* Request parameters for workerControllerDeleteWorker operation in ApiV1WorkersApi.
|
|
1080
|
+
* @export
|
|
1081
|
+
* @interface ApiV1WorkersApiWorkerControllerDeleteWorkerRequest
|
|
1082
|
+
*/
|
|
1083
|
+
export interface ApiV1WorkersApiWorkerControllerDeleteWorkerRequest {
|
|
1084
|
+
/**
|
|
1085
|
+
* The ID of the worker
|
|
1086
|
+
* @type {string}
|
|
1087
|
+
* @memberof ApiV1WorkersApiWorkerControllerDeleteWorker
|
|
1088
|
+
*/
|
|
1089
|
+
readonly id: string;
|
|
1090
|
+
}
|
|
1091
|
+
/**
|
|
1092
|
+
* Request parameters for workerControllerGetWorkerById operation in ApiV1WorkersApi.
|
|
1093
|
+
* @export
|
|
1094
|
+
* @interface ApiV1WorkersApiWorkerControllerGetWorkerByIdRequest
|
|
1095
|
+
*/
|
|
1096
|
+
export interface ApiV1WorkersApiWorkerControllerGetWorkerByIdRequest {
|
|
1097
|
+
/**
|
|
1098
|
+
* The ID of the worker
|
|
1099
|
+
* @type {string}
|
|
1100
|
+
* @memberof ApiV1WorkersApiWorkerControllerGetWorkerById
|
|
1101
|
+
*/
|
|
1102
|
+
readonly id: string;
|
|
1103
|
+
}
|
|
1104
|
+
/**
|
|
1105
|
+
* Request parameters for workerControllerGetWorkers operation in ApiV1WorkersApi.
|
|
1106
|
+
* @export
|
|
1107
|
+
* @interface ApiV1WorkersApiWorkerControllerGetWorkersRequest
|
|
1108
|
+
*/
|
|
1109
|
+
export interface ApiV1WorkersApiWorkerControllerGetWorkersRequest {
|
|
1110
|
+
/**
|
|
1111
|
+
* Page number for pagination (starts at 1)
|
|
1112
|
+
* @type {number}
|
|
1113
|
+
* @memberof ApiV1WorkersApiWorkerControllerGetWorkers
|
|
1114
|
+
*/
|
|
1115
|
+
readonly page?: number;
|
|
1116
|
+
/**
|
|
1117
|
+
* Number of items per page
|
|
1118
|
+
* @type {number}
|
|
1119
|
+
* @memberof ApiV1WorkersApiWorkerControllerGetWorkers
|
|
1120
|
+
*/
|
|
1121
|
+
readonly limit?: number;
|
|
1122
|
+
/**
|
|
1123
|
+
* JSON string of WorkerFilterDto object
|
|
1124
|
+
* @type {string}
|
|
1125
|
+
* @memberof ApiV1WorkersApiWorkerControllerGetWorkers
|
|
1126
|
+
*/
|
|
1127
|
+
readonly filter?: string;
|
|
1128
|
+
/**
|
|
1129
|
+
* JSON string array of WorkerSortByDto objects
|
|
1130
|
+
* @type {string}
|
|
1131
|
+
* @memberof ApiV1WorkersApiWorkerControllerGetWorkers
|
|
1132
|
+
*/
|
|
1133
|
+
readonly sortBy?: string;
|
|
1134
|
+
/**
|
|
1135
|
+
* Search term to filter workers by name, url or other searchable fields
|
|
1136
|
+
* @type {string}
|
|
1137
|
+
* @memberof ApiV1WorkersApiWorkerControllerGetWorkers
|
|
1138
|
+
*/
|
|
1139
|
+
readonly search?: string;
|
|
1140
|
+
/**
|
|
1141
|
+
* JSON string array of columns to search in (defaults to name and url if not specified)
|
|
1142
|
+
* @type {string}
|
|
1143
|
+
* @memberof ApiV1WorkersApiWorkerControllerGetWorkers
|
|
1144
|
+
*/
|
|
1145
|
+
readonly searchColumns?: string;
|
|
1146
|
+
}
|
|
1147
|
+
/**
|
|
1148
|
+
* Request parameters for workerControllerUpdateWorker operation in ApiV1WorkersApi.
|
|
1149
|
+
* @export
|
|
1150
|
+
* @interface ApiV1WorkersApiWorkerControllerUpdateWorkerRequest
|
|
1151
|
+
*/
|
|
1152
|
+
export interface ApiV1WorkersApiWorkerControllerUpdateWorkerRequest {
|
|
1153
|
+
/**
|
|
1154
|
+
* The ID of the worker
|
|
1155
|
+
* @type {string}
|
|
1156
|
+
* @memberof ApiV1WorkersApiWorkerControllerUpdateWorker
|
|
1157
|
+
*/
|
|
1158
|
+
readonly id: string;
|
|
1159
|
+
/**
|
|
1160
|
+
* Updated worker data
|
|
1161
|
+
* @type {WorkerUpdateDto}
|
|
1162
|
+
* @memberof ApiV1WorkersApiWorkerControllerUpdateWorker
|
|
1163
|
+
*/
|
|
1164
|
+
readonly workerUpdateDto: WorkerUpdateDto;
|
|
1165
|
+
}
|
|
1166
|
+
/**
|
|
1167
|
+
* ApiV1WorkersApi - object-oriented interface
|
|
1168
|
+
* @export
|
|
1169
|
+
* @class ApiV1WorkersApi
|
|
1170
|
+
* @extends {BaseAPI}
|
|
1171
|
+
*/
|
|
1172
|
+
export declare class ApiV1WorkersApi extends BaseAPI implements ApiV1WorkersApiInterface {
|
|
1173
|
+
/**
|
|
1174
|
+
*
|
|
1175
|
+
* @summary Delete multiple workers by IDs
|
|
1176
|
+
* @param {ApiV1WorkersApiWorkerControllerBatchDeleteWorkersRequest} requestParameters Request parameters.
|
|
1177
|
+
* @param {*} [options] Override http request option.
|
|
1178
|
+
* @throws {RequiredError}
|
|
1179
|
+
* @memberof ApiV1WorkersApi
|
|
1180
|
+
*/
|
|
1181
|
+
workerControllerBatchDeleteWorkers(requestParameters: ApiV1WorkersApiWorkerControllerBatchDeleteWorkersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkerControllerBatchDeleteWorkers200Response, any>>;
|
|
1182
|
+
/**
|
|
1183
|
+
*
|
|
1184
|
+
* @summary Create a new worker
|
|
1185
|
+
* @param {ApiV1WorkersApiWorkerControllerCreateWorkerRequest} requestParameters Request parameters.
|
|
1186
|
+
* @param {*} [options] Override http request option.
|
|
1187
|
+
* @throws {RequiredError}
|
|
1188
|
+
* @memberof ApiV1WorkersApi
|
|
1189
|
+
*/
|
|
1190
|
+
workerControllerCreateWorker(requestParameters: ApiV1WorkersApiWorkerControllerCreateWorkerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkerDto, any>>;
|
|
1191
|
+
/**
|
|
1192
|
+
*
|
|
1193
|
+
* @summary Delete a worker by ID
|
|
1194
|
+
* @param {ApiV1WorkersApiWorkerControllerDeleteWorkerRequest} requestParameters Request parameters.
|
|
1195
|
+
* @param {*} [options] Override http request option.
|
|
1196
|
+
* @throws {RequiredError}
|
|
1197
|
+
* @memberof ApiV1WorkersApi
|
|
1198
|
+
*/
|
|
1199
|
+
workerControllerDeleteWorker(requestParameters: ApiV1WorkersApiWorkerControllerDeleteWorkerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1200
|
+
/**
|
|
1201
|
+
*
|
|
1202
|
+
* @summary Get a worker by ID
|
|
1203
|
+
* @param {ApiV1WorkersApiWorkerControllerGetWorkerByIdRequest} requestParameters Request parameters.
|
|
1204
|
+
* @param {*} [options] Override http request option.
|
|
1205
|
+
* @throws {RequiredError}
|
|
1206
|
+
* @memberof ApiV1WorkersApi
|
|
1207
|
+
*/
|
|
1208
|
+
workerControllerGetWorkerById(requestParameters: ApiV1WorkersApiWorkerControllerGetWorkerByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkerDto, any>>;
|
|
1209
|
+
/**
|
|
1210
|
+
*
|
|
1211
|
+
* @summary Retrieve workers with filters, sorting, pagination, and search
|
|
1212
|
+
* @param {ApiV1WorkersApiWorkerControllerGetWorkersRequest} requestParameters Request parameters.
|
|
1213
|
+
* @param {*} [options] Override http request option.
|
|
1214
|
+
* @throws {RequiredError}
|
|
1215
|
+
* @memberof ApiV1WorkersApi
|
|
1216
|
+
*/
|
|
1217
|
+
workerControllerGetWorkers(requestParameters?: ApiV1WorkersApiWorkerControllerGetWorkersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkerControllerGetWorkers200Response, any>>;
|
|
1218
|
+
/**
|
|
1219
|
+
*
|
|
1220
|
+
* @summary Update a worker by ID
|
|
1221
|
+
* @param {ApiV1WorkersApiWorkerControllerUpdateWorkerRequest} requestParameters Request parameters.
|
|
1222
|
+
* @param {*} [options] Override http request option.
|
|
1223
|
+
* @throws {RequiredError}
|
|
1224
|
+
* @memberof ApiV1WorkersApi
|
|
1225
|
+
*/
|
|
1226
|
+
workerControllerUpdateWorker(requestParameters: ApiV1WorkersApiWorkerControllerUpdateWorkerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkerDto, any>>;
|
|
1227
|
+
}
|
|
1228
|
+
/**
|
|
1229
|
+
* SsoApi - axios parameter creator
|
|
1230
|
+
* @export
|
|
1231
|
+
*/
|
|
1232
|
+
export declare const SsoApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1233
|
+
/**
|
|
1234
|
+
*
|
|
1235
|
+
* @param {object} body
|
|
1236
|
+
* @param {*} [options] Override http request option.
|
|
1237
|
+
* @throws {RequiredError}
|
|
1238
|
+
*/
|
|
1239
|
+
ssoControllerGenerateLocalCode: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1240
|
+
/**
|
|
1241
|
+
*
|
|
1242
|
+
* @param {object} body
|
|
1243
|
+
* @param {*} [options] Override http request option.
|
|
1244
|
+
* @throws {RequiredError}
|
|
1245
|
+
*/
|
|
1246
|
+
ssoControllerValidateCode: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1247
|
+
};
|
|
1248
|
+
/**
|
|
1249
|
+
* SsoApi - functional programming interface
|
|
1250
|
+
* @export
|
|
1251
|
+
*/
|
|
1252
|
+
export declare const SsoApiFp: (configuration?: Configuration) => {
|
|
1253
|
+
/**
|
|
1254
|
+
*
|
|
1255
|
+
* @param {object} body
|
|
1256
|
+
* @param {*} [options] Override http request option.
|
|
1257
|
+
* @throws {RequiredError}
|
|
1258
|
+
*/
|
|
1259
|
+
ssoControllerGenerateLocalCode(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1260
|
+
/**
|
|
1261
|
+
*
|
|
1262
|
+
* @param {object} body
|
|
1263
|
+
* @param {*} [options] Override http request option.
|
|
1264
|
+
* @throws {RequiredError}
|
|
1265
|
+
*/
|
|
1266
|
+
ssoControllerValidateCode(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1267
|
+
};
|
|
1268
|
+
/**
|
|
1269
|
+
* SsoApi - factory interface
|
|
1270
|
+
* @export
|
|
1271
|
+
*/
|
|
1272
|
+
export declare const SsoApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1273
|
+
/**
|
|
1274
|
+
*
|
|
1275
|
+
* @param {SsoApiSsoControllerGenerateLocalCodeRequest} requestParameters Request parameters.
|
|
1276
|
+
* @param {*} [options] Override http request option.
|
|
1277
|
+
* @throws {RequiredError}
|
|
1278
|
+
*/
|
|
1279
|
+
ssoControllerGenerateLocalCode(requestParameters: SsoApiSsoControllerGenerateLocalCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1280
|
+
/**
|
|
1281
|
+
*
|
|
1282
|
+
* @param {SsoApiSsoControllerValidateCodeRequest} requestParameters Request parameters.
|
|
1283
|
+
* @param {*} [options] Override http request option.
|
|
1284
|
+
* @throws {RequiredError}
|
|
1285
|
+
*/
|
|
1286
|
+
ssoControllerValidateCode(requestParameters: SsoApiSsoControllerValidateCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1287
|
+
};
|
|
1288
|
+
/**
|
|
1289
|
+
* SsoApi - interface
|
|
1290
|
+
* @export
|
|
1291
|
+
* @interface SsoApi
|
|
1292
|
+
*/
|
|
1293
|
+
export interface SsoApiInterface {
|
|
1294
|
+
/**
|
|
1295
|
+
*
|
|
1296
|
+
* @param {SsoApiSsoControllerGenerateLocalCodeRequest} requestParameters Request parameters.
|
|
1297
|
+
* @param {*} [options] Override http request option.
|
|
1298
|
+
* @throws {RequiredError}
|
|
1299
|
+
* @memberof SsoApiInterface
|
|
1300
|
+
*/
|
|
1301
|
+
ssoControllerGenerateLocalCode(requestParameters: SsoApiSsoControllerGenerateLocalCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1302
|
+
/**
|
|
1303
|
+
*
|
|
1304
|
+
* @param {SsoApiSsoControllerValidateCodeRequest} requestParameters Request parameters.
|
|
1305
|
+
* @param {*} [options] Override http request option.
|
|
1306
|
+
* @throws {RequiredError}
|
|
1307
|
+
* @memberof SsoApiInterface
|
|
1308
|
+
*/
|
|
1309
|
+
ssoControllerValidateCode(requestParameters: SsoApiSsoControllerValidateCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1310
|
+
}
|
|
1311
|
+
/**
|
|
1312
|
+
* Request parameters for ssoControllerGenerateLocalCode operation in SsoApi.
|
|
1313
|
+
* @export
|
|
1314
|
+
* @interface SsoApiSsoControllerGenerateLocalCodeRequest
|
|
1315
|
+
*/
|
|
1316
|
+
export interface SsoApiSsoControllerGenerateLocalCodeRequest {
|
|
1317
|
+
/**
|
|
1318
|
+
*
|
|
1319
|
+
* @type {object}
|
|
1320
|
+
* @memberof SsoApiSsoControllerGenerateLocalCode
|
|
1321
|
+
*/
|
|
1322
|
+
readonly body: object;
|
|
1323
|
+
}
|
|
1324
|
+
/**
|
|
1325
|
+
* Request parameters for ssoControllerValidateCode operation in SsoApi.
|
|
1326
|
+
* @export
|
|
1327
|
+
* @interface SsoApiSsoControllerValidateCodeRequest
|
|
1328
|
+
*/
|
|
1329
|
+
export interface SsoApiSsoControllerValidateCodeRequest {
|
|
1330
|
+
/**
|
|
1331
|
+
*
|
|
1332
|
+
* @type {object}
|
|
1333
|
+
* @memberof SsoApiSsoControllerValidateCode
|
|
1334
|
+
*/
|
|
1335
|
+
readonly body: object;
|
|
1336
|
+
}
|
|
1337
|
+
/**
|
|
1338
|
+
* SsoApi - object-oriented interface
|
|
1339
|
+
* @export
|
|
1340
|
+
* @class SsoApi
|
|
1341
|
+
* @extends {BaseAPI}
|
|
1342
|
+
*/
|
|
1343
|
+
export declare class SsoApi extends BaseAPI implements SsoApiInterface {
|
|
1344
|
+
/**
|
|
1345
|
+
*
|
|
1346
|
+
* @param {SsoApiSsoControllerGenerateLocalCodeRequest} requestParameters Request parameters.
|
|
1347
|
+
* @param {*} [options] Override http request option.
|
|
1348
|
+
* @throws {RequiredError}
|
|
1349
|
+
* @memberof SsoApi
|
|
1350
|
+
*/
|
|
1351
|
+
ssoControllerGenerateLocalCode(requestParameters: SsoApiSsoControllerGenerateLocalCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1352
|
+
/**
|
|
1353
|
+
*
|
|
1354
|
+
* @param {SsoApiSsoControllerValidateCodeRequest} requestParameters Request parameters.
|
|
1355
|
+
* @param {*} [options] Override http request option.
|
|
1356
|
+
* @throws {RequiredError}
|
|
1357
|
+
* @memberof SsoApi
|
|
1358
|
+
*/
|
|
1359
|
+
ssoControllerValidateCode(requestParameters: SsoApiSsoControllerValidateCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1360
|
+
}
|