@nestbox-ai/admin 1.0.49 → 1.0.60
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/VERSION +1 -1
- package/README.md +3 -2
- package/api.ts +133 -1393
- package/base.ts +0 -24
- package/common.ts +14 -38
- package/configuration.ts +24 -18
- package/dist/api.d.ts +97 -1370
- package/dist/api.js +130 -151
- package/dist/base.d.ts +0 -24
- package/dist/base.js +0 -19
- package/dist/common.d.ts +4 -35
- package/dist/common.js +15 -38
- package/dist/configuration.d.ts +24 -17
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +97 -1370
- package/dist/esm/api.js +130 -151
- package/dist/esm/base.d.ts +0 -24
- package/dist/esm/base.js +0 -19
- package/dist/esm/common.d.ts +4 -35
- package/dist/esm/common.js +13 -37
- package/dist/esm/configuration.d.ts +24 -17
- package/dist/esm/configuration.js +1 -1
- package/docs/AuthApi.md +56 -0
- package/docs/CreateMachineAgentDto.md +0 -2
- package/git_push.sh +2 -2
- package/package.json +2 -2
package/dist/esm/api.d.ts
CHANGED
|
@@ -13,950 +13,238 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface AddProjectMemberData
|
|
20
|
-
*/
|
|
21
16
|
export interface AddProjectMemberData {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof AddProjectMemberData
|
|
26
|
-
*/
|
|
27
17
|
'message': string;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {object}
|
|
31
|
-
* @memberof AddProjectMemberData
|
|
32
|
-
*/
|
|
33
18
|
'project': object;
|
|
34
19
|
}
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* @export
|
|
38
|
-
* @interface AddProjectMemberDto
|
|
39
|
-
*/
|
|
40
20
|
export interface AddProjectMemberDto {
|
|
41
|
-
/**
|
|
42
|
-
*
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof AddProjectMemberDto
|
|
45
|
-
*/
|
|
46
21
|
'firstName': string;
|
|
47
|
-
/**
|
|
48
|
-
*
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof AddProjectMemberDto
|
|
51
|
-
*/
|
|
52
22
|
'lastName': string;
|
|
53
|
-
/**
|
|
54
|
-
*
|
|
55
|
-
* @type {string}
|
|
56
|
-
* @memberof AddProjectMemberDto
|
|
57
|
-
*/
|
|
58
23
|
'email': string;
|
|
59
|
-
/**
|
|
60
|
-
*
|
|
61
|
-
* @type {number}
|
|
62
|
-
* @memberof AddProjectMemberDto
|
|
63
|
-
*/
|
|
64
24
|
'roleId': number;
|
|
65
25
|
}
|
|
66
|
-
/**
|
|
67
|
-
*
|
|
68
|
-
* @export
|
|
69
|
-
* @interface AddProjectMemberResponseDTO
|
|
70
|
-
*/
|
|
71
26
|
export interface AddProjectMemberResponseDTO {
|
|
72
|
-
/**
|
|
73
|
-
*
|
|
74
|
-
* @type {AddProjectMemberData}
|
|
75
|
-
* @memberof AddProjectMemberResponseDTO
|
|
76
|
-
*/
|
|
77
27
|
'data': AddProjectMemberData;
|
|
78
28
|
}
|
|
79
|
-
/**
|
|
80
|
-
*
|
|
81
|
-
* @export
|
|
82
|
-
* @interface AllProjectResponse
|
|
83
|
-
*/
|
|
84
29
|
export interface AllProjectResponse {
|
|
85
|
-
/**
|
|
86
|
-
*
|
|
87
|
-
* @type {string}
|
|
88
|
-
* @memberof AllProjectResponse
|
|
89
|
-
*/
|
|
90
30
|
'id': string;
|
|
91
|
-
/**
|
|
92
|
-
*
|
|
93
|
-
* @type {string}
|
|
94
|
-
* @memberof AllProjectResponse
|
|
95
|
-
*/
|
|
96
31
|
'name': string;
|
|
97
|
-
/**
|
|
98
|
-
*
|
|
99
|
-
* @type {string}
|
|
100
|
-
* @memberof AllProjectResponse
|
|
101
|
-
*/
|
|
102
32
|
'description': string;
|
|
103
|
-
/**
|
|
104
|
-
*
|
|
105
|
-
* @type {string}
|
|
106
|
-
* @memberof AllProjectResponse
|
|
107
|
-
*/
|
|
108
33
|
'createdAt': string;
|
|
109
|
-
/**
|
|
110
|
-
*
|
|
111
|
-
* @type {string}
|
|
112
|
-
* @memberof AllProjectResponse
|
|
113
|
-
*/
|
|
114
34
|
'updatedAt': string;
|
|
115
|
-
/**
|
|
116
|
-
*
|
|
117
|
-
* @type {string}
|
|
118
|
-
* @memberof AllProjectResponse
|
|
119
|
-
*/
|
|
120
35
|
'deletedAt': string;
|
|
121
36
|
}
|
|
122
|
-
/**
|
|
123
|
-
*
|
|
124
|
-
* @export
|
|
125
|
-
* @interface AllProjectResponseModel
|
|
126
|
-
*/
|
|
127
37
|
export interface AllProjectResponseModel {
|
|
128
|
-
/**
|
|
129
|
-
*
|
|
130
|
-
* @type {Array<AllProjectResponse>}
|
|
131
|
-
* @memberof AllProjectResponseModel
|
|
132
|
-
*/
|
|
133
38
|
'projects': Array<AllProjectResponse>;
|
|
134
|
-
/**
|
|
135
|
-
*
|
|
136
|
-
* @type {number}
|
|
137
|
-
* @memberof AllProjectResponseModel
|
|
138
|
-
*/
|
|
139
39
|
'totalCount': number;
|
|
140
40
|
}
|
|
141
|
-
/**
|
|
142
|
-
*
|
|
143
|
-
* @export
|
|
144
|
-
* @interface BadRequestExceptionResponse
|
|
145
|
-
*/
|
|
146
41
|
export interface BadRequestExceptionResponse {
|
|
147
|
-
/**
|
|
148
|
-
*
|
|
149
|
-
* @type {string}
|
|
150
|
-
* @memberof BadRequestExceptionResponse
|
|
151
|
-
*/
|
|
152
42
|
'message': string;
|
|
153
|
-
/**
|
|
154
|
-
*
|
|
155
|
-
* @type {object}
|
|
156
|
-
* @memberof BadRequestExceptionResponse
|
|
157
|
-
*/
|
|
158
43
|
'errors': object | null;
|
|
159
44
|
}
|
|
160
|
-
/**
|
|
161
|
-
*
|
|
162
|
-
* @export
|
|
163
|
-
* @interface BenchmarkingDatapointDto
|
|
164
|
-
*/
|
|
165
45
|
export interface BenchmarkingDatapointDto {
|
|
166
46
|
/**
|
|
167
47
|
* Combined content of all benchmarking lines
|
|
168
|
-
* @type {string}
|
|
169
|
-
* @memberof BenchmarkingDatapointDto
|
|
170
48
|
*/
|
|
171
49
|
'lines': string;
|
|
172
50
|
/**
|
|
173
51
|
* Total number of lines found
|
|
174
|
-
* @type {number}
|
|
175
|
-
* @memberof BenchmarkingDatapointDto
|
|
176
52
|
*/
|
|
177
53
|
'totalLines': number;
|
|
178
54
|
}
|
|
179
|
-
/**
|
|
180
|
-
*
|
|
181
|
-
* @export
|
|
182
|
-
* @interface BenchmarkingReportsDto
|
|
183
|
-
*/
|
|
184
55
|
export interface BenchmarkingReportsDto {
|
|
185
56
|
/**
|
|
186
57
|
* Combined markdown content of all benchmarking reports
|
|
187
|
-
* @type {string}
|
|
188
|
-
* @memberof BenchmarkingReportsDto
|
|
189
58
|
*/
|
|
190
59
|
'content': string;
|
|
191
60
|
/**
|
|
192
61
|
* Total number of reports found
|
|
193
|
-
* @type {number}
|
|
194
|
-
* @memberof BenchmarkingReportsDto
|
|
195
62
|
*/
|
|
196
63
|
'totalReports': number;
|
|
197
64
|
}
|
|
198
|
-
/**
|
|
199
|
-
*
|
|
200
|
-
* @export
|
|
201
|
-
* @interface BooleanResponseDTO
|
|
202
|
-
*/
|
|
203
65
|
export interface BooleanResponseDTO {
|
|
204
|
-
/**
|
|
205
|
-
*
|
|
206
|
-
* @type {boolean}
|
|
207
|
-
* @memberof BooleanResponseDTO
|
|
208
|
-
*/
|
|
209
66
|
'data': boolean;
|
|
210
67
|
}
|
|
211
|
-
/**
|
|
212
|
-
*
|
|
213
|
-
* @export
|
|
214
|
-
* @interface ChunkFileRequestDTO
|
|
215
|
-
*/
|
|
216
68
|
export interface ChunkFileRequestDTO {
|
|
217
|
-
/**
|
|
218
|
-
*
|
|
219
|
-
* @type {string}
|
|
220
|
-
* @memberof ChunkFileRequestDTO
|
|
221
|
-
*/
|
|
222
69
|
'type': string;
|
|
223
|
-
/**
|
|
224
|
-
*
|
|
225
|
-
* @type {string}
|
|
226
|
-
* @memberof ChunkFileRequestDTO
|
|
227
|
-
*/
|
|
228
70
|
'url': string;
|
|
229
|
-
/**
|
|
230
|
-
*
|
|
231
|
-
* @type {object}
|
|
232
|
-
* @memberof ChunkFileRequestDTO
|
|
233
|
-
*/
|
|
234
71
|
'options': object;
|
|
235
72
|
}
|
|
236
|
-
/**
|
|
237
|
-
*
|
|
238
|
-
* @export
|
|
239
|
-
* @interface CreateCollectionRequestDTO
|
|
240
|
-
*/
|
|
241
73
|
export interface CreateCollectionRequestDTO {
|
|
242
|
-
/**
|
|
243
|
-
*
|
|
244
|
-
* @type {string}
|
|
245
|
-
* @memberof CreateCollectionRequestDTO
|
|
246
|
-
*/
|
|
247
74
|
'name': string;
|
|
248
|
-
/**
|
|
249
|
-
*
|
|
250
|
-
* @type {object}
|
|
251
|
-
* @memberof CreateCollectionRequestDTO
|
|
252
|
-
*/
|
|
253
75
|
'metadata': object;
|
|
254
76
|
}
|
|
255
|
-
/**
|
|
256
|
-
*
|
|
257
|
-
* @export
|
|
258
|
-
* @interface CreateDocumentRequestDTO
|
|
259
|
-
*/
|
|
260
77
|
export interface CreateDocumentRequestDTO {
|
|
261
|
-
/**
|
|
262
|
-
*
|
|
263
|
-
* @type {string}
|
|
264
|
-
* @memberof CreateDocumentRequestDTO
|
|
265
|
-
*/
|
|
266
78
|
'id': string;
|
|
267
|
-
/**
|
|
268
|
-
*
|
|
269
|
-
* @type {string}
|
|
270
|
-
* @memberof CreateDocumentRequestDTO
|
|
271
|
-
*/
|
|
272
79
|
'document': string;
|
|
273
|
-
/**
|
|
274
|
-
*
|
|
275
|
-
* @type {object}
|
|
276
|
-
* @memberof CreateDocumentRequestDTO
|
|
277
|
-
*/
|
|
278
80
|
'metadata': object;
|
|
279
81
|
}
|
|
280
|
-
/**
|
|
281
|
-
*
|
|
282
|
-
* @export
|
|
283
|
-
* @interface CreateMachineAgentDto
|
|
284
|
-
*/
|
|
285
82
|
export interface CreateMachineAgentDto {
|
|
286
|
-
/**
|
|
287
|
-
*
|
|
288
|
-
* @type {string}
|
|
289
|
-
* @memberof CreateMachineAgentDto
|
|
290
|
-
*/
|
|
291
83
|
'agentName': string;
|
|
292
|
-
/**
|
|
293
|
-
*
|
|
294
|
-
* @type {string}
|
|
295
|
-
* @memberof CreateMachineAgentDto
|
|
296
|
-
*/
|
|
297
84
|
'goal': string;
|
|
298
|
-
/**
|
|
299
|
-
*
|
|
300
|
-
* @type {string}
|
|
301
|
-
* @memberof CreateMachineAgentDto
|
|
302
|
-
*/
|
|
303
85
|
'modelBaseId': string;
|
|
304
|
-
/**
|
|
305
|
-
*
|
|
306
|
-
* @type {string}
|
|
307
|
-
* @memberof CreateMachineAgentDto
|
|
308
|
-
*/
|
|
309
86
|
'machineName': string;
|
|
310
|
-
/**
|
|
311
|
-
*
|
|
312
|
-
* @type {number}
|
|
313
|
-
* @memberof CreateMachineAgentDto
|
|
314
|
-
*/
|
|
315
87
|
'machineInstanceId': number;
|
|
316
|
-
/**
|
|
317
|
-
*
|
|
318
|
-
* @type {string}
|
|
319
|
-
* @memberof CreateMachineAgentDto
|
|
320
|
-
*/
|
|
321
88
|
'instanceIP': string;
|
|
322
|
-
/**
|
|
323
|
-
*
|
|
324
|
-
* @type {string}
|
|
325
|
-
* @memberof CreateMachineAgentDto
|
|
326
|
-
*/
|
|
327
89
|
'entryFunctionName': string;
|
|
328
|
-
/**
|
|
329
|
-
*
|
|
330
|
-
* @type {string}
|
|
331
|
-
* @memberof CreateMachineAgentDto
|
|
332
|
-
*/
|
|
333
90
|
'machineManifestId': string;
|
|
334
|
-
/**
|
|
335
|
-
*
|
|
336
|
-
* @type {string}
|
|
337
|
-
* @memberof CreateMachineAgentDto
|
|
338
|
-
*/
|
|
339
91
|
'type': string;
|
|
340
|
-
/**
|
|
341
|
-
*
|
|
342
|
-
* @type {Array<object>}
|
|
343
|
-
* @memberof CreateMachineAgentDto
|
|
344
|
-
*/
|
|
345
|
-
'parameters': Array<object>;
|
|
346
|
-
/**
|
|
347
|
-
*
|
|
348
|
-
* @type {string}
|
|
349
|
-
* @memberof CreateMachineAgentDto
|
|
350
|
-
*/
|
|
351
92
|
'projectId': string;
|
|
352
|
-
/**
|
|
353
|
-
*
|
|
354
|
-
* @type {number}
|
|
355
|
-
* @memberof CreateMachineAgentDto
|
|
356
|
-
*/
|
|
357
93
|
'userId': number;
|
|
358
94
|
/**
|
|
359
95
|
* Optional Input Schema JSON for agent.
|
|
360
|
-
* @type {object}
|
|
361
|
-
* @memberof CreateMachineAgentDto
|
|
362
96
|
*/
|
|
363
97
|
'inputSchema'?: object;
|
|
364
98
|
}
|
|
365
|
-
/**
|
|
366
|
-
*
|
|
367
|
-
* @export
|
|
368
|
-
* @interface CreatePermissionDto
|
|
369
|
-
*/
|
|
370
99
|
export interface CreatePermissionDto {
|
|
371
|
-
/**
|
|
372
|
-
*
|
|
373
|
-
* @type {boolean}
|
|
374
|
-
* @memberof CreatePermissionDto
|
|
375
|
-
*/
|
|
376
100
|
'read': boolean;
|
|
377
|
-
/**
|
|
378
|
-
*
|
|
379
|
-
* @type {boolean}
|
|
380
|
-
* @memberof CreatePermissionDto
|
|
381
|
-
*/
|
|
382
101
|
'write': boolean;
|
|
383
|
-
/**
|
|
384
|
-
*
|
|
385
|
-
* @type {boolean}
|
|
386
|
-
* @memberof CreatePermissionDto
|
|
387
|
-
*/
|
|
388
102
|
'update': boolean;
|
|
389
|
-
/**
|
|
390
|
-
*
|
|
391
|
-
* @type {boolean}
|
|
392
|
-
* @memberof CreatePermissionDto
|
|
393
|
-
*/
|
|
394
103
|
'delete': boolean;
|
|
395
104
|
}
|
|
396
|
-
/**
|
|
397
|
-
*
|
|
398
|
-
* @export
|
|
399
|
-
* @interface CreateProjectDTO
|
|
400
|
-
*/
|
|
401
105
|
export interface CreateProjectDTO {
|
|
402
|
-
/**
|
|
403
|
-
*
|
|
404
|
-
* @type {string}
|
|
405
|
-
* @memberof CreateProjectDTO
|
|
406
|
-
*/
|
|
407
106
|
'name': string;
|
|
408
|
-
/**
|
|
409
|
-
*
|
|
410
|
-
* @type {string}
|
|
411
|
-
* @memberof CreateProjectDTO
|
|
412
|
-
*/
|
|
413
107
|
'description': string;
|
|
414
108
|
}
|
|
415
|
-
/**
|
|
416
|
-
*
|
|
417
|
-
* @export
|
|
418
|
-
* @interface CreateProjectResponseDTO
|
|
419
|
-
*/
|
|
420
109
|
export interface CreateProjectResponseDTO {
|
|
421
|
-
/**
|
|
422
|
-
*
|
|
423
|
-
* @type {ProjectResponseModel}
|
|
424
|
-
* @memberof CreateProjectResponseDTO
|
|
425
|
-
*/
|
|
426
110
|
'data': ProjectResponseModel;
|
|
427
111
|
}
|
|
428
|
-
/**
|
|
429
|
-
*
|
|
430
|
-
* @export
|
|
431
|
-
* @interface CreateProjectRoleResponseDto
|
|
432
|
-
*/
|
|
433
112
|
export interface CreateProjectRoleResponseDto {
|
|
434
|
-
/**
|
|
435
|
-
*
|
|
436
|
-
* @type {CreateRoleDTO}
|
|
437
|
-
* @memberof CreateProjectRoleResponseDto
|
|
438
|
-
*/
|
|
439
113
|
'data': CreateRoleDTO;
|
|
440
114
|
}
|
|
441
|
-
/**
|
|
442
|
-
*
|
|
443
|
-
* @export
|
|
444
|
-
* @interface CreateResourceDto
|
|
445
|
-
*/
|
|
446
115
|
export interface CreateResourceDto {
|
|
447
|
-
/**
|
|
448
|
-
*
|
|
449
|
-
* @type {string}
|
|
450
|
-
* @memberof CreateResourceDto
|
|
451
|
-
*/
|
|
452
116
|
'name': string;
|
|
453
|
-
/**
|
|
454
|
-
*
|
|
455
|
-
* @type {Array<CreatePermissionDto>}
|
|
456
|
-
* @memberof CreateResourceDto
|
|
457
|
-
*/
|
|
458
117
|
'permissions': Array<CreatePermissionDto>;
|
|
459
118
|
}
|
|
460
|
-
/**
|
|
461
|
-
*
|
|
462
|
-
* @export
|
|
463
|
-
* @interface CreateRoleDTO
|
|
464
|
-
*/
|
|
465
119
|
export interface CreateRoleDTO {
|
|
466
|
-
/**
|
|
467
|
-
*
|
|
468
|
-
* @type {number}
|
|
469
|
-
* @memberof CreateRoleDTO
|
|
470
|
-
*/
|
|
471
120
|
'id': number;
|
|
472
|
-
/**
|
|
473
|
-
*
|
|
474
|
-
* @type {string}
|
|
475
|
-
* @memberof CreateRoleDTO
|
|
476
|
-
*/
|
|
477
121
|
'name': string;
|
|
478
|
-
/**
|
|
479
|
-
*
|
|
480
|
-
* @type {string}
|
|
481
|
-
* @memberof CreateRoleDTO
|
|
482
|
-
*/
|
|
483
122
|
'description': string;
|
|
484
|
-
/**
|
|
485
|
-
*
|
|
486
|
-
* @type {Array<ResourceDTO>}
|
|
487
|
-
* @memberof CreateRoleDTO
|
|
488
|
-
*/
|
|
489
123
|
'resources': Array<ResourceDTO>;
|
|
490
124
|
}
|
|
491
|
-
/**
|
|
492
|
-
*
|
|
493
|
-
* @export
|
|
494
|
-
* @interface CreateRoleDto
|
|
495
|
-
*/
|
|
496
125
|
export interface CreateRoleDto {
|
|
497
|
-
/**
|
|
498
|
-
*
|
|
499
|
-
* @type {string}
|
|
500
|
-
* @memberof CreateRoleDto
|
|
501
|
-
*/
|
|
502
126
|
'name': string;
|
|
503
|
-
/**
|
|
504
|
-
*
|
|
505
|
-
* @type {string}
|
|
506
|
-
* @memberof CreateRoleDto
|
|
507
|
-
*/
|
|
508
127
|
'description': string;
|
|
509
|
-
/**
|
|
510
|
-
*
|
|
511
|
-
* @type {Array<CreateResourceDto>}
|
|
512
|
-
* @memberof CreateRoleDto
|
|
513
|
-
*/
|
|
514
128
|
'resources': Array<CreateResourceDto>;
|
|
515
129
|
}
|
|
516
|
-
/**
|
|
517
|
-
*
|
|
518
|
-
* @export
|
|
519
|
-
* @interface CreateWebhookDto
|
|
520
|
-
*/
|
|
521
130
|
export interface CreateWebhookDto {
|
|
522
131
|
/**
|
|
523
132
|
* The URL for the webhook
|
|
524
|
-
* @type {string}
|
|
525
|
-
* @memberof CreateWebhookDto
|
|
526
133
|
*/
|
|
527
134
|
'url': string;
|
|
528
135
|
/**
|
|
529
136
|
* Comma-separated notifications. Valid values: QUERY_CREATED, QUERY_COMPLETED, QUERY_FAILED, EVENT_CREATED, EVENT_UPDATED
|
|
530
|
-
* @type {string}
|
|
531
|
-
* @memberof CreateWebhookDto
|
|
532
137
|
*/
|
|
533
138
|
'notifications': string;
|
|
534
139
|
}
|
|
535
|
-
/**
|
|
536
|
-
*
|
|
537
|
-
* @export
|
|
538
|
-
* @interface DeleteProjectDto
|
|
539
|
-
*/
|
|
540
140
|
export interface DeleteProjectDto {
|
|
541
|
-
/**
|
|
542
|
-
*
|
|
543
|
-
* @type {string}
|
|
544
|
-
* @memberof DeleteProjectDto
|
|
545
|
-
*/
|
|
546
141
|
'message': string;
|
|
547
142
|
}
|
|
548
|
-
/**
|
|
549
|
-
*
|
|
550
|
-
* @export
|
|
551
|
-
* @interface DeleteProjectResponseDTO
|
|
552
|
-
*/
|
|
553
143
|
export interface DeleteProjectResponseDTO {
|
|
554
|
-
/**
|
|
555
|
-
*
|
|
556
|
-
* @type {string}
|
|
557
|
-
* @memberof DeleteProjectResponseDTO
|
|
558
|
-
*/
|
|
559
144
|
'message': string;
|
|
560
145
|
}
|
|
561
|
-
/**
|
|
562
|
-
*
|
|
563
|
-
* @export
|
|
564
|
-
* @interface DeleteProjectRoleByIdResponseDto
|
|
565
|
-
*/
|
|
566
146
|
export interface DeleteProjectRoleByIdResponseDto {
|
|
567
|
-
/**
|
|
568
|
-
*
|
|
569
|
-
* @type {DeleteProjectDto}
|
|
570
|
-
* @memberof DeleteProjectRoleByIdResponseDto
|
|
571
|
-
*/
|
|
572
147
|
'data': DeleteProjectDto;
|
|
573
148
|
}
|
|
574
|
-
/**
|
|
575
|
-
*
|
|
576
|
-
* @export
|
|
577
|
-
* @interface FatalErrorExceptionResponse
|
|
578
|
-
*/
|
|
579
149
|
export interface FatalErrorExceptionResponse {
|
|
580
|
-
/**
|
|
581
|
-
*
|
|
582
|
-
* @type {string}
|
|
583
|
-
* @memberof FatalErrorExceptionResponse
|
|
584
|
-
*/
|
|
585
150
|
'message': string;
|
|
586
151
|
}
|
|
587
|
-
/**
|
|
588
|
-
*
|
|
589
|
-
* @export
|
|
590
|
-
* @interface ForbiddenExceptionResponse
|
|
591
|
-
*/
|
|
592
152
|
export interface ForbiddenExceptionResponse {
|
|
593
|
-
/**
|
|
594
|
-
*
|
|
595
|
-
* @type {string}
|
|
596
|
-
* @memberof ForbiddenExceptionResponse
|
|
597
|
-
*/
|
|
598
153
|
'message': string;
|
|
599
154
|
}
|
|
600
|
-
/**
|
|
601
|
-
*
|
|
602
|
-
* @export
|
|
603
|
-
* @interface ForgetPasswordRequestDTO
|
|
604
|
-
*/
|
|
605
155
|
export interface ForgetPasswordRequestDTO {
|
|
606
|
-
/**
|
|
607
|
-
*
|
|
608
|
-
* @type {string}
|
|
609
|
-
* @memberof ForgetPasswordRequestDTO
|
|
610
|
-
*/
|
|
611
156
|
'email': string;
|
|
612
157
|
}
|
|
613
|
-
/**
|
|
614
|
-
*
|
|
615
|
-
* @export
|
|
616
|
-
* @interface ForgetPasswordResponseDTO
|
|
617
|
-
*/
|
|
618
158
|
export interface ForgetPasswordResponseDTO {
|
|
619
|
-
/**
|
|
620
|
-
*
|
|
621
|
-
* @type {string}
|
|
622
|
-
* @memberof ForgetPasswordResponseDTO
|
|
623
|
-
*/
|
|
624
159
|
'token': string;
|
|
625
160
|
}
|
|
626
|
-
/**
|
|
627
|
-
*
|
|
628
|
-
* @export
|
|
629
|
-
* @interface ForgetPasswordVerificationRequestDTO
|
|
630
|
-
*/
|
|
631
161
|
export interface ForgetPasswordVerificationRequestDTO {
|
|
632
|
-
/**
|
|
633
|
-
*
|
|
634
|
-
* @type {string}
|
|
635
|
-
* @memberof ForgetPasswordVerificationRequestDTO
|
|
636
|
-
*/
|
|
637
162
|
'token': string;
|
|
638
163
|
}
|
|
639
|
-
/**
|
|
640
|
-
*
|
|
641
|
-
* @export
|
|
642
|
-
* @interface ForgetPasswordVerificationResponseDTO
|
|
643
|
-
*/
|
|
644
164
|
export interface ForgetPasswordVerificationResponseDTO {
|
|
645
|
-
/**
|
|
646
|
-
*
|
|
647
|
-
* @type {string}
|
|
648
|
-
* @memberof ForgetPasswordVerificationResponseDTO
|
|
649
|
-
*/
|
|
650
165
|
'token': string;
|
|
651
166
|
}
|
|
652
|
-
/**
|
|
653
|
-
*
|
|
654
|
-
* @export
|
|
655
|
-
* @interface GetAllProjectDto
|
|
656
|
-
*/
|
|
657
167
|
export interface GetAllProjectDto {
|
|
658
|
-
/**
|
|
659
|
-
*
|
|
660
|
-
* @type {Array<GetAllRoleDTO>}
|
|
661
|
-
* @memberof GetAllProjectDto
|
|
662
|
-
*/
|
|
663
168
|
'roles': Array<GetAllRoleDTO>;
|
|
664
|
-
/**
|
|
665
|
-
*
|
|
666
|
-
* @type {number}
|
|
667
|
-
* @memberof GetAllProjectDto
|
|
668
|
-
*/
|
|
669
169
|
'totalCount': number;
|
|
670
170
|
}
|
|
671
|
-
/**
|
|
672
|
-
*
|
|
673
|
-
* @export
|
|
674
|
-
* @interface GetAllProjectMemberResponse
|
|
675
|
-
*/
|
|
676
171
|
export interface GetAllProjectMemberResponse {
|
|
677
|
-
/**
|
|
678
|
-
*
|
|
679
|
-
* @type {Array<TeamMemberDto>}
|
|
680
|
-
* @memberof GetAllProjectMemberResponse
|
|
681
|
-
*/
|
|
682
172
|
'teamMembers': Array<TeamMemberDto>;
|
|
683
|
-
/**
|
|
684
|
-
*
|
|
685
|
-
* @type {number}
|
|
686
|
-
* @memberof GetAllProjectMemberResponse
|
|
687
|
-
*/
|
|
688
173
|
'totalCount': number;
|
|
689
174
|
}
|
|
690
|
-
/**
|
|
691
|
-
*
|
|
692
|
-
* @export
|
|
693
|
-
* @interface GetAllProjectMemberResponseDto
|
|
694
|
-
*/
|
|
695
175
|
export interface GetAllProjectMemberResponseDto {
|
|
696
|
-
/**
|
|
697
|
-
*
|
|
698
|
-
* @type {GetAllProjectMemberResponse}
|
|
699
|
-
* @memberof GetAllProjectMemberResponseDto
|
|
700
|
-
*/
|
|
701
176
|
'data': GetAllProjectMemberResponse;
|
|
702
177
|
}
|
|
703
|
-
/**
|
|
704
|
-
*
|
|
705
|
-
* @export
|
|
706
|
-
* @interface GetAllProjectRoleResponseDto
|
|
707
|
-
*/
|
|
708
178
|
export interface GetAllProjectRoleResponseDto {
|
|
709
|
-
/**
|
|
710
|
-
*
|
|
711
|
-
* @type {GetAllProjectDto}
|
|
712
|
-
* @memberof GetAllProjectRoleResponseDto
|
|
713
|
-
*/
|
|
714
179
|
'data': GetAllProjectDto;
|
|
715
180
|
}
|
|
716
|
-
/**
|
|
717
|
-
*
|
|
718
|
-
* @export
|
|
719
|
-
* @interface GetAllProjectsResponseDTO
|
|
720
|
-
*/
|
|
721
181
|
export interface GetAllProjectsResponseDTO {
|
|
722
|
-
/**
|
|
723
|
-
*
|
|
724
|
-
* @type {AllProjectResponseModel}
|
|
725
|
-
* @memberof GetAllProjectsResponseDTO
|
|
726
|
-
*/
|
|
727
182
|
'data': AllProjectResponseModel;
|
|
728
183
|
}
|
|
729
|
-
/**
|
|
730
|
-
*
|
|
731
|
-
* @export
|
|
732
|
-
* @interface GetAllRoleDTO
|
|
733
|
-
*/
|
|
734
184
|
export interface GetAllRoleDTO {
|
|
735
|
-
/**
|
|
736
|
-
*
|
|
737
|
-
* @type {number}
|
|
738
|
-
* @memberof GetAllRoleDTO
|
|
739
|
-
*/
|
|
740
185
|
'id': number;
|
|
741
|
-
/**
|
|
742
|
-
*
|
|
743
|
-
* @type {string}
|
|
744
|
-
* @memberof GetAllRoleDTO
|
|
745
|
-
*/
|
|
746
186
|
'name': string;
|
|
747
|
-
/**
|
|
748
|
-
*
|
|
749
|
-
* @type {string}
|
|
750
|
-
* @memberof GetAllRoleDTO
|
|
751
|
-
*/
|
|
752
187
|
'description': string;
|
|
753
|
-
/**
|
|
754
|
-
*
|
|
755
|
-
* @type {string}
|
|
756
|
-
* @memberof GetAllRoleDTO
|
|
757
|
-
*/
|
|
758
188
|
'projectId': string;
|
|
759
|
-
/**
|
|
760
|
-
*
|
|
761
|
-
* @type {string}
|
|
762
|
-
* @memberof GetAllRoleDTO
|
|
763
|
-
*/
|
|
764
189
|
'createdAt': string;
|
|
765
|
-
/**
|
|
766
|
-
*
|
|
767
|
-
* @type {string}
|
|
768
|
-
* @memberof GetAllRoleDTO
|
|
769
|
-
*/
|
|
770
190
|
'updatedAt': string;
|
|
771
|
-
/**
|
|
772
|
-
*
|
|
773
|
-
* @type {string}
|
|
774
|
-
* @memberof GetAllRoleDTO
|
|
775
|
-
*/
|
|
776
191
|
'deletedAt': string;
|
|
777
192
|
}
|
|
778
|
-
/**
|
|
779
|
-
*
|
|
780
|
-
* @export
|
|
781
|
-
* @interface GetProjectByIDResponseDTO
|
|
782
|
-
*/
|
|
783
193
|
export interface GetProjectByIDResponseDTO {
|
|
784
|
-
/**
|
|
785
|
-
*
|
|
786
|
-
* @type {ProjectResponseModel}
|
|
787
|
-
* @memberof GetProjectByIDResponseDTO
|
|
788
|
-
*/
|
|
789
194
|
'data': ProjectResponseModel;
|
|
790
195
|
}
|
|
791
|
-
/**
|
|
792
|
-
*
|
|
793
|
-
* @export
|
|
794
|
-
* @interface GetProjectRoleByIdResponseDto
|
|
795
|
-
*/
|
|
796
196
|
export interface GetProjectRoleByIdResponseDto {
|
|
797
|
-
/**
|
|
798
|
-
*
|
|
799
|
-
* @type {GetRoleDTO}
|
|
800
|
-
* @memberof GetProjectRoleByIdResponseDto
|
|
801
|
-
*/
|
|
802
197
|
'data': GetRoleDTO;
|
|
803
198
|
}
|
|
804
|
-
/**
|
|
805
|
-
*
|
|
806
|
-
* @export
|
|
807
|
-
* @interface GetRoleDTO
|
|
808
|
-
*/
|
|
809
199
|
export interface GetRoleDTO {
|
|
810
|
-
/**
|
|
811
|
-
*
|
|
812
|
-
* @type {number}
|
|
813
|
-
* @memberof GetRoleDTO
|
|
814
|
-
*/
|
|
815
200
|
'id': number;
|
|
816
|
-
/**
|
|
817
|
-
*
|
|
818
|
-
* @type {string}
|
|
819
|
-
* @memberof GetRoleDTO
|
|
820
|
-
*/
|
|
821
201
|
'name': string;
|
|
822
|
-
/**
|
|
823
|
-
*
|
|
824
|
-
* @type {string}
|
|
825
|
-
* @memberof GetRoleDTO
|
|
826
|
-
*/
|
|
827
202
|
'description': string;
|
|
828
|
-
/**
|
|
829
|
-
*
|
|
830
|
-
* @type {Array<ResourceDTO>}
|
|
831
|
-
* @memberof GetRoleDTO
|
|
832
|
-
*/
|
|
833
203
|
'resources': Array<ResourceDTO>;
|
|
834
204
|
}
|
|
835
|
-
/**
|
|
836
|
-
*
|
|
837
|
-
* @export
|
|
838
|
-
* @interface GetUserProjectRoleByRoleIdResponseDto
|
|
839
|
-
*/
|
|
840
205
|
export interface GetUserProjectRoleByRoleIdResponseDto {
|
|
841
|
-
/**
|
|
842
|
-
*
|
|
843
|
-
* @type {GetRoleDTO}
|
|
844
|
-
* @memberof GetUserProjectRoleByRoleIdResponseDto
|
|
845
|
-
*/
|
|
846
206
|
'data': GetRoleDTO;
|
|
847
207
|
}
|
|
848
|
-
/**
|
|
849
|
-
*
|
|
850
|
-
* @export
|
|
851
|
-
* @interface LoginRequestDTO
|
|
852
|
-
*/
|
|
853
208
|
export interface LoginRequestDTO {
|
|
854
209
|
/**
|
|
855
210
|
* Email
|
|
856
|
-
* @type {string}
|
|
857
|
-
* @memberof LoginRequestDTO
|
|
858
211
|
*/
|
|
859
212
|
'email': string;
|
|
860
213
|
/**
|
|
861
214
|
* Password
|
|
862
|
-
* @type {string}
|
|
863
|
-
* @memberof LoginRequestDTO
|
|
864
215
|
*/
|
|
865
216
|
'password': string;
|
|
866
217
|
}
|
|
867
|
-
/**
|
|
868
|
-
*
|
|
869
|
-
* @export
|
|
870
|
-
* @interface LoginResponseDTO
|
|
871
|
-
*/
|
|
872
218
|
export interface LoginResponseDTO {
|
|
873
219
|
/**
|
|
874
220
|
* Token
|
|
875
|
-
* @type {string}
|
|
876
|
-
* @memberof LoginResponseDTO
|
|
877
221
|
*/
|
|
878
222
|
'token': string;
|
|
879
223
|
}
|
|
880
|
-
/**
|
|
881
|
-
*
|
|
882
|
-
* @export
|
|
883
|
-
* @interface MachineStatusDto
|
|
884
|
-
*/
|
|
885
224
|
export interface MachineStatusDto {
|
|
886
225
|
/**
|
|
887
226
|
* Current status of the machine instance
|
|
888
|
-
* @type {string}
|
|
889
|
-
* @memberof MachineStatusDto
|
|
890
227
|
*/
|
|
891
228
|
'status': string;
|
|
892
229
|
/**
|
|
893
230
|
* Logs from the machine instance execution
|
|
894
|
-
* @type {string}
|
|
895
|
-
* @memberof MachineStatusDto
|
|
896
231
|
*/
|
|
897
232
|
'logs': string;
|
|
898
233
|
/**
|
|
899
234
|
* Timestamp of the status update
|
|
900
|
-
* @type {string}
|
|
901
|
-
* @memberof MachineStatusDto
|
|
902
235
|
*/
|
|
903
236
|
'timeStamp': string;
|
|
904
237
|
}
|
|
905
|
-
/**
|
|
906
|
-
*
|
|
907
|
-
* @export
|
|
908
|
-
* @interface MessageResponseDTO
|
|
909
|
-
*/
|
|
910
238
|
export interface MessageResponseDTO {
|
|
911
|
-
/**
|
|
912
|
-
*
|
|
913
|
-
* @type {string}
|
|
914
|
-
* @memberof MessageResponseDTO
|
|
915
|
-
*/
|
|
916
239
|
'message': string;
|
|
917
240
|
}
|
|
918
|
-
/**
|
|
919
|
-
*
|
|
920
|
-
* @export
|
|
921
|
-
* @interface NotFoundExceptionResponse
|
|
922
|
-
*/
|
|
923
241
|
export interface NotFoundExceptionResponse {
|
|
924
|
-
/**
|
|
925
|
-
*
|
|
926
|
-
* @type {string}
|
|
927
|
-
* @memberof NotFoundExceptionResponse
|
|
928
|
-
*/
|
|
929
242
|
'message': string;
|
|
930
243
|
}
|
|
931
|
-
/**
|
|
932
|
-
*
|
|
933
|
-
* @export
|
|
934
|
-
* @interface OAuthLoginRequestDTO
|
|
935
|
-
*/
|
|
936
244
|
export interface OAuthLoginRequestDTO {
|
|
937
|
-
/**
|
|
938
|
-
*
|
|
939
|
-
* @type {string}
|
|
940
|
-
* @memberof OAuthLoginRequestDTO
|
|
941
|
-
*/
|
|
942
245
|
'providerId': string;
|
|
943
|
-
/**
|
|
944
|
-
*
|
|
945
|
-
* @type {string}
|
|
946
|
-
* @memberof OAuthLoginRequestDTO
|
|
947
|
-
*/
|
|
948
246
|
'type': OAuthLoginRequestDTOTypeEnum;
|
|
949
|
-
/**
|
|
950
|
-
*
|
|
951
|
-
* @type {string}
|
|
952
|
-
* @memberof OAuthLoginRequestDTO
|
|
953
|
-
*/
|
|
954
247
|
'email': string;
|
|
955
|
-
/**
|
|
956
|
-
*
|
|
957
|
-
* @type {string}
|
|
958
|
-
* @memberof OAuthLoginRequestDTO
|
|
959
|
-
*/
|
|
960
248
|
'profilePictureUrl': string;
|
|
961
249
|
}
|
|
962
250
|
export declare const OAuthLoginRequestDTOTypeEnum: {
|
|
@@ -964,208 +252,43 @@ export declare const OAuthLoginRequestDTOTypeEnum: {
|
|
|
964
252
|
readonly Apple: "APPLE";
|
|
965
253
|
};
|
|
966
254
|
export type OAuthLoginRequestDTOTypeEnum = typeof OAuthLoginRequestDTOTypeEnum[keyof typeof OAuthLoginRequestDTOTypeEnum];
|
|
967
|
-
/**
|
|
968
|
-
*
|
|
969
|
-
* @export
|
|
970
|
-
* @interface PermissionsDTO
|
|
971
|
-
*/
|
|
972
255
|
export interface PermissionsDTO {
|
|
973
|
-
/**
|
|
974
|
-
*
|
|
975
|
-
* @type {number}
|
|
976
|
-
* @memberof PermissionsDTO
|
|
977
|
-
*/
|
|
978
256
|
'id': number;
|
|
979
|
-
/**
|
|
980
|
-
*
|
|
981
|
-
* @type {boolean}
|
|
982
|
-
* @memberof PermissionsDTO
|
|
983
|
-
*/
|
|
984
257
|
'read': boolean;
|
|
985
|
-
/**
|
|
986
|
-
*
|
|
987
|
-
* @type {boolean}
|
|
988
|
-
* @memberof PermissionsDTO
|
|
989
|
-
*/
|
|
990
258
|
'write': boolean;
|
|
991
|
-
/**
|
|
992
|
-
*
|
|
993
|
-
* @type {boolean}
|
|
994
|
-
* @memberof PermissionsDTO
|
|
995
|
-
*/
|
|
996
259
|
'update': boolean;
|
|
997
|
-
/**
|
|
998
|
-
*
|
|
999
|
-
* @type {boolean}
|
|
1000
|
-
* @memberof PermissionsDTO
|
|
1001
|
-
*/
|
|
1002
260
|
'delete': boolean;
|
|
1003
261
|
}
|
|
1004
|
-
/**
|
|
1005
|
-
*
|
|
1006
|
-
* @export
|
|
1007
|
-
* @interface ProjectResponseModel
|
|
1008
|
-
*/
|
|
1009
262
|
export interface ProjectResponseModel {
|
|
1010
|
-
/**
|
|
1011
|
-
*
|
|
1012
|
-
* @type {string}
|
|
1013
|
-
* @memberof ProjectResponseModel
|
|
1014
|
-
*/
|
|
1015
263
|
'id': string;
|
|
1016
|
-
/**
|
|
1017
|
-
*
|
|
1018
|
-
* @type {string}
|
|
1019
|
-
* @memberof ProjectResponseModel
|
|
1020
|
-
*/
|
|
1021
264
|
'name': string;
|
|
1022
|
-
/**
|
|
1023
|
-
*
|
|
1024
|
-
* @type {string}
|
|
1025
|
-
* @memberof ProjectResponseModel
|
|
1026
|
-
*/
|
|
1027
265
|
'description': string;
|
|
1028
|
-
/**
|
|
1029
|
-
*
|
|
1030
|
-
* @type {string}
|
|
1031
|
-
* @memberof ProjectResponseModel
|
|
1032
|
-
*/
|
|
1033
266
|
'createdAt': string;
|
|
1034
|
-
|
|
1035
|
-
*
|
|
1036
|
-
* @type {string}
|
|
1037
|
-
* @memberof ProjectResponseModel
|
|
1038
|
-
*/
|
|
1039
|
-
'updatedAt': string;
|
|
1040
|
-
/**
|
|
1041
|
-
*
|
|
1042
|
-
* @type {string}
|
|
1043
|
-
* @memberof ProjectResponseModel
|
|
1044
|
-
*/
|
|
267
|
+
'updatedAt': string;
|
|
1045
268
|
'deletedAt': string;
|
|
1046
269
|
}
|
|
1047
|
-
/**
|
|
1048
|
-
*
|
|
1049
|
-
* @export
|
|
1050
|
-
* @interface ResetPasswordRequestDTO
|
|
1051
|
-
*/
|
|
1052
270
|
export interface ResetPasswordRequestDTO {
|
|
1053
|
-
/**
|
|
1054
|
-
*
|
|
1055
|
-
* @type {string}
|
|
1056
|
-
* @memberof ResetPasswordRequestDTO
|
|
1057
|
-
*/
|
|
1058
271
|
'token': string;
|
|
1059
|
-
/**
|
|
1060
|
-
*
|
|
1061
|
-
* @type {string}
|
|
1062
|
-
* @memberof ResetPasswordRequestDTO
|
|
1063
|
-
*/
|
|
1064
272
|
'password': string;
|
|
1065
273
|
}
|
|
1066
|
-
/**
|
|
1067
|
-
*
|
|
1068
|
-
* @export
|
|
1069
|
-
* @interface ResourceDTO
|
|
1070
|
-
*/
|
|
1071
274
|
export interface ResourceDTO {
|
|
1072
|
-
/**
|
|
1073
|
-
*
|
|
1074
|
-
* @type {number}
|
|
1075
|
-
* @memberof ResourceDTO
|
|
1076
|
-
*/
|
|
1077
275
|
'id': number;
|
|
1078
|
-
/**
|
|
1079
|
-
*
|
|
1080
|
-
* @type {string}
|
|
1081
|
-
* @memberof ResourceDTO
|
|
1082
|
-
*/
|
|
1083
276
|
'name': string;
|
|
1084
|
-
/**
|
|
1085
|
-
*
|
|
1086
|
-
* @type {Array<PermissionsDTO>}
|
|
1087
|
-
* @memberof ResourceDTO
|
|
1088
|
-
*/
|
|
1089
277
|
'permissions': Array<PermissionsDTO>;
|
|
1090
278
|
}
|
|
1091
|
-
/**
|
|
1092
|
-
*
|
|
1093
|
-
* @export
|
|
1094
|
-
* @interface RoleDto
|
|
1095
|
-
*/
|
|
1096
279
|
export interface RoleDto {
|
|
1097
|
-
/**
|
|
1098
|
-
*
|
|
1099
|
-
* @type {number}
|
|
1100
|
-
* @memberof RoleDto
|
|
1101
|
-
*/
|
|
1102
280
|
'id': number;
|
|
1103
|
-
/**
|
|
1104
|
-
*
|
|
1105
|
-
* @type {string}
|
|
1106
|
-
* @memberof RoleDto
|
|
1107
|
-
*/
|
|
1108
281
|
'name': string;
|
|
1109
282
|
}
|
|
1110
|
-
/**
|
|
1111
|
-
*
|
|
1112
|
-
* @export
|
|
1113
|
-
* @interface SignupRequestDTO
|
|
1114
|
-
*/
|
|
1115
283
|
export interface SignupRequestDTO {
|
|
1116
|
-
/**
|
|
1117
|
-
*
|
|
1118
|
-
* @type {string}
|
|
1119
|
-
* @memberof SignupRequestDTO
|
|
1120
|
-
*/
|
|
1121
284
|
'email': string;
|
|
1122
|
-
/**
|
|
1123
|
-
*
|
|
1124
|
-
* @type {string}
|
|
1125
|
-
* @memberof SignupRequestDTO
|
|
1126
|
-
*/
|
|
1127
285
|
'password'?: string;
|
|
1128
|
-
/**
|
|
1129
|
-
*
|
|
1130
|
-
* @type {string}
|
|
1131
|
-
* @memberof SignupRequestDTO
|
|
1132
|
-
*/
|
|
1133
286
|
'firstName': string;
|
|
1134
|
-
/**
|
|
1135
|
-
*
|
|
1136
|
-
* @type {string}
|
|
1137
|
-
* @memberof SignupRequestDTO
|
|
1138
|
-
*/
|
|
1139
287
|
'lastName': string;
|
|
1140
|
-
/**
|
|
1141
|
-
*
|
|
1142
|
-
* @type {string}
|
|
1143
|
-
* @memberof SignupRequestDTO
|
|
1144
|
-
*/
|
|
1145
288
|
'phone': string;
|
|
1146
|
-
/**
|
|
1147
|
-
*
|
|
1148
|
-
* @type {string}
|
|
1149
|
-
* @memberof SignupRequestDTO
|
|
1150
|
-
*/
|
|
1151
289
|
'providerId'?: string;
|
|
1152
|
-
/**
|
|
1153
|
-
*
|
|
1154
|
-
* @type {string}
|
|
1155
|
-
* @memberof SignupRequestDTO
|
|
1156
|
-
*/
|
|
1157
290
|
'providerType'?: SignupRequestDTOProviderTypeEnum;
|
|
1158
|
-
/**
|
|
1159
|
-
*
|
|
1160
|
-
* @type {string}
|
|
1161
|
-
* @memberof SignupRequestDTO
|
|
1162
|
-
*/
|
|
1163
291
|
'image'?: string;
|
|
1164
|
-
/**
|
|
1165
|
-
*
|
|
1166
|
-
* @type {string}
|
|
1167
|
-
* @memberof SignupRequestDTO
|
|
1168
|
-
*/
|
|
1169
292
|
'profilePictureUrl': string;
|
|
1170
293
|
}
|
|
1171
294
|
export declare const SignupRequestDTOProviderTypeEnum: {
|
|
@@ -1173,360 +296,82 @@ export declare const SignupRequestDTOProviderTypeEnum: {
|
|
|
1173
296
|
readonly Apple: "APPLE";
|
|
1174
297
|
};
|
|
1175
298
|
export type SignupRequestDTOProviderTypeEnum = typeof SignupRequestDTOProviderTypeEnum[keyof typeof SignupRequestDTOProviderTypeEnum];
|
|
1176
|
-
/**
|
|
1177
|
-
*
|
|
1178
|
-
* @export
|
|
1179
|
-
* @interface SignupResponseDTO
|
|
1180
|
-
*/
|
|
1181
299
|
export interface SignupResponseDTO {
|
|
1182
300
|
/**
|
|
1183
301
|
* Token
|
|
1184
|
-
* @type {string}
|
|
1185
|
-
* @memberof SignupResponseDTO
|
|
1186
302
|
*/
|
|
1187
303
|
'token': string;
|
|
1188
304
|
}
|
|
1189
|
-
/**
|
|
1190
|
-
*
|
|
1191
|
-
* @export
|
|
1192
|
-
* @interface SimilaritySearchQueryDTO
|
|
1193
|
-
*/
|
|
1194
305
|
export interface SimilaritySearchQueryDTO {
|
|
1195
|
-
/**
|
|
1196
|
-
*
|
|
1197
|
-
* @type {string}
|
|
1198
|
-
* @memberof SimilaritySearchQueryDTO
|
|
1199
|
-
*/
|
|
1200
306
|
'query': string;
|
|
1201
|
-
/**
|
|
1202
|
-
*
|
|
1203
|
-
* @type {object}
|
|
1204
|
-
* @memberof SimilaritySearchQueryDTO
|
|
1205
|
-
*/
|
|
1206
307
|
'params': object;
|
|
1207
|
-
/**
|
|
1208
|
-
*
|
|
1209
|
-
* @type {object}
|
|
1210
|
-
* @memberof SimilaritySearchQueryDTO
|
|
1211
|
-
*/
|
|
1212
308
|
'filter': object;
|
|
1213
|
-
/**
|
|
1214
|
-
*
|
|
1215
|
-
* @type {Array<string>}
|
|
1216
|
-
* @memberof SimilaritySearchQueryDTO
|
|
1217
|
-
*/
|
|
1218
309
|
'include': Array<string>;
|
|
1219
310
|
}
|
|
1220
|
-
/**
|
|
1221
|
-
*
|
|
1222
|
-
* @export
|
|
1223
|
-
* @interface TeamMemberDto
|
|
1224
|
-
*/
|
|
1225
311
|
export interface TeamMemberDto {
|
|
1226
|
-
/**
|
|
1227
|
-
*
|
|
1228
|
-
* @type {number}
|
|
1229
|
-
* @memberof TeamMemberDto
|
|
1230
|
-
*/
|
|
1231
312
|
'id': number;
|
|
1232
|
-
/**
|
|
1233
|
-
*
|
|
1234
|
-
* @type {string}
|
|
1235
|
-
* @memberof TeamMemberDto
|
|
1236
|
-
*/
|
|
1237
313
|
'status': string;
|
|
1238
|
-
/**
|
|
1239
|
-
*
|
|
1240
|
-
* @type {UserDto}
|
|
1241
|
-
* @memberof TeamMemberDto
|
|
1242
|
-
*/
|
|
1243
314
|
'user': UserDto;
|
|
1244
|
-
/**
|
|
1245
|
-
*
|
|
1246
|
-
* @type {RoleDto}
|
|
1247
|
-
* @memberof TeamMemberDto
|
|
1248
|
-
*/
|
|
1249
315
|
'role': RoleDto;
|
|
1250
316
|
}
|
|
1251
|
-
/**
|
|
1252
|
-
*
|
|
1253
|
-
* @export
|
|
1254
|
-
* @interface UnauthorizedExceptionResponse
|
|
1255
|
-
*/
|
|
1256
317
|
export interface UnauthorizedExceptionResponse {
|
|
1257
|
-
/**
|
|
1258
|
-
*
|
|
1259
|
-
* @type {string}
|
|
1260
|
-
* @memberof UnauthorizedExceptionResponse
|
|
1261
|
-
*/
|
|
1262
318
|
'message': string;
|
|
1263
319
|
}
|
|
1264
|
-
/**
|
|
1265
|
-
*
|
|
1266
|
-
* @export
|
|
1267
|
-
* @interface UpdateDocumentRequestDTO
|
|
1268
|
-
*/
|
|
1269
320
|
export interface UpdateDocumentRequestDTO {
|
|
1270
|
-
/**
|
|
1271
|
-
*
|
|
1272
|
-
* @type {string}
|
|
1273
|
-
* @memberof UpdateDocumentRequestDTO
|
|
1274
|
-
*/
|
|
1275
321
|
'document': string;
|
|
1276
|
-
/**
|
|
1277
|
-
*
|
|
1278
|
-
* @type {object}
|
|
1279
|
-
* @memberof UpdateDocumentRequestDTO
|
|
1280
|
-
*/
|
|
1281
322
|
'metadata': object;
|
|
1282
323
|
}
|
|
1283
|
-
/**
|
|
1284
|
-
*
|
|
1285
|
-
* @export
|
|
1286
|
-
* @interface UpdatePermissionDto
|
|
1287
|
-
*/
|
|
1288
324
|
export interface UpdatePermissionDto {
|
|
1289
|
-
/**
|
|
1290
|
-
*
|
|
1291
|
-
* @type {number}
|
|
1292
|
-
* @memberof UpdatePermissionDto
|
|
1293
|
-
*/
|
|
1294
325
|
'id': number;
|
|
1295
|
-
/**
|
|
1296
|
-
*
|
|
1297
|
-
* @type {boolean}
|
|
1298
|
-
* @memberof UpdatePermissionDto
|
|
1299
|
-
*/
|
|
1300
326
|
'read': boolean;
|
|
1301
|
-
/**
|
|
1302
|
-
*
|
|
1303
|
-
* @type {boolean}
|
|
1304
|
-
* @memberof UpdatePermissionDto
|
|
1305
|
-
*/
|
|
1306
327
|
'write': boolean;
|
|
1307
|
-
/**
|
|
1308
|
-
*
|
|
1309
|
-
* @type {boolean}
|
|
1310
|
-
* @memberof UpdatePermissionDto
|
|
1311
|
-
*/
|
|
1312
328
|
'update': boolean;
|
|
1313
|
-
/**
|
|
1314
|
-
*
|
|
1315
|
-
* @type {boolean}
|
|
1316
|
-
* @memberof UpdatePermissionDto
|
|
1317
|
-
*/
|
|
1318
329
|
'delete': boolean;
|
|
1319
330
|
}
|
|
1320
|
-
/**
|
|
1321
|
-
*
|
|
1322
|
-
* @export
|
|
1323
|
-
* @interface UpdateProjectByIDResponseDTO
|
|
1324
|
-
*/
|
|
1325
331
|
export interface UpdateProjectByIDResponseDTO {
|
|
1326
|
-
/**
|
|
1327
|
-
*
|
|
1328
|
-
* @type {ProjectResponseModel}
|
|
1329
|
-
* @memberof UpdateProjectByIDResponseDTO
|
|
1330
|
-
*/
|
|
1331
332
|
'data': ProjectResponseModel;
|
|
1332
333
|
}
|
|
1333
|
-
/**
|
|
1334
|
-
*
|
|
1335
|
-
* @export
|
|
1336
|
-
* @interface UpdateProjectByIdRequest
|
|
1337
|
-
*/
|
|
1338
334
|
export interface UpdateProjectByIdRequest {
|
|
1339
|
-
/**
|
|
1340
|
-
*
|
|
1341
|
-
* @type {string}
|
|
1342
|
-
* @memberof UpdateProjectByIdRequest
|
|
1343
|
-
*/
|
|
1344
335
|
'name': string;
|
|
1345
|
-
/**
|
|
1346
|
-
*
|
|
1347
|
-
* @type {string}
|
|
1348
|
-
* @memberof UpdateProjectByIdRequest
|
|
1349
|
-
*/
|
|
1350
336
|
'description': string;
|
|
1351
337
|
}
|
|
1352
|
-
/**
|
|
1353
|
-
*
|
|
1354
|
-
* @export
|
|
1355
|
-
* @interface UpdateProjectRoleResponseDto
|
|
1356
|
-
*/
|
|
1357
338
|
export interface UpdateProjectRoleResponseDto {
|
|
1358
|
-
/**
|
|
1359
|
-
*
|
|
1360
|
-
* @type {UpdateRoleDTO}
|
|
1361
|
-
* @memberof UpdateProjectRoleResponseDto
|
|
1362
|
-
*/
|
|
1363
339
|
'data': UpdateRoleDTO;
|
|
1364
340
|
}
|
|
1365
|
-
/**
|
|
1366
|
-
*
|
|
1367
|
-
* @export
|
|
1368
|
-
* @interface UpdateResourceDto
|
|
1369
|
-
*/
|
|
1370
341
|
export interface UpdateResourceDto {
|
|
1371
|
-
/**
|
|
1372
|
-
*
|
|
1373
|
-
* @type {number}
|
|
1374
|
-
* @memberof UpdateResourceDto
|
|
1375
|
-
*/
|
|
1376
342
|
'id': number;
|
|
1377
|
-
/**
|
|
1378
|
-
*
|
|
1379
|
-
* @type {string}
|
|
1380
|
-
* @memberof UpdateResourceDto
|
|
1381
|
-
*/
|
|
1382
343
|
'name': string;
|
|
1383
|
-
/**
|
|
1384
|
-
*
|
|
1385
|
-
* @type {Array<UpdatePermissionDto>}
|
|
1386
|
-
* @memberof UpdateResourceDto
|
|
1387
|
-
*/
|
|
1388
344
|
'permissions': Array<UpdatePermissionDto>;
|
|
1389
345
|
}
|
|
1390
|
-
/**
|
|
1391
|
-
*
|
|
1392
|
-
* @export
|
|
1393
|
-
* @interface UpdateRoleByIdDto
|
|
1394
|
-
*/
|
|
1395
346
|
export interface UpdateRoleByIdDto {
|
|
1396
|
-
/**
|
|
1397
|
-
*
|
|
1398
|
-
* @type {string}
|
|
1399
|
-
* @memberof UpdateRoleByIdDto
|
|
1400
|
-
*/
|
|
1401
347
|
'name': string;
|
|
1402
|
-
/**
|
|
1403
|
-
*
|
|
1404
|
-
* @type {string}
|
|
1405
|
-
* @memberof UpdateRoleByIdDto
|
|
1406
|
-
*/
|
|
1407
348
|
'description': string;
|
|
1408
|
-
/**
|
|
1409
|
-
*
|
|
1410
|
-
* @type {Array<UpdateResourceDto>}
|
|
1411
|
-
* @memberof UpdateRoleByIdDto
|
|
1412
|
-
*/
|
|
1413
349
|
'resources': Array<UpdateResourceDto>;
|
|
1414
350
|
}
|
|
1415
|
-
/**
|
|
1416
|
-
*
|
|
1417
|
-
* @export
|
|
1418
|
-
* @interface UpdateRoleDTO
|
|
1419
|
-
*/
|
|
1420
351
|
export interface UpdateRoleDTO {
|
|
1421
|
-
/**
|
|
1422
|
-
*
|
|
1423
|
-
* @type {number}
|
|
1424
|
-
* @memberof UpdateRoleDTO
|
|
1425
|
-
*/
|
|
1426
352
|
'id': number;
|
|
1427
|
-
/**
|
|
1428
|
-
*
|
|
1429
|
-
* @type {string}
|
|
1430
|
-
* @memberof UpdateRoleDTO
|
|
1431
|
-
*/
|
|
1432
353
|
'name': string;
|
|
1433
|
-
/**
|
|
1434
|
-
*
|
|
1435
|
-
* @type {string}
|
|
1436
|
-
* @memberof UpdateRoleDTO
|
|
1437
|
-
*/
|
|
1438
354
|
'description': string;
|
|
1439
|
-
/**
|
|
1440
|
-
*
|
|
1441
|
-
* @type {Array<ResourceDTO>}
|
|
1442
|
-
* @memberof UpdateRoleDTO
|
|
1443
|
-
*/
|
|
1444
355
|
'resources': Array<ResourceDTO>;
|
|
1445
356
|
}
|
|
1446
|
-
/**
|
|
1447
|
-
*
|
|
1448
|
-
* @export
|
|
1449
|
-
* @interface UpdateTeamMemberRequestDTO
|
|
1450
|
-
*/
|
|
1451
357
|
export interface UpdateTeamMemberRequestDTO {
|
|
1452
|
-
/**
|
|
1453
|
-
*
|
|
1454
|
-
* @type {number}
|
|
1455
|
-
* @memberof UpdateTeamMemberRequestDTO
|
|
1456
|
-
*/
|
|
1457
358
|
'roleId': number;
|
|
1458
359
|
}
|
|
1459
|
-
/**
|
|
1460
|
-
*
|
|
1461
|
-
* @export
|
|
1462
|
-
* @interface UpdateTeamMemberStatusRequestDTO
|
|
1463
|
-
*/
|
|
1464
360
|
export interface UpdateTeamMemberStatusRequestDTO {
|
|
1465
|
-
/**
|
|
1466
|
-
*
|
|
1467
|
-
* @type {string}
|
|
1468
|
-
* @memberof UpdateTeamMemberStatusRequestDTO
|
|
1469
|
-
*/
|
|
1470
361
|
'status': string;
|
|
1471
|
-
/**
|
|
1472
|
-
*
|
|
1473
|
-
* @type {string}
|
|
1474
|
-
* @memberof UpdateTeamMemberStatusRequestDTO
|
|
1475
|
-
*/
|
|
1476
362
|
'token': string;
|
|
1477
363
|
}
|
|
1478
|
-
/**
|
|
1479
|
-
*
|
|
1480
|
-
* @export
|
|
1481
|
-
* @interface UserDto
|
|
1482
|
-
*/
|
|
1483
364
|
export interface UserDto {
|
|
1484
|
-
/**
|
|
1485
|
-
*
|
|
1486
|
-
* @type {number}
|
|
1487
|
-
* @memberof UserDto
|
|
1488
|
-
*/
|
|
1489
365
|
'id': number;
|
|
1490
|
-
/**
|
|
1491
|
-
*
|
|
1492
|
-
* @type {string}
|
|
1493
|
-
* @memberof UserDto
|
|
1494
|
-
*/
|
|
1495
366
|
'firstName': string;
|
|
1496
|
-
/**
|
|
1497
|
-
*
|
|
1498
|
-
* @type {string}
|
|
1499
|
-
* @memberof UserDto
|
|
1500
|
-
*/
|
|
1501
367
|
'lastName': string;
|
|
1502
|
-
/**
|
|
1503
|
-
*
|
|
1504
|
-
* @type {string}
|
|
1505
|
-
* @memberof UserDto
|
|
1506
|
-
*/
|
|
1507
368
|
'email': string;
|
|
1508
|
-
/**
|
|
1509
|
-
*
|
|
1510
|
-
* @type {string}
|
|
1511
|
-
* @memberof UserDto
|
|
1512
|
-
*/
|
|
1513
369
|
'status': string;
|
|
1514
|
-
/**
|
|
1515
|
-
*
|
|
1516
|
-
* @type {string}
|
|
1517
|
-
* @memberof UserDto
|
|
1518
|
-
*/
|
|
1519
370
|
'profilePicture': string;
|
|
1520
|
-
/**
|
|
1521
|
-
*
|
|
1522
|
-
* @type {string}
|
|
1523
|
-
* @memberof UserDto
|
|
1524
|
-
*/
|
|
1525
371
|
'bio': string;
|
|
1526
372
|
}
|
|
1527
373
|
/**
|
|
1528
374
|
* AuthApi - axios parameter creator
|
|
1529
|
-
* @export
|
|
1530
375
|
*/
|
|
1531
376
|
export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1532
377
|
/**
|
|
@@ -1569,6 +414,14 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
1569
414
|
* @throws {RequiredError}
|
|
1570
415
|
*/
|
|
1571
416
|
authControllerOAuthLogin: (oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
417
|
+
/**
|
|
418
|
+
*
|
|
419
|
+
* @summary Refresh Google access token
|
|
420
|
+
* @param {string} token
|
|
421
|
+
* @param {*} [options] Override http request option.
|
|
422
|
+
* @throws {RequiredError}
|
|
423
|
+
*/
|
|
424
|
+
authControllerRefreshToken: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1572
425
|
/**
|
|
1573
426
|
*
|
|
1574
427
|
* @summary Forget password initiate
|
|
@@ -1588,7 +441,6 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
1588
441
|
};
|
|
1589
442
|
/**
|
|
1590
443
|
* AuthApi - functional programming interface
|
|
1591
|
-
* @export
|
|
1592
444
|
*/
|
|
1593
445
|
export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
1594
446
|
/**
|
|
@@ -1631,6 +483,14 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
|
1631
483
|
* @throws {RequiredError}
|
|
1632
484
|
*/
|
|
1633
485
|
authControllerOAuthLogin(oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoginResponseDTO>>;
|
|
486
|
+
/**
|
|
487
|
+
*
|
|
488
|
+
* @summary Refresh Google access token
|
|
489
|
+
* @param {string} token
|
|
490
|
+
* @param {*} [options] Override http request option.
|
|
491
|
+
* @throws {RequiredError}
|
|
492
|
+
*/
|
|
493
|
+
authControllerRefreshToken(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1634
494
|
/**
|
|
1635
495
|
*
|
|
1636
496
|
* @summary Forget password initiate
|
|
@@ -1650,7 +510,6 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
|
1650
510
|
};
|
|
1651
511
|
/**
|
|
1652
512
|
* AuthApi - factory interface
|
|
1653
|
-
* @export
|
|
1654
513
|
*/
|
|
1655
514
|
export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1656
515
|
/**
|
|
@@ -1693,6 +552,14 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1693
552
|
* @throws {RequiredError}
|
|
1694
553
|
*/
|
|
1695
554
|
authControllerOAuthLogin(oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<LoginResponseDTO>;
|
|
555
|
+
/**
|
|
556
|
+
*
|
|
557
|
+
* @summary Refresh Google access token
|
|
558
|
+
* @param {string} token
|
|
559
|
+
* @param {*} [options] Override http request option.
|
|
560
|
+
* @throws {RequiredError}
|
|
561
|
+
*/
|
|
562
|
+
authControllerRefreshToken(token: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1696
563
|
/**
|
|
1697
564
|
*
|
|
1698
565
|
* @summary Forget password initiate
|
|
@@ -1712,9 +579,6 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1712
579
|
};
|
|
1713
580
|
/**
|
|
1714
581
|
* AuthApi - object-oriented interface
|
|
1715
|
-
* @export
|
|
1716
|
-
* @class AuthApi
|
|
1717
|
-
* @extends {BaseAPI}
|
|
1718
582
|
*/
|
|
1719
583
|
export declare class AuthApi extends BaseAPI {
|
|
1720
584
|
/**
|
|
@@ -1723,67 +587,67 @@ export declare class AuthApi extends BaseAPI {
|
|
|
1723
587
|
* @param {string} token
|
|
1724
588
|
* @param {*} [options] Override http request option.
|
|
1725
589
|
* @throws {RequiredError}
|
|
1726
|
-
* @memberof AuthApi
|
|
1727
590
|
*/
|
|
1728
|
-
authControllerExchangeToken(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
591
|
+
authControllerExchangeToken(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1729
592
|
/**
|
|
1730
593
|
*
|
|
1731
594
|
* @summary Forget password initiate
|
|
1732
595
|
* @param {ForgetPasswordRequestDTO} forgetPasswordRequestDTO
|
|
1733
596
|
* @param {*} [options] Override http request option.
|
|
1734
597
|
* @throws {RequiredError}
|
|
1735
|
-
* @memberof AuthApi
|
|
1736
598
|
*/
|
|
1737
|
-
authControllerForgetPassword(forgetPasswordRequestDTO: ForgetPasswordRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ForgetPasswordResponseDTO, any>>;
|
|
599
|
+
authControllerForgetPassword(forgetPasswordRequestDTO: ForgetPasswordRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ForgetPasswordResponseDTO, any, {}>>;
|
|
1738
600
|
/**
|
|
1739
601
|
*
|
|
1740
602
|
* @summary Forget password verification
|
|
1741
603
|
* @param {ForgetPasswordVerificationRequestDTO} forgetPasswordVerificationRequestDTO
|
|
1742
604
|
* @param {*} [options] Override http request option.
|
|
1743
605
|
* @throws {RequiredError}
|
|
1744
|
-
* @memberof AuthApi
|
|
1745
606
|
*/
|
|
1746
|
-
authControllerForgetPasswordVerification(forgetPasswordVerificationRequestDTO: ForgetPasswordVerificationRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ForgetPasswordVerificationResponseDTO, any>>;
|
|
607
|
+
authControllerForgetPasswordVerification(forgetPasswordVerificationRequestDTO: ForgetPasswordVerificationRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ForgetPasswordVerificationResponseDTO, any, {}>>;
|
|
1747
608
|
/**
|
|
1748
609
|
*
|
|
1749
610
|
* @summary Login to the application
|
|
1750
611
|
* @param {LoginRequestDTO} loginRequestDTO
|
|
1751
612
|
* @param {*} [options] Override http request option.
|
|
1752
613
|
* @throws {RequiredError}
|
|
1753
|
-
* @memberof AuthApi
|
|
1754
614
|
*/
|
|
1755
|
-
authControllerLogin(loginRequestDTO: LoginRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LoginResponseDTO, any>>;
|
|
615
|
+
authControllerLogin(loginRequestDTO: LoginRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LoginResponseDTO, any, {}>>;
|
|
1756
616
|
/**
|
|
1757
617
|
*
|
|
1758
618
|
* @summary Login with OAuth apps
|
|
1759
619
|
* @param {OAuthLoginRequestDTO} oAuthLoginRequestDTO
|
|
1760
620
|
* @param {*} [options] Override http request option.
|
|
1761
621
|
* @throws {RequiredError}
|
|
1762
|
-
* @memberof AuthApi
|
|
1763
622
|
*/
|
|
1764
|
-
authControllerOAuthLogin(oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LoginResponseDTO, any>>;
|
|
623
|
+
authControllerOAuthLogin(oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LoginResponseDTO, any, {}>>;
|
|
624
|
+
/**
|
|
625
|
+
*
|
|
626
|
+
* @summary Refresh Google access token
|
|
627
|
+
* @param {string} token
|
|
628
|
+
* @param {*} [options] Override http request option.
|
|
629
|
+
* @throws {RequiredError}
|
|
630
|
+
*/
|
|
631
|
+
authControllerRefreshToken(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1765
632
|
/**
|
|
1766
633
|
*
|
|
1767
634
|
* @summary Forget password initiate
|
|
1768
635
|
* @param {ResetPasswordRequestDTO} resetPasswordRequestDTO
|
|
1769
636
|
* @param {*} [options] Override http request option.
|
|
1770
637
|
* @throws {RequiredError}
|
|
1771
|
-
* @memberof AuthApi
|
|
1772
638
|
*/
|
|
1773
|
-
authControllerResetPassword(resetPasswordRequestDTO: ResetPasswordRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BooleanResponseDTO, any>>;
|
|
639
|
+
authControllerResetPassword(resetPasswordRequestDTO: ResetPasswordRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BooleanResponseDTO, any, {}>>;
|
|
1774
640
|
/**
|
|
1775
641
|
*
|
|
1776
642
|
* @summary Signup in the application
|
|
1777
643
|
* @param {SignupRequestDTO} signupRequestDTO
|
|
1778
644
|
* @param {*} [options] Override http request option.
|
|
1779
645
|
* @throws {RequiredError}
|
|
1780
|
-
* @memberof AuthApi
|
|
1781
646
|
*/
|
|
1782
|
-
authControllerSignup(signupRequestDTO: SignupRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SignupResponseDTO, any>>;
|
|
647
|
+
authControllerSignup(signupRequestDTO: SignupRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SignupResponseDTO, any, {}>>;
|
|
1783
648
|
}
|
|
1784
649
|
/**
|
|
1785
650
|
* DocumentsApi - axios parameter creator
|
|
1786
|
-
* @export
|
|
1787
651
|
*/
|
|
1788
652
|
export declare const DocumentsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1789
653
|
/**
|
|
@@ -1917,7 +781,6 @@ export declare const DocumentsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1917
781
|
};
|
|
1918
782
|
/**
|
|
1919
783
|
* DocumentsApi - functional programming interface
|
|
1920
|
-
* @export
|
|
1921
784
|
*/
|
|
1922
785
|
export declare const DocumentsApiFp: (configuration?: Configuration) => {
|
|
1923
786
|
/**
|
|
@@ -2051,7 +914,6 @@ export declare const DocumentsApiFp: (configuration?: Configuration) => {
|
|
|
2051
914
|
};
|
|
2052
915
|
/**
|
|
2053
916
|
* DocumentsApi - factory interface
|
|
2054
|
-
* @export
|
|
2055
917
|
*/
|
|
2056
918
|
export declare const DocumentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2057
919
|
/**
|
|
@@ -2185,9 +1047,6 @@ export declare const DocumentsApiFactory: (configuration?: Configuration, basePa
|
|
|
2185
1047
|
};
|
|
2186
1048
|
/**
|
|
2187
1049
|
* DocumentsApi - object-oriented interface
|
|
2188
|
-
* @export
|
|
2189
|
-
* @class DocumentsApi
|
|
2190
|
-
* @extends {BaseAPI}
|
|
2191
1050
|
*/
|
|
2192
1051
|
export declare class DocumentsApi extends BaseAPI {
|
|
2193
1052
|
/**
|
|
@@ -2199,9 +1058,8 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
2199
1058
|
* @param {CreateDocumentRequestDTO} createDocumentRequestDTO
|
|
2200
1059
|
* @param {*} [options] Override http request option.
|
|
2201
1060
|
* @throws {RequiredError}
|
|
2202
|
-
* @memberof DocumentsApi
|
|
2203
1061
|
*/
|
|
2204
|
-
documentControllerAddDocToCollection(projectId: string, instanceId: string, collectionId: string, createDocumentRequestDTO: CreateDocumentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
|
|
1062
|
+
documentControllerAddDocToCollection(projectId: string, instanceId: string, collectionId: string, createDocumentRequestDTO: CreateDocumentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
|
|
2205
1063
|
/**
|
|
2206
1064
|
*
|
|
2207
1065
|
* @summary Use a file to chunk and add to collection
|
|
@@ -2211,9 +1069,8 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
2211
1069
|
* @param {ChunkFileRequestDTO} chunkFileRequestDTO
|
|
2212
1070
|
* @param {*} [options] Override http request option.
|
|
2213
1071
|
* @throws {RequiredError}
|
|
2214
|
-
* @memberof DocumentsApi
|
|
2215
1072
|
*/
|
|
2216
|
-
documentControllerAddDocToCollectionFromFile(projectId: string, instanceId: string, collectionId: string, chunkFileRequestDTO: ChunkFileRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
|
|
1073
|
+
documentControllerAddDocToCollectionFromFile(projectId: string, instanceId: string, collectionId: string, chunkFileRequestDTO: ChunkFileRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
|
|
2217
1074
|
/**
|
|
2218
1075
|
*
|
|
2219
1076
|
* @summary Create collection
|
|
@@ -2222,9 +1079,8 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
2222
1079
|
* @param {CreateCollectionRequestDTO} createCollectionRequestDTO
|
|
2223
1080
|
* @param {*} [options] Override http request option.
|
|
2224
1081
|
* @throws {RequiredError}
|
|
2225
|
-
* @memberof DocumentsApi
|
|
2226
1082
|
*/
|
|
2227
|
-
documentControllerCreateCollection(projectId: string, instanceId: string, createCollectionRequestDTO: CreateCollectionRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
|
|
1083
|
+
documentControllerCreateCollection(projectId: string, instanceId: string, createCollectionRequestDTO: CreateCollectionRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
|
|
2228
1084
|
/**
|
|
2229
1085
|
*
|
|
2230
1086
|
* @summary Delete collection
|
|
@@ -2233,9 +1089,8 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
2233
1089
|
* @param {string} collectionId
|
|
2234
1090
|
* @param {*} [options] Override http request option.
|
|
2235
1091
|
* @throws {RequiredError}
|
|
2236
|
-
* @memberof DocumentsApi
|
|
2237
1092
|
*/
|
|
2238
|
-
documentControllerDeleteCollection(projectId: string, instanceId: string, collectionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
|
|
1093
|
+
documentControllerDeleteCollection(projectId: string, instanceId: string, collectionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
|
|
2239
1094
|
/**
|
|
2240
1095
|
*
|
|
2241
1096
|
* @summary Delete doc by ID
|
|
@@ -2245,9 +1100,8 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
2245
1100
|
* @param {string} docId
|
|
2246
1101
|
* @param {*} [options] Override http request option.
|
|
2247
1102
|
* @throws {RequiredError}
|
|
2248
|
-
* @memberof DocumentsApi
|
|
2249
1103
|
*/
|
|
2250
|
-
documentControllerDeleteDocById(projectId: string, instanceId: string, collectionId: string, docId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
|
|
1104
|
+
documentControllerDeleteDocById(projectId: string, instanceId: string, collectionId: string, docId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
|
|
2251
1105
|
/**
|
|
2252
1106
|
*
|
|
2253
1107
|
* @summary Delete docs based on metadata filters
|
|
@@ -2257,9 +1111,8 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
2257
1111
|
* @param {string} filter
|
|
2258
1112
|
* @param {*} [options] Override http request option.
|
|
2259
1113
|
* @throws {RequiredError}
|
|
2260
|
-
* @memberof DocumentsApi
|
|
2261
1114
|
*/
|
|
2262
|
-
documentControllerDeleteDocsFromCollection(projectId: string, instanceId: string, collectionId: string, filter: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
|
|
1115
|
+
documentControllerDeleteDocsFromCollection(projectId: string, instanceId: string, collectionId: string, filter: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
|
|
2263
1116
|
/**
|
|
2264
1117
|
*
|
|
2265
1118
|
* @summary Get all collections
|
|
@@ -2267,9 +1120,8 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
2267
1120
|
* @param {string} instanceId
|
|
2268
1121
|
* @param {*} [options] Override http request option.
|
|
2269
1122
|
* @throws {RequiredError}
|
|
2270
|
-
* @memberof DocumentsApi
|
|
2271
1123
|
*/
|
|
2272
|
-
documentControllerGetAllCollections(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
|
|
1124
|
+
documentControllerGetAllCollections(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
|
|
2273
1125
|
/**
|
|
2274
1126
|
*
|
|
2275
1127
|
* @summary Get collection info
|
|
@@ -2278,9 +1130,8 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
2278
1130
|
* @param {string} collectionId
|
|
2279
1131
|
* @param {*} [options] Override http request option.
|
|
2280
1132
|
* @throws {RequiredError}
|
|
2281
|
-
* @memberof DocumentsApi
|
|
2282
1133
|
*/
|
|
2283
|
-
documentControllerGetCollectionInfo(projectId: string, instanceId: string, collectionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
|
|
1134
|
+
documentControllerGetCollectionInfo(projectId: string, instanceId: string, collectionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
|
|
2284
1135
|
/**
|
|
2285
1136
|
*
|
|
2286
1137
|
* @summary Get doc by ID
|
|
@@ -2290,9 +1141,8 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
2290
1141
|
* @param {string} docId
|
|
2291
1142
|
* @param {*} [options] Override http request option.
|
|
2292
1143
|
* @throws {RequiredError}
|
|
2293
|
-
* @memberof DocumentsApi
|
|
2294
1144
|
*/
|
|
2295
|
-
documentControllerGetDocById(projectId: string, instanceId: string, collectionId: string, docId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
|
|
1145
|
+
documentControllerGetDocById(projectId: string, instanceId: string, collectionId: string, docId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
|
|
2296
1146
|
/**
|
|
2297
1147
|
*
|
|
2298
1148
|
* @summary Similarity search query
|
|
@@ -2302,9 +1152,8 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
2302
1152
|
* @param {SimilaritySearchQueryDTO} similaritySearchQueryDTO
|
|
2303
1153
|
* @param {*} [options] Override http request option.
|
|
2304
1154
|
* @throws {RequiredError}
|
|
2305
|
-
* @memberof DocumentsApi
|
|
2306
1155
|
*/
|
|
2307
|
-
documentControllerSimilaritySearch(projectId: string, instanceId: string, collectionId: string, similaritySearchQueryDTO: SimilaritySearchQueryDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
|
|
1156
|
+
documentControllerSimilaritySearch(projectId: string, instanceId: string, collectionId: string, similaritySearchQueryDTO: SimilaritySearchQueryDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
|
|
2308
1157
|
/**
|
|
2309
1158
|
*
|
|
2310
1159
|
* @summary Update collection
|
|
@@ -2314,9 +1163,8 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
2314
1163
|
* @param {CreateCollectionRequestDTO} createCollectionRequestDTO
|
|
2315
1164
|
* @param {*} [options] Override http request option.
|
|
2316
1165
|
* @throws {RequiredError}
|
|
2317
|
-
* @memberof DocumentsApi
|
|
2318
1166
|
*/
|
|
2319
|
-
documentControllerUpdateCollection(projectId: string, instanceId: string, collectionId: string, createCollectionRequestDTO: CreateCollectionRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
|
|
1167
|
+
documentControllerUpdateCollection(projectId: string, instanceId: string, collectionId: string, createCollectionRequestDTO: CreateCollectionRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
|
|
2320
1168
|
/**
|
|
2321
1169
|
*
|
|
2322
1170
|
* @summary Update or upsert doc
|
|
@@ -2327,13 +1175,11 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
2327
1175
|
* @param {UpdateDocumentRequestDTO} updateDocumentRequestDTO
|
|
2328
1176
|
* @param {*} [options] Override http request option.
|
|
2329
1177
|
* @throws {RequiredError}
|
|
2330
|
-
* @memberof DocumentsApi
|
|
2331
1178
|
*/
|
|
2332
|
-
documentControllerUpdateDoc(projectId: string, instanceId: string, collectionId: string, docId: string, updateDocumentRequestDTO: UpdateDocumentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
|
|
1179
|
+
documentControllerUpdateDoc(projectId: string, instanceId: string, collectionId: string, docId: string, updateDocumentRequestDTO: UpdateDocumentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
|
|
2333
1180
|
}
|
|
2334
1181
|
/**
|
|
2335
1182
|
* EvaluationTestApi - axios parameter creator
|
|
2336
|
-
* @export
|
|
2337
1183
|
*/
|
|
2338
1184
|
export declare const EvaluationTestApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2339
1185
|
/**
|
|
@@ -2383,7 +1229,6 @@ export declare const EvaluationTestApiAxiosParamCreator: (configuration?: Config
|
|
|
2383
1229
|
};
|
|
2384
1230
|
/**
|
|
2385
1231
|
* EvaluationTestApi - functional programming interface
|
|
2386
|
-
* @export
|
|
2387
1232
|
*/
|
|
2388
1233
|
export declare const EvaluationTestApiFp: (configuration?: Configuration) => {
|
|
2389
1234
|
/**
|
|
@@ -2433,7 +1278,6 @@ export declare const EvaluationTestApiFp: (configuration?: Configuration) => {
|
|
|
2433
1278
|
};
|
|
2434
1279
|
/**
|
|
2435
1280
|
* EvaluationTestApi - factory interface
|
|
2436
|
-
* @export
|
|
2437
1281
|
*/
|
|
2438
1282
|
export declare const EvaluationTestApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2439
1283
|
/**
|
|
@@ -2483,9 +1327,6 @@ export declare const EvaluationTestApiFactory: (configuration?: Configuration, b
|
|
|
2483
1327
|
};
|
|
2484
1328
|
/**
|
|
2485
1329
|
* EvaluationTestApi - object-oriented interface
|
|
2486
|
-
* @export
|
|
2487
|
-
* @class EvaluationTestApi
|
|
2488
|
-
* @extends {BaseAPI}
|
|
2489
1330
|
*/
|
|
2490
1331
|
export declare class EvaluationTestApi extends BaseAPI {
|
|
2491
1332
|
/**
|
|
@@ -2494,9 +1335,8 @@ export declare class EvaluationTestApi extends BaseAPI {
|
|
|
2494
1335
|
* @param {string} projectId
|
|
2495
1336
|
* @param {*} [options] Override http request option.
|
|
2496
1337
|
* @throws {RequiredError}
|
|
2497
|
-
* @memberof EvaluationTestApi
|
|
2498
1338
|
*/
|
|
2499
|
-
evaluationTestControllerAddEvaluationTest(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1339
|
+
evaluationTestControllerAddEvaluationTest(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
2500
1340
|
/**
|
|
2501
1341
|
*
|
|
2502
1342
|
* @summary Delete evaluation
|
|
@@ -2504,9 +1344,8 @@ export declare class EvaluationTestApi extends BaseAPI {
|
|
|
2504
1344
|
* @param {string} testId
|
|
2505
1345
|
* @param {*} [options] Override http request option.
|
|
2506
1346
|
* @throws {RequiredError}
|
|
2507
|
-
* @memberof EvaluationTestApi
|
|
2508
1347
|
*/
|
|
2509
|
-
evaluationTestControllerDeleteEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1348
|
+
evaluationTestControllerDeleteEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
2510
1349
|
/**
|
|
2511
1350
|
*
|
|
2512
1351
|
* @summary Execute evaluation test.
|
|
@@ -2514,9 +1353,8 @@ export declare class EvaluationTestApi extends BaseAPI {
|
|
|
2514
1353
|
* @param {string} testId
|
|
2515
1354
|
* @param {*} [options] Override http request option.
|
|
2516
1355
|
* @throws {RequiredError}
|
|
2517
|
-
* @memberof EvaluationTestApi
|
|
2518
1356
|
*/
|
|
2519
|
-
evaluationTestControllerExecuteEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1357
|
+
evaluationTestControllerExecuteEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
2520
1358
|
/**
|
|
2521
1359
|
*
|
|
2522
1360
|
* @summary Fetch evaluation test.
|
|
@@ -2524,9 +1362,8 @@ export declare class EvaluationTestApi extends BaseAPI {
|
|
|
2524
1362
|
* @param {string} modelId
|
|
2525
1363
|
* @param {*} [options] Override http request option.
|
|
2526
1364
|
* @throws {RequiredError}
|
|
2527
|
-
* @memberof EvaluationTestApi
|
|
2528
1365
|
*/
|
|
2529
|
-
evaluationTestControllerGetEvaluationTest(projectId: string, modelId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1366
|
+
evaluationTestControllerGetEvaluationTest(projectId: string, modelId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
2530
1367
|
/**
|
|
2531
1368
|
*
|
|
2532
1369
|
* @summary Update evaluation test
|
|
@@ -2534,13 +1371,11 @@ export declare class EvaluationTestApi extends BaseAPI {
|
|
|
2534
1371
|
* @param {string} testId
|
|
2535
1372
|
* @param {*} [options] Override http request option.
|
|
2536
1373
|
* @throws {RequiredError}
|
|
2537
|
-
* @memberof EvaluationTestApi
|
|
2538
1374
|
*/
|
|
2539
|
-
evaluationTestControllerUpdateEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1375
|
+
evaluationTestControllerUpdateEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
2540
1376
|
}
|
|
2541
1377
|
/**
|
|
2542
1378
|
* MachineAgentApi - axios parameter creator
|
|
2543
|
-
* @export
|
|
2544
1379
|
*/
|
|
2545
1380
|
export declare const MachineAgentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2546
1381
|
/**
|
|
@@ -2585,7 +1420,6 @@ export declare const MachineAgentApiAxiosParamCreator: (configuration?: Configur
|
|
|
2585
1420
|
};
|
|
2586
1421
|
/**
|
|
2587
1422
|
* MachineAgentApi - functional programming interface
|
|
2588
|
-
* @export
|
|
2589
1423
|
*/
|
|
2590
1424
|
export declare const MachineAgentApiFp: (configuration?: Configuration) => {
|
|
2591
1425
|
/**
|
|
@@ -2630,7 +1464,6 @@ export declare const MachineAgentApiFp: (configuration?: Configuration) => {
|
|
|
2630
1464
|
};
|
|
2631
1465
|
/**
|
|
2632
1466
|
* MachineAgentApi - factory interface
|
|
2633
|
-
* @export
|
|
2634
1467
|
*/
|
|
2635
1468
|
export declare const MachineAgentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2636
1469
|
/**
|
|
@@ -2675,9 +1508,6 @@ export declare const MachineAgentApiFactory: (configuration?: Configuration, bas
|
|
|
2675
1508
|
};
|
|
2676
1509
|
/**
|
|
2677
1510
|
* MachineAgentApi - object-oriented interface
|
|
2678
|
-
* @export
|
|
2679
|
-
* @class MachineAgentApi
|
|
2680
|
-
* @extends {BaseAPI}
|
|
2681
1511
|
*/
|
|
2682
1512
|
export declare class MachineAgentApi extends BaseAPI {
|
|
2683
1513
|
/**
|
|
@@ -2687,9 +1517,8 @@ export declare class MachineAgentApi extends BaseAPI {
|
|
|
2687
1517
|
* @param {CreateMachineAgentDto} createMachineAgentDto
|
|
2688
1518
|
* @param {*} [options] Override http request option.
|
|
2689
1519
|
* @throws {RequiredError}
|
|
2690
|
-
* @memberof MachineAgentApi
|
|
2691
1520
|
*/
|
|
2692
|
-
machineAgentControllerCreateMachineAgent(projectId: string, createMachineAgentDto: CreateMachineAgentDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
|
|
1521
|
+
machineAgentControllerCreateMachineAgent(projectId: string, createMachineAgentDto: CreateMachineAgentDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any, {}>>;
|
|
2693
1522
|
/**
|
|
2694
1523
|
*
|
|
2695
1524
|
* @summary Delete machine agent
|
|
@@ -2698,9 +1527,8 @@ export declare class MachineAgentApi extends BaseAPI {
|
|
|
2698
1527
|
* @param {Array<string>} requestBody
|
|
2699
1528
|
* @param {*} [options] Override http request option.
|
|
2700
1529
|
* @throws {RequiredError}
|
|
2701
|
-
* @memberof MachineAgentApi
|
|
2702
1530
|
*/
|
|
2703
|
-
machineAgentControllerDeleteMachineAgents(projectId: string, agentId: string, requestBody: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
|
|
1531
|
+
machineAgentControllerDeleteMachineAgents(projectId: string, agentId: string, requestBody: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any, {}>>;
|
|
2704
1532
|
/**
|
|
2705
1533
|
*
|
|
2706
1534
|
* @summary Get all machine agent with count
|
|
@@ -2710,9 +1538,8 @@ export declare class MachineAgentApi extends BaseAPI {
|
|
|
2710
1538
|
* @param {string} type
|
|
2711
1539
|
* @param {*} [options] Override http request option.
|
|
2712
1540
|
* @throws {RequiredError}
|
|
2713
|
-
* @memberof MachineAgentApi
|
|
2714
1541
|
*/
|
|
2715
|
-
machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, type: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
|
|
1542
|
+
machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, type: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any, {}>>;
|
|
2716
1543
|
/**
|
|
2717
1544
|
*
|
|
2718
1545
|
* @summary Update machine agent by id
|
|
@@ -2720,13 +1547,11 @@ export declare class MachineAgentApi extends BaseAPI {
|
|
|
2720
1547
|
* @param {string} agentId
|
|
2721
1548
|
* @param {*} [options] Override http request option.
|
|
2722
1549
|
* @throws {RequiredError}
|
|
2723
|
-
* @memberof MachineAgentApi
|
|
2724
1550
|
*/
|
|
2725
|
-
machineAgentControllerUpdateMachineAgent(projectId: string, agentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
|
|
1551
|
+
machineAgentControllerUpdateMachineAgent(projectId: string, agentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any, {}>>;
|
|
2726
1552
|
}
|
|
2727
1553
|
/**
|
|
2728
1554
|
* MachineAgentLogsApi - axios parameter creator
|
|
2729
|
-
* @export
|
|
2730
1555
|
*/
|
|
2731
1556
|
export declare const MachineAgentLogsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2732
1557
|
/**
|
|
@@ -2752,7 +1577,6 @@ export declare const MachineAgentLogsApiAxiosParamCreator: (configuration?: Conf
|
|
|
2752
1577
|
};
|
|
2753
1578
|
/**
|
|
2754
1579
|
* MachineAgentLogsApi - functional programming interface
|
|
2755
|
-
* @export
|
|
2756
1580
|
*/
|
|
2757
1581
|
export declare const MachineAgentLogsApiFp: (configuration?: Configuration) => {
|
|
2758
1582
|
/**
|
|
@@ -2778,7 +1602,6 @@ export declare const MachineAgentLogsApiFp: (configuration?: Configuration) => {
|
|
|
2778
1602
|
};
|
|
2779
1603
|
/**
|
|
2780
1604
|
* MachineAgentLogsApi - factory interface
|
|
2781
|
-
* @export
|
|
2782
1605
|
*/
|
|
2783
1606
|
export declare const MachineAgentLogsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2784
1607
|
/**
|
|
@@ -2804,9 +1627,6 @@ export declare const MachineAgentLogsApiFactory: (configuration?: Configuration,
|
|
|
2804
1627
|
};
|
|
2805
1628
|
/**
|
|
2806
1629
|
* MachineAgentLogsApi - object-oriented interface
|
|
2807
|
-
* @export
|
|
2808
|
-
* @class MachineAgentLogsApi
|
|
2809
|
-
* @extends {BaseAPI}
|
|
2810
1630
|
*/
|
|
2811
1631
|
export declare class MachineAgentLogsApi extends BaseAPI {
|
|
2812
1632
|
/**
|
|
@@ -2818,9 +1638,8 @@ export declare class MachineAgentLogsApi extends BaseAPI {
|
|
|
2818
1638
|
* @param {string} cursor
|
|
2819
1639
|
* @param {*} [options] Override http request option.
|
|
2820
1640
|
* @throws {RequiredError}
|
|
2821
|
-
* @memberof MachineAgentLogsApi
|
|
2822
1641
|
*/
|
|
2823
|
-
logsControllerFetchAgentLogs(projectId: string, agentId: string, direction: string, cursor: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1642
|
+
logsControllerFetchAgentLogs(projectId: string, agentId: string, direction: string, cursor: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
2824
1643
|
/**
|
|
2825
1644
|
*
|
|
2826
1645
|
* @summary Fetch event logs.
|
|
@@ -2828,13 +1647,11 @@ export declare class MachineAgentLogsApi extends BaseAPI {
|
|
|
2828
1647
|
* @param {string} agentId
|
|
2829
1648
|
* @param {*} [options] Override http request option.
|
|
2830
1649
|
* @throws {RequiredError}
|
|
2831
|
-
* @memberof MachineAgentLogsApi
|
|
2832
1650
|
*/
|
|
2833
|
-
logsControllerFetchEventLogs(projectId: string, agentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1651
|
+
logsControllerFetchEventLogs(projectId: string, agentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
2834
1652
|
}
|
|
2835
1653
|
/**
|
|
2836
1654
|
* MachineInstancesApi - axios parameter creator
|
|
2837
|
-
* @export
|
|
2838
1655
|
*/
|
|
2839
1656
|
export declare const MachineInstancesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2840
1657
|
/**
|
|
@@ -2921,7 +1738,6 @@ export declare const MachineInstancesApiAxiosParamCreator: (configuration?: Conf
|
|
|
2921
1738
|
};
|
|
2922
1739
|
/**
|
|
2923
1740
|
* MachineInstancesApi - functional programming interface
|
|
2924
|
-
* @export
|
|
2925
1741
|
*/
|
|
2926
1742
|
export declare const MachineInstancesApiFp: (configuration?: Configuration) => {
|
|
2927
1743
|
/**
|
|
@@ -3008,7 +1824,6 @@ export declare const MachineInstancesApiFp: (configuration?: Configuration) => {
|
|
|
3008
1824
|
};
|
|
3009
1825
|
/**
|
|
3010
1826
|
* MachineInstancesApi - factory interface
|
|
3011
|
-
* @export
|
|
3012
1827
|
*/
|
|
3013
1828
|
export declare const MachineInstancesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3014
1829
|
/**
|
|
@@ -3095,9 +1910,6 @@ export declare const MachineInstancesApiFactory: (configuration?: Configuration,
|
|
|
3095
1910
|
};
|
|
3096
1911
|
/**
|
|
3097
1912
|
* MachineInstancesApi - object-oriented interface
|
|
3098
|
-
* @export
|
|
3099
|
-
* @class MachineInstancesApi
|
|
3100
|
-
* @extends {BaseAPI}
|
|
3101
1913
|
*/
|
|
3102
1914
|
export declare class MachineInstancesApi extends BaseAPI {
|
|
3103
1915
|
/**
|
|
@@ -3106,27 +1918,24 @@ export declare class MachineInstancesApi extends BaseAPI {
|
|
|
3106
1918
|
* @param {string} projectId
|
|
3107
1919
|
* @param {*} [options] Override http request option.
|
|
3108
1920
|
* @throws {RequiredError}
|
|
3109
|
-
* @memberof MachineInstancesApi
|
|
3110
1921
|
*/
|
|
3111
|
-
machineInstancesControllerCreateMachineInstance(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1922
|
+
machineInstancesControllerCreateMachineInstance(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
3112
1923
|
/**
|
|
3113
1924
|
*
|
|
3114
1925
|
* @summary Delete machine instances by ids
|
|
3115
1926
|
* @param {string} projectId
|
|
3116
1927
|
* @param {*} [options] Override http request option.
|
|
3117
1928
|
* @throws {RequiredError}
|
|
3118
|
-
* @memberof MachineInstancesApi
|
|
3119
1929
|
*/
|
|
3120
|
-
machineInstancesControllerDeleteMachineInstance(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1930
|
+
machineInstancesControllerDeleteMachineInstance(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
3121
1931
|
/**
|
|
3122
1932
|
*
|
|
3123
1933
|
* @summary Retrieve running status of instances
|
|
3124
1934
|
* @param {string} projectId
|
|
3125
1935
|
* @param {*} [options] Override http request option.
|
|
3126
1936
|
* @throws {RequiredError}
|
|
3127
|
-
* @memberof MachineInstancesApi
|
|
3128
1937
|
*/
|
|
3129
|
-
machineInstancesControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1938
|
+
machineInstancesControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
3130
1939
|
/**
|
|
3131
1940
|
*
|
|
3132
1941
|
* @summary Retrieve CSV benchmarking datapoints for a specific machine
|
|
@@ -3134,9 +1943,8 @@ export declare class MachineInstancesApi extends BaseAPI {
|
|
|
3134
1943
|
* @param {string} machineId
|
|
3135
1944
|
* @param {*} [options] Override http request option.
|
|
3136
1945
|
* @throws {RequiredError}
|
|
3137
|
-
* @memberof MachineInstancesApi
|
|
3138
1946
|
*/
|
|
3139
|
-
machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BenchmarkingDatapointDto, any>>;
|
|
1947
|
+
machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BenchmarkingDatapointDto, any, {}>>;
|
|
3140
1948
|
/**
|
|
3141
1949
|
*
|
|
3142
1950
|
* @summary Retrieve benchmarking reports for a specific machine
|
|
@@ -3144,9 +1952,8 @@ export declare class MachineInstancesApi extends BaseAPI {
|
|
|
3144
1952
|
* @param {string} machineId
|
|
3145
1953
|
* @param {*} [options] Override http request option.
|
|
3146
1954
|
* @throws {RequiredError}
|
|
3147
|
-
* @memberof MachineInstancesApi
|
|
3148
1955
|
*/
|
|
3149
|
-
machineInstancesControllerGetMachineBenchmarkingReports(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BenchmarkingReportsDto, any>>;
|
|
1956
|
+
machineInstancesControllerGetMachineBenchmarkingReports(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BenchmarkingReportsDto, any, {}>>;
|
|
3150
1957
|
/**
|
|
3151
1958
|
*
|
|
3152
1959
|
* @summary Retrieve status of a specific machine instance
|
|
@@ -3154,9 +1961,8 @@ export declare class MachineInstancesApi extends BaseAPI {
|
|
|
3154
1961
|
* @param {string} machineId
|
|
3155
1962
|
* @param {*} [options] Override http request option.
|
|
3156
1963
|
* @throws {RequiredError}
|
|
3157
|
-
* @memberof MachineInstancesApi
|
|
3158
1964
|
*/
|
|
3159
|
-
machineInstancesControllerGetMachineBootstrapStatus(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineStatusDto, any>>;
|
|
1965
|
+
machineInstancesControllerGetMachineBootstrapStatus(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineStatusDto, any, {}>>;
|
|
3160
1966
|
/**
|
|
3161
1967
|
*
|
|
3162
1968
|
* @summary Retrieve running status of instances
|
|
@@ -3166,9 +1972,8 @@ export declare class MachineInstancesApi extends BaseAPI {
|
|
|
3166
1972
|
* @param {number} limit
|
|
3167
1973
|
* @param {*} [options] Override http request option.
|
|
3168
1974
|
* @throws {RequiredError}
|
|
3169
|
-
* @memberof MachineInstancesApi
|
|
3170
1975
|
*/
|
|
3171
|
-
machineInstancesControllerGetMachineInstanceById(projectId: string, machineId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1976
|
+
machineInstancesControllerGetMachineInstanceById(projectId: string, machineId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
3172
1977
|
/**
|
|
3173
1978
|
*
|
|
3174
1979
|
* @summary Retrieve all machine instances with count
|
|
@@ -3177,9 +1982,8 @@ export declare class MachineInstancesApi extends BaseAPI {
|
|
|
3177
1982
|
* @param {number} limit
|
|
3178
1983
|
* @param {*} [options] Override http request option.
|
|
3179
1984
|
* @throws {RequiredError}
|
|
3180
|
-
* @memberof MachineInstancesApi
|
|
3181
1985
|
*/
|
|
3182
|
-
machineInstancesControllerGetMachineInstanceByUserId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1986
|
+
machineInstancesControllerGetMachineInstanceByUserId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
3183
1987
|
/**
|
|
3184
1988
|
*
|
|
3185
1989
|
* @summary Update Machine Instance Running Status
|
|
@@ -3187,13 +1991,11 @@ export declare class MachineInstancesApi extends BaseAPI {
|
|
|
3187
1991
|
* @param {object} body
|
|
3188
1992
|
* @param {*} [options] Override http request option.
|
|
3189
1993
|
* @throws {RequiredError}
|
|
3190
|
-
* @memberof MachineInstancesApi
|
|
3191
1994
|
*/
|
|
3192
|
-
machineInstancesControllerUpdateRunningStatus(projectId: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1995
|
+
machineInstancesControllerUpdateRunningStatus(projectId: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
3193
1996
|
}
|
|
3194
1997
|
/**
|
|
3195
1998
|
* MembersApi - axios parameter creator
|
|
3196
|
-
* @export
|
|
3197
1999
|
*/
|
|
3198
2000
|
export declare const MembersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3199
2001
|
/**
|
|
@@ -3232,7 +2034,6 @@ export declare const MembersApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3232
2034
|
};
|
|
3233
2035
|
/**
|
|
3234
2036
|
* MembersApi - functional programming interface
|
|
3235
|
-
* @export
|
|
3236
2037
|
*/
|
|
3237
2038
|
export declare const MembersApiFp: (configuration?: Configuration) => {
|
|
3238
2039
|
/**
|
|
@@ -3271,7 +2072,6 @@ export declare const MembersApiFp: (configuration?: Configuration) => {
|
|
|
3271
2072
|
};
|
|
3272
2073
|
/**
|
|
3273
2074
|
* MembersApi - factory interface
|
|
3274
|
-
* @export
|
|
3275
2075
|
*/
|
|
3276
2076
|
export declare const MembersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3277
2077
|
/**
|
|
@@ -3310,9 +2110,6 @@ export declare const MembersApiFactory: (configuration?: Configuration, basePath
|
|
|
3310
2110
|
};
|
|
3311
2111
|
/**
|
|
3312
2112
|
* MembersApi - object-oriented interface
|
|
3313
|
-
* @export
|
|
3314
|
-
* @class MembersApi
|
|
3315
|
-
* @extends {BaseAPI}
|
|
3316
2113
|
*/
|
|
3317
2114
|
export declare class MembersApi extends BaseAPI {
|
|
3318
2115
|
/**
|
|
@@ -3322,9 +2119,8 @@ export declare class MembersApi extends BaseAPI {
|
|
|
3322
2119
|
* @param {AddProjectMemberDto} addProjectMemberDto
|
|
3323
2120
|
* @param {*} [options] Override http request option.
|
|
3324
2121
|
* @throws {RequiredError}
|
|
3325
|
-
* @memberof MembersApi
|
|
3326
2122
|
*/
|
|
3327
|
-
membersControllerAddTeamMemberToProject(projectId: string, addProjectMemberDto: AddProjectMemberDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any>>;
|
|
2123
|
+
membersControllerAddTeamMemberToProject(projectId: string, addProjectMemberDto: AddProjectMemberDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any, {}>>;
|
|
3328
2124
|
/**
|
|
3329
2125
|
*
|
|
3330
2126
|
* @summary Retrieve all team members
|
|
@@ -3337,9 +2133,8 @@ export declare class MembersApi extends BaseAPI {
|
|
|
3337
2133
|
* @param {Array<number>} [roleIds]
|
|
3338
2134
|
* @param {*} [options] Override http request option.
|
|
3339
2135
|
* @throws {RequiredError}
|
|
3340
|
-
* @memberof MembersApi
|
|
3341
2136
|
*/
|
|
3342
|
-
membersControllerGetAllTeamMembersOfProject(projectId: string, page?: number, limit?: number, column?: string, direction?: MembersControllerGetAllTeamMembersOfProjectDirectionEnum, teamMemberStatus?: Array<string>, roleIds?: Array<number>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectMemberResponseDto, any>>;
|
|
2137
|
+
membersControllerGetAllTeamMembersOfProject(projectId: string, page?: number, limit?: number, column?: string, direction?: MembersControllerGetAllTeamMembersOfProjectDirectionEnum, teamMemberStatus?: Array<string>, roleIds?: Array<number>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectMemberResponseDto, any, {}>>;
|
|
3343
2138
|
/**
|
|
3344
2139
|
*
|
|
3345
2140
|
* @summary Update team member details
|
|
@@ -3348,13 +2143,9 @@ export declare class MembersApi extends BaseAPI {
|
|
|
3348
2143
|
* @param {UpdateTeamMemberRequestDTO} updateTeamMemberRequestDTO
|
|
3349
2144
|
* @param {*} [options] Override http request option.
|
|
3350
2145
|
* @throws {RequiredError}
|
|
3351
|
-
* @memberof MembersApi
|
|
3352
2146
|
*/
|
|
3353
|
-
membersControllerUpdateTeamMemberRole(projectId: string, memberId: string, updateTeamMemberRequestDTO: UpdateTeamMemberRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any>>;
|
|
2147
|
+
membersControllerUpdateTeamMemberRole(projectId: string, memberId: string, updateTeamMemberRequestDTO: UpdateTeamMemberRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any, {}>>;
|
|
3354
2148
|
}
|
|
3355
|
-
/**
|
|
3356
|
-
* @export
|
|
3357
|
-
*/
|
|
3358
2149
|
export declare const MembersControllerGetAllTeamMembersOfProjectDirectionEnum: {
|
|
3359
2150
|
readonly Asc: "ASC";
|
|
3360
2151
|
readonly Desc: "DESC";
|
|
@@ -3362,7 +2153,6 @@ export declare const MembersControllerGetAllTeamMembersOfProjectDirectionEnum: {
|
|
|
3362
2153
|
export type MembersControllerGetAllTeamMembersOfProjectDirectionEnum = typeof MembersControllerGetAllTeamMembersOfProjectDirectionEnum[keyof typeof MembersControllerGetAllTeamMembersOfProjectDirectionEnum];
|
|
3363
2154
|
/**
|
|
3364
2155
|
* MiscellaneousApi - axios parameter creator
|
|
3365
|
-
* @export
|
|
3366
2156
|
*/
|
|
3367
2157
|
export declare const MiscellaneousApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3368
2158
|
/**
|
|
@@ -3391,7 +2181,6 @@ export declare const MiscellaneousApiAxiosParamCreator: (configuration?: Configu
|
|
|
3391
2181
|
};
|
|
3392
2182
|
/**
|
|
3393
2183
|
* MiscellaneousApi - functional programming interface
|
|
3394
|
-
* @export
|
|
3395
2184
|
*/
|
|
3396
2185
|
export declare const MiscellaneousApiFp: (configuration?: Configuration) => {
|
|
3397
2186
|
/**
|
|
@@ -3420,7 +2209,6 @@ export declare const MiscellaneousApiFp: (configuration?: Configuration) => {
|
|
|
3420
2209
|
};
|
|
3421
2210
|
/**
|
|
3422
2211
|
* MiscellaneousApi - factory interface
|
|
3423
|
-
* @export
|
|
3424
2212
|
*/
|
|
3425
2213
|
export declare const MiscellaneousApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3426
2214
|
/**
|
|
@@ -3449,9 +2237,6 @@ export declare const MiscellaneousApiFactory: (configuration?: Configuration, ba
|
|
|
3449
2237
|
};
|
|
3450
2238
|
/**
|
|
3451
2239
|
* MiscellaneousApi - object-oriented interface
|
|
3452
|
-
* @export
|
|
3453
|
-
* @class MiscellaneousApi
|
|
3454
|
-
* @extends {BaseAPI}
|
|
3455
2240
|
*/
|
|
3456
2241
|
export declare class MiscellaneousApi extends BaseAPI {
|
|
3457
2242
|
/**
|
|
@@ -3459,31 +2244,27 @@ export declare class MiscellaneousApi extends BaseAPI {
|
|
|
3459
2244
|
* @summary Get machine id matching instances.
|
|
3460
2245
|
* @param {*} [options] Override http request option.
|
|
3461
2246
|
* @throws {RequiredError}
|
|
3462
|
-
* @memberof MiscellaneousApi
|
|
3463
2247
|
*/
|
|
3464
|
-
miscellaneousControllerGetData(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
2248
|
+
miscellaneousControllerGetData(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
3465
2249
|
/**
|
|
3466
2250
|
*
|
|
3467
2251
|
* @summary Get machine id matching instances.
|
|
3468
2252
|
* @param {string} projectId
|
|
3469
2253
|
* @param {*} [options] Override http request option.
|
|
3470
2254
|
* @throws {RequiredError}
|
|
3471
|
-
* @memberof MiscellaneousApi
|
|
3472
2255
|
*/
|
|
3473
|
-
miscellaneousControllerGetMachineInstanceByImageId(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
2256
|
+
miscellaneousControllerGetMachineInstanceByImageId(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
3474
2257
|
/**
|
|
3475
2258
|
*
|
|
3476
2259
|
* @summary Join project
|
|
3477
2260
|
* @param {UpdateTeamMemberStatusRequestDTO} updateTeamMemberStatusRequestDTO
|
|
3478
2261
|
* @param {*} [options] Override http request option.
|
|
3479
2262
|
* @throws {RequiredError}
|
|
3480
|
-
* @memberof MiscellaneousApi
|
|
3481
2263
|
*/
|
|
3482
|
-
miscellaneousControllerUpdateTeamMemberStatus(updateTeamMemberStatusRequestDTO: UpdateTeamMemberStatusRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any>>;
|
|
2264
|
+
miscellaneousControllerUpdateTeamMemberStatus(updateTeamMemberStatusRequestDTO: UpdateTeamMemberStatusRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any, {}>>;
|
|
3483
2265
|
}
|
|
3484
2266
|
/**
|
|
3485
2267
|
* NotificationsApi - axios parameter creator
|
|
3486
|
-
* @export
|
|
3487
2268
|
*/
|
|
3488
2269
|
export declare const NotificationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3489
2270
|
/**
|
|
@@ -3506,7 +2287,6 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
3506
2287
|
};
|
|
3507
2288
|
/**
|
|
3508
2289
|
* NotificationsApi - functional programming interface
|
|
3509
|
-
* @export
|
|
3510
2290
|
*/
|
|
3511
2291
|
export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
3512
2292
|
/**
|
|
@@ -3529,7 +2309,6 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
|
3529
2309
|
};
|
|
3530
2310
|
/**
|
|
3531
2311
|
* NotificationsApi - factory interface
|
|
3532
|
-
* @export
|
|
3533
2312
|
*/
|
|
3534
2313
|
export declare const NotificationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3535
2314
|
/**
|
|
@@ -3552,9 +2331,6 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
|
3552
2331
|
};
|
|
3553
2332
|
/**
|
|
3554
2333
|
* NotificationsApi - object-oriented interface
|
|
3555
|
-
* @export
|
|
3556
|
-
* @class NotificationsApi
|
|
3557
|
-
* @extends {BaseAPI}
|
|
3558
2334
|
*/
|
|
3559
2335
|
export declare class NotificationsApi extends BaseAPI {
|
|
3560
2336
|
/**
|
|
@@ -3563,9 +2339,8 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
3563
2339
|
* @param {string} projectId
|
|
3564
2340
|
* @param {*} [options] Override http request option.
|
|
3565
2341
|
* @throws {RequiredError}
|
|
3566
|
-
* @memberof NotificationsApi
|
|
3567
2342
|
*/
|
|
3568
|
-
notificationsControllerGetLastFiveNotifications(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
2343
|
+
notificationsControllerGetLastFiveNotifications(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
3569
2344
|
/**
|
|
3570
2345
|
*
|
|
3571
2346
|
* @summary Mark notification as read
|
|
@@ -3573,13 +2348,11 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
3573
2348
|
* @param {object} body
|
|
3574
2349
|
* @param {*} [options] Override http request option.
|
|
3575
2350
|
* @throws {RequiredError}
|
|
3576
|
-
* @memberof NotificationsApi
|
|
3577
2351
|
*/
|
|
3578
|
-
notificationsControllerMarkNotificationsAsRead(projectId: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
2352
|
+
notificationsControllerMarkNotificationsAsRead(projectId: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
3579
2353
|
}
|
|
3580
2354
|
/**
|
|
3581
2355
|
* ProjectsApi - axios parameter creator
|
|
3582
|
-
* @export
|
|
3583
2356
|
*/
|
|
3584
2357
|
export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3585
2358
|
/**
|
|
@@ -3629,7 +2402,6 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3629
2402
|
};
|
|
3630
2403
|
/**
|
|
3631
2404
|
* ProjectsApi - functional programming interface
|
|
3632
|
-
* @export
|
|
3633
2405
|
*/
|
|
3634
2406
|
export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
3635
2407
|
/**
|
|
@@ -3679,7 +2451,6 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
3679
2451
|
};
|
|
3680
2452
|
/**
|
|
3681
2453
|
* ProjectsApi - factory interface
|
|
3682
|
-
* @export
|
|
3683
2454
|
*/
|
|
3684
2455
|
export declare const ProjectsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3685
2456
|
/**
|
|
@@ -3729,9 +2500,6 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
3729
2500
|
};
|
|
3730
2501
|
/**
|
|
3731
2502
|
* ProjectsApi - object-oriented interface
|
|
3732
|
-
* @export
|
|
3733
|
-
* @class ProjectsApi
|
|
3734
|
-
* @extends {BaseAPI}
|
|
3735
2503
|
*/
|
|
3736
2504
|
export declare class ProjectsApi extends BaseAPI {
|
|
3737
2505
|
/**
|
|
@@ -3740,18 +2508,16 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
3740
2508
|
* @param {CreateProjectDTO} createProjectDTO
|
|
3741
2509
|
* @param {*} [options] Override http request option.
|
|
3742
2510
|
* @throws {RequiredError}
|
|
3743
|
-
* @memberof ProjectsApi
|
|
3744
2511
|
*/
|
|
3745
|
-
projectControllerCreateProject(createProjectDTO: CreateProjectDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateProjectResponseDTO, any>>;
|
|
2512
|
+
projectControllerCreateProject(createProjectDTO: CreateProjectDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateProjectResponseDTO, any, {}>>;
|
|
3746
2513
|
/**
|
|
3747
2514
|
*
|
|
3748
2515
|
* @summary Delete project by id
|
|
3749
2516
|
* @param {string} id
|
|
3750
2517
|
* @param {*} [options] Override http request option.
|
|
3751
2518
|
* @throws {RequiredError}
|
|
3752
|
-
* @memberof ProjectsApi
|
|
3753
2519
|
*/
|
|
3754
|
-
projectControllerDeleteProjectById(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteProjectResponseDTO, any>>;
|
|
2520
|
+
projectControllerDeleteProjectById(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteProjectResponseDTO, any, {}>>;
|
|
3755
2521
|
/**
|
|
3756
2522
|
*
|
|
3757
2523
|
* @summary Get all projects
|
|
@@ -3761,18 +2527,16 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
3761
2527
|
* @param {ProjectControllerGetAllProjectsDirectionEnum} [direction]
|
|
3762
2528
|
* @param {*} [options] Override http request option.
|
|
3763
2529
|
* @throws {RequiredError}
|
|
3764
|
-
* @memberof ProjectsApi
|
|
3765
2530
|
*/
|
|
3766
|
-
projectControllerGetAllProjects(page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllProjectsDirectionEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectsResponseDTO, any>>;
|
|
2531
|
+
projectControllerGetAllProjects(page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllProjectsDirectionEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectsResponseDTO, any, {}>>;
|
|
3767
2532
|
/**
|
|
3768
2533
|
*
|
|
3769
2534
|
* @summary Get project by id
|
|
3770
2535
|
* @param {string} id
|
|
3771
2536
|
* @param {*} [options] Override http request option.
|
|
3772
2537
|
* @throws {RequiredError}
|
|
3773
|
-
* @memberof ProjectsApi
|
|
3774
2538
|
*/
|
|
3775
|
-
projectControllerGetProjectById(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProjectByIDResponseDTO, any>>;
|
|
2539
|
+
projectControllerGetProjectById(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProjectByIDResponseDTO, any, {}>>;
|
|
3776
2540
|
/**
|
|
3777
2541
|
*
|
|
3778
2542
|
* @summary Update project by id
|
|
@@ -3780,13 +2544,9 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
3780
2544
|
* @param {UpdateProjectByIdRequest} updateProjectByIdRequest
|
|
3781
2545
|
* @param {*} [options] Override http request option.
|
|
3782
2546
|
* @throws {RequiredError}
|
|
3783
|
-
* @memberof ProjectsApi
|
|
3784
2547
|
*/
|
|
3785
|
-
projectControllerUpdateProjectById(id: string, updateProjectByIdRequest: UpdateProjectByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateProjectByIDResponseDTO, any>>;
|
|
2548
|
+
projectControllerUpdateProjectById(id: string, updateProjectByIdRequest: UpdateProjectByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateProjectByIDResponseDTO, any, {}>>;
|
|
3786
2549
|
}
|
|
3787
|
-
/**
|
|
3788
|
-
* @export
|
|
3789
|
-
*/
|
|
3790
2550
|
export declare const ProjectControllerGetAllProjectsDirectionEnum: {
|
|
3791
2551
|
readonly Asc: "ASC";
|
|
3792
2552
|
readonly Desc: "DESC";
|
|
@@ -3794,7 +2554,6 @@ export declare const ProjectControllerGetAllProjectsDirectionEnum: {
|
|
|
3794
2554
|
export type ProjectControllerGetAllProjectsDirectionEnum = typeof ProjectControllerGetAllProjectsDirectionEnum[keyof typeof ProjectControllerGetAllProjectsDirectionEnum];
|
|
3795
2555
|
/**
|
|
3796
2556
|
* QueriesAndDocumentationsApi - axios parameter creator
|
|
3797
|
-
* @export
|
|
3798
2557
|
*/
|
|
3799
2558
|
export declare const QueriesAndDocumentationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3800
2559
|
/**
|
|
@@ -3818,7 +2577,6 @@ export declare const QueriesAndDocumentationsApiAxiosParamCreator: (configuratio
|
|
|
3818
2577
|
};
|
|
3819
2578
|
/**
|
|
3820
2579
|
* QueriesAndDocumentationsApi - functional programming interface
|
|
3821
|
-
* @export
|
|
3822
2580
|
*/
|
|
3823
2581
|
export declare const QueriesAndDocumentationsApiFp: (configuration?: Configuration) => {
|
|
3824
2582
|
/**
|
|
@@ -3842,7 +2600,6 @@ export declare const QueriesAndDocumentationsApiFp: (configuration?: Configurati
|
|
|
3842
2600
|
};
|
|
3843
2601
|
/**
|
|
3844
2602
|
* QueriesAndDocumentationsApi - factory interface
|
|
3845
|
-
* @export
|
|
3846
2603
|
*/
|
|
3847
2604
|
export declare const QueriesAndDocumentationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3848
2605
|
/**
|
|
@@ -3866,9 +2623,6 @@ export declare const QueriesAndDocumentationsApiFactory: (configuration?: Config
|
|
|
3866
2623
|
};
|
|
3867
2624
|
/**
|
|
3868
2625
|
* QueriesAndDocumentationsApi - object-oriented interface
|
|
3869
|
-
* @export
|
|
3870
|
-
* @class QueriesAndDocumentationsApi
|
|
3871
|
-
* @extends {BaseAPI}
|
|
3872
2626
|
*/
|
|
3873
2627
|
export declare class QueriesAndDocumentationsApi extends BaseAPI {
|
|
3874
2628
|
/**
|
|
@@ -3879,22 +2633,19 @@ export declare class QueriesAndDocumentationsApi extends BaseAPI {
|
|
|
3879
2633
|
* @param {string} fieldName
|
|
3880
2634
|
* @param {*} [options] Override http request option.
|
|
3881
2635
|
* @throws {RequiredError}
|
|
3882
|
-
* @memberof QueriesAndDocumentationsApi
|
|
3883
2636
|
*/
|
|
3884
|
-
queriesAndDocControllerFetchSwaggerJSON(modelId: string, projectId: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
2637
|
+
queriesAndDocControllerFetchSwaggerJSON(modelId: string, projectId: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
3885
2638
|
/**
|
|
3886
2639
|
*
|
|
3887
2640
|
* @summary Run Query
|
|
3888
2641
|
* @param {string} projectId
|
|
3889
2642
|
* @param {*} [options] Override http request option.
|
|
3890
2643
|
* @throws {RequiredError}
|
|
3891
|
-
* @memberof QueriesAndDocumentationsApi
|
|
3892
2644
|
*/
|
|
3893
|
-
queriesAndDocControllerRunQuery(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
|
|
2645
|
+
queriesAndDocControllerRunQuery(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any, {}>>;
|
|
3894
2646
|
}
|
|
3895
2647
|
/**
|
|
3896
2648
|
* RolesApi - axios parameter creator
|
|
3897
|
-
* @export
|
|
3898
2649
|
*/
|
|
3899
2650
|
export declare const RolesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3900
2651
|
/**
|
|
@@ -3957,7 +2708,6 @@ export declare const RolesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3957
2708
|
};
|
|
3958
2709
|
/**
|
|
3959
2710
|
* RolesApi - functional programming interface
|
|
3960
|
-
* @export
|
|
3961
2711
|
*/
|
|
3962
2712
|
export declare const RolesApiFp: (configuration?: Configuration) => {
|
|
3963
2713
|
/**
|
|
@@ -4020,7 +2770,6 @@ export declare const RolesApiFp: (configuration?: Configuration) => {
|
|
|
4020
2770
|
};
|
|
4021
2771
|
/**
|
|
4022
2772
|
* RolesApi - factory interface
|
|
4023
|
-
* @export
|
|
4024
2773
|
*/
|
|
4025
2774
|
export declare const RolesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4026
2775
|
/**
|
|
@@ -4083,9 +2832,6 @@ export declare const RolesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
4083
2832
|
};
|
|
4084
2833
|
/**
|
|
4085
2834
|
* RolesApi - object-oriented interface
|
|
4086
|
-
* @export
|
|
4087
|
-
* @class RolesApi
|
|
4088
|
-
* @extends {BaseAPI}
|
|
4089
2835
|
*/
|
|
4090
2836
|
export declare class RolesApi extends BaseAPI {
|
|
4091
2837
|
/**
|
|
@@ -4095,9 +2841,8 @@ export declare class RolesApi extends BaseAPI {
|
|
|
4095
2841
|
* @param {CreateRoleDto} createRoleDto
|
|
4096
2842
|
* @param {*} [options] Override http request option.
|
|
4097
2843
|
* @throws {RequiredError}
|
|
4098
|
-
* @memberof RolesApi
|
|
4099
2844
|
*/
|
|
4100
|
-
rolesControllerCreateProjectRole(projectId: string, createRoleDto: CreateRoleDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateProjectRoleResponseDto, any>>;
|
|
2845
|
+
rolesControllerCreateProjectRole(projectId: string, createRoleDto: CreateRoleDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateProjectRoleResponseDto, any, {}>>;
|
|
4101
2846
|
/**
|
|
4102
2847
|
*
|
|
4103
2848
|
* @summary Delete Project Role
|
|
@@ -4105,9 +2850,8 @@ export declare class RolesApi extends BaseAPI {
|
|
|
4105
2850
|
* @param {number} roleId
|
|
4106
2851
|
* @param {*} [options] Override http request option.
|
|
4107
2852
|
* @throws {RequiredError}
|
|
4108
|
-
* @memberof RolesApi
|
|
4109
2853
|
*/
|
|
4110
|
-
rolesControllerDeleteProjectRole(projectId: string, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteProjectRoleByIdResponseDto, any>>;
|
|
2854
|
+
rolesControllerDeleteProjectRole(projectId: string, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteProjectRoleByIdResponseDto, any, {}>>;
|
|
4111
2855
|
/**
|
|
4112
2856
|
*
|
|
4113
2857
|
* @summary Retrieve all roles
|
|
@@ -4118,9 +2862,8 @@ export declare class RolesApi extends BaseAPI {
|
|
|
4118
2862
|
* @param {RolesControllerGetAllProjectRolesDirectionEnum} [direction]
|
|
4119
2863
|
* @param {*} [options] Override http request option.
|
|
4120
2864
|
* @throws {RequiredError}
|
|
4121
|
-
* @memberof RolesApi
|
|
4122
2865
|
*/
|
|
4123
|
-
rolesControllerGetAllProjectRoles(projectId: string, page?: number, limit?: number, column?: string, direction?: RolesControllerGetAllProjectRolesDirectionEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectRoleResponseDto, any>>;
|
|
2866
|
+
rolesControllerGetAllProjectRoles(projectId: string, page?: number, limit?: number, column?: string, direction?: RolesControllerGetAllProjectRolesDirectionEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectRoleResponseDto, any, {}>>;
|
|
4124
2867
|
/**
|
|
4125
2868
|
*
|
|
4126
2869
|
* @summary Retrieve a role by ID
|
|
@@ -4128,18 +2871,16 @@ export declare class RolesApi extends BaseAPI {
|
|
|
4128
2871
|
* @param {number} roleId
|
|
4129
2872
|
* @param {*} [options] Override http request option.
|
|
4130
2873
|
* @throws {RequiredError}
|
|
4131
|
-
* @memberof RolesApi
|
|
4132
2874
|
*/
|
|
4133
|
-
rolesControllerGetProjectRoleById(projectId: string, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProjectRoleByIdResponseDto, any>>;
|
|
2875
|
+
rolesControllerGetProjectRoleById(projectId: string, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProjectRoleByIdResponseDto, any, {}>>;
|
|
4134
2876
|
/**
|
|
4135
2877
|
*
|
|
4136
2878
|
* @summary Retrieve the role of a specific member
|
|
4137
2879
|
* @param {string} id
|
|
4138
2880
|
* @param {*} [options] Override http request option.
|
|
4139
2881
|
* @throws {RequiredError}
|
|
4140
|
-
* @memberof RolesApi
|
|
4141
2882
|
*/
|
|
4142
|
-
rolesControllerGetUserProjectRole(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetUserProjectRoleByRoleIdResponseDto, any>>;
|
|
2883
|
+
rolesControllerGetUserProjectRole(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetUserProjectRoleByRoleIdResponseDto, any, {}>>;
|
|
4143
2884
|
/**
|
|
4144
2885
|
*
|
|
4145
2886
|
* @summary Update a role
|
|
@@ -4148,13 +2889,9 @@ export declare class RolesApi extends BaseAPI {
|
|
|
4148
2889
|
* @param {UpdateRoleByIdDto} updateRoleByIdDto
|
|
4149
2890
|
* @param {*} [options] Override http request option.
|
|
4150
2891
|
* @throws {RequiredError}
|
|
4151
|
-
* @memberof RolesApi
|
|
4152
2892
|
*/
|
|
4153
|
-
rolesControllerUpdateProjectRoleById(projectId: string, roleId: number, updateRoleByIdDto: UpdateRoleByIdDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateProjectRoleResponseDto, any>>;
|
|
2893
|
+
rolesControllerUpdateProjectRoleById(projectId: string, roleId: number, updateRoleByIdDto: UpdateRoleByIdDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateProjectRoleResponseDto, any, {}>>;
|
|
4154
2894
|
}
|
|
4155
|
-
/**
|
|
4156
|
-
* @export
|
|
4157
|
-
*/
|
|
4158
2895
|
export declare const RolesControllerGetAllProjectRolesDirectionEnum: {
|
|
4159
2896
|
readonly Asc: "ASC";
|
|
4160
2897
|
readonly Desc: "DESC";
|
|
@@ -4162,7 +2899,6 @@ export declare const RolesControllerGetAllProjectRolesDirectionEnum: {
|
|
|
4162
2899
|
export type RolesControllerGetAllProjectRolesDirectionEnum = typeof RolesControllerGetAllProjectRolesDirectionEnum[keyof typeof RolesControllerGetAllProjectRolesDirectionEnum];
|
|
4163
2900
|
/**
|
|
4164
2901
|
* WebhookApi - axios parameter creator
|
|
4165
|
-
* @export
|
|
4166
2902
|
*/
|
|
4167
2903
|
export declare const WebhookApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4168
2904
|
/**
|
|
@@ -4204,7 +2940,6 @@ export declare const WebhookApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4204
2940
|
};
|
|
4205
2941
|
/**
|
|
4206
2942
|
* WebhookApi - functional programming interface
|
|
4207
|
-
* @export
|
|
4208
2943
|
*/
|
|
4209
2944
|
export declare const WebhookApiFp: (configuration?: Configuration) => {
|
|
4210
2945
|
/**
|
|
@@ -4246,7 +2981,6 @@ export declare const WebhookApiFp: (configuration?: Configuration) => {
|
|
|
4246
2981
|
};
|
|
4247
2982
|
/**
|
|
4248
2983
|
* WebhookApi - factory interface
|
|
4249
|
-
* @export
|
|
4250
2984
|
*/
|
|
4251
2985
|
export declare const WebhookApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4252
2986
|
/**
|
|
@@ -4288,9 +3022,6 @@ export declare const WebhookApiFactory: (configuration?: Configuration, basePath
|
|
|
4288
3022
|
};
|
|
4289
3023
|
/**
|
|
4290
3024
|
* WebhookApi - object-oriented interface
|
|
4291
|
-
* @export
|
|
4292
|
-
* @class WebhookApi
|
|
4293
|
-
* @extends {BaseAPI}
|
|
4294
3025
|
*/
|
|
4295
3026
|
export declare class WebhookApi extends BaseAPI {
|
|
4296
3027
|
/**
|
|
@@ -4299,9 +3030,8 @@ export declare class WebhookApi extends BaseAPI {
|
|
|
4299
3030
|
* @param {string} projectId
|
|
4300
3031
|
* @param {*} [options] Override http request option.
|
|
4301
3032
|
* @throws {RequiredError}
|
|
4302
|
-
* @memberof WebhookApi
|
|
4303
3033
|
*/
|
|
4304
|
-
webhookControllerCreateWebhook(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
|
|
3034
|
+
webhookControllerCreateWebhook(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any, {}>>;
|
|
4305
3035
|
/**
|
|
4306
3036
|
*
|
|
4307
3037
|
* @summary Delete webhook
|
|
@@ -4309,9 +3039,8 @@ export declare class WebhookApi extends BaseAPI {
|
|
|
4309
3039
|
* @param {string} modelId
|
|
4310
3040
|
* @param {*} [options] Override http request option.
|
|
4311
3041
|
* @throws {RequiredError}
|
|
4312
|
-
* @memberof WebhookApi
|
|
4313
3042
|
*/
|
|
4314
|
-
webhookControllerDeleteWebhook(projectId: string, modelId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
|
|
3043
|
+
webhookControllerDeleteWebhook(projectId: string, modelId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any, {}>>;
|
|
4315
3044
|
/**
|
|
4316
3045
|
*
|
|
4317
3046
|
* @summary Fetch webhook
|
|
@@ -4320,9 +3049,8 @@ export declare class WebhookApi extends BaseAPI {
|
|
|
4320
3049
|
* @param {boolean} isAgentWebhook
|
|
4321
3050
|
* @param {*} [options] Override http request option.
|
|
4322
3051
|
* @throws {RequiredError}
|
|
4323
|
-
* @memberof WebhookApi
|
|
4324
3052
|
*/
|
|
4325
|
-
webhookControllerFetchWebhook(projectId: string, modelId: string, isAgentWebhook: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
|
|
3053
|
+
webhookControllerFetchWebhook(projectId: string, modelId: string, isAgentWebhook: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any, {}>>;
|
|
4326
3054
|
/**
|
|
4327
3055
|
*
|
|
4328
3056
|
* @summary Update webhook
|
|
@@ -4330,7 +3058,6 @@ export declare class WebhookApi extends BaseAPI {
|
|
|
4330
3058
|
* @param {string} projectId
|
|
4331
3059
|
* @param {*} [options] Override http request option.
|
|
4332
3060
|
* @throws {RequiredError}
|
|
4333
|
-
* @memberof WebhookApi
|
|
4334
3061
|
*/
|
|
4335
|
-
webhookControllerUpdateWebhook(webhookId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
|
|
3062
|
+
webhookControllerUpdateWebhook(webhookId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any, {}>>;
|
|
4336
3063
|
}
|