@nestbox-ai/admin 1.0.50 → 1.0.61
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 -1387
- package/base.ts +0 -24
- package/common.ts +14 -38
- package/configuration.ts +24 -18
- package/dist/api.d.ts +97 -1364
- 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 -1364
- 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/git_push.sh +2 -2
- package/package.json +2 -2
package/api.ts
CHANGED
|
@@ -18,949 +18,243 @@ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
|
18
18
|
import globalAxios from 'axios';
|
|
19
19
|
// Some imports not used depending on template conditions
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';
|
|
21
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, replaceWithSerializableTypeIfNeeded } from './common';
|
|
22
22
|
import type { RequestArgs } from './base';
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerMap } from './base';
|
|
25
25
|
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @export
|
|
29
|
-
* @interface AddProjectMemberData
|
|
30
|
-
*/
|
|
31
26
|
export interface AddProjectMemberData {
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {string}
|
|
35
|
-
* @memberof AddProjectMemberData
|
|
36
|
-
*/
|
|
37
27
|
'message': string;
|
|
38
|
-
/**
|
|
39
|
-
*
|
|
40
|
-
* @type {object}
|
|
41
|
-
* @memberof AddProjectMemberData
|
|
42
|
-
*/
|
|
43
28
|
'project': object;
|
|
44
29
|
}
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* @export
|
|
48
|
-
* @interface AddProjectMemberDto
|
|
49
|
-
*/
|
|
50
30
|
export interface AddProjectMemberDto {
|
|
51
|
-
/**
|
|
52
|
-
*
|
|
53
|
-
* @type {string}
|
|
54
|
-
* @memberof AddProjectMemberDto
|
|
55
|
-
*/
|
|
56
31
|
'firstName': string;
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
59
|
-
* @type {string}
|
|
60
|
-
* @memberof AddProjectMemberDto
|
|
61
|
-
*/
|
|
62
32
|
'lastName': string;
|
|
63
|
-
/**
|
|
64
|
-
*
|
|
65
|
-
* @type {string}
|
|
66
|
-
* @memberof AddProjectMemberDto
|
|
67
|
-
*/
|
|
68
33
|
'email': string;
|
|
69
|
-
/**
|
|
70
|
-
*
|
|
71
|
-
* @type {number}
|
|
72
|
-
* @memberof AddProjectMemberDto
|
|
73
|
-
*/
|
|
74
34
|
'roleId': number;
|
|
75
35
|
}
|
|
76
|
-
/**
|
|
77
|
-
*
|
|
78
|
-
* @export
|
|
79
|
-
* @interface AddProjectMemberResponseDTO
|
|
80
|
-
*/
|
|
81
36
|
export interface AddProjectMemberResponseDTO {
|
|
82
|
-
/**
|
|
83
|
-
*
|
|
84
|
-
* @type {AddProjectMemberData}
|
|
85
|
-
* @memberof AddProjectMemberResponseDTO
|
|
86
|
-
*/
|
|
87
37
|
'data': AddProjectMemberData;
|
|
88
38
|
}
|
|
89
|
-
/**
|
|
90
|
-
*
|
|
91
|
-
* @export
|
|
92
|
-
* @interface AllProjectResponse
|
|
93
|
-
*/
|
|
94
39
|
export interface AllProjectResponse {
|
|
95
|
-
/**
|
|
96
|
-
*
|
|
97
|
-
* @type {string}
|
|
98
|
-
* @memberof AllProjectResponse
|
|
99
|
-
*/
|
|
100
40
|
'id': string;
|
|
101
|
-
/**
|
|
102
|
-
*
|
|
103
|
-
* @type {string}
|
|
104
|
-
* @memberof AllProjectResponse
|
|
105
|
-
*/
|
|
106
41
|
'name': string;
|
|
107
|
-
/**
|
|
108
|
-
*
|
|
109
|
-
* @type {string}
|
|
110
|
-
* @memberof AllProjectResponse
|
|
111
|
-
*/
|
|
112
42
|
'description': string;
|
|
113
|
-
/**
|
|
114
|
-
*
|
|
115
|
-
* @type {string}
|
|
116
|
-
* @memberof AllProjectResponse
|
|
117
|
-
*/
|
|
118
43
|
'createdAt': string;
|
|
119
|
-
/**
|
|
120
|
-
*
|
|
121
|
-
* @type {string}
|
|
122
|
-
* @memberof AllProjectResponse
|
|
123
|
-
*/
|
|
124
44
|
'updatedAt': string;
|
|
125
|
-
/**
|
|
126
|
-
*
|
|
127
|
-
* @type {string}
|
|
128
|
-
* @memberof AllProjectResponse
|
|
129
|
-
*/
|
|
130
45
|
'deletedAt': string;
|
|
131
46
|
}
|
|
132
|
-
/**
|
|
133
|
-
*
|
|
134
|
-
* @export
|
|
135
|
-
* @interface AllProjectResponseModel
|
|
136
|
-
*/
|
|
137
47
|
export interface AllProjectResponseModel {
|
|
138
|
-
/**
|
|
139
|
-
*
|
|
140
|
-
* @type {Array<AllProjectResponse>}
|
|
141
|
-
* @memberof AllProjectResponseModel
|
|
142
|
-
*/
|
|
143
48
|
'projects': Array<AllProjectResponse>;
|
|
144
|
-
/**
|
|
145
|
-
*
|
|
146
|
-
* @type {number}
|
|
147
|
-
* @memberof AllProjectResponseModel
|
|
148
|
-
*/
|
|
149
49
|
'totalCount': number;
|
|
150
50
|
}
|
|
151
|
-
/**
|
|
152
|
-
*
|
|
153
|
-
* @export
|
|
154
|
-
* @interface BadRequestExceptionResponse
|
|
155
|
-
*/
|
|
156
51
|
export interface BadRequestExceptionResponse {
|
|
157
|
-
/**
|
|
158
|
-
*
|
|
159
|
-
* @type {string}
|
|
160
|
-
* @memberof BadRequestExceptionResponse
|
|
161
|
-
*/
|
|
162
52
|
'message': string;
|
|
163
|
-
/**
|
|
164
|
-
*
|
|
165
|
-
* @type {object}
|
|
166
|
-
* @memberof BadRequestExceptionResponse
|
|
167
|
-
*/
|
|
168
53
|
'errors': object | null;
|
|
169
54
|
}
|
|
170
|
-
/**
|
|
171
|
-
*
|
|
172
|
-
* @export
|
|
173
|
-
* @interface BenchmarkingDatapointDto
|
|
174
|
-
*/
|
|
175
55
|
export interface BenchmarkingDatapointDto {
|
|
176
56
|
/**
|
|
177
57
|
* Combined content of all benchmarking lines
|
|
178
|
-
* @type {string}
|
|
179
|
-
* @memberof BenchmarkingDatapointDto
|
|
180
58
|
*/
|
|
181
59
|
'lines': string;
|
|
182
60
|
/**
|
|
183
61
|
* Total number of lines found
|
|
184
|
-
* @type {number}
|
|
185
|
-
* @memberof BenchmarkingDatapointDto
|
|
186
62
|
*/
|
|
187
63
|
'totalLines': number;
|
|
188
64
|
}
|
|
189
|
-
/**
|
|
190
|
-
*
|
|
191
|
-
* @export
|
|
192
|
-
* @interface BenchmarkingReportsDto
|
|
193
|
-
*/
|
|
194
65
|
export interface BenchmarkingReportsDto {
|
|
195
66
|
/**
|
|
196
67
|
* Combined markdown content of all benchmarking reports
|
|
197
|
-
* @type {string}
|
|
198
|
-
* @memberof BenchmarkingReportsDto
|
|
199
68
|
*/
|
|
200
69
|
'content': string;
|
|
201
70
|
/**
|
|
202
71
|
* Total number of reports found
|
|
203
|
-
* @type {number}
|
|
204
|
-
* @memberof BenchmarkingReportsDto
|
|
205
72
|
*/
|
|
206
73
|
'totalReports': number;
|
|
207
74
|
}
|
|
208
|
-
/**
|
|
209
|
-
*
|
|
210
|
-
* @export
|
|
211
|
-
* @interface BooleanResponseDTO
|
|
212
|
-
*/
|
|
213
75
|
export interface BooleanResponseDTO {
|
|
214
|
-
/**
|
|
215
|
-
*
|
|
216
|
-
* @type {boolean}
|
|
217
|
-
* @memberof BooleanResponseDTO
|
|
218
|
-
*/
|
|
219
76
|
'data': boolean;
|
|
220
77
|
}
|
|
221
|
-
/**
|
|
222
|
-
*
|
|
223
|
-
* @export
|
|
224
|
-
* @interface ChunkFileRequestDTO
|
|
225
|
-
*/
|
|
226
78
|
export interface ChunkFileRequestDTO {
|
|
227
|
-
/**
|
|
228
|
-
*
|
|
229
|
-
* @type {string}
|
|
230
|
-
* @memberof ChunkFileRequestDTO
|
|
231
|
-
*/
|
|
232
79
|
'type': string;
|
|
233
|
-
/**
|
|
234
|
-
*
|
|
235
|
-
* @type {string}
|
|
236
|
-
* @memberof ChunkFileRequestDTO
|
|
237
|
-
*/
|
|
238
80
|
'url': string;
|
|
239
|
-
/**
|
|
240
|
-
*
|
|
241
|
-
* @type {object}
|
|
242
|
-
* @memberof ChunkFileRequestDTO
|
|
243
|
-
*/
|
|
244
81
|
'options': object;
|
|
245
82
|
}
|
|
246
|
-
/**
|
|
247
|
-
*
|
|
248
|
-
* @export
|
|
249
|
-
* @interface CreateCollectionRequestDTO
|
|
250
|
-
*/
|
|
251
83
|
export interface CreateCollectionRequestDTO {
|
|
252
|
-
/**
|
|
253
|
-
*
|
|
254
|
-
* @type {string}
|
|
255
|
-
* @memberof CreateCollectionRequestDTO
|
|
256
|
-
*/
|
|
257
84
|
'name': string;
|
|
258
|
-
/**
|
|
259
|
-
*
|
|
260
|
-
* @type {object}
|
|
261
|
-
* @memberof CreateCollectionRequestDTO
|
|
262
|
-
*/
|
|
263
85
|
'metadata': object;
|
|
264
86
|
}
|
|
265
|
-
/**
|
|
266
|
-
*
|
|
267
|
-
* @export
|
|
268
|
-
* @interface CreateDocumentRequestDTO
|
|
269
|
-
*/
|
|
270
87
|
export interface CreateDocumentRequestDTO {
|
|
271
|
-
/**
|
|
272
|
-
*
|
|
273
|
-
* @type {string}
|
|
274
|
-
* @memberof CreateDocumentRequestDTO
|
|
275
|
-
*/
|
|
276
88
|
'id': string;
|
|
277
|
-
/**
|
|
278
|
-
*
|
|
279
|
-
* @type {string}
|
|
280
|
-
* @memberof CreateDocumentRequestDTO
|
|
281
|
-
*/
|
|
282
89
|
'document': string;
|
|
283
|
-
/**
|
|
284
|
-
*
|
|
285
|
-
* @type {object}
|
|
286
|
-
* @memberof CreateDocumentRequestDTO
|
|
287
|
-
*/
|
|
288
90
|
'metadata': object;
|
|
289
91
|
}
|
|
290
|
-
/**
|
|
291
|
-
*
|
|
292
|
-
* @export
|
|
293
|
-
* @interface CreateMachineAgentDto
|
|
294
|
-
*/
|
|
295
92
|
export interface CreateMachineAgentDto {
|
|
296
|
-
/**
|
|
297
|
-
*
|
|
298
|
-
* @type {string}
|
|
299
|
-
* @memberof CreateMachineAgentDto
|
|
300
|
-
*/
|
|
301
93
|
'agentName': string;
|
|
302
|
-
/**
|
|
303
|
-
*
|
|
304
|
-
* @type {string}
|
|
305
|
-
* @memberof CreateMachineAgentDto
|
|
306
|
-
*/
|
|
307
94
|
'goal': string;
|
|
308
|
-
/**
|
|
309
|
-
*
|
|
310
|
-
* @type {string}
|
|
311
|
-
* @memberof CreateMachineAgentDto
|
|
312
|
-
*/
|
|
313
95
|
'modelBaseId': string;
|
|
314
|
-
/**
|
|
315
|
-
*
|
|
316
|
-
* @type {string}
|
|
317
|
-
* @memberof CreateMachineAgentDto
|
|
318
|
-
*/
|
|
319
96
|
'machineName': string;
|
|
320
|
-
/**
|
|
321
|
-
*
|
|
322
|
-
* @type {number}
|
|
323
|
-
* @memberof CreateMachineAgentDto
|
|
324
|
-
*/
|
|
325
97
|
'machineInstanceId': number;
|
|
326
|
-
/**
|
|
327
|
-
*
|
|
328
|
-
* @type {string}
|
|
329
|
-
* @memberof CreateMachineAgentDto
|
|
330
|
-
*/
|
|
331
98
|
'instanceIP': string;
|
|
332
|
-
/**
|
|
333
|
-
*
|
|
334
|
-
* @type {string}
|
|
335
|
-
* @memberof CreateMachineAgentDto
|
|
336
|
-
*/
|
|
337
99
|
'entryFunctionName': string;
|
|
338
|
-
/**
|
|
339
|
-
*
|
|
340
|
-
* @type {string}
|
|
341
|
-
* @memberof CreateMachineAgentDto
|
|
342
|
-
*/
|
|
343
100
|
'machineManifestId': string;
|
|
344
|
-
/**
|
|
345
|
-
*
|
|
346
|
-
* @type {string}
|
|
347
|
-
* @memberof CreateMachineAgentDto
|
|
348
|
-
*/
|
|
349
101
|
'type': string;
|
|
350
|
-
/**
|
|
351
|
-
*
|
|
352
|
-
* @type {string}
|
|
353
|
-
* @memberof CreateMachineAgentDto
|
|
354
|
-
*/
|
|
355
102
|
'projectId': string;
|
|
356
|
-
/**
|
|
357
|
-
*
|
|
358
|
-
* @type {number}
|
|
359
|
-
* @memberof CreateMachineAgentDto
|
|
360
|
-
*/
|
|
361
103
|
'userId': number;
|
|
362
104
|
/**
|
|
363
105
|
* Optional Input Schema JSON for agent.
|
|
364
|
-
* @type {object}
|
|
365
|
-
* @memberof CreateMachineAgentDto
|
|
366
106
|
*/
|
|
367
107
|
'inputSchema'?: object;
|
|
368
108
|
}
|
|
369
|
-
/**
|
|
370
|
-
*
|
|
371
|
-
* @export
|
|
372
|
-
* @interface CreatePermissionDto
|
|
373
|
-
*/
|
|
374
109
|
export interface CreatePermissionDto {
|
|
375
|
-
/**
|
|
376
|
-
*
|
|
377
|
-
* @type {boolean}
|
|
378
|
-
* @memberof CreatePermissionDto
|
|
379
|
-
*/
|
|
380
110
|
'read': boolean;
|
|
381
|
-
/**
|
|
382
|
-
*
|
|
383
|
-
* @type {boolean}
|
|
384
|
-
* @memberof CreatePermissionDto
|
|
385
|
-
*/
|
|
386
111
|
'write': boolean;
|
|
387
|
-
/**
|
|
388
|
-
*
|
|
389
|
-
* @type {boolean}
|
|
390
|
-
* @memberof CreatePermissionDto
|
|
391
|
-
*/
|
|
392
112
|
'update': boolean;
|
|
393
|
-
/**
|
|
394
|
-
*
|
|
395
|
-
* @type {boolean}
|
|
396
|
-
* @memberof CreatePermissionDto
|
|
397
|
-
*/
|
|
398
113
|
'delete': boolean;
|
|
399
114
|
}
|
|
400
|
-
/**
|
|
401
|
-
*
|
|
402
|
-
* @export
|
|
403
|
-
* @interface CreateProjectDTO
|
|
404
|
-
*/
|
|
405
115
|
export interface CreateProjectDTO {
|
|
406
|
-
/**
|
|
407
|
-
*
|
|
408
|
-
* @type {string}
|
|
409
|
-
* @memberof CreateProjectDTO
|
|
410
|
-
*/
|
|
411
116
|
'name': string;
|
|
412
|
-
/**
|
|
413
|
-
*
|
|
414
|
-
* @type {string}
|
|
415
|
-
* @memberof CreateProjectDTO
|
|
416
|
-
*/
|
|
417
117
|
'description': string;
|
|
418
118
|
}
|
|
419
|
-
/**
|
|
420
|
-
*
|
|
421
|
-
* @export
|
|
422
|
-
* @interface CreateProjectResponseDTO
|
|
423
|
-
*/
|
|
424
119
|
export interface CreateProjectResponseDTO {
|
|
425
|
-
/**
|
|
426
|
-
*
|
|
427
|
-
* @type {ProjectResponseModel}
|
|
428
|
-
* @memberof CreateProjectResponseDTO
|
|
429
|
-
*/
|
|
430
120
|
'data': ProjectResponseModel;
|
|
431
121
|
}
|
|
432
|
-
/**
|
|
433
|
-
*
|
|
434
|
-
* @export
|
|
435
|
-
* @interface CreateProjectRoleResponseDto
|
|
436
|
-
*/
|
|
437
122
|
export interface CreateProjectRoleResponseDto {
|
|
438
|
-
/**
|
|
439
|
-
*
|
|
440
|
-
* @type {CreateRoleDTO}
|
|
441
|
-
* @memberof CreateProjectRoleResponseDto
|
|
442
|
-
*/
|
|
443
123
|
'data': CreateRoleDTO;
|
|
444
124
|
}
|
|
445
|
-
/**
|
|
446
|
-
*
|
|
447
|
-
* @export
|
|
448
|
-
* @interface CreateResourceDto
|
|
449
|
-
*/
|
|
450
125
|
export interface CreateResourceDto {
|
|
451
|
-
/**
|
|
452
|
-
*
|
|
453
|
-
* @type {string}
|
|
454
|
-
* @memberof CreateResourceDto
|
|
455
|
-
*/
|
|
456
126
|
'name': string;
|
|
457
|
-
/**
|
|
458
|
-
*
|
|
459
|
-
* @type {Array<CreatePermissionDto>}
|
|
460
|
-
* @memberof CreateResourceDto
|
|
461
|
-
*/
|
|
462
127
|
'permissions': Array<CreatePermissionDto>;
|
|
463
128
|
}
|
|
464
|
-
/**
|
|
465
|
-
*
|
|
466
|
-
* @export
|
|
467
|
-
* @interface CreateRoleDTO
|
|
468
|
-
*/
|
|
469
129
|
export interface CreateRoleDTO {
|
|
470
|
-
/**
|
|
471
|
-
*
|
|
472
|
-
* @type {number}
|
|
473
|
-
* @memberof CreateRoleDTO
|
|
474
|
-
*/
|
|
475
130
|
'id': number;
|
|
476
|
-
/**
|
|
477
|
-
*
|
|
478
|
-
* @type {string}
|
|
479
|
-
* @memberof CreateRoleDTO
|
|
480
|
-
*/
|
|
481
131
|
'name': string;
|
|
482
|
-
/**
|
|
483
|
-
*
|
|
484
|
-
* @type {string}
|
|
485
|
-
* @memberof CreateRoleDTO
|
|
486
|
-
*/
|
|
487
132
|
'description': string;
|
|
488
|
-
/**
|
|
489
|
-
*
|
|
490
|
-
* @type {Array<ResourceDTO>}
|
|
491
|
-
* @memberof CreateRoleDTO
|
|
492
|
-
*/
|
|
493
133
|
'resources': Array<ResourceDTO>;
|
|
494
134
|
}
|
|
495
|
-
/**
|
|
496
|
-
*
|
|
497
|
-
* @export
|
|
498
|
-
* @interface CreateRoleDto
|
|
499
|
-
*/
|
|
500
135
|
export interface CreateRoleDto {
|
|
501
|
-
/**
|
|
502
|
-
*
|
|
503
|
-
* @type {string}
|
|
504
|
-
* @memberof CreateRoleDto
|
|
505
|
-
*/
|
|
506
136
|
'name': string;
|
|
507
|
-
/**
|
|
508
|
-
*
|
|
509
|
-
* @type {string}
|
|
510
|
-
* @memberof CreateRoleDto
|
|
511
|
-
*/
|
|
512
137
|
'description': string;
|
|
513
|
-
/**
|
|
514
|
-
*
|
|
515
|
-
* @type {Array<CreateResourceDto>}
|
|
516
|
-
* @memberof CreateRoleDto
|
|
517
|
-
*/
|
|
518
138
|
'resources': Array<CreateResourceDto>;
|
|
519
139
|
}
|
|
520
|
-
/**
|
|
521
|
-
*
|
|
522
|
-
* @export
|
|
523
|
-
* @interface CreateWebhookDto
|
|
524
|
-
*/
|
|
525
140
|
export interface CreateWebhookDto {
|
|
526
141
|
/**
|
|
527
142
|
* The URL for the webhook
|
|
528
|
-
* @type {string}
|
|
529
|
-
* @memberof CreateWebhookDto
|
|
530
143
|
*/
|
|
531
144
|
'url': string;
|
|
532
145
|
/**
|
|
533
146
|
* Comma-separated notifications. Valid values: QUERY_CREATED, QUERY_COMPLETED, QUERY_FAILED, EVENT_CREATED, EVENT_UPDATED
|
|
534
|
-
* @type {string}
|
|
535
|
-
* @memberof CreateWebhookDto
|
|
536
147
|
*/
|
|
537
148
|
'notifications': string;
|
|
538
149
|
}
|
|
539
|
-
/**
|
|
540
|
-
*
|
|
541
|
-
* @export
|
|
542
|
-
* @interface DeleteProjectDto
|
|
543
|
-
*/
|
|
544
150
|
export interface DeleteProjectDto {
|
|
545
|
-
/**
|
|
546
|
-
*
|
|
547
|
-
* @type {string}
|
|
548
|
-
* @memberof DeleteProjectDto
|
|
549
|
-
*/
|
|
550
151
|
'message': string;
|
|
551
152
|
}
|
|
552
|
-
/**
|
|
553
|
-
*
|
|
554
|
-
* @export
|
|
555
|
-
* @interface DeleteProjectResponseDTO
|
|
556
|
-
*/
|
|
557
153
|
export interface DeleteProjectResponseDTO {
|
|
558
|
-
/**
|
|
559
|
-
*
|
|
560
|
-
* @type {string}
|
|
561
|
-
* @memberof DeleteProjectResponseDTO
|
|
562
|
-
*/
|
|
563
154
|
'message': string;
|
|
564
155
|
}
|
|
565
|
-
/**
|
|
566
|
-
*
|
|
567
|
-
* @export
|
|
568
|
-
* @interface DeleteProjectRoleByIdResponseDto
|
|
569
|
-
*/
|
|
570
156
|
export interface DeleteProjectRoleByIdResponseDto {
|
|
571
|
-
/**
|
|
572
|
-
*
|
|
573
|
-
* @type {DeleteProjectDto}
|
|
574
|
-
* @memberof DeleteProjectRoleByIdResponseDto
|
|
575
|
-
*/
|
|
576
157
|
'data': DeleteProjectDto;
|
|
577
158
|
}
|
|
578
|
-
/**
|
|
579
|
-
*
|
|
580
|
-
* @export
|
|
581
|
-
* @interface FatalErrorExceptionResponse
|
|
582
|
-
*/
|
|
583
159
|
export interface FatalErrorExceptionResponse {
|
|
584
|
-
/**
|
|
585
|
-
*
|
|
586
|
-
* @type {string}
|
|
587
|
-
* @memberof FatalErrorExceptionResponse
|
|
588
|
-
*/
|
|
589
160
|
'message': string;
|
|
590
161
|
}
|
|
591
|
-
/**
|
|
592
|
-
*
|
|
593
|
-
* @export
|
|
594
|
-
* @interface ForbiddenExceptionResponse
|
|
595
|
-
*/
|
|
596
162
|
export interface ForbiddenExceptionResponse {
|
|
597
|
-
/**
|
|
598
|
-
*
|
|
599
|
-
* @type {string}
|
|
600
|
-
* @memberof ForbiddenExceptionResponse
|
|
601
|
-
*/
|
|
602
163
|
'message': string;
|
|
603
164
|
}
|
|
604
|
-
/**
|
|
605
|
-
*
|
|
606
|
-
* @export
|
|
607
|
-
* @interface ForgetPasswordRequestDTO
|
|
608
|
-
*/
|
|
609
165
|
export interface ForgetPasswordRequestDTO {
|
|
610
|
-
/**
|
|
611
|
-
*
|
|
612
|
-
* @type {string}
|
|
613
|
-
* @memberof ForgetPasswordRequestDTO
|
|
614
|
-
*/
|
|
615
166
|
'email': string;
|
|
616
167
|
}
|
|
617
|
-
/**
|
|
618
|
-
*
|
|
619
|
-
* @export
|
|
620
|
-
* @interface ForgetPasswordResponseDTO
|
|
621
|
-
*/
|
|
622
168
|
export interface ForgetPasswordResponseDTO {
|
|
623
|
-
/**
|
|
624
|
-
*
|
|
625
|
-
* @type {string}
|
|
626
|
-
* @memberof ForgetPasswordResponseDTO
|
|
627
|
-
*/
|
|
628
169
|
'token': string;
|
|
629
170
|
}
|
|
630
|
-
/**
|
|
631
|
-
*
|
|
632
|
-
* @export
|
|
633
|
-
* @interface ForgetPasswordVerificationRequestDTO
|
|
634
|
-
*/
|
|
635
171
|
export interface ForgetPasswordVerificationRequestDTO {
|
|
636
|
-
/**
|
|
637
|
-
*
|
|
638
|
-
* @type {string}
|
|
639
|
-
* @memberof ForgetPasswordVerificationRequestDTO
|
|
640
|
-
*/
|
|
641
172
|
'token': string;
|
|
642
173
|
}
|
|
643
|
-
/**
|
|
644
|
-
*
|
|
645
|
-
* @export
|
|
646
|
-
* @interface ForgetPasswordVerificationResponseDTO
|
|
647
|
-
*/
|
|
648
174
|
export interface ForgetPasswordVerificationResponseDTO {
|
|
649
|
-
/**
|
|
650
|
-
*
|
|
651
|
-
* @type {string}
|
|
652
|
-
* @memberof ForgetPasswordVerificationResponseDTO
|
|
653
|
-
*/
|
|
654
175
|
'token': string;
|
|
655
176
|
}
|
|
656
|
-
/**
|
|
657
|
-
*
|
|
658
|
-
* @export
|
|
659
|
-
* @interface GetAllProjectDto
|
|
660
|
-
*/
|
|
661
177
|
export interface GetAllProjectDto {
|
|
662
|
-
/**
|
|
663
|
-
*
|
|
664
|
-
* @type {Array<GetAllRoleDTO>}
|
|
665
|
-
* @memberof GetAllProjectDto
|
|
666
|
-
*/
|
|
667
178
|
'roles': Array<GetAllRoleDTO>;
|
|
668
|
-
/**
|
|
669
|
-
*
|
|
670
|
-
* @type {number}
|
|
671
|
-
* @memberof GetAllProjectDto
|
|
672
|
-
*/
|
|
673
179
|
'totalCount': number;
|
|
674
180
|
}
|
|
675
|
-
/**
|
|
676
|
-
*
|
|
677
|
-
* @export
|
|
678
|
-
* @interface GetAllProjectMemberResponse
|
|
679
|
-
*/
|
|
680
181
|
export interface GetAllProjectMemberResponse {
|
|
681
|
-
/**
|
|
682
|
-
*
|
|
683
|
-
* @type {Array<TeamMemberDto>}
|
|
684
|
-
* @memberof GetAllProjectMemberResponse
|
|
685
|
-
*/
|
|
686
182
|
'teamMembers': Array<TeamMemberDto>;
|
|
687
|
-
/**
|
|
688
|
-
*
|
|
689
|
-
* @type {number}
|
|
690
|
-
* @memberof GetAllProjectMemberResponse
|
|
691
|
-
*/
|
|
692
183
|
'totalCount': number;
|
|
693
184
|
}
|
|
694
|
-
/**
|
|
695
|
-
*
|
|
696
|
-
* @export
|
|
697
|
-
* @interface GetAllProjectMemberResponseDto
|
|
698
|
-
*/
|
|
699
185
|
export interface GetAllProjectMemberResponseDto {
|
|
700
|
-
/**
|
|
701
|
-
*
|
|
702
|
-
* @type {GetAllProjectMemberResponse}
|
|
703
|
-
* @memberof GetAllProjectMemberResponseDto
|
|
704
|
-
*/
|
|
705
186
|
'data': GetAllProjectMemberResponse;
|
|
706
187
|
}
|
|
707
|
-
/**
|
|
708
|
-
*
|
|
709
|
-
* @export
|
|
710
|
-
* @interface GetAllProjectRoleResponseDto
|
|
711
|
-
*/
|
|
712
188
|
export interface GetAllProjectRoleResponseDto {
|
|
713
|
-
/**
|
|
714
|
-
*
|
|
715
|
-
* @type {GetAllProjectDto}
|
|
716
|
-
* @memberof GetAllProjectRoleResponseDto
|
|
717
|
-
*/
|
|
718
189
|
'data': GetAllProjectDto;
|
|
719
190
|
}
|
|
720
|
-
/**
|
|
721
|
-
*
|
|
722
|
-
* @export
|
|
723
|
-
* @interface GetAllProjectsResponseDTO
|
|
724
|
-
*/
|
|
725
191
|
export interface GetAllProjectsResponseDTO {
|
|
726
|
-
/**
|
|
727
|
-
*
|
|
728
|
-
* @type {AllProjectResponseModel}
|
|
729
|
-
* @memberof GetAllProjectsResponseDTO
|
|
730
|
-
*/
|
|
731
192
|
'data': AllProjectResponseModel;
|
|
732
193
|
}
|
|
733
|
-
/**
|
|
734
|
-
*
|
|
735
|
-
* @export
|
|
736
|
-
* @interface GetAllRoleDTO
|
|
737
|
-
*/
|
|
738
194
|
export interface GetAllRoleDTO {
|
|
739
|
-
/**
|
|
740
|
-
*
|
|
741
|
-
* @type {number}
|
|
742
|
-
* @memberof GetAllRoleDTO
|
|
743
|
-
*/
|
|
744
195
|
'id': number;
|
|
745
|
-
/**
|
|
746
|
-
*
|
|
747
|
-
* @type {string}
|
|
748
|
-
* @memberof GetAllRoleDTO
|
|
749
|
-
*/
|
|
750
196
|
'name': string;
|
|
751
|
-
/**
|
|
752
|
-
*
|
|
753
|
-
* @type {string}
|
|
754
|
-
* @memberof GetAllRoleDTO
|
|
755
|
-
*/
|
|
756
197
|
'description': string;
|
|
757
|
-
/**
|
|
758
|
-
*
|
|
759
|
-
* @type {string}
|
|
760
|
-
* @memberof GetAllRoleDTO
|
|
761
|
-
*/
|
|
762
198
|
'projectId': string;
|
|
763
|
-
/**
|
|
764
|
-
*
|
|
765
|
-
* @type {string}
|
|
766
|
-
* @memberof GetAllRoleDTO
|
|
767
|
-
*/
|
|
768
199
|
'createdAt': string;
|
|
769
|
-
/**
|
|
770
|
-
*
|
|
771
|
-
* @type {string}
|
|
772
|
-
* @memberof GetAllRoleDTO
|
|
773
|
-
*/
|
|
774
200
|
'updatedAt': string;
|
|
775
|
-
/**
|
|
776
|
-
*
|
|
777
|
-
* @type {string}
|
|
778
|
-
* @memberof GetAllRoleDTO
|
|
779
|
-
*/
|
|
780
201
|
'deletedAt': string;
|
|
781
202
|
}
|
|
782
|
-
/**
|
|
783
|
-
*
|
|
784
|
-
* @export
|
|
785
|
-
* @interface GetProjectByIDResponseDTO
|
|
786
|
-
*/
|
|
787
203
|
export interface GetProjectByIDResponseDTO {
|
|
788
|
-
/**
|
|
789
|
-
*
|
|
790
|
-
* @type {ProjectResponseModel}
|
|
791
|
-
* @memberof GetProjectByIDResponseDTO
|
|
792
|
-
*/
|
|
793
204
|
'data': ProjectResponseModel;
|
|
794
205
|
}
|
|
795
|
-
/**
|
|
796
|
-
*
|
|
797
|
-
* @export
|
|
798
|
-
* @interface GetProjectRoleByIdResponseDto
|
|
799
|
-
*/
|
|
800
206
|
export interface GetProjectRoleByIdResponseDto {
|
|
801
|
-
/**
|
|
802
|
-
*
|
|
803
|
-
* @type {GetRoleDTO}
|
|
804
|
-
* @memberof GetProjectRoleByIdResponseDto
|
|
805
|
-
*/
|
|
806
207
|
'data': GetRoleDTO;
|
|
807
208
|
}
|
|
808
|
-
/**
|
|
809
|
-
*
|
|
810
|
-
* @export
|
|
811
|
-
* @interface GetRoleDTO
|
|
812
|
-
*/
|
|
813
209
|
export interface GetRoleDTO {
|
|
814
|
-
/**
|
|
815
|
-
*
|
|
816
|
-
* @type {number}
|
|
817
|
-
* @memberof GetRoleDTO
|
|
818
|
-
*/
|
|
819
210
|
'id': number;
|
|
820
|
-
/**
|
|
821
|
-
*
|
|
822
|
-
* @type {string}
|
|
823
|
-
* @memberof GetRoleDTO
|
|
824
|
-
*/
|
|
825
211
|
'name': string;
|
|
826
|
-
/**
|
|
827
|
-
*
|
|
828
|
-
* @type {string}
|
|
829
|
-
* @memberof GetRoleDTO
|
|
830
|
-
*/
|
|
831
212
|
'description': string;
|
|
832
|
-
/**
|
|
833
|
-
*
|
|
834
|
-
* @type {Array<ResourceDTO>}
|
|
835
|
-
* @memberof GetRoleDTO
|
|
836
|
-
*/
|
|
837
213
|
'resources': Array<ResourceDTO>;
|
|
838
214
|
}
|
|
839
|
-
/**
|
|
840
|
-
*
|
|
841
|
-
* @export
|
|
842
|
-
* @interface GetUserProjectRoleByRoleIdResponseDto
|
|
843
|
-
*/
|
|
844
215
|
export interface GetUserProjectRoleByRoleIdResponseDto {
|
|
845
|
-
/**
|
|
846
|
-
*
|
|
847
|
-
* @type {GetRoleDTO}
|
|
848
|
-
* @memberof GetUserProjectRoleByRoleIdResponseDto
|
|
849
|
-
*/
|
|
850
216
|
'data': GetRoleDTO;
|
|
851
217
|
}
|
|
852
|
-
/**
|
|
853
|
-
*
|
|
854
|
-
* @export
|
|
855
|
-
* @interface LoginRequestDTO
|
|
856
|
-
*/
|
|
857
218
|
export interface LoginRequestDTO {
|
|
858
219
|
/**
|
|
859
220
|
* Email
|
|
860
|
-
* @type {string}
|
|
861
|
-
* @memberof LoginRequestDTO
|
|
862
221
|
*/
|
|
863
222
|
'email': string;
|
|
864
223
|
/**
|
|
865
224
|
* Password
|
|
866
|
-
* @type {string}
|
|
867
|
-
* @memberof LoginRequestDTO
|
|
868
225
|
*/
|
|
869
226
|
'password': string;
|
|
870
227
|
}
|
|
871
|
-
/**
|
|
872
|
-
*
|
|
873
|
-
* @export
|
|
874
|
-
* @interface LoginResponseDTO
|
|
875
|
-
*/
|
|
876
228
|
export interface LoginResponseDTO {
|
|
877
229
|
/**
|
|
878
230
|
* Token
|
|
879
|
-
* @type {string}
|
|
880
|
-
* @memberof LoginResponseDTO
|
|
881
231
|
*/
|
|
882
232
|
'token': string;
|
|
883
233
|
}
|
|
884
|
-
/**
|
|
885
|
-
*
|
|
886
|
-
* @export
|
|
887
|
-
* @interface MachineStatusDto
|
|
888
|
-
*/
|
|
889
234
|
export interface MachineStatusDto {
|
|
890
235
|
/**
|
|
891
236
|
* Current status of the machine instance
|
|
892
|
-
* @type {string}
|
|
893
|
-
* @memberof MachineStatusDto
|
|
894
237
|
*/
|
|
895
238
|
'status': string;
|
|
896
239
|
/**
|
|
897
240
|
* Logs from the machine instance execution
|
|
898
|
-
* @type {string}
|
|
899
|
-
* @memberof MachineStatusDto
|
|
900
241
|
*/
|
|
901
242
|
'logs': string;
|
|
902
243
|
/**
|
|
903
244
|
* Timestamp of the status update
|
|
904
|
-
* @type {string}
|
|
905
|
-
* @memberof MachineStatusDto
|
|
906
245
|
*/
|
|
907
246
|
'timeStamp': string;
|
|
908
247
|
}
|
|
909
|
-
/**
|
|
910
|
-
*
|
|
911
|
-
* @export
|
|
912
|
-
* @interface MessageResponseDTO
|
|
913
|
-
*/
|
|
914
248
|
export interface MessageResponseDTO {
|
|
915
|
-
/**
|
|
916
|
-
*
|
|
917
|
-
* @type {string}
|
|
918
|
-
* @memberof MessageResponseDTO
|
|
919
|
-
*/
|
|
920
249
|
'message': string;
|
|
921
250
|
}
|
|
922
|
-
/**
|
|
923
|
-
*
|
|
924
|
-
* @export
|
|
925
|
-
* @interface NotFoundExceptionResponse
|
|
926
|
-
*/
|
|
927
251
|
export interface NotFoundExceptionResponse {
|
|
928
|
-
/**
|
|
929
|
-
*
|
|
930
|
-
* @type {string}
|
|
931
|
-
* @memberof NotFoundExceptionResponse
|
|
932
|
-
*/
|
|
933
252
|
'message': string;
|
|
934
253
|
}
|
|
935
|
-
/**
|
|
936
|
-
*
|
|
937
|
-
* @export
|
|
938
|
-
* @interface OAuthLoginRequestDTO
|
|
939
|
-
*/
|
|
940
254
|
export interface OAuthLoginRequestDTO {
|
|
941
|
-
/**
|
|
942
|
-
*
|
|
943
|
-
* @type {string}
|
|
944
|
-
* @memberof OAuthLoginRequestDTO
|
|
945
|
-
*/
|
|
946
255
|
'providerId': string;
|
|
947
|
-
/**
|
|
948
|
-
*
|
|
949
|
-
* @type {string}
|
|
950
|
-
* @memberof OAuthLoginRequestDTO
|
|
951
|
-
*/
|
|
952
256
|
'type': OAuthLoginRequestDTOTypeEnum;
|
|
953
|
-
/**
|
|
954
|
-
*
|
|
955
|
-
* @type {string}
|
|
956
|
-
* @memberof OAuthLoginRequestDTO
|
|
957
|
-
*/
|
|
958
257
|
'email': string;
|
|
959
|
-
/**
|
|
960
|
-
*
|
|
961
|
-
* @type {string}
|
|
962
|
-
* @memberof OAuthLoginRequestDTO
|
|
963
|
-
*/
|
|
964
258
|
'profilePictureUrl': string;
|
|
965
259
|
}
|
|
966
260
|
|
|
@@ -971,208 +265,43 @@ export const OAuthLoginRequestDTOTypeEnum = {
|
|
|
971
265
|
|
|
972
266
|
export type OAuthLoginRequestDTOTypeEnum = typeof OAuthLoginRequestDTOTypeEnum[keyof typeof OAuthLoginRequestDTOTypeEnum];
|
|
973
267
|
|
|
974
|
-
/**
|
|
975
|
-
*
|
|
976
|
-
* @export
|
|
977
|
-
* @interface PermissionsDTO
|
|
978
|
-
*/
|
|
979
268
|
export interface PermissionsDTO {
|
|
980
|
-
/**
|
|
981
|
-
*
|
|
982
|
-
* @type {number}
|
|
983
|
-
* @memberof PermissionsDTO
|
|
984
|
-
*/
|
|
985
269
|
'id': number;
|
|
986
|
-
/**
|
|
987
|
-
*
|
|
988
|
-
* @type {boolean}
|
|
989
|
-
* @memberof PermissionsDTO
|
|
990
|
-
*/
|
|
991
270
|
'read': boolean;
|
|
992
|
-
/**
|
|
993
|
-
*
|
|
994
|
-
* @type {boolean}
|
|
995
|
-
* @memberof PermissionsDTO
|
|
996
|
-
*/
|
|
997
271
|
'write': boolean;
|
|
998
|
-
/**
|
|
999
|
-
*
|
|
1000
|
-
* @type {boolean}
|
|
1001
|
-
* @memberof PermissionsDTO
|
|
1002
|
-
*/
|
|
1003
272
|
'update': boolean;
|
|
1004
|
-
/**
|
|
1005
|
-
*
|
|
1006
|
-
* @type {boolean}
|
|
1007
|
-
* @memberof PermissionsDTO
|
|
1008
|
-
*/
|
|
1009
273
|
'delete': boolean;
|
|
1010
274
|
}
|
|
1011
|
-
/**
|
|
1012
|
-
*
|
|
1013
|
-
* @export
|
|
1014
|
-
* @interface ProjectResponseModel
|
|
1015
|
-
*/
|
|
1016
275
|
export interface ProjectResponseModel {
|
|
1017
|
-
/**
|
|
1018
|
-
*
|
|
1019
|
-
* @type {string}
|
|
1020
|
-
* @memberof ProjectResponseModel
|
|
1021
|
-
*/
|
|
1022
276
|
'id': string;
|
|
1023
|
-
/**
|
|
1024
|
-
*
|
|
1025
|
-
* @type {string}
|
|
1026
|
-
* @memberof ProjectResponseModel
|
|
1027
|
-
*/
|
|
1028
277
|
'name': string;
|
|
1029
|
-
/**
|
|
1030
|
-
*
|
|
1031
|
-
* @type {string}
|
|
1032
|
-
* @memberof ProjectResponseModel
|
|
1033
|
-
*/
|
|
1034
278
|
'description': string;
|
|
1035
|
-
/**
|
|
1036
|
-
*
|
|
1037
|
-
* @type {string}
|
|
1038
|
-
* @memberof ProjectResponseModel
|
|
1039
|
-
*/
|
|
1040
279
|
'createdAt': string;
|
|
1041
|
-
/**
|
|
1042
|
-
*
|
|
1043
|
-
* @type {string}
|
|
1044
|
-
* @memberof ProjectResponseModel
|
|
1045
|
-
*/
|
|
1046
280
|
'updatedAt': string;
|
|
1047
|
-
/**
|
|
1048
|
-
*
|
|
1049
|
-
* @type {string}
|
|
1050
|
-
* @memberof ProjectResponseModel
|
|
1051
|
-
*/
|
|
1052
281
|
'deletedAt': string;
|
|
1053
282
|
}
|
|
1054
|
-
/**
|
|
1055
|
-
*
|
|
1056
|
-
* @export
|
|
1057
|
-
* @interface ResetPasswordRequestDTO
|
|
1058
|
-
*/
|
|
1059
283
|
export interface ResetPasswordRequestDTO {
|
|
1060
|
-
/**
|
|
1061
|
-
*
|
|
1062
|
-
* @type {string}
|
|
1063
|
-
* @memberof ResetPasswordRequestDTO
|
|
1064
|
-
*/
|
|
1065
284
|
'token': string;
|
|
1066
|
-
/**
|
|
1067
|
-
*
|
|
1068
|
-
* @type {string}
|
|
1069
|
-
* @memberof ResetPasswordRequestDTO
|
|
1070
|
-
*/
|
|
1071
285
|
'password': string;
|
|
1072
286
|
}
|
|
1073
|
-
/**
|
|
1074
|
-
*
|
|
1075
|
-
* @export
|
|
1076
|
-
* @interface ResourceDTO
|
|
1077
|
-
*/
|
|
1078
287
|
export interface ResourceDTO {
|
|
1079
|
-
/**
|
|
1080
|
-
*
|
|
1081
|
-
* @type {number}
|
|
1082
|
-
* @memberof ResourceDTO
|
|
1083
|
-
*/
|
|
1084
288
|
'id': number;
|
|
1085
|
-
/**
|
|
1086
|
-
*
|
|
1087
|
-
* @type {string}
|
|
1088
|
-
* @memberof ResourceDTO
|
|
1089
|
-
*/
|
|
1090
289
|
'name': string;
|
|
1091
|
-
/**
|
|
1092
|
-
*
|
|
1093
|
-
* @type {Array<PermissionsDTO>}
|
|
1094
|
-
* @memberof ResourceDTO
|
|
1095
|
-
*/
|
|
1096
290
|
'permissions': Array<PermissionsDTO>;
|
|
1097
291
|
}
|
|
1098
|
-
/**
|
|
1099
|
-
*
|
|
1100
|
-
* @export
|
|
1101
|
-
* @interface RoleDto
|
|
1102
|
-
*/
|
|
1103
292
|
export interface RoleDto {
|
|
1104
|
-
/**
|
|
1105
|
-
*
|
|
1106
|
-
* @type {number}
|
|
1107
|
-
* @memberof RoleDto
|
|
1108
|
-
*/
|
|
1109
293
|
'id': number;
|
|
1110
|
-
/**
|
|
1111
|
-
*
|
|
1112
|
-
* @type {string}
|
|
1113
|
-
* @memberof RoleDto
|
|
1114
|
-
*/
|
|
1115
294
|
'name': string;
|
|
1116
295
|
}
|
|
1117
|
-
/**
|
|
1118
|
-
*
|
|
1119
|
-
* @export
|
|
1120
|
-
* @interface SignupRequestDTO
|
|
1121
|
-
*/
|
|
1122
296
|
export interface SignupRequestDTO {
|
|
1123
|
-
/**
|
|
1124
|
-
*
|
|
1125
|
-
* @type {string}
|
|
1126
|
-
* @memberof SignupRequestDTO
|
|
1127
|
-
*/
|
|
1128
297
|
'email': string;
|
|
1129
|
-
/**
|
|
1130
|
-
*
|
|
1131
|
-
* @type {string}
|
|
1132
|
-
* @memberof SignupRequestDTO
|
|
1133
|
-
*/
|
|
1134
298
|
'password'?: string;
|
|
1135
|
-
/**
|
|
1136
|
-
*
|
|
1137
|
-
* @type {string}
|
|
1138
|
-
* @memberof SignupRequestDTO
|
|
1139
|
-
*/
|
|
1140
299
|
'firstName': string;
|
|
1141
|
-
/**
|
|
1142
|
-
*
|
|
1143
|
-
* @type {string}
|
|
1144
|
-
* @memberof SignupRequestDTO
|
|
1145
|
-
*/
|
|
1146
300
|
'lastName': string;
|
|
1147
|
-
/**
|
|
1148
|
-
*
|
|
1149
|
-
* @type {string}
|
|
1150
|
-
* @memberof SignupRequestDTO
|
|
1151
|
-
*/
|
|
1152
301
|
'phone': string;
|
|
1153
|
-
/**
|
|
1154
|
-
*
|
|
1155
|
-
* @type {string}
|
|
1156
|
-
* @memberof SignupRequestDTO
|
|
1157
|
-
*/
|
|
1158
302
|
'providerId'?: string;
|
|
1159
|
-
/**
|
|
1160
|
-
*
|
|
1161
|
-
* @type {string}
|
|
1162
|
-
* @memberof SignupRequestDTO
|
|
1163
|
-
*/
|
|
1164
303
|
'providerType'?: SignupRequestDTOProviderTypeEnum;
|
|
1165
|
-
/**
|
|
1166
|
-
*
|
|
1167
|
-
* @type {string}
|
|
1168
|
-
* @memberof SignupRequestDTO
|
|
1169
|
-
*/
|
|
1170
304
|
'image'?: string;
|
|
1171
|
-
/**
|
|
1172
|
-
*
|
|
1173
|
-
* @type {string}
|
|
1174
|
-
* @memberof SignupRequestDTO
|
|
1175
|
-
*/
|
|
1176
305
|
'profilePictureUrl': string;
|
|
1177
306
|
}
|
|
1178
307
|
|
|
@@ -1183,361 +312,83 @@ export const SignupRequestDTOProviderTypeEnum = {
|
|
|
1183
312
|
|
|
1184
313
|
export type SignupRequestDTOProviderTypeEnum = typeof SignupRequestDTOProviderTypeEnum[keyof typeof SignupRequestDTOProviderTypeEnum];
|
|
1185
314
|
|
|
1186
|
-
/**
|
|
1187
|
-
*
|
|
1188
|
-
* @export
|
|
1189
|
-
* @interface SignupResponseDTO
|
|
1190
|
-
*/
|
|
1191
315
|
export interface SignupResponseDTO {
|
|
1192
316
|
/**
|
|
1193
317
|
* Token
|
|
1194
|
-
* @type {string}
|
|
1195
|
-
* @memberof SignupResponseDTO
|
|
1196
318
|
*/
|
|
1197
319
|
'token': string;
|
|
1198
320
|
}
|
|
1199
|
-
/**
|
|
1200
|
-
*
|
|
1201
|
-
* @export
|
|
1202
|
-
* @interface SimilaritySearchQueryDTO
|
|
1203
|
-
*/
|
|
1204
321
|
export interface SimilaritySearchQueryDTO {
|
|
1205
|
-
/**
|
|
1206
|
-
*
|
|
1207
|
-
* @type {string}
|
|
1208
|
-
* @memberof SimilaritySearchQueryDTO
|
|
1209
|
-
*/
|
|
1210
322
|
'query': string;
|
|
1211
|
-
/**
|
|
1212
|
-
*
|
|
1213
|
-
* @type {object}
|
|
1214
|
-
* @memberof SimilaritySearchQueryDTO
|
|
1215
|
-
*/
|
|
1216
323
|
'params': object;
|
|
1217
|
-
/**
|
|
1218
|
-
*
|
|
1219
|
-
* @type {object}
|
|
1220
|
-
* @memberof SimilaritySearchQueryDTO
|
|
1221
|
-
*/
|
|
1222
324
|
'filter': object;
|
|
1223
|
-
/**
|
|
1224
|
-
*
|
|
1225
|
-
* @type {Array<string>}
|
|
1226
|
-
* @memberof SimilaritySearchQueryDTO
|
|
1227
|
-
*/
|
|
1228
325
|
'include': Array<string>;
|
|
1229
326
|
}
|
|
1230
|
-
/**
|
|
1231
|
-
*
|
|
1232
|
-
* @export
|
|
1233
|
-
* @interface TeamMemberDto
|
|
1234
|
-
*/
|
|
1235
327
|
export interface TeamMemberDto {
|
|
1236
|
-
/**
|
|
1237
|
-
*
|
|
1238
|
-
* @type {number}
|
|
1239
|
-
* @memberof TeamMemberDto
|
|
1240
|
-
*/
|
|
1241
328
|
'id': number;
|
|
1242
|
-
/**
|
|
1243
|
-
*
|
|
1244
|
-
* @type {string}
|
|
1245
|
-
* @memberof TeamMemberDto
|
|
1246
|
-
*/
|
|
1247
329
|
'status': string;
|
|
1248
|
-
/**
|
|
1249
|
-
*
|
|
1250
|
-
* @type {UserDto}
|
|
1251
|
-
* @memberof TeamMemberDto
|
|
1252
|
-
*/
|
|
1253
330
|
'user': UserDto;
|
|
1254
|
-
/**
|
|
1255
|
-
*
|
|
1256
|
-
* @type {RoleDto}
|
|
1257
|
-
* @memberof TeamMemberDto
|
|
1258
|
-
*/
|
|
1259
331
|
'role': RoleDto;
|
|
1260
332
|
}
|
|
1261
|
-
/**
|
|
1262
|
-
*
|
|
1263
|
-
* @export
|
|
1264
|
-
* @interface UnauthorizedExceptionResponse
|
|
1265
|
-
*/
|
|
1266
333
|
export interface UnauthorizedExceptionResponse {
|
|
1267
|
-
/**
|
|
1268
|
-
*
|
|
1269
|
-
* @type {string}
|
|
1270
|
-
* @memberof UnauthorizedExceptionResponse
|
|
1271
|
-
*/
|
|
1272
334
|
'message': string;
|
|
1273
335
|
}
|
|
1274
|
-
/**
|
|
1275
|
-
*
|
|
1276
|
-
* @export
|
|
1277
|
-
* @interface UpdateDocumentRequestDTO
|
|
1278
|
-
*/
|
|
1279
336
|
export interface UpdateDocumentRequestDTO {
|
|
1280
|
-
/**
|
|
1281
|
-
*
|
|
1282
|
-
* @type {string}
|
|
1283
|
-
* @memberof UpdateDocumentRequestDTO
|
|
1284
|
-
*/
|
|
1285
337
|
'document': string;
|
|
1286
|
-
/**
|
|
1287
|
-
*
|
|
1288
|
-
* @type {object}
|
|
1289
|
-
* @memberof UpdateDocumentRequestDTO
|
|
1290
|
-
*/
|
|
1291
338
|
'metadata': object;
|
|
1292
339
|
}
|
|
1293
|
-
/**
|
|
1294
|
-
*
|
|
1295
|
-
* @export
|
|
1296
|
-
* @interface UpdatePermissionDto
|
|
1297
|
-
*/
|
|
1298
340
|
export interface UpdatePermissionDto {
|
|
1299
|
-
/**
|
|
1300
|
-
*
|
|
1301
|
-
* @type {number}
|
|
1302
|
-
* @memberof UpdatePermissionDto
|
|
1303
|
-
*/
|
|
1304
341
|
'id': number;
|
|
1305
|
-
/**
|
|
1306
|
-
*
|
|
1307
|
-
* @type {boolean}
|
|
1308
|
-
* @memberof UpdatePermissionDto
|
|
1309
|
-
*/
|
|
1310
342
|
'read': boolean;
|
|
1311
|
-
/**
|
|
1312
|
-
*
|
|
1313
|
-
* @type {boolean}
|
|
1314
|
-
* @memberof UpdatePermissionDto
|
|
1315
|
-
*/
|
|
1316
343
|
'write': boolean;
|
|
1317
|
-
/**
|
|
1318
|
-
*
|
|
1319
|
-
* @type {boolean}
|
|
1320
|
-
* @memberof UpdatePermissionDto
|
|
1321
|
-
*/
|
|
1322
344
|
'update': boolean;
|
|
1323
|
-
/**
|
|
1324
|
-
*
|
|
1325
|
-
* @type {boolean}
|
|
1326
|
-
* @memberof UpdatePermissionDto
|
|
1327
|
-
*/
|
|
1328
345
|
'delete': boolean;
|
|
1329
346
|
}
|
|
1330
|
-
/**
|
|
1331
|
-
*
|
|
1332
|
-
* @export
|
|
1333
|
-
* @interface UpdateProjectByIDResponseDTO
|
|
1334
|
-
*/
|
|
1335
347
|
export interface UpdateProjectByIDResponseDTO {
|
|
1336
|
-
/**
|
|
1337
|
-
*
|
|
1338
|
-
* @type {ProjectResponseModel}
|
|
1339
|
-
* @memberof UpdateProjectByIDResponseDTO
|
|
1340
|
-
*/
|
|
1341
348
|
'data': ProjectResponseModel;
|
|
1342
349
|
}
|
|
1343
|
-
/**
|
|
1344
|
-
*
|
|
1345
|
-
* @export
|
|
1346
|
-
* @interface UpdateProjectByIdRequest
|
|
1347
|
-
*/
|
|
1348
350
|
export interface UpdateProjectByIdRequest {
|
|
1349
|
-
/**
|
|
1350
|
-
*
|
|
1351
|
-
* @type {string}
|
|
1352
|
-
* @memberof UpdateProjectByIdRequest
|
|
1353
|
-
*/
|
|
1354
351
|
'name': string;
|
|
1355
|
-
/**
|
|
1356
|
-
*
|
|
1357
|
-
* @type {string}
|
|
1358
|
-
* @memberof UpdateProjectByIdRequest
|
|
1359
|
-
*/
|
|
1360
352
|
'description': string;
|
|
1361
353
|
}
|
|
1362
|
-
/**
|
|
1363
|
-
*
|
|
1364
|
-
* @export
|
|
1365
|
-
* @interface UpdateProjectRoleResponseDto
|
|
1366
|
-
*/
|
|
1367
354
|
export interface UpdateProjectRoleResponseDto {
|
|
1368
|
-
/**
|
|
1369
|
-
*
|
|
1370
|
-
* @type {UpdateRoleDTO}
|
|
1371
|
-
* @memberof UpdateProjectRoleResponseDto
|
|
1372
|
-
*/
|
|
1373
355
|
'data': UpdateRoleDTO;
|
|
1374
356
|
}
|
|
1375
|
-
/**
|
|
1376
|
-
*
|
|
1377
|
-
* @export
|
|
1378
|
-
* @interface UpdateResourceDto
|
|
1379
|
-
*/
|
|
1380
357
|
export interface UpdateResourceDto {
|
|
1381
|
-
/**
|
|
1382
|
-
*
|
|
1383
|
-
* @type {number}
|
|
1384
|
-
* @memberof UpdateResourceDto
|
|
1385
|
-
*/
|
|
1386
358
|
'id': number;
|
|
1387
|
-
/**
|
|
1388
|
-
*
|
|
1389
|
-
* @type {string}
|
|
1390
|
-
* @memberof UpdateResourceDto
|
|
1391
|
-
*/
|
|
1392
359
|
'name': string;
|
|
1393
|
-
/**
|
|
1394
|
-
*
|
|
1395
|
-
* @type {Array<UpdatePermissionDto>}
|
|
1396
|
-
* @memberof UpdateResourceDto
|
|
1397
|
-
*/
|
|
1398
360
|
'permissions': Array<UpdatePermissionDto>;
|
|
1399
361
|
}
|
|
1400
|
-
/**
|
|
1401
|
-
*
|
|
1402
|
-
* @export
|
|
1403
|
-
* @interface UpdateRoleByIdDto
|
|
1404
|
-
*/
|
|
1405
362
|
export interface UpdateRoleByIdDto {
|
|
1406
|
-
/**
|
|
1407
|
-
*
|
|
1408
|
-
* @type {string}
|
|
1409
|
-
* @memberof UpdateRoleByIdDto
|
|
1410
|
-
*/
|
|
1411
363
|
'name': string;
|
|
1412
|
-
/**
|
|
1413
|
-
*
|
|
1414
|
-
* @type {string}
|
|
1415
|
-
* @memberof UpdateRoleByIdDto
|
|
1416
|
-
*/
|
|
1417
364
|
'description': string;
|
|
1418
|
-
/**
|
|
1419
|
-
*
|
|
1420
|
-
* @type {Array<UpdateResourceDto>}
|
|
1421
|
-
* @memberof UpdateRoleByIdDto
|
|
1422
|
-
*/
|
|
1423
365
|
'resources': Array<UpdateResourceDto>;
|
|
1424
366
|
}
|
|
1425
|
-
/**
|
|
1426
|
-
*
|
|
1427
|
-
* @export
|
|
1428
|
-
* @interface UpdateRoleDTO
|
|
1429
|
-
*/
|
|
1430
367
|
export interface UpdateRoleDTO {
|
|
1431
|
-
/**
|
|
1432
|
-
*
|
|
1433
|
-
* @type {number}
|
|
1434
|
-
* @memberof UpdateRoleDTO
|
|
1435
|
-
*/
|
|
1436
368
|
'id': number;
|
|
1437
|
-
/**
|
|
1438
|
-
*
|
|
1439
|
-
* @type {string}
|
|
1440
|
-
* @memberof UpdateRoleDTO
|
|
1441
|
-
*/
|
|
1442
369
|
'name': string;
|
|
1443
|
-
/**
|
|
1444
|
-
*
|
|
1445
|
-
* @type {string}
|
|
1446
|
-
* @memberof UpdateRoleDTO
|
|
1447
|
-
*/
|
|
1448
370
|
'description': string;
|
|
1449
|
-
/**
|
|
1450
|
-
*
|
|
1451
|
-
* @type {Array<ResourceDTO>}
|
|
1452
|
-
* @memberof UpdateRoleDTO
|
|
1453
|
-
*/
|
|
1454
371
|
'resources': Array<ResourceDTO>;
|
|
1455
372
|
}
|
|
1456
|
-
/**
|
|
1457
|
-
*
|
|
1458
|
-
* @export
|
|
1459
|
-
* @interface UpdateTeamMemberRequestDTO
|
|
1460
|
-
*/
|
|
1461
373
|
export interface UpdateTeamMemberRequestDTO {
|
|
1462
|
-
/**
|
|
1463
|
-
*
|
|
1464
|
-
* @type {number}
|
|
1465
|
-
* @memberof UpdateTeamMemberRequestDTO
|
|
1466
|
-
*/
|
|
1467
374
|
'roleId': number;
|
|
1468
375
|
}
|
|
1469
|
-
/**
|
|
1470
|
-
*
|
|
1471
|
-
* @export
|
|
1472
|
-
* @interface UpdateTeamMemberStatusRequestDTO
|
|
1473
|
-
*/
|
|
1474
376
|
export interface UpdateTeamMemberStatusRequestDTO {
|
|
1475
|
-
/**
|
|
1476
|
-
*
|
|
1477
|
-
* @type {string}
|
|
1478
|
-
* @memberof UpdateTeamMemberStatusRequestDTO
|
|
1479
|
-
*/
|
|
1480
377
|
'status': string;
|
|
1481
|
-
/**
|
|
1482
|
-
*
|
|
1483
|
-
* @type {string}
|
|
1484
|
-
* @memberof UpdateTeamMemberStatusRequestDTO
|
|
1485
|
-
*/
|
|
1486
378
|
'token': string;
|
|
1487
379
|
}
|
|
1488
|
-
/**
|
|
1489
|
-
*
|
|
1490
|
-
* @export
|
|
1491
|
-
* @interface UserDto
|
|
1492
|
-
*/
|
|
1493
380
|
export interface UserDto {
|
|
1494
|
-
/**
|
|
1495
|
-
*
|
|
1496
|
-
* @type {number}
|
|
1497
|
-
* @memberof UserDto
|
|
1498
|
-
*/
|
|
1499
381
|
'id': number;
|
|
1500
|
-
/**
|
|
1501
|
-
*
|
|
1502
|
-
* @type {string}
|
|
1503
|
-
* @memberof UserDto
|
|
1504
|
-
*/
|
|
1505
382
|
'firstName': string;
|
|
1506
|
-
/**
|
|
1507
|
-
*
|
|
1508
|
-
* @type {string}
|
|
1509
|
-
* @memberof UserDto
|
|
1510
|
-
*/
|
|
1511
383
|
'lastName': string;
|
|
1512
|
-
/**
|
|
1513
|
-
*
|
|
1514
|
-
* @type {string}
|
|
1515
|
-
* @memberof UserDto
|
|
1516
|
-
*/
|
|
1517
384
|
'email': string;
|
|
1518
|
-
/**
|
|
1519
|
-
*
|
|
1520
|
-
* @type {string}
|
|
1521
|
-
* @memberof UserDto
|
|
1522
|
-
*/
|
|
1523
385
|
'status': string;
|
|
1524
|
-
/**
|
|
1525
|
-
*
|
|
1526
|
-
* @type {string}
|
|
1527
|
-
* @memberof UserDto
|
|
1528
|
-
*/
|
|
1529
386
|
'profilePicture': string;
|
|
1530
|
-
/**
|
|
1531
|
-
*
|
|
1532
|
-
* @type {string}
|
|
1533
|
-
* @memberof UserDto
|
|
1534
|
-
*/
|
|
1535
387
|
'bio': string;
|
|
1536
388
|
}
|
|
1537
389
|
|
|
1538
390
|
/**
|
|
1539
391
|
* AuthApi - axios parameter creator
|
|
1540
|
-
* @export
|
|
1541
392
|
*/
|
|
1542
393
|
export const AuthApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
1543
394
|
return {
|
|
@@ -1564,8 +415,8 @@ export const AuthApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
1564
415
|
const localVarHeaderParameter = {} as any;
|
|
1565
416
|
const localVarQueryParameter = {} as any;
|
|
1566
417
|
|
|
418
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1567
419
|
|
|
1568
|
-
|
|
1569
420
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1570
421
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1571
422
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -1597,9 +448,8 @@ export const AuthApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
1597
448
|
const localVarHeaderParameter = {} as any;
|
|
1598
449
|
const localVarQueryParameter = {} as any;
|
|
1599
450
|
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
451
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
452
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1603
453
|
|
|
1604
454
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1605
455
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1633,9 +483,8 @@ export const AuthApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
1633
483
|
const localVarHeaderParameter = {} as any;
|
|
1634
484
|
const localVarQueryParameter = {} as any;
|
|
1635
485
|
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
486
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
487
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1639
488
|
|
|
1640
489
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1641
490
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1669,9 +518,8 @@ export const AuthApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
1669
518
|
const localVarHeaderParameter = {} as any;
|
|
1670
519
|
const localVarQueryParameter = {} as any;
|
|
1671
520
|
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
521
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
522
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1675
523
|
|
|
1676
524
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1677
525
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1705,9 +553,8 @@ export const AuthApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
1705
553
|
const localVarHeaderParameter = {} as any;
|
|
1706
554
|
const localVarQueryParameter = {} as any;
|
|
1707
555
|
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
556
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
557
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1711
558
|
|
|
1712
559
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1713
560
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1719,6 +566,40 @@ export const AuthApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
1719
566
|
options: localVarRequestOptions,
|
|
1720
567
|
};
|
|
1721
568
|
},
|
|
569
|
+
/**
|
|
570
|
+
*
|
|
571
|
+
* @summary Refresh Google access token
|
|
572
|
+
* @param {string} token
|
|
573
|
+
* @param {*} [options] Override http request option.
|
|
574
|
+
* @throws {RequiredError}
|
|
575
|
+
*/
|
|
576
|
+
authControllerRefreshToken: async (token: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
577
|
+
// verify required parameter 'token' is not null or undefined
|
|
578
|
+
assertParamExists('authControllerRefreshToken', 'token', token)
|
|
579
|
+
const localVarPath = `/auth/google/refresh/{token}`
|
|
580
|
+
.replace(`{${"token"}}`, encodeURIComponent(String(token)));
|
|
581
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
582
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
583
|
+
let baseOptions;
|
|
584
|
+
if (configuration) {
|
|
585
|
+
baseOptions = configuration.baseOptions;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
589
|
+
const localVarHeaderParameter = {} as any;
|
|
590
|
+
const localVarQueryParameter = {} as any;
|
|
591
|
+
|
|
592
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
593
|
+
|
|
594
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
595
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
596
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
597
|
+
|
|
598
|
+
return {
|
|
599
|
+
url: toPathString(localVarUrlObj),
|
|
600
|
+
options: localVarRequestOptions,
|
|
601
|
+
};
|
|
602
|
+
},
|
|
1722
603
|
/**
|
|
1723
604
|
*
|
|
1724
605
|
* @summary Forget password initiate
|
|
@@ -1741,9 +622,8 @@ export const AuthApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
1741
622
|
const localVarHeaderParameter = {} as any;
|
|
1742
623
|
const localVarQueryParameter = {} as any;
|
|
1743
624
|
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
625
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
626
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1747
627
|
|
|
1748
628
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1749
629
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1777,9 +657,8 @@ export const AuthApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
1777
657
|
const localVarHeaderParameter = {} as any;
|
|
1778
658
|
const localVarQueryParameter = {} as any;
|
|
1779
659
|
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
660
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
661
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1783
662
|
|
|
1784
663
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1785
664
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1796,7 +675,6 @@ export const AuthApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
1796
675
|
|
|
1797
676
|
/**
|
|
1798
677
|
* AuthApi - functional programming interface
|
|
1799
|
-
* @export
|
|
1800
678
|
*/
|
|
1801
679
|
export const AuthApiFp = function(configuration?: Configuration) {
|
|
1802
680
|
const localVarAxiosParamCreator = AuthApiAxiosParamCreator(configuration)
|
|
@@ -1866,6 +744,19 @@ export const AuthApiFp = function(configuration?: Configuration) {
|
|
|
1866
744
|
const localVarOperationServerBasePath = operationServerMap['AuthApi.authControllerOAuthLogin']?.[localVarOperationServerIndex]?.url;
|
|
1867
745
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1868
746
|
},
|
|
747
|
+
/**
|
|
748
|
+
*
|
|
749
|
+
* @summary Refresh Google access token
|
|
750
|
+
* @param {string} token
|
|
751
|
+
* @param {*} [options] Override http request option.
|
|
752
|
+
* @throws {RequiredError}
|
|
753
|
+
*/
|
|
754
|
+
async authControllerRefreshToken(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
|
|
755
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.authControllerRefreshToken(token, options);
|
|
756
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
757
|
+
const localVarOperationServerBasePath = operationServerMap['AuthApi.authControllerRefreshToken']?.[localVarOperationServerIndex]?.url;
|
|
758
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
759
|
+
},
|
|
1869
760
|
/**
|
|
1870
761
|
*
|
|
1871
762
|
* @summary Forget password initiate
|
|
@@ -1897,7 +788,6 @@ export const AuthApiFp = function(configuration?: Configuration) {
|
|
|
1897
788
|
|
|
1898
789
|
/**
|
|
1899
790
|
* AuthApi - factory interface
|
|
1900
|
-
* @export
|
|
1901
791
|
*/
|
|
1902
792
|
export const AuthApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
1903
793
|
const localVarFp = AuthApiFp(configuration)
|
|
@@ -1952,6 +842,16 @@ export const AuthApiFactory = function (configuration?: Configuration, basePath?
|
|
|
1952
842
|
authControllerOAuthLogin(oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<LoginResponseDTO> {
|
|
1953
843
|
return localVarFp.authControllerOAuthLogin(oAuthLoginRequestDTO, options).then((request) => request(axios, basePath));
|
|
1954
844
|
},
|
|
845
|
+
/**
|
|
846
|
+
*
|
|
847
|
+
* @summary Refresh Google access token
|
|
848
|
+
* @param {string} token
|
|
849
|
+
* @param {*} [options] Override http request option.
|
|
850
|
+
* @throws {RequiredError}
|
|
851
|
+
*/
|
|
852
|
+
authControllerRefreshToken(token: string, options?: RawAxiosRequestConfig): AxiosPromise<object> {
|
|
853
|
+
return localVarFp.authControllerRefreshToken(token, options).then((request) => request(axios, basePath));
|
|
854
|
+
},
|
|
1955
855
|
/**
|
|
1956
856
|
*
|
|
1957
857
|
* @summary Forget password initiate
|
|
@@ -1977,9 +877,6 @@ export const AuthApiFactory = function (configuration?: Configuration, basePath?
|
|
|
1977
877
|
|
|
1978
878
|
/**
|
|
1979
879
|
* AuthApi - object-oriented interface
|
|
1980
|
-
* @export
|
|
1981
|
-
* @class AuthApi
|
|
1982
|
-
* @extends {BaseAPI}
|
|
1983
880
|
*/
|
|
1984
881
|
export class AuthApi extends BaseAPI {
|
|
1985
882
|
/**
|
|
@@ -1988,7 +885,6 @@ export class AuthApi extends BaseAPI {
|
|
|
1988
885
|
* @param {string} token
|
|
1989
886
|
* @param {*} [options] Override http request option.
|
|
1990
887
|
* @throws {RequiredError}
|
|
1991
|
-
* @memberof AuthApi
|
|
1992
888
|
*/
|
|
1993
889
|
public authControllerExchangeToken(token: string, options?: RawAxiosRequestConfig) {
|
|
1994
890
|
return AuthApiFp(this.configuration).authControllerExchangeToken(token, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2000,7 +896,6 @@ export class AuthApi extends BaseAPI {
|
|
|
2000
896
|
* @param {ForgetPasswordRequestDTO} forgetPasswordRequestDTO
|
|
2001
897
|
* @param {*} [options] Override http request option.
|
|
2002
898
|
* @throws {RequiredError}
|
|
2003
|
-
* @memberof AuthApi
|
|
2004
899
|
*/
|
|
2005
900
|
public authControllerForgetPassword(forgetPasswordRequestDTO: ForgetPasswordRequestDTO, options?: RawAxiosRequestConfig) {
|
|
2006
901
|
return AuthApiFp(this.configuration).authControllerForgetPassword(forgetPasswordRequestDTO, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2012,7 +907,6 @@ export class AuthApi extends BaseAPI {
|
|
|
2012
907
|
* @param {ForgetPasswordVerificationRequestDTO} forgetPasswordVerificationRequestDTO
|
|
2013
908
|
* @param {*} [options] Override http request option.
|
|
2014
909
|
* @throws {RequiredError}
|
|
2015
|
-
* @memberof AuthApi
|
|
2016
910
|
*/
|
|
2017
911
|
public authControllerForgetPasswordVerification(forgetPasswordVerificationRequestDTO: ForgetPasswordVerificationRequestDTO, options?: RawAxiosRequestConfig) {
|
|
2018
912
|
return AuthApiFp(this.configuration).authControllerForgetPasswordVerification(forgetPasswordVerificationRequestDTO, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2024,7 +918,6 @@ export class AuthApi extends BaseAPI {
|
|
|
2024
918
|
* @param {LoginRequestDTO} loginRequestDTO
|
|
2025
919
|
* @param {*} [options] Override http request option.
|
|
2026
920
|
* @throws {RequiredError}
|
|
2027
|
-
* @memberof AuthApi
|
|
2028
921
|
*/
|
|
2029
922
|
public authControllerLogin(loginRequestDTO: LoginRequestDTO, options?: RawAxiosRequestConfig) {
|
|
2030
923
|
return AuthApiFp(this.configuration).authControllerLogin(loginRequestDTO, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2036,19 +929,28 @@ export class AuthApi extends BaseAPI {
|
|
|
2036
929
|
* @param {OAuthLoginRequestDTO} oAuthLoginRequestDTO
|
|
2037
930
|
* @param {*} [options] Override http request option.
|
|
2038
931
|
* @throws {RequiredError}
|
|
2039
|
-
* @memberof AuthApi
|
|
2040
932
|
*/
|
|
2041
933
|
public authControllerOAuthLogin(oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig) {
|
|
2042
934
|
return AuthApiFp(this.configuration).authControllerOAuthLogin(oAuthLoginRequestDTO, options).then((request) => request(this.axios, this.basePath));
|
|
2043
935
|
}
|
|
2044
936
|
|
|
937
|
+
/**
|
|
938
|
+
*
|
|
939
|
+
* @summary Refresh Google access token
|
|
940
|
+
* @param {string} token
|
|
941
|
+
* @param {*} [options] Override http request option.
|
|
942
|
+
* @throws {RequiredError}
|
|
943
|
+
*/
|
|
944
|
+
public authControllerRefreshToken(token: string, options?: RawAxiosRequestConfig) {
|
|
945
|
+
return AuthApiFp(this.configuration).authControllerRefreshToken(token, options).then((request) => request(this.axios, this.basePath));
|
|
946
|
+
}
|
|
947
|
+
|
|
2045
948
|
/**
|
|
2046
949
|
*
|
|
2047
950
|
* @summary Forget password initiate
|
|
2048
951
|
* @param {ResetPasswordRequestDTO} resetPasswordRequestDTO
|
|
2049
952
|
* @param {*} [options] Override http request option.
|
|
2050
953
|
* @throws {RequiredError}
|
|
2051
|
-
* @memberof AuthApi
|
|
2052
954
|
*/
|
|
2053
955
|
public authControllerResetPassword(resetPasswordRequestDTO: ResetPasswordRequestDTO, options?: RawAxiosRequestConfig) {
|
|
2054
956
|
return AuthApiFp(this.configuration).authControllerResetPassword(resetPasswordRequestDTO, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2060,7 +962,6 @@ export class AuthApi extends BaseAPI {
|
|
|
2060
962
|
* @param {SignupRequestDTO} signupRequestDTO
|
|
2061
963
|
* @param {*} [options] Override http request option.
|
|
2062
964
|
* @throws {RequiredError}
|
|
2063
|
-
* @memberof AuthApi
|
|
2064
965
|
*/
|
|
2065
966
|
public authControllerSignup(signupRequestDTO: SignupRequestDTO, options?: RawAxiosRequestConfig) {
|
|
2066
967
|
return AuthApiFp(this.configuration).authControllerSignup(signupRequestDTO, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2071,7 +972,6 @@ export class AuthApi extends BaseAPI {
|
|
|
2071
972
|
|
|
2072
973
|
/**
|
|
2073
974
|
* DocumentsApi - axios parameter creator
|
|
2074
|
-
* @export
|
|
2075
975
|
*/
|
|
2076
976
|
export const DocumentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
2077
977
|
return {
|
|
@@ -2109,9 +1009,8 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2109
1009
|
const localVarHeaderParameter = {} as any;
|
|
2110
1010
|
const localVarQueryParameter = {} as any;
|
|
2111
1011
|
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
1012
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1013
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2115
1014
|
|
|
2116
1015
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2117
1016
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2157,9 +1056,8 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2157
1056
|
const localVarHeaderParameter = {} as any;
|
|
2158
1057
|
const localVarQueryParameter = {} as any;
|
|
2159
1058
|
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
1059
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1060
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2163
1061
|
|
|
2164
1062
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2165
1063
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2201,9 +1099,8 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2201
1099
|
const localVarHeaderParameter = {} as any;
|
|
2202
1100
|
const localVarQueryParameter = {} as any;
|
|
2203
1101
|
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
1102
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1103
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2207
1104
|
|
|
2208
1105
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2209
1106
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2246,8 +1143,8 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2246
1143
|
const localVarHeaderParameter = {} as any;
|
|
2247
1144
|
const localVarQueryParameter = {} as any;
|
|
2248
1145
|
|
|
1146
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2249
1147
|
|
|
2250
|
-
|
|
2251
1148
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2252
1149
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2253
1150
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2292,8 +1189,8 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2292
1189
|
const localVarHeaderParameter = {} as any;
|
|
2293
1190
|
const localVarQueryParameter = {} as any;
|
|
2294
1191
|
|
|
1192
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2295
1193
|
|
|
2296
|
-
|
|
2297
1194
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2298
1195
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2299
1196
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2341,8 +1238,8 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2341
1238
|
localVarQueryParameter['filter'] = filter;
|
|
2342
1239
|
}
|
|
2343
1240
|
|
|
1241
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2344
1242
|
|
|
2345
|
-
|
|
2346
1243
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2347
1244
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2348
1245
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2379,8 +1276,8 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2379
1276
|
const localVarHeaderParameter = {} as any;
|
|
2380
1277
|
const localVarQueryParameter = {} as any;
|
|
2381
1278
|
|
|
1279
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2382
1280
|
|
|
2383
|
-
|
|
2384
1281
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2385
1282
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2386
1283
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2421,8 +1318,8 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2421
1318
|
const localVarHeaderParameter = {} as any;
|
|
2422
1319
|
const localVarQueryParameter = {} as any;
|
|
2423
1320
|
|
|
1321
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2424
1322
|
|
|
2425
|
-
|
|
2426
1323
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2427
1324
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2428
1325
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2467,8 +1364,8 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2467
1364
|
const localVarHeaderParameter = {} as any;
|
|
2468
1365
|
const localVarQueryParameter = {} as any;
|
|
2469
1366
|
|
|
1367
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2470
1368
|
|
|
2471
|
-
|
|
2472
1369
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2473
1370
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2474
1371
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2512,9 +1409,8 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2512
1409
|
const localVarHeaderParameter = {} as any;
|
|
2513
1410
|
const localVarQueryParameter = {} as any;
|
|
2514
1411
|
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
1412
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1413
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2518
1414
|
|
|
2519
1415
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2520
1416
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2560,9 +1456,8 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2560
1456
|
const localVarHeaderParameter = {} as any;
|
|
2561
1457
|
const localVarQueryParameter = {} as any;
|
|
2562
1458
|
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
1459
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1460
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2566
1461
|
|
|
2567
1462
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2568
1463
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2612,9 +1507,8 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2612
1507
|
const localVarHeaderParameter = {} as any;
|
|
2613
1508
|
const localVarQueryParameter = {} as any;
|
|
2614
1509
|
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
1510
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1511
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2618
1512
|
|
|
2619
1513
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2620
1514
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2631,7 +1525,6 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2631
1525
|
|
|
2632
1526
|
/**
|
|
2633
1527
|
* DocumentsApi - functional programming interface
|
|
2634
|
-
* @export
|
|
2635
1528
|
*/
|
|
2636
1529
|
export const DocumentsApiFp = function(configuration?: Configuration) {
|
|
2637
1530
|
const localVarAxiosParamCreator = DocumentsApiAxiosParamCreator(configuration)
|
|
@@ -2829,7 +1722,6 @@ export const DocumentsApiFp = function(configuration?: Configuration) {
|
|
|
2829
1722
|
|
|
2830
1723
|
/**
|
|
2831
1724
|
* DocumentsApi - factory interface
|
|
2832
|
-
* @export
|
|
2833
1725
|
*/
|
|
2834
1726
|
export const DocumentsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
2835
1727
|
const localVarFp = DocumentsApiFp(configuration)
|
|
@@ -2991,9 +1883,6 @@ export const DocumentsApiFactory = function (configuration?: Configuration, base
|
|
|
2991
1883
|
|
|
2992
1884
|
/**
|
|
2993
1885
|
* DocumentsApi - object-oriented interface
|
|
2994
|
-
* @export
|
|
2995
|
-
* @class DocumentsApi
|
|
2996
|
-
* @extends {BaseAPI}
|
|
2997
1886
|
*/
|
|
2998
1887
|
export class DocumentsApi extends BaseAPI {
|
|
2999
1888
|
/**
|
|
@@ -3005,7 +1894,6 @@ export class DocumentsApi extends BaseAPI {
|
|
|
3005
1894
|
* @param {CreateDocumentRequestDTO} createDocumentRequestDTO
|
|
3006
1895
|
* @param {*} [options] Override http request option.
|
|
3007
1896
|
* @throws {RequiredError}
|
|
3008
|
-
* @memberof DocumentsApi
|
|
3009
1897
|
*/
|
|
3010
1898
|
public documentControllerAddDocToCollection(projectId: string, instanceId: string, collectionId: string, createDocumentRequestDTO: CreateDocumentRequestDTO, options?: RawAxiosRequestConfig) {
|
|
3011
1899
|
return DocumentsApiFp(this.configuration).documentControllerAddDocToCollection(projectId, instanceId, collectionId, createDocumentRequestDTO, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3020,7 +1908,6 @@ export class DocumentsApi extends BaseAPI {
|
|
|
3020
1908
|
* @param {ChunkFileRequestDTO} chunkFileRequestDTO
|
|
3021
1909
|
* @param {*} [options] Override http request option.
|
|
3022
1910
|
* @throws {RequiredError}
|
|
3023
|
-
* @memberof DocumentsApi
|
|
3024
1911
|
*/
|
|
3025
1912
|
public documentControllerAddDocToCollectionFromFile(projectId: string, instanceId: string, collectionId: string, chunkFileRequestDTO: ChunkFileRequestDTO, options?: RawAxiosRequestConfig) {
|
|
3026
1913
|
return DocumentsApiFp(this.configuration).documentControllerAddDocToCollectionFromFile(projectId, instanceId, collectionId, chunkFileRequestDTO, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3034,7 +1921,6 @@ export class DocumentsApi extends BaseAPI {
|
|
|
3034
1921
|
* @param {CreateCollectionRequestDTO} createCollectionRequestDTO
|
|
3035
1922
|
* @param {*} [options] Override http request option.
|
|
3036
1923
|
* @throws {RequiredError}
|
|
3037
|
-
* @memberof DocumentsApi
|
|
3038
1924
|
*/
|
|
3039
1925
|
public documentControllerCreateCollection(projectId: string, instanceId: string, createCollectionRequestDTO: CreateCollectionRequestDTO, options?: RawAxiosRequestConfig) {
|
|
3040
1926
|
return DocumentsApiFp(this.configuration).documentControllerCreateCollection(projectId, instanceId, createCollectionRequestDTO, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3048,7 +1934,6 @@ export class DocumentsApi extends BaseAPI {
|
|
|
3048
1934
|
* @param {string} collectionId
|
|
3049
1935
|
* @param {*} [options] Override http request option.
|
|
3050
1936
|
* @throws {RequiredError}
|
|
3051
|
-
* @memberof DocumentsApi
|
|
3052
1937
|
*/
|
|
3053
1938
|
public documentControllerDeleteCollection(projectId: string, instanceId: string, collectionId: string, options?: RawAxiosRequestConfig) {
|
|
3054
1939
|
return DocumentsApiFp(this.configuration).documentControllerDeleteCollection(projectId, instanceId, collectionId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3063,7 +1948,6 @@ export class DocumentsApi extends BaseAPI {
|
|
|
3063
1948
|
* @param {string} docId
|
|
3064
1949
|
* @param {*} [options] Override http request option.
|
|
3065
1950
|
* @throws {RequiredError}
|
|
3066
|
-
* @memberof DocumentsApi
|
|
3067
1951
|
*/
|
|
3068
1952
|
public documentControllerDeleteDocById(projectId: string, instanceId: string, collectionId: string, docId: string, options?: RawAxiosRequestConfig) {
|
|
3069
1953
|
return DocumentsApiFp(this.configuration).documentControllerDeleteDocById(projectId, instanceId, collectionId, docId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3078,7 +1962,6 @@ export class DocumentsApi extends BaseAPI {
|
|
|
3078
1962
|
* @param {string} filter
|
|
3079
1963
|
* @param {*} [options] Override http request option.
|
|
3080
1964
|
* @throws {RequiredError}
|
|
3081
|
-
* @memberof DocumentsApi
|
|
3082
1965
|
*/
|
|
3083
1966
|
public documentControllerDeleteDocsFromCollection(projectId: string, instanceId: string, collectionId: string, filter: string, options?: RawAxiosRequestConfig) {
|
|
3084
1967
|
return DocumentsApiFp(this.configuration).documentControllerDeleteDocsFromCollection(projectId, instanceId, collectionId, filter, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3091,7 +1974,6 @@ export class DocumentsApi extends BaseAPI {
|
|
|
3091
1974
|
* @param {string} instanceId
|
|
3092
1975
|
* @param {*} [options] Override http request option.
|
|
3093
1976
|
* @throws {RequiredError}
|
|
3094
|
-
* @memberof DocumentsApi
|
|
3095
1977
|
*/
|
|
3096
1978
|
public documentControllerGetAllCollections(projectId: string, instanceId: string, options?: RawAxiosRequestConfig) {
|
|
3097
1979
|
return DocumentsApiFp(this.configuration).documentControllerGetAllCollections(projectId, instanceId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3105,7 +1987,6 @@ export class DocumentsApi extends BaseAPI {
|
|
|
3105
1987
|
* @param {string} collectionId
|
|
3106
1988
|
* @param {*} [options] Override http request option.
|
|
3107
1989
|
* @throws {RequiredError}
|
|
3108
|
-
* @memberof DocumentsApi
|
|
3109
1990
|
*/
|
|
3110
1991
|
public documentControllerGetCollectionInfo(projectId: string, instanceId: string, collectionId: string, options?: RawAxiosRequestConfig) {
|
|
3111
1992
|
return DocumentsApiFp(this.configuration).documentControllerGetCollectionInfo(projectId, instanceId, collectionId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3120,7 +2001,6 @@ export class DocumentsApi extends BaseAPI {
|
|
|
3120
2001
|
* @param {string} docId
|
|
3121
2002
|
* @param {*} [options] Override http request option.
|
|
3122
2003
|
* @throws {RequiredError}
|
|
3123
|
-
* @memberof DocumentsApi
|
|
3124
2004
|
*/
|
|
3125
2005
|
public documentControllerGetDocById(projectId: string, instanceId: string, collectionId: string, docId: string, options?: RawAxiosRequestConfig) {
|
|
3126
2006
|
return DocumentsApiFp(this.configuration).documentControllerGetDocById(projectId, instanceId, collectionId, docId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3135,7 +2015,6 @@ export class DocumentsApi extends BaseAPI {
|
|
|
3135
2015
|
* @param {SimilaritySearchQueryDTO} similaritySearchQueryDTO
|
|
3136
2016
|
* @param {*} [options] Override http request option.
|
|
3137
2017
|
* @throws {RequiredError}
|
|
3138
|
-
* @memberof DocumentsApi
|
|
3139
2018
|
*/
|
|
3140
2019
|
public documentControllerSimilaritySearch(projectId: string, instanceId: string, collectionId: string, similaritySearchQueryDTO: SimilaritySearchQueryDTO, options?: RawAxiosRequestConfig) {
|
|
3141
2020
|
return DocumentsApiFp(this.configuration).documentControllerSimilaritySearch(projectId, instanceId, collectionId, similaritySearchQueryDTO, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3150,7 +2029,6 @@ export class DocumentsApi extends BaseAPI {
|
|
|
3150
2029
|
* @param {CreateCollectionRequestDTO} createCollectionRequestDTO
|
|
3151
2030
|
* @param {*} [options] Override http request option.
|
|
3152
2031
|
* @throws {RequiredError}
|
|
3153
|
-
* @memberof DocumentsApi
|
|
3154
2032
|
*/
|
|
3155
2033
|
public documentControllerUpdateCollection(projectId: string, instanceId: string, collectionId: string, createCollectionRequestDTO: CreateCollectionRequestDTO, options?: RawAxiosRequestConfig) {
|
|
3156
2034
|
return DocumentsApiFp(this.configuration).documentControllerUpdateCollection(projectId, instanceId, collectionId, createCollectionRequestDTO, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3166,7 +2044,6 @@ export class DocumentsApi extends BaseAPI {
|
|
|
3166
2044
|
* @param {UpdateDocumentRequestDTO} updateDocumentRequestDTO
|
|
3167
2045
|
* @param {*} [options] Override http request option.
|
|
3168
2046
|
* @throws {RequiredError}
|
|
3169
|
-
* @memberof DocumentsApi
|
|
3170
2047
|
*/
|
|
3171
2048
|
public documentControllerUpdateDoc(projectId: string, instanceId: string, collectionId: string, docId: string, updateDocumentRequestDTO: UpdateDocumentRequestDTO, options?: RawAxiosRequestConfig) {
|
|
3172
2049
|
return DocumentsApiFp(this.configuration).documentControllerUpdateDoc(projectId, instanceId, collectionId, docId, updateDocumentRequestDTO, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3177,7 +2054,6 @@ export class DocumentsApi extends BaseAPI {
|
|
|
3177
2054
|
|
|
3178
2055
|
/**
|
|
3179
2056
|
* EvaluationTestApi - axios parameter creator
|
|
3180
|
-
* @export
|
|
3181
2057
|
*/
|
|
3182
2058
|
export const EvaluationTestApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
3183
2059
|
return {
|
|
@@ -3204,8 +2080,8 @@ export const EvaluationTestApiAxiosParamCreator = function (configuration?: Conf
|
|
|
3204
2080
|
const localVarHeaderParameter = {} as any;
|
|
3205
2081
|
const localVarQueryParameter = {} as any;
|
|
3206
2082
|
|
|
2083
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3207
2084
|
|
|
3208
|
-
|
|
3209
2085
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3210
2086
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3211
2087
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3242,8 +2118,8 @@ export const EvaluationTestApiAxiosParamCreator = function (configuration?: Conf
|
|
|
3242
2118
|
const localVarHeaderParameter = {} as any;
|
|
3243
2119
|
const localVarQueryParameter = {} as any;
|
|
3244
2120
|
|
|
2121
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3245
2122
|
|
|
3246
|
-
|
|
3247
2123
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3248
2124
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3249
2125
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3280,8 +2156,8 @@ export const EvaluationTestApiAxiosParamCreator = function (configuration?: Conf
|
|
|
3280
2156
|
const localVarHeaderParameter = {} as any;
|
|
3281
2157
|
const localVarQueryParameter = {} as any;
|
|
3282
2158
|
|
|
2159
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3283
2160
|
|
|
3284
|
-
|
|
3285
2161
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3286
2162
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3287
2163
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3318,8 +2194,8 @@ export const EvaluationTestApiAxiosParamCreator = function (configuration?: Conf
|
|
|
3318
2194
|
const localVarHeaderParameter = {} as any;
|
|
3319
2195
|
const localVarQueryParameter = {} as any;
|
|
3320
2196
|
|
|
2197
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3321
2198
|
|
|
3322
|
-
|
|
3323
2199
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3324
2200
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3325
2201
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3356,8 +2232,8 @@ export const EvaluationTestApiAxiosParamCreator = function (configuration?: Conf
|
|
|
3356
2232
|
const localVarHeaderParameter = {} as any;
|
|
3357
2233
|
const localVarQueryParameter = {} as any;
|
|
3358
2234
|
|
|
2235
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3359
2236
|
|
|
3360
|
-
|
|
3361
2237
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3362
2238
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3363
2239
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3372,7 +2248,6 @@ export const EvaluationTestApiAxiosParamCreator = function (configuration?: Conf
|
|
|
3372
2248
|
|
|
3373
2249
|
/**
|
|
3374
2250
|
* EvaluationTestApi - functional programming interface
|
|
3375
|
-
* @export
|
|
3376
2251
|
*/
|
|
3377
2252
|
export const EvaluationTestApiFp = function(configuration?: Configuration) {
|
|
3378
2253
|
const localVarAxiosParamCreator = EvaluationTestApiAxiosParamCreator(configuration)
|
|
@@ -3451,7 +2326,6 @@ export const EvaluationTestApiFp = function(configuration?: Configuration) {
|
|
|
3451
2326
|
|
|
3452
2327
|
/**
|
|
3453
2328
|
* EvaluationTestApi - factory interface
|
|
3454
|
-
* @export
|
|
3455
2329
|
*/
|
|
3456
2330
|
export const EvaluationTestApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
3457
2331
|
const localVarFp = EvaluationTestApiFp(configuration)
|
|
@@ -3515,9 +2389,6 @@ export const EvaluationTestApiFactory = function (configuration?: Configuration,
|
|
|
3515
2389
|
|
|
3516
2390
|
/**
|
|
3517
2391
|
* EvaluationTestApi - object-oriented interface
|
|
3518
|
-
* @export
|
|
3519
|
-
* @class EvaluationTestApi
|
|
3520
|
-
* @extends {BaseAPI}
|
|
3521
2392
|
*/
|
|
3522
2393
|
export class EvaluationTestApi extends BaseAPI {
|
|
3523
2394
|
/**
|
|
@@ -3526,7 +2397,6 @@ export class EvaluationTestApi extends BaseAPI {
|
|
|
3526
2397
|
* @param {string} projectId
|
|
3527
2398
|
* @param {*} [options] Override http request option.
|
|
3528
2399
|
* @throws {RequiredError}
|
|
3529
|
-
* @memberof EvaluationTestApi
|
|
3530
2400
|
*/
|
|
3531
2401
|
public evaluationTestControllerAddEvaluationTest(projectId: string, options?: RawAxiosRequestConfig) {
|
|
3532
2402
|
return EvaluationTestApiFp(this.configuration).evaluationTestControllerAddEvaluationTest(projectId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3539,7 +2409,6 @@ export class EvaluationTestApi extends BaseAPI {
|
|
|
3539
2409
|
* @param {string} testId
|
|
3540
2410
|
* @param {*} [options] Override http request option.
|
|
3541
2411
|
* @throws {RequiredError}
|
|
3542
|
-
* @memberof EvaluationTestApi
|
|
3543
2412
|
*/
|
|
3544
2413
|
public evaluationTestControllerDeleteEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig) {
|
|
3545
2414
|
return EvaluationTestApiFp(this.configuration).evaluationTestControllerDeleteEvaluation(projectId, testId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3552,7 +2421,6 @@ export class EvaluationTestApi extends BaseAPI {
|
|
|
3552
2421
|
* @param {string} testId
|
|
3553
2422
|
* @param {*} [options] Override http request option.
|
|
3554
2423
|
* @throws {RequiredError}
|
|
3555
|
-
* @memberof EvaluationTestApi
|
|
3556
2424
|
*/
|
|
3557
2425
|
public evaluationTestControllerExecuteEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig) {
|
|
3558
2426
|
return EvaluationTestApiFp(this.configuration).evaluationTestControllerExecuteEvaluation(projectId, testId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3565,7 +2433,6 @@ export class EvaluationTestApi extends BaseAPI {
|
|
|
3565
2433
|
* @param {string} modelId
|
|
3566
2434
|
* @param {*} [options] Override http request option.
|
|
3567
2435
|
* @throws {RequiredError}
|
|
3568
|
-
* @memberof EvaluationTestApi
|
|
3569
2436
|
*/
|
|
3570
2437
|
public evaluationTestControllerGetEvaluationTest(projectId: string, modelId: string, options?: RawAxiosRequestConfig) {
|
|
3571
2438
|
return EvaluationTestApiFp(this.configuration).evaluationTestControllerGetEvaluationTest(projectId, modelId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3578,7 +2445,6 @@ export class EvaluationTestApi extends BaseAPI {
|
|
|
3578
2445
|
* @param {string} testId
|
|
3579
2446
|
* @param {*} [options] Override http request option.
|
|
3580
2447
|
* @throws {RequiredError}
|
|
3581
|
-
* @memberof EvaluationTestApi
|
|
3582
2448
|
*/
|
|
3583
2449
|
public evaluationTestControllerUpdateEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig) {
|
|
3584
2450
|
return EvaluationTestApiFp(this.configuration).evaluationTestControllerUpdateEvaluation(projectId, testId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3589,7 +2455,6 @@ export class EvaluationTestApi extends BaseAPI {
|
|
|
3589
2455
|
|
|
3590
2456
|
/**
|
|
3591
2457
|
* MachineAgentApi - axios parameter creator
|
|
3592
|
-
* @export
|
|
3593
2458
|
*/
|
|
3594
2459
|
export const MachineAgentApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
3595
2460
|
return {
|
|
@@ -3619,9 +2484,8 @@ export const MachineAgentApiAxiosParamCreator = function (configuration?: Config
|
|
|
3619
2484
|
const localVarHeaderParameter = {} as any;
|
|
3620
2485
|
const localVarQueryParameter = {} as any;
|
|
3621
2486
|
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
2487
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2488
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3625
2489
|
|
|
3626
2490
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3627
2491
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3663,9 +2527,8 @@ export const MachineAgentApiAxiosParamCreator = function (configuration?: Config
|
|
|
3663
2527
|
const localVarHeaderParameter = {} as any;
|
|
3664
2528
|
const localVarQueryParameter = {} as any;
|
|
3665
2529
|
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
2530
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2531
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3669
2532
|
|
|
3670
2533
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3671
2534
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3721,8 +2584,8 @@ export const MachineAgentApiAxiosParamCreator = function (configuration?: Config
|
|
|
3721
2584
|
localVarQueryParameter['type'] = type;
|
|
3722
2585
|
}
|
|
3723
2586
|
|
|
2587
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3724
2588
|
|
|
3725
|
-
|
|
3726
2589
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3727
2590
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3728
2591
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3759,8 +2622,8 @@ export const MachineAgentApiAxiosParamCreator = function (configuration?: Config
|
|
|
3759
2622
|
const localVarHeaderParameter = {} as any;
|
|
3760
2623
|
const localVarQueryParameter = {} as any;
|
|
3761
2624
|
|
|
2625
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3762
2626
|
|
|
3763
|
-
|
|
3764
2627
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3765
2628
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3766
2629
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3775,7 +2638,6 @@ export const MachineAgentApiAxiosParamCreator = function (configuration?: Config
|
|
|
3775
2638
|
|
|
3776
2639
|
/**
|
|
3777
2640
|
* MachineAgentApi - functional programming interface
|
|
3778
|
-
* @export
|
|
3779
2641
|
*/
|
|
3780
2642
|
export const MachineAgentApiFp = function(configuration?: Configuration) {
|
|
3781
2643
|
const localVarAxiosParamCreator = MachineAgentApiAxiosParamCreator(configuration)
|
|
@@ -3844,7 +2706,6 @@ export const MachineAgentApiFp = function(configuration?: Configuration) {
|
|
|
3844
2706
|
|
|
3845
2707
|
/**
|
|
3846
2708
|
* MachineAgentApi - factory interface
|
|
3847
|
-
* @export
|
|
3848
2709
|
*/
|
|
3849
2710
|
export const MachineAgentApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
3850
2711
|
const localVarFp = MachineAgentApiFp(configuration)
|
|
@@ -3901,9 +2762,6 @@ export const MachineAgentApiFactory = function (configuration?: Configuration, b
|
|
|
3901
2762
|
|
|
3902
2763
|
/**
|
|
3903
2764
|
* MachineAgentApi - object-oriented interface
|
|
3904
|
-
* @export
|
|
3905
|
-
* @class MachineAgentApi
|
|
3906
|
-
* @extends {BaseAPI}
|
|
3907
2765
|
*/
|
|
3908
2766
|
export class MachineAgentApi extends BaseAPI {
|
|
3909
2767
|
/**
|
|
@@ -3913,7 +2771,6 @@ export class MachineAgentApi extends BaseAPI {
|
|
|
3913
2771
|
* @param {CreateMachineAgentDto} createMachineAgentDto
|
|
3914
2772
|
* @param {*} [options] Override http request option.
|
|
3915
2773
|
* @throws {RequiredError}
|
|
3916
|
-
* @memberof MachineAgentApi
|
|
3917
2774
|
*/
|
|
3918
2775
|
public machineAgentControllerCreateMachineAgent(projectId: string, createMachineAgentDto: CreateMachineAgentDto, options?: RawAxiosRequestConfig) {
|
|
3919
2776
|
return MachineAgentApiFp(this.configuration).machineAgentControllerCreateMachineAgent(projectId, createMachineAgentDto, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3927,7 +2784,6 @@ export class MachineAgentApi extends BaseAPI {
|
|
|
3927
2784
|
* @param {Array<string>} requestBody
|
|
3928
2785
|
* @param {*} [options] Override http request option.
|
|
3929
2786
|
* @throws {RequiredError}
|
|
3930
|
-
* @memberof MachineAgentApi
|
|
3931
2787
|
*/
|
|
3932
2788
|
public machineAgentControllerDeleteMachineAgents(projectId: string, agentId: string, requestBody: Array<string>, options?: RawAxiosRequestConfig) {
|
|
3933
2789
|
return MachineAgentApiFp(this.configuration).machineAgentControllerDeleteMachineAgents(projectId, agentId, requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3942,7 +2798,6 @@ export class MachineAgentApi extends BaseAPI {
|
|
|
3942
2798
|
* @param {string} type
|
|
3943
2799
|
* @param {*} [options] Override http request option.
|
|
3944
2800
|
* @throws {RequiredError}
|
|
3945
|
-
* @memberof MachineAgentApi
|
|
3946
2801
|
*/
|
|
3947
2802
|
public machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, type: string, options?: RawAxiosRequestConfig) {
|
|
3948
2803
|
return MachineAgentApiFp(this.configuration).machineAgentControllerGetMachineAgentByProjectId(projectId, page, limit, type, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3955,7 +2810,6 @@ export class MachineAgentApi extends BaseAPI {
|
|
|
3955
2810
|
* @param {string} agentId
|
|
3956
2811
|
* @param {*} [options] Override http request option.
|
|
3957
2812
|
* @throws {RequiredError}
|
|
3958
|
-
* @memberof MachineAgentApi
|
|
3959
2813
|
*/
|
|
3960
2814
|
public machineAgentControllerUpdateMachineAgent(projectId: string, agentId: string, options?: RawAxiosRequestConfig) {
|
|
3961
2815
|
return MachineAgentApiFp(this.configuration).machineAgentControllerUpdateMachineAgent(projectId, agentId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3966,7 +2820,6 @@ export class MachineAgentApi extends BaseAPI {
|
|
|
3966
2820
|
|
|
3967
2821
|
/**
|
|
3968
2822
|
* MachineAgentLogsApi - axios parameter creator
|
|
3969
|
-
* @export
|
|
3970
2823
|
*/
|
|
3971
2824
|
export const MachineAgentLogsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
3972
2825
|
return {
|
|
@@ -4011,8 +2864,8 @@ export const MachineAgentLogsApiAxiosParamCreator = function (configuration?: Co
|
|
|
4011
2864
|
localVarQueryParameter['cursor'] = cursor;
|
|
4012
2865
|
}
|
|
4013
2866
|
|
|
2867
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4014
2868
|
|
|
4015
|
-
|
|
4016
2869
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4017
2870
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4018
2871
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4049,8 +2902,8 @@ export const MachineAgentLogsApiAxiosParamCreator = function (configuration?: Co
|
|
|
4049
2902
|
const localVarHeaderParameter = {} as any;
|
|
4050
2903
|
const localVarQueryParameter = {} as any;
|
|
4051
2904
|
|
|
2905
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4052
2906
|
|
|
4053
|
-
|
|
4054
2907
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4055
2908
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4056
2909
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4065,7 +2918,6 @@ export const MachineAgentLogsApiAxiosParamCreator = function (configuration?: Co
|
|
|
4065
2918
|
|
|
4066
2919
|
/**
|
|
4067
2920
|
* MachineAgentLogsApi - functional programming interface
|
|
4068
|
-
* @export
|
|
4069
2921
|
*/
|
|
4070
2922
|
export const MachineAgentLogsApiFp = function(configuration?: Configuration) {
|
|
4071
2923
|
const localVarAxiosParamCreator = MachineAgentLogsApiAxiosParamCreator(configuration)
|
|
@@ -4105,7 +2957,6 @@ export const MachineAgentLogsApiFp = function(configuration?: Configuration) {
|
|
|
4105
2957
|
|
|
4106
2958
|
/**
|
|
4107
2959
|
* MachineAgentLogsApi - factory interface
|
|
4108
|
-
* @export
|
|
4109
2960
|
*/
|
|
4110
2961
|
export const MachineAgentLogsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
4111
2962
|
const localVarFp = MachineAgentLogsApiFp(configuration)
|
|
@@ -4139,9 +2990,6 @@ export const MachineAgentLogsApiFactory = function (configuration?: Configuratio
|
|
|
4139
2990
|
|
|
4140
2991
|
/**
|
|
4141
2992
|
* MachineAgentLogsApi - object-oriented interface
|
|
4142
|
-
* @export
|
|
4143
|
-
* @class MachineAgentLogsApi
|
|
4144
|
-
* @extends {BaseAPI}
|
|
4145
2993
|
*/
|
|
4146
2994
|
export class MachineAgentLogsApi extends BaseAPI {
|
|
4147
2995
|
/**
|
|
@@ -4153,7 +3001,6 @@ export class MachineAgentLogsApi extends BaseAPI {
|
|
|
4153
3001
|
* @param {string} cursor
|
|
4154
3002
|
* @param {*} [options] Override http request option.
|
|
4155
3003
|
* @throws {RequiredError}
|
|
4156
|
-
* @memberof MachineAgentLogsApi
|
|
4157
3004
|
*/
|
|
4158
3005
|
public logsControllerFetchAgentLogs(projectId: string, agentId: string, direction: string, cursor: string, options?: RawAxiosRequestConfig) {
|
|
4159
3006
|
return MachineAgentLogsApiFp(this.configuration).logsControllerFetchAgentLogs(projectId, agentId, direction, cursor, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4166,7 +3013,6 @@ export class MachineAgentLogsApi extends BaseAPI {
|
|
|
4166
3013
|
* @param {string} agentId
|
|
4167
3014
|
* @param {*} [options] Override http request option.
|
|
4168
3015
|
* @throws {RequiredError}
|
|
4169
|
-
* @memberof MachineAgentLogsApi
|
|
4170
3016
|
*/
|
|
4171
3017
|
public logsControllerFetchEventLogs(projectId: string, agentId: string, options?: RawAxiosRequestConfig) {
|
|
4172
3018
|
return MachineAgentLogsApiFp(this.configuration).logsControllerFetchEventLogs(projectId, agentId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4177,7 +3023,6 @@ export class MachineAgentLogsApi extends BaseAPI {
|
|
|
4177
3023
|
|
|
4178
3024
|
/**
|
|
4179
3025
|
* MachineInstancesApi - axios parameter creator
|
|
4180
|
-
* @export
|
|
4181
3026
|
*/
|
|
4182
3027
|
export const MachineInstancesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
4183
3028
|
return {
|
|
@@ -4204,8 +3049,8 @@ export const MachineInstancesApiAxiosParamCreator = function (configuration?: Co
|
|
|
4204
3049
|
const localVarHeaderParameter = {} as any;
|
|
4205
3050
|
const localVarQueryParameter = {} as any;
|
|
4206
3051
|
|
|
3052
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4207
3053
|
|
|
4208
|
-
|
|
4209
3054
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4210
3055
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4211
3056
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4238,8 +3083,8 @@ export const MachineInstancesApiAxiosParamCreator = function (configuration?: Co
|
|
|
4238
3083
|
const localVarHeaderParameter = {} as any;
|
|
4239
3084
|
const localVarQueryParameter = {} as any;
|
|
4240
3085
|
|
|
3086
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4241
3087
|
|
|
4242
|
-
|
|
4243
3088
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4244
3089
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4245
3090
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4272,8 +3117,8 @@ export const MachineInstancesApiAxiosParamCreator = function (configuration?: Co
|
|
|
4272
3117
|
const localVarHeaderParameter = {} as any;
|
|
4273
3118
|
const localVarQueryParameter = {} as any;
|
|
4274
3119
|
|
|
3120
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4275
3121
|
|
|
4276
|
-
|
|
4277
3122
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4278
3123
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4279
3124
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4310,8 +3155,8 @@ export const MachineInstancesApiAxiosParamCreator = function (configuration?: Co
|
|
|
4310
3155
|
const localVarHeaderParameter = {} as any;
|
|
4311
3156
|
const localVarQueryParameter = {} as any;
|
|
4312
3157
|
|
|
3158
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4313
3159
|
|
|
4314
|
-
|
|
4315
3160
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4316
3161
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4317
3162
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4348,8 +3193,8 @@ export const MachineInstancesApiAxiosParamCreator = function (configuration?: Co
|
|
|
4348
3193
|
const localVarHeaderParameter = {} as any;
|
|
4349
3194
|
const localVarQueryParameter = {} as any;
|
|
4350
3195
|
|
|
3196
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4351
3197
|
|
|
4352
|
-
|
|
4353
3198
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4354
3199
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4355
3200
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4386,8 +3231,8 @@ export const MachineInstancesApiAxiosParamCreator = function (configuration?: Co
|
|
|
4386
3231
|
const localVarHeaderParameter = {} as any;
|
|
4387
3232
|
const localVarQueryParameter = {} as any;
|
|
4388
3233
|
|
|
3234
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4389
3235
|
|
|
4390
|
-
|
|
4391
3236
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4392
3237
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4393
3238
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4438,8 +3283,8 @@ export const MachineInstancesApiAxiosParamCreator = function (configuration?: Co
|
|
|
4438
3283
|
localVarQueryParameter['limit'] = limit;
|
|
4439
3284
|
}
|
|
4440
3285
|
|
|
3286
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4441
3287
|
|
|
4442
|
-
|
|
4443
3288
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4444
3289
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4445
3290
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4486,8 +3331,8 @@ export const MachineInstancesApiAxiosParamCreator = function (configuration?: Co
|
|
|
4486
3331
|
localVarQueryParameter['limit'] = limit;
|
|
4487
3332
|
}
|
|
4488
3333
|
|
|
3334
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4489
3335
|
|
|
4490
|
-
|
|
4491
3336
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4492
3337
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4493
3338
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4523,9 +3368,8 @@ export const MachineInstancesApiAxiosParamCreator = function (configuration?: Co
|
|
|
4523
3368
|
const localVarHeaderParameter = {} as any;
|
|
4524
3369
|
const localVarQueryParameter = {} as any;
|
|
4525
3370
|
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
3371
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3372
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4529
3373
|
|
|
4530
3374
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4531
3375
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -4542,7 +3386,6 @@ export const MachineInstancesApiAxiosParamCreator = function (configuration?: Co
|
|
|
4542
3386
|
|
|
4543
3387
|
/**
|
|
4544
3388
|
* MachineInstancesApi - functional programming interface
|
|
4545
|
-
* @export
|
|
4546
3389
|
*/
|
|
4547
3390
|
export const MachineInstancesApiFp = function(configuration?: Configuration) {
|
|
4548
3391
|
const localVarAxiosParamCreator = MachineInstancesApiAxiosParamCreator(configuration)
|
|
@@ -4678,7 +3521,6 @@ export const MachineInstancesApiFp = function(configuration?: Configuration) {
|
|
|
4678
3521
|
|
|
4679
3522
|
/**
|
|
4680
3523
|
* MachineInstancesApi - factory interface
|
|
4681
|
-
* @export
|
|
4682
3524
|
*/
|
|
4683
3525
|
export const MachineInstancesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
4684
3526
|
const localVarFp = MachineInstancesApiFp(configuration)
|
|
@@ -4787,9 +3629,6 @@ export const MachineInstancesApiFactory = function (configuration?: Configuratio
|
|
|
4787
3629
|
|
|
4788
3630
|
/**
|
|
4789
3631
|
* MachineInstancesApi - object-oriented interface
|
|
4790
|
-
* @export
|
|
4791
|
-
* @class MachineInstancesApi
|
|
4792
|
-
* @extends {BaseAPI}
|
|
4793
3632
|
*/
|
|
4794
3633
|
export class MachineInstancesApi extends BaseAPI {
|
|
4795
3634
|
/**
|
|
@@ -4798,7 +3637,6 @@ export class MachineInstancesApi extends BaseAPI {
|
|
|
4798
3637
|
* @param {string} projectId
|
|
4799
3638
|
* @param {*} [options] Override http request option.
|
|
4800
3639
|
* @throws {RequiredError}
|
|
4801
|
-
* @memberof MachineInstancesApi
|
|
4802
3640
|
*/
|
|
4803
3641
|
public machineInstancesControllerCreateMachineInstance(projectId: string, options?: RawAxiosRequestConfig) {
|
|
4804
3642
|
return MachineInstancesApiFp(this.configuration).machineInstancesControllerCreateMachineInstance(projectId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4810,7 +3648,6 @@ export class MachineInstancesApi extends BaseAPI {
|
|
|
4810
3648
|
* @param {string} projectId
|
|
4811
3649
|
* @param {*} [options] Override http request option.
|
|
4812
3650
|
* @throws {RequiredError}
|
|
4813
|
-
* @memberof MachineInstancesApi
|
|
4814
3651
|
*/
|
|
4815
3652
|
public machineInstancesControllerDeleteMachineInstance(projectId: string, options?: RawAxiosRequestConfig) {
|
|
4816
3653
|
return MachineInstancesApiFp(this.configuration).machineInstancesControllerDeleteMachineInstance(projectId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4822,7 +3659,6 @@ export class MachineInstancesApi extends BaseAPI {
|
|
|
4822
3659
|
* @param {string} projectId
|
|
4823
3660
|
* @param {*} [options] Override http request option.
|
|
4824
3661
|
* @throws {RequiredError}
|
|
4825
|
-
* @memberof MachineInstancesApi
|
|
4826
3662
|
*/
|
|
4827
3663
|
public machineInstancesControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig) {
|
|
4828
3664
|
return MachineInstancesApiFp(this.configuration).machineInstancesControllerGetInstanceRunningStatus(projectId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4835,7 +3671,6 @@ export class MachineInstancesApi extends BaseAPI {
|
|
|
4835
3671
|
* @param {string} machineId
|
|
4836
3672
|
* @param {*} [options] Override http request option.
|
|
4837
3673
|
* @throws {RequiredError}
|
|
4838
|
-
* @memberof MachineInstancesApi
|
|
4839
3674
|
*/
|
|
4840
3675
|
public machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId: string, machineId: string, options?: RawAxiosRequestConfig) {
|
|
4841
3676
|
return MachineInstancesApiFp(this.configuration).machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId, machineId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4848,7 +3683,6 @@ export class MachineInstancesApi extends BaseAPI {
|
|
|
4848
3683
|
* @param {string} machineId
|
|
4849
3684
|
* @param {*} [options] Override http request option.
|
|
4850
3685
|
* @throws {RequiredError}
|
|
4851
|
-
* @memberof MachineInstancesApi
|
|
4852
3686
|
*/
|
|
4853
3687
|
public machineInstancesControllerGetMachineBenchmarkingReports(projectId: string, machineId: string, options?: RawAxiosRequestConfig) {
|
|
4854
3688
|
return MachineInstancesApiFp(this.configuration).machineInstancesControllerGetMachineBenchmarkingReports(projectId, machineId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4861,7 +3695,6 @@ export class MachineInstancesApi extends BaseAPI {
|
|
|
4861
3695
|
* @param {string} machineId
|
|
4862
3696
|
* @param {*} [options] Override http request option.
|
|
4863
3697
|
* @throws {RequiredError}
|
|
4864
|
-
* @memberof MachineInstancesApi
|
|
4865
3698
|
*/
|
|
4866
3699
|
public machineInstancesControllerGetMachineBootstrapStatus(projectId: string, machineId: string, options?: RawAxiosRequestConfig) {
|
|
4867
3700
|
return MachineInstancesApiFp(this.configuration).machineInstancesControllerGetMachineBootstrapStatus(projectId, machineId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4876,7 +3709,6 @@ export class MachineInstancesApi extends BaseAPI {
|
|
|
4876
3709
|
* @param {number} limit
|
|
4877
3710
|
* @param {*} [options] Override http request option.
|
|
4878
3711
|
* @throws {RequiredError}
|
|
4879
|
-
* @memberof MachineInstancesApi
|
|
4880
3712
|
*/
|
|
4881
3713
|
public machineInstancesControllerGetMachineInstanceById(projectId: string, machineId: string, page: number, limit: number, options?: RawAxiosRequestConfig) {
|
|
4882
3714
|
return MachineInstancesApiFp(this.configuration).machineInstancesControllerGetMachineInstanceById(projectId, machineId, page, limit, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4890,7 +3722,6 @@ export class MachineInstancesApi extends BaseAPI {
|
|
|
4890
3722
|
* @param {number} limit
|
|
4891
3723
|
* @param {*} [options] Override http request option.
|
|
4892
3724
|
* @throws {RequiredError}
|
|
4893
|
-
* @memberof MachineInstancesApi
|
|
4894
3725
|
*/
|
|
4895
3726
|
public machineInstancesControllerGetMachineInstanceByUserId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig) {
|
|
4896
3727
|
return MachineInstancesApiFp(this.configuration).machineInstancesControllerGetMachineInstanceByUserId(projectId, page, limit, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4903,7 +3734,6 @@ export class MachineInstancesApi extends BaseAPI {
|
|
|
4903
3734
|
* @param {object} body
|
|
4904
3735
|
* @param {*} [options] Override http request option.
|
|
4905
3736
|
* @throws {RequiredError}
|
|
4906
|
-
* @memberof MachineInstancesApi
|
|
4907
3737
|
*/
|
|
4908
3738
|
public machineInstancesControllerUpdateRunningStatus(projectId: string, body: object, options?: RawAxiosRequestConfig) {
|
|
4909
3739
|
return MachineInstancesApiFp(this.configuration).machineInstancesControllerUpdateRunningStatus(projectId, body, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4914,7 +3744,6 @@ export class MachineInstancesApi extends BaseAPI {
|
|
|
4914
3744
|
|
|
4915
3745
|
/**
|
|
4916
3746
|
* MembersApi - axios parameter creator
|
|
4917
|
-
* @export
|
|
4918
3747
|
*/
|
|
4919
3748
|
export const MembersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
4920
3749
|
return {
|
|
@@ -4944,9 +3773,8 @@ export const MembersApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
4944
3773
|
const localVarHeaderParameter = {} as any;
|
|
4945
3774
|
const localVarQueryParameter = {} as any;
|
|
4946
3775
|
|
|
4947
|
-
|
|
4948
|
-
|
|
4949
3776
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3777
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4950
3778
|
|
|
4951
3779
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4952
3780
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5011,8 +3839,8 @@ export const MembersApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5011
3839
|
localVarQueryParameter['roleIds'] = roleIds;
|
|
5012
3840
|
}
|
|
5013
3841
|
|
|
3842
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5014
3843
|
|
|
5015
|
-
|
|
5016
3844
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5017
3845
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5018
3846
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5052,9 +3880,8 @@ export const MembersApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5052
3880
|
const localVarHeaderParameter = {} as any;
|
|
5053
3881
|
const localVarQueryParameter = {} as any;
|
|
5054
3882
|
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
3883
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3884
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5058
3885
|
|
|
5059
3886
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5060
3887
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5071,7 +3898,6 @@ export const MembersApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5071
3898
|
|
|
5072
3899
|
/**
|
|
5073
3900
|
* MembersApi - functional programming interface
|
|
5074
|
-
* @export
|
|
5075
3901
|
*/
|
|
5076
3902
|
export const MembersApiFp = function(configuration?: Configuration) {
|
|
5077
3903
|
const localVarAxiosParamCreator = MembersApiAxiosParamCreator(configuration)
|
|
@@ -5129,7 +3955,6 @@ export const MembersApiFp = function(configuration?: Configuration) {
|
|
|
5129
3955
|
|
|
5130
3956
|
/**
|
|
5131
3957
|
* MembersApi - factory interface
|
|
5132
|
-
* @export
|
|
5133
3958
|
*/
|
|
5134
3959
|
export const MembersApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
5135
3960
|
const localVarFp = MembersApiFp(configuration)
|
|
@@ -5178,9 +4003,6 @@ export const MembersApiFactory = function (configuration?: Configuration, basePa
|
|
|
5178
4003
|
|
|
5179
4004
|
/**
|
|
5180
4005
|
* MembersApi - object-oriented interface
|
|
5181
|
-
* @export
|
|
5182
|
-
* @class MembersApi
|
|
5183
|
-
* @extends {BaseAPI}
|
|
5184
4006
|
*/
|
|
5185
4007
|
export class MembersApi extends BaseAPI {
|
|
5186
4008
|
/**
|
|
@@ -5190,7 +4012,6 @@ export class MembersApi extends BaseAPI {
|
|
|
5190
4012
|
* @param {AddProjectMemberDto} addProjectMemberDto
|
|
5191
4013
|
* @param {*} [options] Override http request option.
|
|
5192
4014
|
* @throws {RequiredError}
|
|
5193
|
-
* @memberof MembersApi
|
|
5194
4015
|
*/
|
|
5195
4016
|
public membersControllerAddTeamMemberToProject(projectId: string, addProjectMemberDto: AddProjectMemberDto, options?: RawAxiosRequestConfig) {
|
|
5196
4017
|
return MembersApiFp(this.configuration).membersControllerAddTeamMemberToProject(projectId, addProjectMemberDto, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5208,7 +4029,6 @@ export class MembersApi extends BaseAPI {
|
|
|
5208
4029
|
* @param {Array<number>} [roleIds]
|
|
5209
4030
|
* @param {*} [options] Override http request option.
|
|
5210
4031
|
* @throws {RequiredError}
|
|
5211
|
-
* @memberof MembersApi
|
|
5212
4032
|
*/
|
|
5213
4033
|
public membersControllerGetAllTeamMembersOfProject(projectId: string, page?: number, limit?: number, column?: string, direction?: MembersControllerGetAllTeamMembersOfProjectDirectionEnum, teamMemberStatus?: Array<string>, roleIds?: Array<number>, options?: RawAxiosRequestConfig) {
|
|
5214
4034
|
return MembersApiFp(this.configuration).membersControllerGetAllTeamMembersOfProject(projectId, page, limit, column, direction, teamMemberStatus, roleIds, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5222,16 +4042,12 @@ export class MembersApi extends BaseAPI {
|
|
|
5222
4042
|
* @param {UpdateTeamMemberRequestDTO} updateTeamMemberRequestDTO
|
|
5223
4043
|
* @param {*} [options] Override http request option.
|
|
5224
4044
|
* @throws {RequiredError}
|
|
5225
|
-
* @memberof MembersApi
|
|
5226
4045
|
*/
|
|
5227
4046
|
public membersControllerUpdateTeamMemberRole(projectId: string, memberId: string, updateTeamMemberRequestDTO: UpdateTeamMemberRequestDTO, options?: RawAxiosRequestConfig) {
|
|
5228
4047
|
return MembersApiFp(this.configuration).membersControllerUpdateTeamMemberRole(projectId, memberId, updateTeamMemberRequestDTO, options).then((request) => request(this.axios, this.basePath));
|
|
5229
4048
|
}
|
|
5230
4049
|
}
|
|
5231
4050
|
|
|
5232
|
-
/**
|
|
5233
|
-
* @export
|
|
5234
|
-
*/
|
|
5235
4051
|
export const MembersControllerGetAllTeamMembersOfProjectDirectionEnum = {
|
|
5236
4052
|
Asc: 'ASC',
|
|
5237
4053
|
Desc: 'DESC'
|
|
@@ -5241,7 +4057,6 @@ export type MembersControllerGetAllTeamMembersOfProjectDirectionEnum = typeof Me
|
|
|
5241
4057
|
|
|
5242
4058
|
/**
|
|
5243
4059
|
* MiscellaneousApi - axios parameter creator
|
|
5244
|
-
* @export
|
|
5245
4060
|
*/
|
|
5246
4061
|
export const MiscellaneousApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
5247
4062
|
return {
|
|
@@ -5264,8 +4079,8 @@ export const MiscellaneousApiAxiosParamCreator = function (configuration?: Confi
|
|
|
5264
4079
|
const localVarHeaderParameter = {} as any;
|
|
5265
4080
|
const localVarQueryParameter = {} as any;
|
|
5266
4081
|
|
|
4082
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5267
4083
|
|
|
5268
|
-
|
|
5269
4084
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5270
4085
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5271
4086
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5298,8 +4113,8 @@ export const MiscellaneousApiAxiosParamCreator = function (configuration?: Confi
|
|
|
5298
4113
|
const localVarHeaderParameter = {} as any;
|
|
5299
4114
|
const localVarQueryParameter = {} as any;
|
|
5300
4115
|
|
|
4116
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5301
4117
|
|
|
5302
|
-
|
|
5303
4118
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5304
4119
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5305
4120
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5331,9 +4146,8 @@ export const MiscellaneousApiAxiosParamCreator = function (configuration?: Confi
|
|
|
5331
4146
|
const localVarHeaderParameter = {} as any;
|
|
5332
4147
|
const localVarQueryParameter = {} as any;
|
|
5333
4148
|
|
|
5334
|
-
|
|
5335
|
-
|
|
5336
4149
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4150
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5337
4151
|
|
|
5338
4152
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5339
4153
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5350,7 +4164,6 @@ export const MiscellaneousApiAxiosParamCreator = function (configuration?: Confi
|
|
|
5350
4164
|
|
|
5351
4165
|
/**
|
|
5352
4166
|
* MiscellaneousApi - functional programming interface
|
|
5353
|
-
* @export
|
|
5354
4167
|
*/
|
|
5355
4168
|
export const MiscellaneousApiFp = function(configuration?: Configuration) {
|
|
5356
4169
|
const localVarAxiosParamCreator = MiscellaneousApiAxiosParamCreator(configuration)
|
|
@@ -5398,7 +4211,6 @@ export const MiscellaneousApiFp = function(configuration?: Configuration) {
|
|
|
5398
4211
|
|
|
5399
4212
|
/**
|
|
5400
4213
|
* MiscellaneousApi - factory interface
|
|
5401
|
-
* @export
|
|
5402
4214
|
*/
|
|
5403
4215
|
export const MiscellaneousApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
5404
4216
|
const localVarFp = MiscellaneousApiFp(configuration)
|
|
@@ -5437,9 +4249,6 @@ export const MiscellaneousApiFactory = function (configuration?: Configuration,
|
|
|
5437
4249
|
|
|
5438
4250
|
/**
|
|
5439
4251
|
* MiscellaneousApi - object-oriented interface
|
|
5440
|
-
* @export
|
|
5441
|
-
* @class MiscellaneousApi
|
|
5442
|
-
* @extends {BaseAPI}
|
|
5443
4252
|
*/
|
|
5444
4253
|
export class MiscellaneousApi extends BaseAPI {
|
|
5445
4254
|
/**
|
|
@@ -5447,7 +4256,6 @@ export class MiscellaneousApi extends BaseAPI {
|
|
|
5447
4256
|
* @summary Get machine id matching instances.
|
|
5448
4257
|
* @param {*} [options] Override http request option.
|
|
5449
4258
|
* @throws {RequiredError}
|
|
5450
|
-
* @memberof MiscellaneousApi
|
|
5451
4259
|
*/
|
|
5452
4260
|
public miscellaneousControllerGetData(options?: RawAxiosRequestConfig) {
|
|
5453
4261
|
return MiscellaneousApiFp(this.configuration).miscellaneousControllerGetData(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5459,7 +4267,6 @@ export class MiscellaneousApi extends BaseAPI {
|
|
|
5459
4267
|
* @param {string} projectId
|
|
5460
4268
|
* @param {*} [options] Override http request option.
|
|
5461
4269
|
* @throws {RequiredError}
|
|
5462
|
-
* @memberof MiscellaneousApi
|
|
5463
4270
|
*/
|
|
5464
4271
|
public miscellaneousControllerGetMachineInstanceByImageId(projectId: string, options?: RawAxiosRequestConfig) {
|
|
5465
4272
|
return MiscellaneousApiFp(this.configuration).miscellaneousControllerGetMachineInstanceByImageId(projectId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5471,7 +4278,6 @@ export class MiscellaneousApi extends BaseAPI {
|
|
|
5471
4278
|
* @param {UpdateTeamMemberStatusRequestDTO} updateTeamMemberStatusRequestDTO
|
|
5472
4279
|
* @param {*} [options] Override http request option.
|
|
5473
4280
|
* @throws {RequiredError}
|
|
5474
|
-
* @memberof MiscellaneousApi
|
|
5475
4281
|
*/
|
|
5476
4282
|
public miscellaneousControllerUpdateTeamMemberStatus(updateTeamMemberStatusRequestDTO: UpdateTeamMemberStatusRequestDTO, options?: RawAxiosRequestConfig) {
|
|
5477
4283
|
return MiscellaneousApiFp(this.configuration).miscellaneousControllerUpdateTeamMemberStatus(updateTeamMemberStatusRequestDTO, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5482,7 +4288,6 @@ export class MiscellaneousApi extends BaseAPI {
|
|
|
5482
4288
|
|
|
5483
4289
|
/**
|
|
5484
4290
|
* NotificationsApi - axios parameter creator
|
|
5485
|
-
* @export
|
|
5486
4291
|
*/
|
|
5487
4292
|
export const NotificationsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
5488
4293
|
return {
|
|
@@ -5509,8 +4314,8 @@ export const NotificationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
5509
4314
|
const localVarHeaderParameter = {} as any;
|
|
5510
4315
|
const localVarQueryParameter = {} as any;
|
|
5511
4316
|
|
|
4317
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5512
4318
|
|
|
5513
|
-
|
|
5514
4319
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5515
4320
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5516
4321
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5546,9 +4351,8 @@ export const NotificationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
5546
4351
|
const localVarHeaderParameter = {} as any;
|
|
5547
4352
|
const localVarQueryParameter = {} as any;
|
|
5548
4353
|
|
|
5549
|
-
|
|
5550
|
-
|
|
5551
4354
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4355
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5552
4356
|
|
|
5553
4357
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5554
4358
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5565,7 +4369,6 @@ export const NotificationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
5565
4369
|
|
|
5566
4370
|
/**
|
|
5567
4371
|
* NotificationsApi - functional programming interface
|
|
5568
|
-
* @export
|
|
5569
4372
|
*/
|
|
5570
4373
|
export const NotificationsApiFp = function(configuration?: Configuration) {
|
|
5571
4374
|
const localVarAxiosParamCreator = NotificationsApiAxiosParamCreator(configuration)
|
|
@@ -5602,7 +4405,6 @@ export const NotificationsApiFp = function(configuration?: Configuration) {
|
|
|
5602
4405
|
|
|
5603
4406
|
/**
|
|
5604
4407
|
* NotificationsApi - factory interface
|
|
5605
|
-
* @export
|
|
5606
4408
|
*/
|
|
5607
4409
|
export const NotificationsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
5608
4410
|
const localVarFp = NotificationsApiFp(configuration)
|
|
@@ -5633,9 +4435,6 @@ export const NotificationsApiFactory = function (configuration?: Configuration,
|
|
|
5633
4435
|
|
|
5634
4436
|
/**
|
|
5635
4437
|
* NotificationsApi - object-oriented interface
|
|
5636
|
-
* @export
|
|
5637
|
-
* @class NotificationsApi
|
|
5638
|
-
* @extends {BaseAPI}
|
|
5639
4438
|
*/
|
|
5640
4439
|
export class NotificationsApi extends BaseAPI {
|
|
5641
4440
|
/**
|
|
@@ -5644,7 +4443,6 @@ export class NotificationsApi extends BaseAPI {
|
|
|
5644
4443
|
* @param {string} projectId
|
|
5645
4444
|
* @param {*} [options] Override http request option.
|
|
5646
4445
|
* @throws {RequiredError}
|
|
5647
|
-
* @memberof NotificationsApi
|
|
5648
4446
|
*/
|
|
5649
4447
|
public notificationsControllerGetLastFiveNotifications(projectId: string, options?: RawAxiosRequestConfig) {
|
|
5650
4448
|
return NotificationsApiFp(this.configuration).notificationsControllerGetLastFiveNotifications(projectId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5657,7 +4455,6 @@ export class NotificationsApi extends BaseAPI {
|
|
|
5657
4455
|
* @param {object} body
|
|
5658
4456
|
* @param {*} [options] Override http request option.
|
|
5659
4457
|
* @throws {RequiredError}
|
|
5660
|
-
* @memberof NotificationsApi
|
|
5661
4458
|
*/
|
|
5662
4459
|
public notificationsControllerMarkNotificationsAsRead(projectId: string, body: object, options?: RawAxiosRequestConfig) {
|
|
5663
4460
|
return NotificationsApiFp(this.configuration).notificationsControllerMarkNotificationsAsRead(projectId, body, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5668,7 +4465,6 @@ export class NotificationsApi extends BaseAPI {
|
|
|
5668
4465
|
|
|
5669
4466
|
/**
|
|
5670
4467
|
* ProjectsApi - axios parameter creator
|
|
5671
|
-
* @export
|
|
5672
4468
|
*/
|
|
5673
4469
|
export const ProjectsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
5674
4470
|
return {
|
|
@@ -5694,9 +4490,8 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
5694
4490
|
const localVarHeaderParameter = {} as any;
|
|
5695
4491
|
const localVarQueryParameter = {} as any;
|
|
5696
4492
|
|
|
5697
|
-
|
|
5698
|
-
|
|
5699
4493
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4494
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5700
4495
|
|
|
5701
4496
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5702
4497
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5731,8 +4526,8 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
5731
4526
|
const localVarHeaderParameter = {} as any;
|
|
5732
4527
|
const localVarQueryParameter = {} as any;
|
|
5733
4528
|
|
|
4529
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5734
4530
|
|
|
5735
|
-
|
|
5736
4531
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5737
4532
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5738
4533
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5781,8 +4576,8 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
5781
4576
|
localVarQueryParameter['direction'] = direction;
|
|
5782
4577
|
}
|
|
5783
4578
|
|
|
4579
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5784
4580
|
|
|
5785
|
-
|
|
5786
4581
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5787
4582
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5788
4583
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5815,8 +4610,8 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
5815
4610
|
const localVarHeaderParameter = {} as any;
|
|
5816
4611
|
const localVarQueryParameter = {} as any;
|
|
5817
4612
|
|
|
4613
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5818
4614
|
|
|
5819
|
-
|
|
5820
4615
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5821
4616
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5822
4617
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5852,9 +4647,8 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
5852
4647
|
const localVarHeaderParameter = {} as any;
|
|
5853
4648
|
const localVarQueryParameter = {} as any;
|
|
5854
4649
|
|
|
5855
|
-
|
|
5856
|
-
|
|
5857
4650
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4651
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5858
4652
|
|
|
5859
4653
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5860
4654
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5871,7 +4665,6 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
5871
4665
|
|
|
5872
4666
|
/**
|
|
5873
4667
|
* ProjectsApi - functional programming interface
|
|
5874
|
-
* @export
|
|
5875
4668
|
*/
|
|
5876
4669
|
export const ProjectsApiFp = function(configuration?: Configuration) {
|
|
5877
4670
|
const localVarAxiosParamCreator = ProjectsApiAxiosParamCreator(configuration)
|
|
@@ -5950,7 +4743,6 @@ export const ProjectsApiFp = function(configuration?: Configuration) {
|
|
|
5950
4743
|
|
|
5951
4744
|
/**
|
|
5952
4745
|
* ProjectsApi - factory interface
|
|
5953
|
-
* @export
|
|
5954
4746
|
*/
|
|
5955
4747
|
export const ProjectsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
5956
4748
|
const localVarFp = ProjectsApiFp(configuration)
|
|
@@ -6014,9 +4806,6 @@ export const ProjectsApiFactory = function (configuration?: Configuration, baseP
|
|
|
6014
4806
|
|
|
6015
4807
|
/**
|
|
6016
4808
|
* ProjectsApi - object-oriented interface
|
|
6017
|
-
* @export
|
|
6018
|
-
* @class ProjectsApi
|
|
6019
|
-
* @extends {BaseAPI}
|
|
6020
4809
|
*/
|
|
6021
4810
|
export class ProjectsApi extends BaseAPI {
|
|
6022
4811
|
/**
|
|
@@ -6025,7 +4814,6 @@ export class ProjectsApi extends BaseAPI {
|
|
|
6025
4814
|
* @param {CreateProjectDTO} createProjectDTO
|
|
6026
4815
|
* @param {*} [options] Override http request option.
|
|
6027
4816
|
* @throws {RequiredError}
|
|
6028
|
-
* @memberof ProjectsApi
|
|
6029
4817
|
*/
|
|
6030
4818
|
public projectControllerCreateProject(createProjectDTO: CreateProjectDTO, options?: RawAxiosRequestConfig) {
|
|
6031
4819
|
return ProjectsApiFp(this.configuration).projectControllerCreateProject(createProjectDTO, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6037,7 +4825,6 @@ export class ProjectsApi extends BaseAPI {
|
|
|
6037
4825
|
* @param {string} id
|
|
6038
4826
|
* @param {*} [options] Override http request option.
|
|
6039
4827
|
* @throws {RequiredError}
|
|
6040
|
-
* @memberof ProjectsApi
|
|
6041
4828
|
*/
|
|
6042
4829
|
public projectControllerDeleteProjectById(id: string, options?: RawAxiosRequestConfig) {
|
|
6043
4830
|
return ProjectsApiFp(this.configuration).projectControllerDeleteProjectById(id, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6052,7 +4839,6 @@ export class ProjectsApi extends BaseAPI {
|
|
|
6052
4839
|
* @param {ProjectControllerGetAllProjectsDirectionEnum} [direction]
|
|
6053
4840
|
* @param {*} [options] Override http request option.
|
|
6054
4841
|
* @throws {RequiredError}
|
|
6055
|
-
* @memberof ProjectsApi
|
|
6056
4842
|
*/
|
|
6057
4843
|
public projectControllerGetAllProjects(page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllProjectsDirectionEnum, options?: RawAxiosRequestConfig) {
|
|
6058
4844
|
return ProjectsApiFp(this.configuration).projectControllerGetAllProjects(page, limit, column, direction, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6064,7 +4850,6 @@ export class ProjectsApi extends BaseAPI {
|
|
|
6064
4850
|
* @param {string} id
|
|
6065
4851
|
* @param {*} [options] Override http request option.
|
|
6066
4852
|
* @throws {RequiredError}
|
|
6067
|
-
* @memberof ProjectsApi
|
|
6068
4853
|
*/
|
|
6069
4854
|
public projectControllerGetProjectById(id: string, options?: RawAxiosRequestConfig) {
|
|
6070
4855
|
return ProjectsApiFp(this.configuration).projectControllerGetProjectById(id, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6077,16 +4862,12 @@ export class ProjectsApi extends BaseAPI {
|
|
|
6077
4862
|
* @param {UpdateProjectByIdRequest} updateProjectByIdRequest
|
|
6078
4863
|
* @param {*} [options] Override http request option.
|
|
6079
4864
|
* @throws {RequiredError}
|
|
6080
|
-
* @memberof ProjectsApi
|
|
6081
4865
|
*/
|
|
6082
4866
|
public projectControllerUpdateProjectById(id: string, updateProjectByIdRequest: UpdateProjectByIdRequest, options?: RawAxiosRequestConfig) {
|
|
6083
4867
|
return ProjectsApiFp(this.configuration).projectControllerUpdateProjectById(id, updateProjectByIdRequest, options).then((request) => request(this.axios, this.basePath));
|
|
6084
4868
|
}
|
|
6085
4869
|
}
|
|
6086
4870
|
|
|
6087
|
-
/**
|
|
6088
|
-
* @export
|
|
6089
|
-
*/
|
|
6090
4871
|
export const ProjectControllerGetAllProjectsDirectionEnum = {
|
|
6091
4872
|
Asc: 'ASC',
|
|
6092
4873
|
Desc: 'DESC'
|
|
@@ -6096,7 +4877,6 @@ export type ProjectControllerGetAllProjectsDirectionEnum = typeof ProjectControl
|
|
|
6096
4877
|
|
|
6097
4878
|
/**
|
|
6098
4879
|
* QueriesAndDocumentationsApi - axios parameter creator
|
|
6099
|
-
* @export
|
|
6100
4880
|
*/
|
|
6101
4881
|
export const QueriesAndDocumentationsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
6102
4882
|
return {
|
|
@@ -6131,8 +4911,8 @@ export const QueriesAndDocumentationsApiAxiosParamCreator = function (configurat
|
|
|
6131
4911
|
const localVarHeaderParameter = {} as any;
|
|
6132
4912
|
const localVarQueryParameter = {} as any;
|
|
6133
4913
|
|
|
4914
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6134
4915
|
|
|
6135
|
-
|
|
6136
4916
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6137
4917
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6138
4918
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6165,8 +4945,8 @@ export const QueriesAndDocumentationsApiAxiosParamCreator = function (configurat
|
|
|
6165
4945
|
const localVarHeaderParameter = {} as any;
|
|
6166
4946
|
const localVarQueryParameter = {} as any;
|
|
6167
4947
|
|
|
4948
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6168
4949
|
|
|
6169
|
-
|
|
6170
4950
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6171
4951
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6172
4952
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6181,7 +4961,6 @@ export const QueriesAndDocumentationsApiAxiosParamCreator = function (configurat
|
|
|
6181
4961
|
|
|
6182
4962
|
/**
|
|
6183
4963
|
* QueriesAndDocumentationsApi - functional programming interface
|
|
6184
|
-
* @export
|
|
6185
4964
|
*/
|
|
6186
4965
|
export const QueriesAndDocumentationsApiFp = function(configuration?: Configuration) {
|
|
6187
4966
|
const localVarAxiosParamCreator = QueriesAndDocumentationsApiAxiosParamCreator(configuration)
|
|
@@ -6219,7 +4998,6 @@ export const QueriesAndDocumentationsApiFp = function(configuration?: Configurat
|
|
|
6219
4998
|
|
|
6220
4999
|
/**
|
|
6221
5000
|
* QueriesAndDocumentationsApi - factory interface
|
|
6222
|
-
* @export
|
|
6223
5001
|
*/
|
|
6224
5002
|
export const QueriesAndDocumentationsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
6225
5003
|
const localVarFp = QueriesAndDocumentationsApiFp(configuration)
|
|
@@ -6251,9 +5029,6 @@ export const QueriesAndDocumentationsApiFactory = function (configuration?: Conf
|
|
|
6251
5029
|
|
|
6252
5030
|
/**
|
|
6253
5031
|
* QueriesAndDocumentationsApi - object-oriented interface
|
|
6254
|
-
* @export
|
|
6255
|
-
* @class QueriesAndDocumentationsApi
|
|
6256
|
-
* @extends {BaseAPI}
|
|
6257
5032
|
*/
|
|
6258
5033
|
export class QueriesAndDocumentationsApi extends BaseAPI {
|
|
6259
5034
|
/**
|
|
@@ -6264,7 +5039,6 @@ export class QueriesAndDocumentationsApi extends BaseAPI {
|
|
|
6264
5039
|
* @param {string} fieldName
|
|
6265
5040
|
* @param {*} [options] Override http request option.
|
|
6266
5041
|
* @throws {RequiredError}
|
|
6267
|
-
* @memberof QueriesAndDocumentationsApi
|
|
6268
5042
|
*/
|
|
6269
5043
|
public queriesAndDocControllerFetchSwaggerJSON(modelId: string, projectId: string, fieldName: string, options?: RawAxiosRequestConfig) {
|
|
6270
5044
|
return QueriesAndDocumentationsApiFp(this.configuration).queriesAndDocControllerFetchSwaggerJSON(modelId, projectId, fieldName, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6276,7 +5050,6 @@ export class QueriesAndDocumentationsApi extends BaseAPI {
|
|
|
6276
5050
|
* @param {string} projectId
|
|
6277
5051
|
* @param {*} [options] Override http request option.
|
|
6278
5052
|
* @throws {RequiredError}
|
|
6279
|
-
* @memberof QueriesAndDocumentationsApi
|
|
6280
5053
|
*/
|
|
6281
5054
|
public queriesAndDocControllerRunQuery(projectId: string, options?: RawAxiosRequestConfig) {
|
|
6282
5055
|
return QueriesAndDocumentationsApiFp(this.configuration).queriesAndDocControllerRunQuery(projectId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6287,7 +5060,6 @@ export class QueriesAndDocumentationsApi extends BaseAPI {
|
|
|
6287
5060
|
|
|
6288
5061
|
/**
|
|
6289
5062
|
* RolesApi - axios parameter creator
|
|
6290
|
-
* @export
|
|
6291
5063
|
*/
|
|
6292
5064
|
export const RolesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
6293
5065
|
return {
|
|
@@ -6317,9 +5089,8 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6317
5089
|
const localVarHeaderParameter = {} as any;
|
|
6318
5090
|
const localVarQueryParameter = {} as any;
|
|
6319
5091
|
|
|
6320
|
-
|
|
6321
|
-
|
|
6322
5092
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5093
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6323
5094
|
|
|
6324
5095
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6325
5096
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6358,8 +5129,8 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6358
5129
|
const localVarHeaderParameter = {} as any;
|
|
6359
5130
|
const localVarQueryParameter = {} as any;
|
|
6360
5131
|
|
|
5132
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6361
5133
|
|
|
6362
|
-
|
|
6363
5134
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6364
5135
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6365
5136
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6412,8 +5183,8 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6412
5183
|
localVarQueryParameter['direction'] = direction;
|
|
6413
5184
|
}
|
|
6414
5185
|
|
|
5186
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6415
5187
|
|
|
6416
|
-
|
|
6417
5188
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6418
5189
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6419
5190
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6450,8 +5221,8 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6450
5221
|
const localVarHeaderParameter = {} as any;
|
|
6451
5222
|
const localVarQueryParameter = {} as any;
|
|
6452
5223
|
|
|
5224
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6453
5225
|
|
|
6454
|
-
|
|
6455
5226
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6456
5227
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6457
5228
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6484,8 +5255,8 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6484
5255
|
const localVarHeaderParameter = {} as any;
|
|
6485
5256
|
const localVarQueryParameter = {} as any;
|
|
6486
5257
|
|
|
5258
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6487
5259
|
|
|
6488
|
-
|
|
6489
5260
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6490
5261
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6491
5262
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6525,9 +5296,8 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6525
5296
|
const localVarHeaderParameter = {} as any;
|
|
6526
5297
|
const localVarQueryParameter = {} as any;
|
|
6527
5298
|
|
|
6528
|
-
|
|
6529
|
-
|
|
6530
5299
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5300
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6531
5301
|
|
|
6532
5302
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6533
5303
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6544,7 +5314,6 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
6544
5314
|
|
|
6545
5315
|
/**
|
|
6546
5316
|
* RolesApi - functional programming interface
|
|
6547
|
-
* @export
|
|
6548
5317
|
*/
|
|
6549
5318
|
export const RolesApiFp = function(configuration?: Configuration) {
|
|
6550
5319
|
const localVarAxiosParamCreator = RolesApiAxiosParamCreator(configuration)
|
|
@@ -6641,7 +5410,6 @@ export const RolesApiFp = function(configuration?: Configuration) {
|
|
|
6641
5410
|
|
|
6642
5411
|
/**
|
|
6643
5412
|
* RolesApi - factory interface
|
|
6644
|
-
* @export
|
|
6645
5413
|
*/
|
|
6646
5414
|
export const RolesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
6647
5415
|
const localVarFp = RolesApiFp(configuration)
|
|
@@ -6720,9 +5488,6 @@ export const RolesApiFactory = function (configuration?: Configuration, basePath
|
|
|
6720
5488
|
|
|
6721
5489
|
/**
|
|
6722
5490
|
* RolesApi - object-oriented interface
|
|
6723
|
-
* @export
|
|
6724
|
-
* @class RolesApi
|
|
6725
|
-
* @extends {BaseAPI}
|
|
6726
5491
|
*/
|
|
6727
5492
|
export class RolesApi extends BaseAPI {
|
|
6728
5493
|
/**
|
|
@@ -6732,7 +5497,6 @@ export class RolesApi extends BaseAPI {
|
|
|
6732
5497
|
* @param {CreateRoleDto} createRoleDto
|
|
6733
5498
|
* @param {*} [options] Override http request option.
|
|
6734
5499
|
* @throws {RequiredError}
|
|
6735
|
-
* @memberof RolesApi
|
|
6736
5500
|
*/
|
|
6737
5501
|
public rolesControllerCreateProjectRole(projectId: string, createRoleDto: CreateRoleDto, options?: RawAxiosRequestConfig) {
|
|
6738
5502
|
return RolesApiFp(this.configuration).rolesControllerCreateProjectRole(projectId, createRoleDto, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6745,7 +5509,6 @@ export class RolesApi extends BaseAPI {
|
|
|
6745
5509
|
* @param {number} roleId
|
|
6746
5510
|
* @param {*} [options] Override http request option.
|
|
6747
5511
|
* @throws {RequiredError}
|
|
6748
|
-
* @memberof RolesApi
|
|
6749
5512
|
*/
|
|
6750
5513
|
public rolesControllerDeleteProjectRole(projectId: string, roleId: number, options?: RawAxiosRequestConfig) {
|
|
6751
5514
|
return RolesApiFp(this.configuration).rolesControllerDeleteProjectRole(projectId, roleId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6761,7 +5524,6 @@ export class RolesApi extends BaseAPI {
|
|
|
6761
5524
|
* @param {RolesControllerGetAllProjectRolesDirectionEnum} [direction]
|
|
6762
5525
|
* @param {*} [options] Override http request option.
|
|
6763
5526
|
* @throws {RequiredError}
|
|
6764
|
-
* @memberof RolesApi
|
|
6765
5527
|
*/
|
|
6766
5528
|
public rolesControllerGetAllProjectRoles(projectId: string, page?: number, limit?: number, column?: string, direction?: RolesControllerGetAllProjectRolesDirectionEnum, options?: RawAxiosRequestConfig) {
|
|
6767
5529
|
return RolesApiFp(this.configuration).rolesControllerGetAllProjectRoles(projectId, page, limit, column, direction, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6774,7 +5536,6 @@ export class RolesApi extends BaseAPI {
|
|
|
6774
5536
|
* @param {number} roleId
|
|
6775
5537
|
* @param {*} [options] Override http request option.
|
|
6776
5538
|
* @throws {RequiredError}
|
|
6777
|
-
* @memberof RolesApi
|
|
6778
5539
|
*/
|
|
6779
5540
|
public rolesControllerGetProjectRoleById(projectId: string, roleId: number, options?: RawAxiosRequestConfig) {
|
|
6780
5541
|
return RolesApiFp(this.configuration).rolesControllerGetProjectRoleById(projectId, roleId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6786,7 +5547,6 @@ export class RolesApi extends BaseAPI {
|
|
|
6786
5547
|
* @param {string} id
|
|
6787
5548
|
* @param {*} [options] Override http request option.
|
|
6788
5549
|
* @throws {RequiredError}
|
|
6789
|
-
* @memberof RolesApi
|
|
6790
5550
|
*/
|
|
6791
5551
|
public rolesControllerGetUserProjectRole(id: string, options?: RawAxiosRequestConfig) {
|
|
6792
5552
|
return RolesApiFp(this.configuration).rolesControllerGetUserProjectRole(id, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6800,16 +5560,12 @@ export class RolesApi extends BaseAPI {
|
|
|
6800
5560
|
* @param {UpdateRoleByIdDto} updateRoleByIdDto
|
|
6801
5561
|
* @param {*} [options] Override http request option.
|
|
6802
5562
|
* @throws {RequiredError}
|
|
6803
|
-
* @memberof RolesApi
|
|
6804
5563
|
*/
|
|
6805
5564
|
public rolesControllerUpdateProjectRoleById(projectId: string, roleId: number, updateRoleByIdDto: UpdateRoleByIdDto, options?: RawAxiosRequestConfig) {
|
|
6806
5565
|
return RolesApiFp(this.configuration).rolesControllerUpdateProjectRoleById(projectId, roleId, updateRoleByIdDto, options).then((request) => request(this.axios, this.basePath));
|
|
6807
5566
|
}
|
|
6808
5567
|
}
|
|
6809
5568
|
|
|
6810
|
-
/**
|
|
6811
|
-
* @export
|
|
6812
|
-
*/
|
|
6813
5569
|
export const RolesControllerGetAllProjectRolesDirectionEnum = {
|
|
6814
5570
|
Asc: 'ASC',
|
|
6815
5571
|
Desc: 'DESC'
|
|
@@ -6819,7 +5575,6 @@ export type RolesControllerGetAllProjectRolesDirectionEnum = typeof RolesControl
|
|
|
6819
5575
|
|
|
6820
5576
|
/**
|
|
6821
5577
|
* WebhookApi - axios parameter creator
|
|
6822
|
-
* @export
|
|
6823
5578
|
*/
|
|
6824
5579
|
export const WebhookApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
6825
5580
|
return {
|
|
@@ -6846,8 +5601,8 @@ export const WebhookApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
6846
5601
|
const localVarHeaderParameter = {} as any;
|
|
6847
5602
|
const localVarQueryParameter = {} as any;
|
|
6848
5603
|
|
|
5604
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6849
5605
|
|
|
6850
|
-
|
|
6851
5606
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6852
5607
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6853
5608
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6884,8 +5639,8 @@ export const WebhookApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
6884
5639
|
const localVarHeaderParameter = {} as any;
|
|
6885
5640
|
const localVarQueryParameter = {} as any;
|
|
6886
5641
|
|
|
5642
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6887
5643
|
|
|
6888
|
-
|
|
6889
5644
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6890
5645
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6891
5646
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6929,8 +5684,8 @@ export const WebhookApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
6929
5684
|
localVarQueryParameter['isAgentWebhook'] = isAgentWebhook;
|
|
6930
5685
|
}
|
|
6931
5686
|
|
|
5687
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6932
5688
|
|
|
6933
|
-
|
|
6934
5689
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6935
5690
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6936
5691
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6967,8 +5722,8 @@ export const WebhookApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
6967
5722
|
const localVarHeaderParameter = {} as any;
|
|
6968
5723
|
const localVarQueryParameter = {} as any;
|
|
6969
5724
|
|
|
5725
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6970
5726
|
|
|
6971
|
-
|
|
6972
5727
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6973
5728
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6974
5729
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6983,7 +5738,6 @@ export const WebhookApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
6983
5738
|
|
|
6984
5739
|
/**
|
|
6985
5740
|
* WebhookApi - functional programming interface
|
|
6986
|
-
* @export
|
|
6987
5741
|
*/
|
|
6988
5742
|
export const WebhookApiFp = function(configuration?: Configuration) {
|
|
6989
5743
|
const localVarAxiosParamCreator = WebhookApiAxiosParamCreator(configuration)
|
|
@@ -7049,7 +5803,6 @@ export const WebhookApiFp = function(configuration?: Configuration) {
|
|
|
7049
5803
|
|
|
7050
5804
|
/**
|
|
7051
5805
|
* WebhookApi - factory interface
|
|
7052
|
-
* @export
|
|
7053
5806
|
*/
|
|
7054
5807
|
export const WebhookApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
7055
5808
|
const localVarFp = WebhookApiFp(configuration)
|
|
@@ -7103,9 +5856,6 @@ export const WebhookApiFactory = function (configuration?: Configuration, basePa
|
|
|
7103
5856
|
|
|
7104
5857
|
/**
|
|
7105
5858
|
* WebhookApi - object-oriented interface
|
|
7106
|
-
* @export
|
|
7107
|
-
* @class WebhookApi
|
|
7108
|
-
* @extends {BaseAPI}
|
|
7109
5859
|
*/
|
|
7110
5860
|
export class WebhookApi extends BaseAPI {
|
|
7111
5861
|
/**
|
|
@@ -7114,7 +5864,6 @@ export class WebhookApi extends BaseAPI {
|
|
|
7114
5864
|
* @param {string} projectId
|
|
7115
5865
|
* @param {*} [options] Override http request option.
|
|
7116
5866
|
* @throws {RequiredError}
|
|
7117
|
-
* @memberof WebhookApi
|
|
7118
5867
|
*/
|
|
7119
5868
|
public webhookControllerCreateWebhook(projectId: string, options?: RawAxiosRequestConfig) {
|
|
7120
5869
|
return WebhookApiFp(this.configuration).webhookControllerCreateWebhook(projectId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7127,7 +5876,6 @@ export class WebhookApi extends BaseAPI {
|
|
|
7127
5876
|
* @param {string} modelId
|
|
7128
5877
|
* @param {*} [options] Override http request option.
|
|
7129
5878
|
* @throws {RequiredError}
|
|
7130
|
-
* @memberof WebhookApi
|
|
7131
5879
|
*/
|
|
7132
5880
|
public webhookControllerDeleteWebhook(projectId: string, modelId: string, options?: RawAxiosRequestConfig) {
|
|
7133
5881
|
return WebhookApiFp(this.configuration).webhookControllerDeleteWebhook(projectId, modelId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7141,7 +5889,6 @@ export class WebhookApi extends BaseAPI {
|
|
|
7141
5889
|
* @param {boolean} isAgentWebhook
|
|
7142
5890
|
* @param {*} [options] Override http request option.
|
|
7143
5891
|
* @throws {RequiredError}
|
|
7144
|
-
* @memberof WebhookApi
|
|
7145
5892
|
*/
|
|
7146
5893
|
public webhookControllerFetchWebhook(projectId: string, modelId: string, isAgentWebhook: boolean, options?: RawAxiosRequestConfig) {
|
|
7147
5894
|
return WebhookApiFp(this.configuration).webhookControllerFetchWebhook(projectId, modelId, isAgentWebhook, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7154,7 +5901,6 @@ export class WebhookApi extends BaseAPI {
|
|
|
7154
5901
|
* @param {string} projectId
|
|
7155
5902
|
* @param {*} [options] Override http request option.
|
|
7156
5903
|
* @throws {RequiredError}
|
|
7157
|
-
* @memberof WebhookApi
|
|
7158
5904
|
*/
|
|
7159
5905
|
public webhookControllerUpdateWebhook(webhookId: string, projectId: string, options?: RawAxiosRequestConfig) {
|
|
7160
5906
|
return WebhookApiFp(this.configuration).webhookControllerUpdateWebhook(webhookId, projectId, options).then((request) => request(this.axios, this.basePath));
|