@coscine/api-client 3.2.1 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4043 -4025
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +4043 -4025
- package/dist/index.umd.js.map +1 -1
- package/dist/lib/Coscine.Api/api.js +665 -147
- package/dist/lib/Coscine.Api/api.js.map +1 -1
- package/dist/lib/Coscine.Api/base.js +1 -1
- package/dist/lib/apis.js +43 -43
- package/dist/lib/apis.js.map +1 -1
- package/dist/types/Coscine.Api/api.d.ts +1462 -663
- package/dist/types/apis.d.ts +20 -20
- package/dist/types/index.d.ts +40 -40
- package/package.json +2 -2
|
@@ -13,7 +13,7 @@ import { Configuration } from './configuration';
|
|
|
13
13
|
import { AxiosPromise, AxiosInstance } from 'axios';
|
|
14
14
|
import { RequestArgs, BaseAPI } from './base';
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* Accepted languages by the API.
|
|
17
17
|
* @export
|
|
18
18
|
* @enum {string}
|
|
19
19
|
*/
|
|
@@ -67,37 +67,37 @@ export interface ApiTokenDto {
|
|
|
67
67
|
/**
|
|
68
68
|
*
|
|
69
69
|
* @export
|
|
70
|
-
* @interface
|
|
70
|
+
* @interface ApiTokenDtoPagedResponse
|
|
71
71
|
*/
|
|
72
|
-
export interface
|
|
72
|
+
export interface ApiTokenDtoPagedResponse {
|
|
73
73
|
/**
|
|
74
74
|
*
|
|
75
75
|
* @type {Array<ApiTokenDto>}
|
|
76
|
-
* @memberof
|
|
76
|
+
* @memberof ApiTokenDtoPagedResponse
|
|
77
77
|
*/
|
|
78
78
|
data?: Array<ApiTokenDto> | null;
|
|
79
79
|
/**
|
|
80
80
|
*
|
|
81
|
-
* @type {
|
|
82
|
-
* @memberof
|
|
81
|
+
* @type {boolean}
|
|
82
|
+
* @memberof ApiTokenDtoPagedResponse
|
|
83
83
|
*/
|
|
84
|
-
|
|
84
|
+
isSuccess?: boolean;
|
|
85
85
|
/**
|
|
86
86
|
*
|
|
87
|
-
* @type {
|
|
88
|
-
* @memberof
|
|
87
|
+
* @type {number}
|
|
88
|
+
* @memberof ApiTokenDtoPagedResponse
|
|
89
89
|
*/
|
|
90
|
-
|
|
90
|
+
statusCode?: number | null;
|
|
91
91
|
/**
|
|
92
92
|
*
|
|
93
93
|
* @type {string}
|
|
94
|
-
* @memberof
|
|
94
|
+
* @memberof ApiTokenDtoPagedResponse
|
|
95
95
|
*/
|
|
96
96
|
traceId?: string | null;
|
|
97
97
|
/**
|
|
98
98
|
*
|
|
99
99
|
* @type {Pagination}
|
|
100
|
-
* @memberof
|
|
100
|
+
* @memberof ApiTokenDtoPagedResponse
|
|
101
101
|
*/
|
|
102
102
|
pagination?: Pagination;
|
|
103
103
|
}
|
|
@@ -115,16 +115,16 @@ export interface ApiTokenDtoResponse {
|
|
|
115
115
|
data?: ApiTokenDto;
|
|
116
116
|
/**
|
|
117
117
|
*
|
|
118
|
-
* @type {
|
|
118
|
+
* @type {boolean}
|
|
119
119
|
* @memberof ApiTokenDtoResponse
|
|
120
120
|
*/
|
|
121
|
-
|
|
121
|
+
isSuccess?: boolean;
|
|
122
122
|
/**
|
|
123
123
|
*
|
|
124
|
-
* @type {
|
|
124
|
+
* @type {number}
|
|
125
125
|
* @memberof ApiTokenDtoResponse
|
|
126
126
|
*/
|
|
127
|
-
|
|
127
|
+
statusCode?: number | null;
|
|
128
128
|
/**
|
|
129
129
|
*
|
|
130
130
|
* @type {string}
|
|
@@ -145,7 +145,7 @@ export interface ApiTokenForCreationDto {
|
|
|
145
145
|
*/
|
|
146
146
|
name: string;
|
|
147
147
|
/**
|
|
148
|
-
*
|
|
148
|
+
* Gets or sets the expiration of the token.
|
|
149
149
|
* @type {number}
|
|
150
150
|
* @memberof ApiTokenForCreationDto
|
|
151
151
|
*/
|
|
@@ -185,37 +185,37 @@ export interface ApplicationProfileDto {
|
|
|
185
185
|
/**
|
|
186
186
|
*
|
|
187
187
|
* @export
|
|
188
|
-
* @interface
|
|
188
|
+
* @interface ApplicationProfileDtoPagedResponse
|
|
189
189
|
*/
|
|
190
|
-
export interface
|
|
190
|
+
export interface ApplicationProfileDtoPagedResponse {
|
|
191
191
|
/**
|
|
192
192
|
*
|
|
193
193
|
* @type {Array<ApplicationProfileDto>}
|
|
194
|
-
* @memberof
|
|
194
|
+
* @memberof ApplicationProfileDtoPagedResponse
|
|
195
195
|
*/
|
|
196
196
|
data?: Array<ApplicationProfileDto> | null;
|
|
197
197
|
/**
|
|
198
198
|
*
|
|
199
|
-
* @type {
|
|
200
|
-
* @memberof
|
|
199
|
+
* @type {boolean}
|
|
200
|
+
* @memberof ApplicationProfileDtoPagedResponse
|
|
201
201
|
*/
|
|
202
|
-
|
|
202
|
+
isSuccess?: boolean;
|
|
203
203
|
/**
|
|
204
204
|
*
|
|
205
|
-
* @type {
|
|
206
|
-
* @memberof
|
|
205
|
+
* @type {number}
|
|
206
|
+
* @memberof ApplicationProfileDtoPagedResponse
|
|
207
207
|
*/
|
|
208
|
-
|
|
208
|
+
statusCode?: number | null;
|
|
209
209
|
/**
|
|
210
210
|
*
|
|
211
211
|
* @type {string}
|
|
212
|
-
* @memberof
|
|
212
|
+
* @memberof ApplicationProfileDtoPagedResponse
|
|
213
213
|
*/
|
|
214
214
|
traceId?: string | null;
|
|
215
215
|
/**
|
|
216
216
|
*
|
|
217
217
|
* @type {Pagination}
|
|
218
|
-
* @memberof
|
|
218
|
+
* @memberof ApplicationProfileDtoPagedResponse
|
|
219
219
|
*/
|
|
220
220
|
pagination?: Pagination;
|
|
221
221
|
}
|
|
@@ -233,16 +233,16 @@ export interface ApplicationProfileDtoResponse {
|
|
|
233
233
|
data?: ApplicationProfileDto;
|
|
234
234
|
/**
|
|
235
235
|
*
|
|
236
|
-
* @type {
|
|
236
|
+
* @type {boolean}
|
|
237
237
|
* @memberof ApplicationProfileDtoResponse
|
|
238
238
|
*/
|
|
239
|
-
|
|
239
|
+
isSuccess?: boolean;
|
|
240
240
|
/**
|
|
241
241
|
*
|
|
242
|
-
* @type {
|
|
242
|
+
* @type {number}
|
|
243
243
|
* @memberof ApplicationProfileDtoResponse
|
|
244
244
|
*/
|
|
245
|
-
|
|
245
|
+
statusCode?: number | null;
|
|
246
246
|
/**
|
|
247
247
|
*
|
|
248
248
|
* @type {string}
|
|
@@ -289,16 +289,16 @@ export interface ApplicationProfileForCreationDtoResponse {
|
|
|
289
289
|
data?: ApplicationProfileForCreationDto;
|
|
290
290
|
/**
|
|
291
291
|
*
|
|
292
|
-
* @type {
|
|
292
|
+
* @type {boolean}
|
|
293
293
|
* @memberof ApplicationProfileForCreationDtoResponse
|
|
294
294
|
*/
|
|
295
|
-
|
|
295
|
+
isSuccess?: boolean;
|
|
296
296
|
/**
|
|
297
297
|
*
|
|
298
|
-
* @type {
|
|
298
|
+
* @type {number}
|
|
299
299
|
* @memberof ApplicationProfileForCreationDtoResponse
|
|
300
300
|
*/
|
|
301
|
-
|
|
301
|
+
statusCode?: number | null;
|
|
302
302
|
/**
|
|
303
303
|
*
|
|
304
304
|
* @type {string}
|
|
@@ -366,37 +366,37 @@ export interface DisciplineDto {
|
|
|
366
366
|
/**
|
|
367
367
|
*
|
|
368
368
|
* @export
|
|
369
|
-
* @interface
|
|
369
|
+
* @interface DisciplineDtoPagedResponse
|
|
370
370
|
*/
|
|
371
|
-
export interface
|
|
371
|
+
export interface DisciplineDtoPagedResponse {
|
|
372
372
|
/**
|
|
373
373
|
*
|
|
374
374
|
* @type {Array<DisciplineDto>}
|
|
375
|
-
* @memberof
|
|
375
|
+
* @memberof DisciplineDtoPagedResponse
|
|
376
376
|
*/
|
|
377
377
|
data?: Array<DisciplineDto> | null;
|
|
378
378
|
/**
|
|
379
379
|
*
|
|
380
|
-
* @type {
|
|
381
|
-
* @memberof
|
|
380
|
+
* @type {boolean}
|
|
381
|
+
* @memberof DisciplineDtoPagedResponse
|
|
382
382
|
*/
|
|
383
|
-
|
|
383
|
+
isSuccess?: boolean;
|
|
384
384
|
/**
|
|
385
385
|
*
|
|
386
|
-
* @type {
|
|
387
|
-
* @memberof
|
|
386
|
+
* @type {number}
|
|
387
|
+
* @memberof DisciplineDtoPagedResponse
|
|
388
388
|
*/
|
|
389
|
-
|
|
389
|
+
statusCode?: number | null;
|
|
390
390
|
/**
|
|
391
391
|
*
|
|
392
392
|
* @type {string}
|
|
393
|
-
* @memberof
|
|
393
|
+
* @memberof DisciplineDtoPagedResponse
|
|
394
394
|
*/
|
|
395
395
|
traceId?: string | null;
|
|
396
396
|
/**
|
|
397
397
|
*
|
|
398
398
|
* @type {Pagination}
|
|
399
|
-
* @memberof
|
|
399
|
+
* @memberof DisciplineDtoPagedResponse
|
|
400
400
|
*/
|
|
401
401
|
pagination?: Pagination;
|
|
402
402
|
}
|
|
@@ -414,16 +414,16 @@ export interface DisciplineDtoResponse {
|
|
|
414
414
|
data?: DisciplineDto;
|
|
415
415
|
/**
|
|
416
416
|
*
|
|
417
|
-
* @type {
|
|
417
|
+
* @type {boolean}
|
|
418
418
|
* @memberof DisciplineDtoResponse
|
|
419
419
|
*/
|
|
420
|
-
|
|
420
|
+
isSuccess?: boolean;
|
|
421
421
|
/**
|
|
422
422
|
*
|
|
423
|
-
* @type {
|
|
423
|
+
* @type {number}
|
|
424
424
|
* @memberof DisciplineDtoResponse
|
|
425
425
|
*/
|
|
426
|
-
|
|
426
|
+
statusCode?: number | null;
|
|
427
427
|
/**
|
|
428
428
|
*
|
|
429
429
|
* @type {string}
|
|
@@ -471,7 +471,50 @@ export interface DisciplineForUserManipulationDto {
|
|
|
471
471
|
id: string;
|
|
472
472
|
}
|
|
473
473
|
/**
|
|
474
|
-
*
|
|
474
|
+
* Represents a Data Transfer Object (DTO) for file actions, including the URL and HTTP method.
|
|
475
|
+
* @export
|
|
476
|
+
* @interface FileActionDto
|
|
477
|
+
*/
|
|
478
|
+
export interface FileActionDto {
|
|
479
|
+
/**
|
|
480
|
+
* Gets or sets the presigned URL associated with the file action.
|
|
481
|
+
* @type {string}
|
|
482
|
+
* @memberof FileActionDto
|
|
483
|
+
*/
|
|
484
|
+
url?: string;
|
|
485
|
+
/**
|
|
486
|
+
*
|
|
487
|
+
* @type {FileActionHttpMethod}
|
|
488
|
+
* @memberof FileActionDto
|
|
489
|
+
*/
|
|
490
|
+
method?: FileActionHttpMethod;
|
|
491
|
+
}
|
|
492
|
+
/**
|
|
493
|
+
* Represents the possible HTTP methods associated with file actions.
|
|
494
|
+
* @export
|
|
495
|
+
* @enum {string}
|
|
496
|
+
*/
|
|
497
|
+
export declare enum FileActionHttpMethod {
|
|
498
|
+
Get = "GET",
|
|
499
|
+
Post = "POST",
|
|
500
|
+
Put = "PUT",
|
|
501
|
+
Delete = "DELETE"
|
|
502
|
+
}
|
|
503
|
+
/**
|
|
504
|
+
* Represents a Data Transfer Object (DTO) for a collection of file actions, including download action details.
|
|
505
|
+
* @export
|
|
506
|
+
* @interface FileActionsDto
|
|
507
|
+
*/
|
|
508
|
+
export interface FileActionsDto {
|
|
509
|
+
/**
|
|
510
|
+
*
|
|
511
|
+
* @type {FileActionDto}
|
|
512
|
+
* @memberof FileActionsDto
|
|
513
|
+
*/
|
|
514
|
+
download?: FileActionDto;
|
|
515
|
+
}
|
|
516
|
+
/**
|
|
517
|
+
* Represents a Data Transfer Object (DTO) for a file within a tree structure, extending the base TreeDto.
|
|
475
518
|
* @export
|
|
476
519
|
* @interface FileTreeDto
|
|
477
520
|
*/
|
|
@@ -489,81 +532,87 @@ export interface FileTreeDto {
|
|
|
489
532
|
*/
|
|
490
533
|
type?: TreeDataType;
|
|
491
534
|
/**
|
|
492
|
-
*
|
|
535
|
+
* Gets or sets the directory of the file.
|
|
493
536
|
* @type {string}
|
|
494
537
|
* @memberof FileTreeDto
|
|
495
538
|
*/
|
|
496
539
|
directory?: string;
|
|
497
540
|
/**
|
|
498
|
-
*
|
|
541
|
+
* Gets or sets the name of the file.
|
|
499
542
|
* @type {string}
|
|
500
543
|
* @memberof FileTreeDto
|
|
501
544
|
*/
|
|
502
545
|
name?: string;
|
|
503
546
|
/**
|
|
504
|
-
*
|
|
547
|
+
* Gets or sets the extension of the file.
|
|
505
548
|
* @type {string}
|
|
506
549
|
* @memberof FileTreeDto
|
|
507
550
|
*/
|
|
508
551
|
extension?: string;
|
|
509
552
|
/**
|
|
510
|
-
*
|
|
553
|
+
* Gets or sets the size of the file in bytes.
|
|
511
554
|
* @type {number}
|
|
512
555
|
* @memberof FileTreeDto
|
|
513
556
|
*/
|
|
514
557
|
size?: number;
|
|
515
558
|
/**
|
|
516
|
-
*
|
|
559
|
+
* Gets or sets the creation date of the file.
|
|
517
560
|
* @type {string}
|
|
518
561
|
* @memberof FileTreeDto
|
|
519
562
|
*/
|
|
520
563
|
creationDate?: string | null;
|
|
521
564
|
/**
|
|
522
|
-
*
|
|
565
|
+
* Gets or sets the last change date of the file.
|
|
523
566
|
* @type {string}
|
|
524
567
|
* @memberof FileTreeDto
|
|
525
568
|
*/
|
|
526
569
|
changeDate?: string | null;
|
|
570
|
+
/**
|
|
571
|
+
*
|
|
572
|
+
* @type {FileActionsDto}
|
|
573
|
+
* @memberof FileTreeDto
|
|
574
|
+
*/
|
|
575
|
+
actions?: FileActionsDto;
|
|
527
576
|
}
|
|
528
577
|
/**
|
|
529
578
|
*
|
|
530
579
|
* @export
|
|
531
|
-
* @interface
|
|
580
|
+
* @interface FileTreeDtoPagedResponse
|
|
532
581
|
*/
|
|
533
|
-
export interface
|
|
582
|
+
export interface FileTreeDtoPagedResponse {
|
|
534
583
|
/**
|
|
535
584
|
*
|
|
536
585
|
* @type {Array<FileTreeDto>}
|
|
537
|
-
* @memberof
|
|
586
|
+
* @memberof FileTreeDtoPagedResponse
|
|
538
587
|
*/
|
|
539
588
|
data?: Array<FileTreeDto> | null;
|
|
540
589
|
/**
|
|
541
590
|
*
|
|
542
|
-
* @type {
|
|
543
|
-
* @memberof
|
|
591
|
+
* @type {boolean}
|
|
592
|
+
* @memberof FileTreeDtoPagedResponse
|
|
544
593
|
*/
|
|
545
|
-
|
|
594
|
+
isSuccess?: boolean;
|
|
546
595
|
/**
|
|
547
596
|
*
|
|
548
|
-
* @type {
|
|
549
|
-
* @memberof
|
|
597
|
+
* @type {number}
|
|
598
|
+
* @memberof FileTreeDtoPagedResponse
|
|
550
599
|
*/
|
|
551
|
-
|
|
600
|
+
statusCode?: number | null;
|
|
552
601
|
/**
|
|
553
602
|
*
|
|
554
603
|
* @type {string}
|
|
555
|
-
* @memberof
|
|
604
|
+
* @memberof FileTreeDtoPagedResponse
|
|
556
605
|
*/
|
|
557
606
|
traceId?: string | null;
|
|
558
607
|
/**
|
|
559
608
|
*
|
|
560
609
|
* @type {Pagination}
|
|
561
|
-
* @memberof
|
|
610
|
+
* @memberof FileTreeDtoPagedResponse
|
|
562
611
|
*/
|
|
563
612
|
pagination?: Pagination;
|
|
564
613
|
}
|
|
565
614
|
/**
|
|
566
|
-
*
|
|
615
|
+
* Represents the data transfer object for manipulating a resource fixed value.
|
|
567
616
|
* @export
|
|
568
617
|
* @interface FixedValueForResourceManipulationDto
|
|
569
618
|
*/
|
|
@@ -681,16 +730,16 @@ export interface GitlabBranchDtoIEnumerableResponse {
|
|
|
681
730
|
data?: Array<GitlabBranchDto> | null;
|
|
682
731
|
/**
|
|
683
732
|
*
|
|
684
|
-
* @type {
|
|
733
|
+
* @type {boolean}
|
|
685
734
|
* @memberof GitlabBranchDtoIEnumerableResponse
|
|
686
735
|
*/
|
|
687
|
-
|
|
736
|
+
isSuccess?: boolean;
|
|
688
737
|
/**
|
|
689
738
|
*
|
|
690
|
-
* @type {
|
|
739
|
+
* @type {number}
|
|
691
740
|
* @memberof GitlabBranchDtoIEnumerableResponse
|
|
692
741
|
*/
|
|
693
|
-
|
|
742
|
+
statusCode?: number | null;
|
|
694
743
|
/**
|
|
695
744
|
*
|
|
696
745
|
* @type {string}
|
|
@@ -797,16 +846,16 @@ export interface GitlabProjectDtoIEnumerableResponse {
|
|
|
797
846
|
data?: Array<GitlabProjectDto> | null;
|
|
798
847
|
/**
|
|
799
848
|
*
|
|
800
|
-
* @type {
|
|
849
|
+
* @type {boolean}
|
|
801
850
|
* @memberof GitlabProjectDtoIEnumerableResponse
|
|
802
851
|
*/
|
|
803
|
-
|
|
852
|
+
isSuccess?: boolean;
|
|
804
853
|
/**
|
|
805
854
|
*
|
|
806
|
-
* @type {
|
|
855
|
+
* @type {number}
|
|
807
856
|
* @memberof GitlabProjectDtoIEnumerableResponse
|
|
808
857
|
*/
|
|
809
|
-
|
|
858
|
+
statusCode?: number | null;
|
|
810
859
|
/**
|
|
811
860
|
*
|
|
812
861
|
* @type {string}
|
|
@@ -828,16 +877,16 @@ export interface GitlabProjectDtoResponse {
|
|
|
828
877
|
data?: GitlabProjectDto;
|
|
829
878
|
/**
|
|
830
879
|
*
|
|
831
|
-
* @type {
|
|
880
|
+
* @type {boolean}
|
|
832
881
|
* @memberof GitlabProjectDtoResponse
|
|
833
882
|
*/
|
|
834
|
-
|
|
883
|
+
isSuccess?: boolean;
|
|
835
884
|
/**
|
|
836
885
|
*
|
|
837
|
-
* @type {
|
|
886
|
+
* @type {number}
|
|
838
887
|
* @memberof GitlabProjectDtoResponse
|
|
839
888
|
*/
|
|
840
|
-
|
|
889
|
+
statusCode?: number | null;
|
|
841
890
|
/**
|
|
842
891
|
*
|
|
843
892
|
* @type {string}
|
|
@@ -846,7 +895,7 @@ export interface GitlabProjectDtoResponse {
|
|
|
846
895
|
traceId?: string | null;
|
|
847
896
|
}
|
|
848
897
|
/**
|
|
849
|
-
*
|
|
898
|
+
* Represents the data transfer object for creating GitLab resource type options.
|
|
850
899
|
* @export
|
|
851
900
|
* @interface GitlabResourceTypeOptionsForCreationDto
|
|
852
901
|
*/
|
|
@@ -883,7 +932,7 @@ export interface GitlabResourceTypeOptionsForCreationDto {
|
|
|
883
932
|
tosAccepted: boolean;
|
|
884
933
|
}
|
|
885
934
|
/**
|
|
886
|
-
*
|
|
935
|
+
* Represents the data transfer object for updating GitLab resource type options.
|
|
887
936
|
* @export
|
|
888
937
|
* @interface GitlabResourceTypeOptionsForUpdateDto
|
|
889
938
|
*/
|
|
@@ -921,7 +970,7 @@ export interface IdentityProviderDto {
|
|
|
921
970
|
displayName?: string;
|
|
922
971
|
}
|
|
923
972
|
/**
|
|
924
|
-
*
|
|
973
|
+
* Specifies the supported external authentication services.
|
|
925
974
|
* @export
|
|
926
975
|
* @enum {string}
|
|
927
976
|
*/
|
|
@@ -957,37 +1006,37 @@ export interface LanguageDto {
|
|
|
957
1006
|
/**
|
|
958
1007
|
*
|
|
959
1008
|
* @export
|
|
960
|
-
* @interface
|
|
1009
|
+
* @interface LanguageDtoPagedResponse
|
|
961
1010
|
*/
|
|
962
|
-
export interface
|
|
1011
|
+
export interface LanguageDtoPagedResponse {
|
|
963
1012
|
/**
|
|
964
1013
|
*
|
|
965
1014
|
* @type {Array<LanguageDto>}
|
|
966
|
-
* @memberof
|
|
1015
|
+
* @memberof LanguageDtoPagedResponse
|
|
967
1016
|
*/
|
|
968
1017
|
data?: Array<LanguageDto> | null;
|
|
969
1018
|
/**
|
|
970
1019
|
*
|
|
971
|
-
* @type {
|
|
972
|
-
* @memberof
|
|
1020
|
+
* @type {boolean}
|
|
1021
|
+
* @memberof LanguageDtoPagedResponse
|
|
973
1022
|
*/
|
|
974
|
-
|
|
1023
|
+
isSuccess?: boolean;
|
|
975
1024
|
/**
|
|
976
1025
|
*
|
|
977
|
-
* @type {
|
|
978
|
-
* @memberof
|
|
1026
|
+
* @type {number}
|
|
1027
|
+
* @memberof LanguageDtoPagedResponse
|
|
979
1028
|
*/
|
|
980
|
-
|
|
1029
|
+
statusCode?: number | null;
|
|
981
1030
|
/**
|
|
982
1031
|
*
|
|
983
1032
|
* @type {string}
|
|
984
|
-
* @memberof
|
|
1033
|
+
* @memberof LanguageDtoPagedResponse
|
|
985
1034
|
*/
|
|
986
1035
|
traceId?: string | null;
|
|
987
1036
|
/**
|
|
988
1037
|
*
|
|
989
1038
|
* @type {Pagination}
|
|
990
|
-
* @memberof
|
|
1039
|
+
* @memberof LanguageDtoPagedResponse
|
|
991
1040
|
*/
|
|
992
1041
|
pagination?: Pagination;
|
|
993
1042
|
}
|
|
@@ -1005,16 +1054,16 @@ export interface LanguageDtoResponse {
|
|
|
1005
1054
|
data?: LanguageDto;
|
|
1006
1055
|
/**
|
|
1007
1056
|
*
|
|
1008
|
-
* @type {
|
|
1057
|
+
* @type {boolean}
|
|
1009
1058
|
* @memberof LanguageDtoResponse
|
|
1010
1059
|
*/
|
|
1011
|
-
|
|
1060
|
+
isSuccess?: boolean;
|
|
1012
1061
|
/**
|
|
1013
1062
|
*
|
|
1014
|
-
* @type {
|
|
1063
|
+
* @type {number}
|
|
1015
1064
|
* @memberof LanguageDtoResponse
|
|
1016
1065
|
*/
|
|
1017
|
-
|
|
1066
|
+
statusCode?: number | null;
|
|
1018
1067
|
/**
|
|
1019
1068
|
*
|
|
1020
1069
|
* @type {string}
|
|
@@ -1057,37 +1106,37 @@ export interface LicenseDto {
|
|
|
1057
1106
|
/**
|
|
1058
1107
|
*
|
|
1059
1108
|
* @export
|
|
1060
|
-
* @interface
|
|
1109
|
+
* @interface LicenseDtoPagedResponse
|
|
1061
1110
|
*/
|
|
1062
|
-
export interface
|
|
1111
|
+
export interface LicenseDtoPagedResponse {
|
|
1063
1112
|
/**
|
|
1064
1113
|
*
|
|
1065
1114
|
* @type {Array<LicenseDto>}
|
|
1066
|
-
* @memberof
|
|
1115
|
+
* @memberof LicenseDtoPagedResponse
|
|
1067
1116
|
*/
|
|
1068
1117
|
data?: Array<LicenseDto> | null;
|
|
1069
1118
|
/**
|
|
1070
1119
|
*
|
|
1071
|
-
* @type {
|
|
1072
|
-
* @memberof
|
|
1120
|
+
* @type {boolean}
|
|
1121
|
+
* @memberof LicenseDtoPagedResponse
|
|
1073
1122
|
*/
|
|
1074
|
-
|
|
1123
|
+
isSuccess?: boolean;
|
|
1075
1124
|
/**
|
|
1076
1125
|
*
|
|
1077
|
-
* @type {
|
|
1078
|
-
* @memberof
|
|
1126
|
+
* @type {number}
|
|
1127
|
+
* @memberof LicenseDtoPagedResponse
|
|
1079
1128
|
*/
|
|
1080
|
-
|
|
1129
|
+
statusCode?: number | null;
|
|
1081
1130
|
/**
|
|
1082
1131
|
*
|
|
1083
1132
|
* @type {string}
|
|
1084
|
-
* @memberof
|
|
1133
|
+
* @memberof LicenseDtoPagedResponse
|
|
1085
1134
|
*/
|
|
1086
1135
|
traceId?: string | null;
|
|
1087
1136
|
/**
|
|
1088
1137
|
*
|
|
1089
1138
|
* @type {Pagination}
|
|
1090
|
-
* @memberof
|
|
1139
|
+
* @memberof LicenseDtoPagedResponse
|
|
1091
1140
|
*/
|
|
1092
1141
|
pagination?: Pagination;
|
|
1093
1142
|
}
|
|
@@ -1105,16 +1154,16 @@ export interface LicenseDtoResponse {
|
|
|
1105
1154
|
data?: LicenseDto;
|
|
1106
1155
|
/**
|
|
1107
1156
|
*
|
|
1108
|
-
* @type {
|
|
1157
|
+
* @type {boolean}
|
|
1109
1158
|
* @memberof LicenseDtoResponse
|
|
1110
1159
|
*/
|
|
1111
|
-
|
|
1160
|
+
isSuccess?: boolean;
|
|
1112
1161
|
/**
|
|
1113
1162
|
*
|
|
1114
|
-
* @type {
|
|
1163
|
+
* @type {number}
|
|
1115
1164
|
* @memberof LicenseDtoResponse
|
|
1116
1165
|
*/
|
|
1117
|
-
|
|
1166
|
+
statusCode?: number | null;
|
|
1118
1167
|
/**
|
|
1119
1168
|
*
|
|
1120
1169
|
* @type {string}
|
|
@@ -1136,43 +1185,43 @@ export interface LicenseForResourceManipulationDto {
|
|
|
1136
1185
|
id: string;
|
|
1137
1186
|
}
|
|
1138
1187
|
/**
|
|
1139
|
-
*
|
|
1188
|
+
* This class represents a maintenance with its significant properties, which is returned from the API.
|
|
1140
1189
|
* @export
|
|
1141
1190
|
* @interface MaintenanceDto
|
|
1142
1191
|
*/
|
|
1143
1192
|
export interface MaintenanceDto {
|
|
1144
1193
|
/**
|
|
1145
|
-
*
|
|
1194
|
+
* Maintenance title.
|
|
1146
1195
|
* @type {string}
|
|
1147
1196
|
* @memberof MaintenanceDto
|
|
1148
1197
|
*/
|
|
1149
1198
|
displayName?: string;
|
|
1150
1199
|
/**
|
|
1151
|
-
*
|
|
1200
|
+
* Maintenance URL.
|
|
1152
1201
|
* @type {string}
|
|
1153
1202
|
* @memberof MaintenanceDto
|
|
1154
1203
|
*/
|
|
1155
1204
|
href?: string;
|
|
1156
1205
|
/**
|
|
1157
|
-
*
|
|
1206
|
+
* Maintenance type.
|
|
1158
1207
|
* @type {string}
|
|
1159
1208
|
* @memberof MaintenanceDto
|
|
1160
1209
|
*/
|
|
1161
1210
|
type?: string;
|
|
1162
1211
|
/**
|
|
1163
|
-
*
|
|
1212
|
+
* Maintenance description.
|
|
1164
1213
|
* @type {string}
|
|
1165
1214
|
* @memberof MaintenanceDto
|
|
1166
1215
|
*/
|
|
1167
1216
|
body?: string;
|
|
1168
1217
|
/**
|
|
1169
|
-
*
|
|
1218
|
+
* Maintenance start.
|
|
1170
1219
|
* @type {string}
|
|
1171
1220
|
* @memberof MaintenanceDto
|
|
1172
1221
|
*/
|
|
1173
1222
|
startsDate?: string | null;
|
|
1174
1223
|
/**
|
|
1175
|
-
*
|
|
1224
|
+
* Maintenance end.
|
|
1176
1225
|
* @type {string}
|
|
1177
1226
|
* @memberof MaintenanceDto
|
|
1178
1227
|
*/
|
|
@@ -1181,37 +1230,37 @@ export interface MaintenanceDto {
|
|
|
1181
1230
|
/**
|
|
1182
1231
|
*
|
|
1183
1232
|
* @export
|
|
1184
|
-
* @interface
|
|
1233
|
+
* @interface MaintenanceDtoPagedResponse
|
|
1185
1234
|
*/
|
|
1186
|
-
export interface
|
|
1235
|
+
export interface MaintenanceDtoPagedResponse {
|
|
1187
1236
|
/**
|
|
1188
1237
|
*
|
|
1189
1238
|
* @type {Array<MaintenanceDto>}
|
|
1190
|
-
* @memberof
|
|
1239
|
+
* @memberof MaintenanceDtoPagedResponse
|
|
1191
1240
|
*/
|
|
1192
1241
|
data?: Array<MaintenanceDto> | null;
|
|
1193
1242
|
/**
|
|
1194
1243
|
*
|
|
1195
|
-
* @type {
|
|
1196
|
-
* @memberof
|
|
1244
|
+
* @type {boolean}
|
|
1245
|
+
* @memberof MaintenanceDtoPagedResponse
|
|
1197
1246
|
*/
|
|
1198
|
-
|
|
1247
|
+
isSuccess?: boolean;
|
|
1199
1248
|
/**
|
|
1200
1249
|
*
|
|
1201
|
-
* @type {
|
|
1202
|
-
* @memberof
|
|
1250
|
+
* @type {number}
|
|
1251
|
+
* @memberof MaintenanceDtoPagedResponse
|
|
1203
1252
|
*/
|
|
1204
|
-
|
|
1253
|
+
statusCode?: number | null;
|
|
1205
1254
|
/**
|
|
1206
1255
|
*
|
|
1207
1256
|
* @type {string}
|
|
1208
|
-
* @memberof
|
|
1257
|
+
* @memberof MaintenanceDtoPagedResponse
|
|
1209
1258
|
*/
|
|
1210
1259
|
traceId?: string | null;
|
|
1211
1260
|
/**
|
|
1212
1261
|
*
|
|
1213
1262
|
* @type {Pagination}
|
|
1214
|
-
* @memberof
|
|
1263
|
+
* @memberof MaintenanceDtoPagedResponse
|
|
1215
1264
|
*/
|
|
1216
1265
|
pagination?: Pagination;
|
|
1217
1266
|
}
|
|
@@ -1255,37 +1304,37 @@ export interface MetadataTreeDto {
|
|
|
1255
1304
|
/**
|
|
1256
1305
|
*
|
|
1257
1306
|
* @export
|
|
1258
|
-
* @interface
|
|
1307
|
+
* @interface MetadataTreeDtoPagedResponse
|
|
1259
1308
|
*/
|
|
1260
|
-
export interface
|
|
1309
|
+
export interface MetadataTreeDtoPagedResponse {
|
|
1261
1310
|
/**
|
|
1262
1311
|
*
|
|
1263
1312
|
* @type {Array<MetadataTreeDto>}
|
|
1264
|
-
* @memberof
|
|
1313
|
+
* @memberof MetadataTreeDtoPagedResponse
|
|
1265
1314
|
*/
|
|
1266
1315
|
data?: Array<MetadataTreeDto> | null;
|
|
1267
1316
|
/**
|
|
1268
1317
|
*
|
|
1269
|
-
* @type {
|
|
1270
|
-
* @memberof
|
|
1318
|
+
* @type {boolean}
|
|
1319
|
+
* @memberof MetadataTreeDtoPagedResponse
|
|
1271
1320
|
*/
|
|
1272
|
-
|
|
1321
|
+
isSuccess?: boolean;
|
|
1273
1322
|
/**
|
|
1274
1323
|
*
|
|
1275
|
-
* @type {
|
|
1276
|
-
* @memberof
|
|
1324
|
+
* @type {number}
|
|
1325
|
+
* @memberof MetadataTreeDtoPagedResponse
|
|
1277
1326
|
*/
|
|
1278
|
-
|
|
1327
|
+
statusCode?: number | null;
|
|
1279
1328
|
/**
|
|
1280
1329
|
*
|
|
1281
1330
|
* @type {string}
|
|
1282
|
-
* @memberof
|
|
1331
|
+
* @memberof MetadataTreeDtoPagedResponse
|
|
1283
1332
|
*/
|
|
1284
1333
|
traceId?: string | null;
|
|
1285
1334
|
/**
|
|
1286
1335
|
*
|
|
1287
1336
|
* @type {Pagination}
|
|
1288
|
-
* @memberof
|
|
1337
|
+
* @memberof MetadataTreeDtoPagedResponse
|
|
1289
1338
|
*/
|
|
1290
1339
|
pagination?: Pagination;
|
|
1291
1340
|
}
|
|
@@ -1303,16 +1352,16 @@ export interface MetadataTreeDtoResponse {
|
|
|
1303
1352
|
data?: MetadataTreeDto;
|
|
1304
1353
|
/**
|
|
1305
1354
|
*
|
|
1306
|
-
* @type {
|
|
1355
|
+
* @type {boolean}
|
|
1307
1356
|
* @memberof MetadataTreeDtoResponse
|
|
1308
1357
|
*/
|
|
1309
|
-
|
|
1358
|
+
isSuccess?: boolean;
|
|
1310
1359
|
/**
|
|
1311
1360
|
*
|
|
1312
|
-
* @type {
|
|
1361
|
+
* @type {number}
|
|
1313
1362
|
* @memberof MetadataTreeDtoResponse
|
|
1314
1363
|
*/
|
|
1315
|
-
|
|
1364
|
+
statusCode?: number | null;
|
|
1316
1365
|
/**
|
|
1317
1366
|
*
|
|
1318
1367
|
* @type {string}
|
|
@@ -1358,6 +1407,25 @@ export interface MetadataTreeForUpdateDto {
|
|
|
1358
1407
|
*/
|
|
1359
1408
|
definition: RdfDefinitionForManipulationDto;
|
|
1360
1409
|
}
|
|
1410
|
+
/**
|
|
1411
|
+
*
|
|
1412
|
+
* @export
|
|
1413
|
+
* @interface MetadataUpdateAdminParameters
|
|
1414
|
+
*/
|
|
1415
|
+
export interface MetadataUpdateAdminParameters {
|
|
1416
|
+
/**
|
|
1417
|
+
*
|
|
1418
|
+
* @type {string}
|
|
1419
|
+
* @memberof MetadataUpdateAdminParameters
|
|
1420
|
+
*/
|
|
1421
|
+
graphUri: string;
|
|
1422
|
+
/**
|
|
1423
|
+
*
|
|
1424
|
+
* @type {RdfDefinitionForManipulationDto}
|
|
1425
|
+
* @memberof MetadataUpdateAdminParameters
|
|
1426
|
+
*/
|
|
1427
|
+
definition: RdfDefinitionForManipulationDto;
|
|
1428
|
+
}
|
|
1361
1429
|
/**
|
|
1362
1430
|
*
|
|
1363
1431
|
* @export
|
|
@@ -1365,19 +1433,19 @@ export interface MetadataTreeForUpdateDto {
|
|
|
1365
1433
|
*/
|
|
1366
1434
|
export interface OrganizationDto {
|
|
1367
1435
|
/**
|
|
1368
|
-
*
|
|
1436
|
+
* The ROR <i>(Research Organization Registry)</i> ID of the organization.
|
|
1369
1437
|
* @type {string}
|
|
1370
1438
|
* @memberof OrganizationDto
|
|
1371
1439
|
*/
|
|
1372
1440
|
uri?: string;
|
|
1373
1441
|
/**
|
|
1374
|
-
*
|
|
1442
|
+
* The display name of the organization.
|
|
1375
1443
|
* @type {string}
|
|
1376
1444
|
* @memberof OrganizationDto
|
|
1377
1445
|
*/
|
|
1378
1446
|
displayName?: string;
|
|
1379
1447
|
/**
|
|
1380
|
-
*
|
|
1448
|
+
* The email address of the organization.
|
|
1381
1449
|
* @type {string}
|
|
1382
1450
|
* @memberof OrganizationDto
|
|
1383
1451
|
*/
|
|
@@ -1386,37 +1454,37 @@ export interface OrganizationDto {
|
|
|
1386
1454
|
/**
|
|
1387
1455
|
*
|
|
1388
1456
|
* @export
|
|
1389
|
-
* @interface
|
|
1457
|
+
* @interface OrganizationDtoPagedResponse
|
|
1390
1458
|
*/
|
|
1391
|
-
export interface
|
|
1459
|
+
export interface OrganizationDtoPagedResponse {
|
|
1392
1460
|
/**
|
|
1393
1461
|
*
|
|
1394
1462
|
* @type {Array<OrganizationDto>}
|
|
1395
|
-
* @memberof
|
|
1463
|
+
* @memberof OrganizationDtoPagedResponse
|
|
1396
1464
|
*/
|
|
1397
1465
|
data?: Array<OrganizationDto> | null;
|
|
1398
1466
|
/**
|
|
1399
1467
|
*
|
|
1400
|
-
* @type {
|
|
1401
|
-
* @memberof
|
|
1468
|
+
* @type {boolean}
|
|
1469
|
+
* @memberof OrganizationDtoPagedResponse
|
|
1402
1470
|
*/
|
|
1403
|
-
|
|
1471
|
+
isSuccess?: boolean;
|
|
1404
1472
|
/**
|
|
1405
1473
|
*
|
|
1406
|
-
* @type {
|
|
1407
|
-
* @memberof
|
|
1474
|
+
* @type {number}
|
|
1475
|
+
* @memberof OrganizationDtoPagedResponse
|
|
1408
1476
|
*/
|
|
1409
|
-
|
|
1477
|
+
statusCode?: number | null;
|
|
1410
1478
|
/**
|
|
1411
1479
|
*
|
|
1412
1480
|
* @type {string}
|
|
1413
|
-
* @memberof
|
|
1481
|
+
* @memberof OrganizationDtoPagedResponse
|
|
1414
1482
|
*/
|
|
1415
1483
|
traceId?: string | null;
|
|
1416
1484
|
/**
|
|
1417
1485
|
*
|
|
1418
1486
|
* @type {Pagination}
|
|
1419
|
-
* @memberof
|
|
1487
|
+
* @memberof OrganizationDtoPagedResponse
|
|
1420
1488
|
*/
|
|
1421
1489
|
pagination?: Pagination;
|
|
1422
1490
|
}
|
|
@@ -1434,16 +1502,16 @@ export interface OrganizationDtoResponse {
|
|
|
1434
1502
|
data?: OrganizationDto;
|
|
1435
1503
|
/**
|
|
1436
1504
|
*
|
|
1437
|
-
* @type {
|
|
1505
|
+
* @type {boolean}
|
|
1438
1506
|
* @memberof OrganizationDtoResponse
|
|
1439
1507
|
*/
|
|
1440
|
-
|
|
1508
|
+
isSuccess?: boolean;
|
|
1441
1509
|
/**
|
|
1442
1510
|
*
|
|
1443
|
-
* @type {
|
|
1511
|
+
* @type {number}
|
|
1444
1512
|
* @memberof OrganizationDtoResponse
|
|
1445
1513
|
*/
|
|
1446
|
-
|
|
1514
|
+
statusCode?: number | null;
|
|
1447
1515
|
/**
|
|
1448
1516
|
*
|
|
1449
1517
|
* @type {string}
|
|
@@ -1539,7 +1607,7 @@ export interface PidRequestDto {
|
|
|
1539
1607
|
sendConfirmationEmail?: boolean;
|
|
1540
1608
|
}
|
|
1541
1609
|
/**
|
|
1542
|
-
*
|
|
1610
|
+
* Specifies the type of PID.
|
|
1543
1611
|
* @export
|
|
1544
1612
|
* @enum {string}
|
|
1545
1613
|
*/
|
|
@@ -1580,16 +1648,16 @@ export interface PidValidationDtoResponse {
|
|
|
1580
1648
|
data?: PidValidationDto;
|
|
1581
1649
|
/**
|
|
1582
1650
|
*
|
|
1583
|
-
* @type {
|
|
1651
|
+
* @type {boolean}
|
|
1584
1652
|
* @memberof PidValidationDtoResponse
|
|
1585
1653
|
*/
|
|
1586
|
-
|
|
1654
|
+
isSuccess?: boolean;
|
|
1587
1655
|
/**
|
|
1588
1656
|
*
|
|
1589
|
-
* @type {
|
|
1657
|
+
* @type {number}
|
|
1590
1658
|
* @memberof PidValidationDtoResponse
|
|
1591
1659
|
*/
|
|
1592
|
-
|
|
1660
|
+
statusCode?: number | null;
|
|
1593
1661
|
/**
|
|
1594
1662
|
*
|
|
1595
1663
|
* @type {string}
|
|
@@ -1600,152 +1668,322 @@ export interface PidValidationDtoResponse {
|
|
|
1600
1668
|
/**
|
|
1601
1669
|
*
|
|
1602
1670
|
* @export
|
|
1603
|
-
* @interface
|
|
1671
|
+
* @interface ProjectAdminDto
|
|
1604
1672
|
*/
|
|
1605
|
-
export interface
|
|
1673
|
+
export interface ProjectAdminDto {
|
|
1606
1674
|
/**
|
|
1607
1675
|
*
|
|
1608
1676
|
* @type {string}
|
|
1609
|
-
* @memberof
|
|
1677
|
+
* @memberof ProjectAdminDto
|
|
1610
1678
|
*/
|
|
1611
1679
|
id?: string;
|
|
1612
1680
|
/**
|
|
1613
1681
|
*
|
|
1614
1682
|
* @type {string}
|
|
1615
|
-
* @memberof
|
|
1683
|
+
* @memberof ProjectAdminDto
|
|
1616
1684
|
*/
|
|
1617
1685
|
pid?: string;
|
|
1618
1686
|
/**
|
|
1619
1687
|
*
|
|
1620
1688
|
* @type {string}
|
|
1621
|
-
* @memberof
|
|
1689
|
+
* @memberof ProjectAdminDto
|
|
1622
1690
|
*/
|
|
1623
1691
|
name?: string;
|
|
1624
1692
|
/**
|
|
1625
1693
|
*
|
|
1626
1694
|
* @type {string}
|
|
1627
|
-
* @memberof
|
|
1695
|
+
* @memberof ProjectAdminDto
|
|
1628
1696
|
*/
|
|
1629
1697
|
description?: string;
|
|
1630
1698
|
/**
|
|
1631
1699
|
*
|
|
1632
1700
|
* @type {string}
|
|
1633
|
-
* @memberof
|
|
1701
|
+
* @memberof ProjectAdminDto
|
|
1634
1702
|
*/
|
|
1635
1703
|
startDate?: string;
|
|
1636
1704
|
/**
|
|
1637
1705
|
*
|
|
1638
1706
|
* @type {string}
|
|
1639
|
-
* @memberof
|
|
1707
|
+
* @memberof ProjectAdminDto
|
|
1640
1708
|
*/
|
|
1641
1709
|
endDate?: string;
|
|
1642
1710
|
/**
|
|
1643
1711
|
*
|
|
1644
1712
|
* @type {Array<string>}
|
|
1645
|
-
* @memberof
|
|
1713
|
+
* @memberof ProjectAdminDto
|
|
1646
1714
|
*/
|
|
1647
1715
|
keywords?: Array<string> | null;
|
|
1648
1716
|
/**
|
|
1649
1717
|
*
|
|
1650
1718
|
* @type {string}
|
|
1651
|
-
* @memberof
|
|
1719
|
+
* @memberof ProjectAdminDto
|
|
1652
1720
|
*/
|
|
1653
1721
|
displayName?: string | null;
|
|
1654
1722
|
/**
|
|
1655
1723
|
*
|
|
1656
1724
|
* @type {string}
|
|
1657
|
-
* @memberof
|
|
1725
|
+
* @memberof ProjectAdminDto
|
|
1658
1726
|
*/
|
|
1659
1727
|
principleInvestigators?: string | null;
|
|
1660
1728
|
/**
|
|
1661
1729
|
*
|
|
1662
1730
|
* @type {string}
|
|
1663
|
-
* @memberof
|
|
1731
|
+
* @memberof ProjectAdminDto
|
|
1664
1732
|
*/
|
|
1665
1733
|
grantId?: string | null;
|
|
1666
1734
|
/**
|
|
1667
1735
|
*
|
|
1668
1736
|
* @type {VisibilityDto}
|
|
1669
|
-
* @memberof
|
|
1737
|
+
* @memberof ProjectAdminDto
|
|
1670
1738
|
*/
|
|
1671
1739
|
visibility?: VisibilityDto;
|
|
1672
1740
|
/**
|
|
1673
1741
|
*
|
|
1674
1742
|
* @type {Array<DisciplineDto>}
|
|
1675
|
-
* @memberof
|
|
1743
|
+
* @memberof ProjectAdminDto
|
|
1676
1744
|
*/
|
|
1677
1745
|
disciplines?: Array<DisciplineDto>;
|
|
1678
1746
|
/**
|
|
1679
1747
|
*
|
|
1680
1748
|
* @type {Array<OrganizationDto>}
|
|
1681
|
-
* @memberof
|
|
1749
|
+
* @memberof ProjectAdminDto
|
|
1682
1750
|
*/
|
|
1683
1751
|
organizations?: Array<OrganizationDto>;
|
|
1684
1752
|
/**
|
|
1685
1753
|
*
|
|
1686
1754
|
* @type {string}
|
|
1687
|
-
* @memberof
|
|
1755
|
+
* @memberof ProjectAdminDto
|
|
1688
1756
|
*/
|
|
1689
1757
|
slug?: string;
|
|
1690
1758
|
/**
|
|
1691
1759
|
*
|
|
1692
1760
|
* @type {UserMinimalDto}
|
|
1693
|
-
* @memberof
|
|
1761
|
+
* @memberof ProjectAdminDto
|
|
1694
1762
|
*/
|
|
1695
1763
|
creator?: UserMinimalDto;
|
|
1696
1764
|
/**
|
|
1697
1765
|
*
|
|
1698
1766
|
* @type {string}
|
|
1699
|
-
* @memberof
|
|
1767
|
+
* @memberof ProjectAdminDto
|
|
1700
1768
|
*/
|
|
1701
1769
|
creationDate?: string | null;
|
|
1702
1770
|
/**
|
|
1703
1771
|
*
|
|
1704
1772
|
* @type {Array<ProjectDto>}
|
|
1705
|
-
* @memberof
|
|
1773
|
+
* @memberof ProjectAdminDto
|
|
1706
1774
|
*/
|
|
1707
1775
|
subProjects?: Array<ProjectDto> | null;
|
|
1708
1776
|
/**
|
|
1709
1777
|
*
|
|
1710
1778
|
* @type {ProjectMinimalDto}
|
|
1711
|
-
* @memberof
|
|
1779
|
+
* @memberof ProjectAdminDto
|
|
1712
1780
|
*/
|
|
1713
1781
|
parent?: ProjectMinimalDto;
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1782
|
+
/**
|
|
1783
|
+
*
|
|
1784
|
+
* @type {boolean}
|
|
1785
|
+
* @memberof ProjectAdminDto
|
|
1786
|
+
*/
|
|
1787
|
+
deleted?: boolean;
|
|
1788
|
+
/**
|
|
1789
|
+
*
|
|
1790
|
+
* @type {Array<ProjectResourceMinimalDto>}
|
|
1791
|
+
* @memberof ProjectAdminDto
|
|
1792
|
+
*/
|
|
1793
|
+
projectResources?: Array<ProjectResourceMinimalDto>;
|
|
1794
|
+
/**
|
|
1795
|
+
*
|
|
1796
|
+
* @type {Array<ProjectRoleMinimalDto>}
|
|
1797
|
+
* @memberof ProjectAdminDto
|
|
1798
|
+
*/
|
|
1799
|
+
projectRoles?: Array<ProjectRoleMinimalDto>;
|
|
1800
|
+
}
|
|
1801
|
+
/**
|
|
1802
|
+
*
|
|
1803
|
+
* @export
|
|
1804
|
+
* @interface ProjectAdminDtoIEnumerablePagedResponse
|
|
1719
1805
|
*/
|
|
1720
|
-
export interface
|
|
1806
|
+
export interface ProjectAdminDtoIEnumerablePagedResponse {
|
|
1721
1807
|
/**
|
|
1722
1808
|
*
|
|
1723
|
-
* @type {Array<
|
|
1724
|
-
* @memberof
|
|
1809
|
+
* @type {Array<Array<ProjectAdminDto>>}
|
|
1810
|
+
* @memberof ProjectAdminDtoIEnumerablePagedResponse
|
|
1725
1811
|
*/
|
|
1726
|
-
data?: Array<
|
|
1812
|
+
data?: Array<Array<ProjectAdminDto>> | null;
|
|
1813
|
+
/**
|
|
1814
|
+
*
|
|
1815
|
+
* @type {boolean}
|
|
1816
|
+
* @memberof ProjectAdminDtoIEnumerablePagedResponse
|
|
1817
|
+
*/
|
|
1818
|
+
isSuccess?: boolean;
|
|
1727
1819
|
/**
|
|
1728
1820
|
*
|
|
1729
1821
|
* @type {number}
|
|
1730
|
-
* @memberof
|
|
1822
|
+
* @memberof ProjectAdminDtoIEnumerablePagedResponse
|
|
1731
1823
|
*/
|
|
1732
1824
|
statusCode?: number | null;
|
|
1825
|
+
/**
|
|
1826
|
+
*
|
|
1827
|
+
* @type {string}
|
|
1828
|
+
* @memberof ProjectAdminDtoIEnumerablePagedResponse
|
|
1829
|
+
*/
|
|
1830
|
+
traceId?: string | null;
|
|
1831
|
+
/**
|
|
1832
|
+
*
|
|
1833
|
+
* @type {Pagination}
|
|
1834
|
+
* @memberof ProjectAdminDtoIEnumerablePagedResponse
|
|
1835
|
+
*/
|
|
1836
|
+
pagination?: Pagination;
|
|
1837
|
+
}
|
|
1838
|
+
/**
|
|
1839
|
+
*
|
|
1840
|
+
* @export
|
|
1841
|
+
* @interface ProjectDto
|
|
1842
|
+
*/
|
|
1843
|
+
export interface ProjectDto {
|
|
1844
|
+
/**
|
|
1845
|
+
*
|
|
1846
|
+
* @type {string}
|
|
1847
|
+
* @memberof ProjectDto
|
|
1848
|
+
*/
|
|
1849
|
+
id?: string;
|
|
1850
|
+
/**
|
|
1851
|
+
*
|
|
1852
|
+
* @type {string}
|
|
1853
|
+
* @memberof ProjectDto
|
|
1854
|
+
*/
|
|
1855
|
+
pid?: string;
|
|
1856
|
+
/**
|
|
1857
|
+
*
|
|
1858
|
+
* @type {string}
|
|
1859
|
+
* @memberof ProjectDto
|
|
1860
|
+
*/
|
|
1861
|
+
name?: string;
|
|
1862
|
+
/**
|
|
1863
|
+
*
|
|
1864
|
+
* @type {string}
|
|
1865
|
+
* @memberof ProjectDto
|
|
1866
|
+
*/
|
|
1867
|
+
description?: string;
|
|
1868
|
+
/**
|
|
1869
|
+
*
|
|
1870
|
+
* @type {string}
|
|
1871
|
+
* @memberof ProjectDto
|
|
1872
|
+
*/
|
|
1873
|
+
startDate?: string;
|
|
1874
|
+
/**
|
|
1875
|
+
*
|
|
1876
|
+
* @type {string}
|
|
1877
|
+
* @memberof ProjectDto
|
|
1878
|
+
*/
|
|
1879
|
+
endDate?: string;
|
|
1880
|
+
/**
|
|
1881
|
+
*
|
|
1882
|
+
* @type {Array<string>}
|
|
1883
|
+
* @memberof ProjectDto
|
|
1884
|
+
*/
|
|
1885
|
+
keywords?: Array<string> | null;
|
|
1886
|
+
/**
|
|
1887
|
+
*
|
|
1888
|
+
* @type {string}
|
|
1889
|
+
* @memberof ProjectDto
|
|
1890
|
+
*/
|
|
1891
|
+
displayName?: string | null;
|
|
1892
|
+
/**
|
|
1893
|
+
*
|
|
1894
|
+
* @type {string}
|
|
1895
|
+
* @memberof ProjectDto
|
|
1896
|
+
*/
|
|
1897
|
+
principleInvestigators?: string | null;
|
|
1898
|
+
/**
|
|
1899
|
+
*
|
|
1900
|
+
* @type {string}
|
|
1901
|
+
* @memberof ProjectDto
|
|
1902
|
+
*/
|
|
1903
|
+
grantId?: string | null;
|
|
1904
|
+
/**
|
|
1905
|
+
*
|
|
1906
|
+
* @type {VisibilityDto}
|
|
1907
|
+
* @memberof ProjectDto
|
|
1908
|
+
*/
|
|
1909
|
+
visibility?: VisibilityDto;
|
|
1910
|
+
/**
|
|
1911
|
+
*
|
|
1912
|
+
* @type {Array<DisciplineDto>}
|
|
1913
|
+
* @memberof ProjectDto
|
|
1914
|
+
*/
|
|
1915
|
+
disciplines?: Array<DisciplineDto>;
|
|
1916
|
+
/**
|
|
1917
|
+
*
|
|
1918
|
+
* @type {Array<OrganizationDto>}
|
|
1919
|
+
* @memberof ProjectDto
|
|
1920
|
+
*/
|
|
1921
|
+
organizations?: Array<OrganizationDto>;
|
|
1922
|
+
/**
|
|
1923
|
+
*
|
|
1924
|
+
* @type {string}
|
|
1925
|
+
* @memberof ProjectDto
|
|
1926
|
+
*/
|
|
1927
|
+
slug?: string;
|
|
1928
|
+
/**
|
|
1929
|
+
*
|
|
1930
|
+
* @type {UserMinimalDto}
|
|
1931
|
+
* @memberof ProjectDto
|
|
1932
|
+
*/
|
|
1933
|
+
creator?: UserMinimalDto;
|
|
1934
|
+
/**
|
|
1935
|
+
*
|
|
1936
|
+
* @type {string}
|
|
1937
|
+
* @memberof ProjectDto
|
|
1938
|
+
*/
|
|
1939
|
+
creationDate?: string | null;
|
|
1940
|
+
/**
|
|
1941
|
+
*
|
|
1942
|
+
* @type {Array<ProjectDto>}
|
|
1943
|
+
* @memberof ProjectDto
|
|
1944
|
+
*/
|
|
1945
|
+
subProjects?: Array<ProjectDto> | null;
|
|
1946
|
+
/**
|
|
1947
|
+
*
|
|
1948
|
+
* @type {ProjectMinimalDto}
|
|
1949
|
+
* @memberof ProjectDto
|
|
1950
|
+
*/
|
|
1951
|
+
parent?: ProjectMinimalDto;
|
|
1952
|
+
}
|
|
1953
|
+
/**
|
|
1954
|
+
*
|
|
1955
|
+
* @export
|
|
1956
|
+
* @interface ProjectDtoPagedResponse
|
|
1957
|
+
*/
|
|
1958
|
+
export interface ProjectDtoPagedResponse {
|
|
1959
|
+
/**
|
|
1960
|
+
*
|
|
1961
|
+
* @type {Array<ProjectDto>}
|
|
1962
|
+
* @memberof ProjectDtoPagedResponse
|
|
1963
|
+
*/
|
|
1964
|
+
data?: Array<ProjectDto> | null;
|
|
1733
1965
|
/**
|
|
1734
1966
|
*
|
|
1735
1967
|
* @type {boolean}
|
|
1736
|
-
* @memberof
|
|
1968
|
+
* @memberof ProjectDtoPagedResponse
|
|
1737
1969
|
*/
|
|
1738
1970
|
isSuccess?: boolean;
|
|
1971
|
+
/**
|
|
1972
|
+
*
|
|
1973
|
+
* @type {number}
|
|
1974
|
+
* @memberof ProjectDtoPagedResponse
|
|
1975
|
+
*/
|
|
1976
|
+
statusCode?: number | null;
|
|
1739
1977
|
/**
|
|
1740
1978
|
*
|
|
1741
1979
|
* @type {string}
|
|
1742
|
-
* @memberof
|
|
1980
|
+
* @memberof ProjectDtoPagedResponse
|
|
1743
1981
|
*/
|
|
1744
1982
|
traceId?: string | null;
|
|
1745
1983
|
/**
|
|
1746
1984
|
*
|
|
1747
1985
|
* @type {Pagination}
|
|
1748
|
-
* @memberof
|
|
1986
|
+
* @memberof ProjectDtoPagedResponse
|
|
1749
1987
|
*/
|
|
1750
1988
|
pagination?: Pagination;
|
|
1751
1989
|
}
|
|
@@ -1763,16 +2001,16 @@ export interface ProjectDtoResponse {
|
|
|
1763
2001
|
data?: ProjectDto;
|
|
1764
2002
|
/**
|
|
1765
2003
|
*
|
|
1766
|
-
* @type {
|
|
2004
|
+
* @type {boolean}
|
|
1767
2005
|
* @memberof ProjectDtoResponse
|
|
1768
2006
|
*/
|
|
1769
|
-
|
|
2007
|
+
isSuccess?: boolean;
|
|
1770
2008
|
/**
|
|
1771
2009
|
*
|
|
1772
|
-
* @type {
|
|
2010
|
+
* @type {number}
|
|
1773
2011
|
* @memberof ProjectDtoResponse
|
|
1774
2012
|
*/
|
|
1775
|
-
|
|
2013
|
+
statusCode?: number | null;
|
|
1776
2014
|
/**
|
|
1777
2015
|
*
|
|
1778
2016
|
* @type {string}
|
|
@@ -1984,37 +2222,37 @@ export interface ProjectInvitationDto {
|
|
|
1984
2222
|
/**
|
|
1985
2223
|
*
|
|
1986
2224
|
* @export
|
|
1987
|
-
* @interface
|
|
2225
|
+
* @interface ProjectInvitationDtoPagedResponse
|
|
1988
2226
|
*/
|
|
1989
|
-
export interface
|
|
2227
|
+
export interface ProjectInvitationDtoPagedResponse {
|
|
1990
2228
|
/**
|
|
1991
2229
|
*
|
|
1992
2230
|
* @type {Array<ProjectInvitationDto>}
|
|
1993
|
-
* @memberof
|
|
2231
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
1994
2232
|
*/
|
|
1995
2233
|
data?: Array<ProjectInvitationDto> | null;
|
|
1996
2234
|
/**
|
|
1997
2235
|
*
|
|
1998
|
-
* @type {
|
|
1999
|
-
* @memberof
|
|
2236
|
+
* @type {boolean}
|
|
2237
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
2000
2238
|
*/
|
|
2001
|
-
|
|
2239
|
+
isSuccess?: boolean;
|
|
2002
2240
|
/**
|
|
2003
2241
|
*
|
|
2004
|
-
* @type {
|
|
2005
|
-
* @memberof
|
|
2242
|
+
* @type {number}
|
|
2243
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
2006
2244
|
*/
|
|
2007
|
-
|
|
2245
|
+
statusCode?: number | null;
|
|
2008
2246
|
/**
|
|
2009
2247
|
*
|
|
2010
2248
|
* @type {string}
|
|
2011
|
-
* @memberof
|
|
2249
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
2012
2250
|
*/
|
|
2013
2251
|
traceId?: string | null;
|
|
2014
2252
|
/**
|
|
2015
2253
|
*
|
|
2016
2254
|
* @type {Pagination}
|
|
2017
|
-
* @memberof
|
|
2255
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
2018
2256
|
*/
|
|
2019
2257
|
pagination?: Pagination;
|
|
2020
2258
|
}
|
|
@@ -2032,16 +2270,16 @@ export interface ProjectInvitationDtoResponse {
|
|
|
2032
2270
|
data?: ProjectInvitationDto;
|
|
2033
2271
|
/**
|
|
2034
2272
|
*
|
|
2035
|
-
* @type {
|
|
2273
|
+
* @type {boolean}
|
|
2036
2274
|
* @memberof ProjectInvitationDtoResponse
|
|
2037
2275
|
*/
|
|
2038
|
-
|
|
2276
|
+
isSuccess?: boolean;
|
|
2039
2277
|
/**
|
|
2040
2278
|
*
|
|
2041
|
-
* @type {
|
|
2279
|
+
* @type {number}
|
|
2042
2280
|
* @memberof ProjectInvitationDtoResponse
|
|
2043
2281
|
*/
|
|
2044
|
-
|
|
2282
|
+
statusCode?: number | null;
|
|
2045
2283
|
/**
|
|
2046
2284
|
*
|
|
2047
2285
|
* @type {string}
|
|
@@ -2101,7 +2339,7 @@ export interface ProjectMinimalDto {
|
|
|
2101
2339
|
*/
|
|
2102
2340
|
export interface ProjectQuotaDto {
|
|
2103
2341
|
/**
|
|
2104
|
-
*
|
|
2342
|
+
* Id of the project.
|
|
2105
2343
|
* @type {string}
|
|
2106
2344
|
* @memberof ProjectQuotaDto
|
|
2107
2345
|
*/
|
|
@@ -2137,7 +2375,7 @@ export interface ProjectQuotaDto {
|
|
|
2137
2375
|
*/
|
|
2138
2376
|
resourceType?: ResourceTypeMinimalDto;
|
|
2139
2377
|
/**
|
|
2140
|
-
*
|
|
2378
|
+
* Resources quota for all individual resources of a resource type in a selected project.
|
|
2141
2379
|
* @type {Array<ResourceQuotaDto>}
|
|
2142
2380
|
* @memberof ProjectQuotaDto
|
|
2143
2381
|
*/
|
|
@@ -2146,37 +2384,37 @@ export interface ProjectQuotaDto {
|
|
|
2146
2384
|
/**
|
|
2147
2385
|
*
|
|
2148
2386
|
* @export
|
|
2149
|
-
* @interface
|
|
2387
|
+
* @interface ProjectQuotaDtoPagedResponse
|
|
2150
2388
|
*/
|
|
2151
|
-
export interface
|
|
2389
|
+
export interface ProjectQuotaDtoPagedResponse {
|
|
2152
2390
|
/**
|
|
2153
2391
|
*
|
|
2154
2392
|
* @type {Array<ProjectQuotaDto>}
|
|
2155
|
-
* @memberof
|
|
2393
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
2156
2394
|
*/
|
|
2157
2395
|
data?: Array<ProjectQuotaDto> | null;
|
|
2158
2396
|
/**
|
|
2159
2397
|
*
|
|
2160
|
-
* @type {
|
|
2161
|
-
* @memberof
|
|
2398
|
+
* @type {boolean}
|
|
2399
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
2162
2400
|
*/
|
|
2163
|
-
|
|
2401
|
+
isSuccess?: boolean;
|
|
2164
2402
|
/**
|
|
2165
2403
|
*
|
|
2166
|
-
* @type {
|
|
2167
|
-
* @memberof
|
|
2404
|
+
* @type {number}
|
|
2405
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
2168
2406
|
*/
|
|
2169
|
-
|
|
2407
|
+
statusCode?: number | null;
|
|
2170
2408
|
/**
|
|
2171
2409
|
*
|
|
2172
2410
|
* @type {string}
|
|
2173
|
-
* @memberof
|
|
2411
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
2174
2412
|
*/
|
|
2175
2413
|
traceId?: string | null;
|
|
2176
2414
|
/**
|
|
2177
2415
|
*
|
|
2178
2416
|
* @type {Pagination}
|
|
2179
|
-
* @memberof
|
|
2417
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
2180
2418
|
*/
|
|
2181
2419
|
pagination?: Pagination;
|
|
2182
2420
|
}
|
|
@@ -2194,16 +2432,16 @@ export interface ProjectQuotaDtoResponse {
|
|
|
2194
2432
|
data?: ProjectQuotaDto;
|
|
2195
2433
|
/**
|
|
2196
2434
|
*
|
|
2197
|
-
* @type {
|
|
2435
|
+
* @type {boolean}
|
|
2198
2436
|
* @memberof ProjectQuotaDtoResponse
|
|
2199
2437
|
*/
|
|
2200
|
-
|
|
2438
|
+
isSuccess?: boolean;
|
|
2201
2439
|
/**
|
|
2202
2440
|
*
|
|
2203
|
-
* @type {
|
|
2441
|
+
* @type {number}
|
|
2204
2442
|
* @memberof ProjectQuotaDtoResponse
|
|
2205
2443
|
*/
|
|
2206
|
-
|
|
2444
|
+
statusCode?: number | null;
|
|
2207
2445
|
/**
|
|
2208
2446
|
*
|
|
2209
2447
|
* @type {string}
|
|
@@ -2230,6 +2468,25 @@ export interface ProjectQuotaForUpdateDto {
|
|
|
2230
2468
|
*/
|
|
2231
2469
|
maximum?: QuotaForManipulationDto;
|
|
2232
2470
|
}
|
|
2471
|
+
/**
|
|
2472
|
+
*
|
|
2473
|
+
* @export
|
|
2474
|
+
* @interface ProjectResourceMinimalDto
|
|
2475
|
+
*/
|
|
2476
|
+
export interface ProjectResourceMinimalDto {
|
|
2477
|
+
/**
|
|
2478
|
+
*
|
|
2479
|
+
* @type {string}
|
|
2480
|
+
* @memberof ProjectResourceMinimalDto
|
|
2481
|
+
*/
|
|
2482
|
+
resourceId?: string;
|
|
2483
|
+
/**
|
|
2484
|
+
*
|
|
2485
|
+
* @type {string}
|
|
2486
|
+
* @memberof ProjectResourceMinimalDto
|
|
2487
|
+
*/
|
|
2488
|
+
projectId?: string;
|
|
2489
|
+
}
|
|
2233
2490
|
/**
|
|
2234
2491
|
*
|
|
2235
2492
|
* @export
|
|
@@ -2264,37 +2521,37 @@ export interface ProjectRoleDto {
|
|
|
2264
2521
|
/**
|
|
2265
2522
|
*
|
|
2266
2523
|
* @export
|
|
2267
|
-
* @interface
|
|
2524
|
+
* @interface ProjectRoleDtoPagedResponse
|
|
2268
2525
|
*/
|
|
2269
|
-
export interface
|
|
2526
|
+
export interface ProjectRoleDtoPagedResponse {
|
|
2270
2527
|
/**
|
|
2271
2528
|
*
|
|
2272
2529
|
* @type {Array<ProjectRoleDto>}
|
|
2273
|
-
* @memberof
|
|
2530
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
2274
2531
|
*/
|
|
2275
2532
|
data?: Array<ProjectRoleDto> | null;
|
|
2276
2533
|
/**
|
|
2277
2534
|
*
|
|
2278
|
-
* @type {
|
|
2279
|
-
* @memberof
|
|
2535
|
+
* @type {boolean}
|
|
2536
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
2280
2537
|
*/
|
|
2281
|
-
|
|
2538
|
+
isSuccess?: boolean;
|
|
2282
2539
|
/**
|
|
2283
2540
|
*
|
|
2284
|
-
* @type {
|
|
2285
|
-
* @memberof
|
|
2541
|
+
* @type {number}
|
|
2542
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
2286
2543
|
*/
|
|
2287
|
-
|
|
2544
|
+
statusCode?: number | null;
|
|
2288
2545
|
/**
|
|
2289
2546
|
*
|
|
2290
2547
|
* @type {string}
|
|
2291
|
-
* @memberof
|
|
2548
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
2292
2549
|
*/
|
|
2293
2550
|
traceId?: string | null;
|
|
2294
2551
|
/**
|
|
2295
2552
|
*
|
|
2296
2553
|
* @type {Pagination}
|
|
2297
|
-
* @memberof
|
|
2554
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
2298
2555
|
*/
|
|
2299
2556
|
pagination?: Pagination;
|
|
2300
2557
|
}
|
|
@@ -2312,16 +2569,16 @@ export interface ProjectRoleDtoResponse {
|
|
|
2312
2569
|
data?: ProjectRoleDto;
|
|
2313
2570
|
/**
|
|
2314
2571
|
*
|
|
2315
|
-
* @type {
|
|
2572
|
+
* @type {boolean}
|
|
2316
2573
|
* @memberof ProjectRoleDtoResponse
|
|
2317
2574
|
*/
|
|
2318
|
-
|
|
2575
|
+
isSuccess?: boolean;
|
|
2319
2576
|
/**
|
|
2320
2577
|
*
|
|
2321
|
-
* @type {
|
|
2578
|
+
* @type {number}
|
|
2322
2579
|
* @memberof ProjectRoleDtoResponse
|
|
2323
2580
|
*/
|
|
2324
|
-
|
|
2581
|
+
statusCode?: number | null;
|
|
2325
2582
|
/**
|
|
2326
2583
|
*
|
|
2327
2584
|
* @type {string}
|
|
@@ -2361,6 +2618,31 @@ export interface ProjectRoleForProjectManipulationDto {
|
|
|
2361
2618
|
*/
|
|
2362
2619
|
roleId: string;
|
|
2363
2620
|
}
|
|
2621
|
+
/**
|
|
2622
|
+
*
|
|
2623
|
+
* @export
|
|
2624
|
+
* @interface ProjectRoleMinimalDto
|
|
2625
|
+
*/
|
|
2626
|
+
export interface ProjectRoleMinimalDto {
|
|
2627
|
+
/**
|
|
2628
|
+
*
|
|
2629
|
+
* @type {string}
|
|
2630
|
+
* @memberof ProjectRoleMinimalDto
|
|
2631
|
+
*/
|
|
2632
|
+
projectId?: string;
|
|
2633
|
+
/**
|
|
2634
|
+
*
|
|
2635
|
+
* @type {string}
|
|
2636
|
+
* @memberof ProjectRoleMinimalDto
|
|
2637
|
+
*/
|
|
2638
|
+
userId?: string;
|
|
2639
|
+
/**
|
|
2640
|
+
*
|
|
2641
|
+
* @type {string}
|
|
2642
|
+
* @memberof ProjectRoleMinimalDto
|
|
2643
|
+
*/
|
|
2644
|
+
roleId?: string;
|
|
2645
|
+
}
|
|
2364
2646
|
/**
|
|
2365
2647
|
*
|
|
2366
2648
|
* @export
|
|
@@ -2418,16 +2700,16 @@ export interface PublicUserDtoIEnumerableResponse {
|
|
|
2418
2700
|
data?: Array<PublicUserDto> | null;
|
|
2419
2701
|
/**
|
|
2420
2702
|
*
|
|
2421
|
-
* @type {
|
|
2703
|
+
* @type {boolean}
|
|
2422
2704
|
* @memberof PublicUserDtoIEnumerableResponse
|
|
2423
2705
|
*/
|
|
2424
|
-
|
|
2706
|
+
isSuccess?: boolean;
|
|
2425
2707
|
/**
|
|
2426
2708
|
*
|
|
2427
|
-
* @type {
|
|
2709
|
+
* @type {number}
|
|
2428
2710
|
* @memberof PublicUserDtoIEnumerableResponse
|
|
2429
2711
|
*/
|
|
2430
|
-
|
|
2712
|
+
statusCode?: number | null;
|
|
2431
2713
|
/**
|
|
2432
2714
|
*
|
|
2433
2715
|
* @type {string}
|
|
@@ -2455,13 +2737,13 @@ export interface QuotaDto {
|
|
|
2455
2737
|
unit: QuotaUnit;
|
|
2456
2738
|
}
|
|
2457
2739
|
/**
|
|
2458
|
-
*
|
|
2740
|
+
* Represents the data transfer object for manipulating a quota value.
|
|
2459
2741
|
* @export
|
|
2460
2742
|
* @interface QuotaForManipulationDto
|
|
2461
2743
|
*/
|
|
2462
2744
|
export interface QuotaForManipulationDto {
|
|
2463
2745
|
/**
|
|
2464
|
-
*
|
|
2746
|
+
* Numerical value of the quota as a positive System.Int64.
|
|
2465
2747
|
* @type {number}
|
|
2466
2748
|
* @memberof QuotaForManipulationDto
|
|
2467
2749
|
*/
|
|
@@ -2474,7 +2756,7 @@ export interface QuotaForManipulationDto {
|
|
|
2474
2756
|
unit: QuotaUnit;
|
|
2475
2757
|
}
|
|
2476
2758
|
/**
|
|
2477
|
-
*
|
|
2759
|
+
* Specifies the unit of quota.
|
|
2478
2760
|
* @export
|
|
2479
2761
|
* @enum {string}
|
|
2480
2762
|
*/
|
|
@@ -2505,6 +2787,37 @@ export interface RdfDefinitionDto {
|
|
|
2505
2787
|
*/
|
|
2506
2788
|
type?: string | null;
|
|
2507
2789
|
}
|
|
2790
|
+
/**
|
|
2791
|
+
*
|
|
2792
|
+
* @export
|
|
2793
|
+
* @interface RdfDefinitionDtoResponse
|
|
2794
|
+
*/
|
|
2795
|
+
export interface RdfDefinitionDtoResponse {
|
|
2796
|
+
/**
|
|
2797
|
+
*
|
|
2798
|
+
* @type {RdfDefinitionDto}
|
|
2799
|
+
* @memberof RdfDefinitionDtoResponse
|
|
2800
|
+
*/
|
|
2801
|
+
data?: RdfDefinitionDto;
|
|
2802
|
+
/**
|
|
2803
|
+
*
|
|
2804
|
+
* @type {boolean}
|
|
2805
|
+
* @memberof RdfDefinitionDtoResponse
|
|
2806
|
+
*/
|
|
2807
|
+
isSuccess?: boolean;
|
|
2808
|
+
/**
|
|
2809
|
+
*
|
|
2810
|
+
* @type {number}
|
|
2811
|
+
* @memberof RdfDefinitionDtoResponse
|
|
2812
|
+
*/
|
|
2813
|
+
statusCode?: number | null;
|
|
2814
|
+
/**
|
|
2815
|
+
*
|
|
2816
|
+
* @type {string}
|
|
2817
|
+
* @memberof RdfDefinitionDtoResponse
|
|
2818
|
+
*/
|
|
2819
|
+
traceId?: string | null;
|
|
2820
|
+
}
|
|
2508
2821
|
/**
|
|
2509
2822
|
*
|
|
2510
2823
|
* @export
|
|
@@ -2525,7 +2838,7 @@ export interface RdfDefinitionForManipulationDto {
|
|
|
2525
2838
|
type: RdfFormat;
|
|
2526
2839
|
}
|
|
2527
2840
|
/**
|
|
2528
|
-
*
|
|
2841
|
+
* Specifies the RDF <i>(Resource Description Framework)</i> format.
|
|
2529
2842
|
* @export
|
|
2530
2843
|
* @enum {string}
|
|
2531
2844
|
*/
|
|
@@ -2553,7 +2866,7 @@ export interface RdsOptionsDto {
|
|
|
2553
2866
|
size?: QuotaDto;
|
|
2554
2867
|
}
|
|
2555
2868
|
/**
|
|
2556
|
-
*
|
|
2869
|
+
* Represents the data transfer object for manipulating RDS Web resource type options.
|
|
2557
2870
|
* @export
|
|
2558
2871
|
* @interface RdsResourceTypeOptionsForManipulationDto
|
|
2559
2872
|
*/
|
|
@@ -2586,108 +2899,264 @@ export interface RdsS3OptionsDto {
|
|
|
2586
2899
|
/**
|
|
2587
2900
|
*
|
|
2588
2901
|
* @type {string}
|
|
2589
|
-
* @memberof RdsS3OptionsDto
|
|
2902
|
+
* @memberof RdsS3OptionsDto
|
|
2903
|
+
*/
|
|
2904
|
+
secretKeyRead?: string;
|
|
2905
|
+
/**
|
|
2906
|
+
*
|
|
2907
|
+
* @type {string}
|
|
2908
|
+
* @memberof RdsS3OptionsDto
|
|
2909
|
+
*/
|
|
2910
|
+
accessKeyWrite?: string;
|
|
2911
|
+
/**
|
|
2912
|
+
*
|
|
2913
|
+
* @type {string}
|
|
2914
|
+
* @memberof RdsS3OptionsDto
|
|
2915
|
+
*/
|
|
2916
|
+
secretKeyWrite?: string;
|
|
2917
|
+
/**
|
|
2918
|
+
*
|
|
2919
|
+
* @type {string}
|
|
2920
|
+
* @memberof RdsS3OptionsDto
|
|
2921
|
+
*/
|
|
2922
|
+
endpoint?: string;
|
|
2923
|
+
/**
|
|
2924
|
+
*
|
|
2925
|
+
* @type {QuotaDto}
|
|
2926
|
+
* @memberof RdsS3OptionsDto
|
|
2927
|
+
*/
|
|
2928
|
+
size?: QuotaDto;
|
|
2929
|
+
}
|
|
2930
|
+
/**
|
|
2931
|
+
* Represents the data transfer object for manipulating RDS S3 resource type options.
|
|
2932
|
+
* @export
|
|
2933
|
+
* @interface RdsS3ResourceTypeOptionsForManipulationDto
|
|
2934
|
+
*/
|
|
2935
|
+
export interface RdsS3ResourceTypeOptionsForManipulationDto {
|
|
2936
|
+
/**
|
|
2937
|
+
*
|
|
2938
|
+
* @type {QuotaForManipulationDto}
|
|
2939
|
+
* @memberof RdsS3ResourceTypeOptionsForManipulationDto
|
|
2940
|
+
*/
|
|
2941
|
+
quota?: QuotaForManipulationDto;
|
|
2942
|
+
}
|
|
2943
|
+
/**
|
|
2944
|
+
*
|
|
2945
|
+
* @export
|
|
2946
|
+
* @interface RdsS3WormOptionsDto
|
|
2947
|
+
*/
|
|
2948
|
+
export interface RdsS3WormOptionsDto {
|
|
2949
|
+
/**
|
|
2950
|
+
*
|
|
2951
|
+
* @type {string}
|
|
2952
|
+
* @memberof RdsS3WormOptionsDto
|
|
2953
|
+
*/
|
|
2954
|
+
bucketName?: string;
|
|
2955
|
+
/**
|
|
2956
|
+
*
|
|
2957
|
+
* @type {string}
|
|
2958
|
+
* @memberof RdsS3WormOptionsDto
|
|
2959
|
+
*/
|
|
2960
|
+
accessKeyRead?: string;
|
|
2961
|
+
/**
|
|
2962
|
+
*
|
|
2963
|
+
* @type {string}
|
|
2964
|
+
* @memberof RdsS3WormOptionsDto
|
|
2965
|
+
*/
|
|
2966
|
+
secretKeyRead?: string;
|
|
2967
|
+
/**
|
|
2968
|
+
*
|
|
2969
|
+
* @type {string}
|
|
2970
|
+
* @memberof RdsS3WormOptionsDto
|
|
2971
|
+
*/
|
|
2972
|
+
accessKeyWrite?: string;
|
|
2973
|
+
/**
|
|
2974
|
+
*
|
|
2975
|
+
* @type {string}
|
|
2976
|
+
* @memberof RdsS3WormOptionsDto
|
|
2977
|
+
*/
|
|
2978
|
+
secretKeyWrite?: string;
|
|
2979
|
+
/**
|
|
2980
|
+
*
|
|
2981
|
+
* @type {string}
|
|
2982
|
+
* @memberof RdsS3WormOptionsDto
|
|
2983
|
+
*/
|
|
2984
|
+
endpoint?: string;
|
|
2985
|
+
/**
|
|
2986
|
+
*
|
|
2987
|
+
* @type {QuotaDto}
|
|
2988
|
+
* @memberof RdsS3WormOptionsDto
|
|
2989
|
+
*/
|
|
2990
|
+
size?: QuotaDto;
|
|
2991
|
+
}
|
|
2992
|
+
/**
|
|
2993
|
+
* Represents the data transfer object for manipulating RDS S3 WORM resource type options.
|
|
2994
|
+
* @export
|
|
2995
|
+
* @interface RdsS3WormResourceTypeOptionsForManipulationDto
|
|
2996
|
+
*/
|
|
2997
|
+
export interface RdsS3WormResourceTypeOptionsForManipulationDto {
|
|
2998
|
+
/**
|
|
2999
|
+
*
|
|
3000
|
+
* @type {QuotaForManipulationDto}
|
|
3001
|
+
* @memberof RdsS3WormResourceTypeOptionsForManipulationDto
|
|
3002
|
+
*/
|
|
3003
|
+
quota?: QuotaForManipulationDto;
|
|
3004
|
+
}
|
|
3005
|
+
/**
|
|
3006
|
+
*
|
|
3007
|
+
* @export
|
|
3008
|
+
* @interface ResourceAdminDto
|
|
3009
|
+
*/
|
|
3010
|
+
export interface ResourceAdminDto {
|
|
3011
|
+
/**
|
|
3012
|
+
*
|
|
3013
|
+
* @type {string}
|
|
3014
|
+
* @memberof ResourceAdminDto
|
|
3015
|
+
*/
|
|
3016
|
+
id?: string;
|
|
3017
|
+
/**
|
|
3018
|
+
*
|
|
3019
|
+
* @type {string}
|
|
3020
|
+
* @memberof ResourceAdminDto
|
|
3021
|
+
*/
|
|
3022
|
+
pid?: string;
|
|
3023
|
+
/**
|
|
3024
|
+
*
|
|
3025
|
+
* @type {ResourceTypeDto}
|
|
3026
|
+
* @memberof ResourceAdminDto
|
|
3027
|
+
*/
|
|
3028
|
+
type?: ResourceTypeDto;
|
|
3029
|
+
/**
|
|
3030
|
+
*
|
|
3031
|
+
* @type {string}
|
|
3032
|
+
* @memberof ResourceAdminDto
|
|
3033
|
+
*/
|
|
3034
|
+
name?: string;
|
|
3035
|
+
/**
|
|
3036
|
+
*
|
|
3037
|
+
* @type {string}
|
|
3038
|
+
* @memberof ResourceAdminDto
|
|
3039
|
+
*/
|
|
3040
|
+
displayName?: string;
|
|
3041
|
+
/**
|
|
3042
|
+
*
|
|
3043
|
+
* @type {string}
|
|
3044
|
+
* @memberof ResourceAdminDto
|
|
2590
3045
|
*/
|
|
2591
|
-
|
|
3046
|
+
description?: string;
|
|
2592
3047
|
/**
|
|
2593
3048
|
*
|
|
2594
|
-
* @type {string}
|
|
2595
|
-
* @memberof
|
|
3049
|
+
* @type {Array<string>}
|
|
3050
|
+
* @memberof ResourceAdminDto
|
|
2596
3051
|
*/
|
|
2597
|
-
|
|
3052
|
+
keywords?: Array<string> | null;
|
|
2598
3053
|
/**
|
|
2599
3054
|
*
|
|
2600
|
-
* @type {
|
|
2601
|
-
* @memberof
|
|
3055
|
+
* @type {LicenseDto}
|
|
3056
|
+
* @memberof ResourceAdminDto
|
|
2602
3057
|
*/
|
|
2603
|
-
|
|
3058
|
+
license?: LicenseDto;
|
|
2604
3059
|
/**
|
|
2605
3060
|
*
|
|
2606
3061
|
* @type {string}
|
|
2607
|
-
* @memberof
|
|
3062
|
+
* @memberof ResourceAdminDto
|
|
2608
3063
|
*/
|
|
2609
|
-
|
|
3064
|
+
usageRights?: string | null;
|
|
2610
3065
|
/**
|
|
2611
3066
|
*
|
|
2612
|
-
* @type {
|
|
2613
|
-
* @memberof
|
|
3067
|
+
* @type {ApplicationProfileMinimalDto}
|
|
3068
|
+
* @memberof ResourceAdminDto
|
|
2614
3069
|
*/
|
|
2615
|
-
|
|
2616
|
-
}
|
|
2617
|
-
/**
|
|
2618
|
-
*
|
|
2619
|
-
* @export
|
|
2620
|
-
* @interface RdsS3ResourceTypeOptionsForManipulationDto
|
|
2621
|
-
*/
|
|
2622
|
-
export interface RdsS3ResourceTypeOptionsForManipulationDto {
|
|
3070
|
+
applicationProfile?: ApplicationProfileMinimalDto;
|
|
2623
3071
|
/**
|
|
2624
3072
|
*
|
|
2625
|
-
* @type {
|
|
2626
|
-
* @memberof
|
|
3073
|
+
* @type {{ [key: string]: { [key: string]: Array<FixedValueForResourceManipulationDto>; }; }}
|
|
3074
|
+
* @memberof ResourceAdminDto
|
|
2627
3075
|
*/
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
* @interface RdsS3WormOptionsDto
|
|
2634
|
-
*/
|
|
2635
|
-
export interface RdsS3WormOptionsDto {
|
|
3076
|
+
fixedValues?: {
|
|
3077
|
+
[key: string]: {
|
|
3078
|
+
[key: string]: Array<FixedValueForResourceManipulationDto>;
|
|
3079
|
+
};
|
|
3080
|
+
};
|
|
2636
3081
|
/**
|
|
2637
3082
|
*
|
|
2638
|
-
* @type {
|
|
2639
|
-
* @memberof
|
|
3083
|
+
* @type {Array<DisciplineDto>}
|
|
3084
|
+
* @memberof ResourceAdminDto
|
|
2640
3085
|
*/
|
|
2641
|
-
|
|
3086
|
+
disciplines?: Array<DisciplineDto>;
|
|
2642
3087
|
/**
|
|
2643
3088
|
*
|
|
2644
|
-
* @type {
|
|
2645
|
-
* @memberof
|
|
3089
|
+
* @type {VisibilityDto}
|
|
3090
|
+
* @memberof ResourceAdminDto
|
|
2646
3091
|
*/
|
|
2647
|
-
|
|
3092
|
+
visibility?: VisibilityDto;
|
|
2648
3093
|
/**
|
|
2649
3094
|
*
|
|
2650
3095
|
* @type {string}
|
|
2651
|
-
* @memberof
|
|
3096
|
+
* @memberof ResourceAdminDto
|
|
2652
3097
|
*/
|
|
2653
|
-
|
|
3098
|
+
dateCreated?: string | null;
|
|
2654
3099
|
/**
|
|
2655
3100
|
*
|
|
2656
3101
|
* @type {string}
|
|
2657
|
-
* @memberof
|
|
3102
|
+
* @memberof ResourceAdminDto
|
|
2658
3103
|
*/
|
|
2659
|
-
|
|
3104
|
+
creator?: string | null;
|
|
2660
3105
|
/**
|
|
2661
3106
|
*
|
|
2662
|
-
* @type {
|
|
2663
|
-
* @memberof
|
|
3107
|
+
* @type {boolean}
|
|
3108
|
+
* @memberof ResourceAdminDto
|
|
2664
3109
|
*/
|
|
2665
|
-
|
|
3110
|
+
archived?: boolean;
|
|
2666
3111
|
/**
|
|
2667
3112
|
*
|
|
2668
|
-
* @type {
|
|
2669
|
-
* @memberof
|
|
3113
|
+
* @type {boolean}
|
|
3114
|
+
* @memberof ResourceAdminDto
|
|
2670
3115
|
*/
|
|
2671
|
-
|
|
3116
|
+
deleted?: boolean;
|
|
2672
3117
|
/**
|
|
2673
3118
|
*
|
|
2674
|
-
* @type {
|
|
2675
|
-
* @memberof
|
|
3119
|
+
* @type {Array<ProjectResourceMinimalDto>}
|
|
3120
|
+
* @memberof ResourceAdminDto
|
|
2676
3121
|
*/
|
|
2677
|
-
|
|
3122
|
+
projectResources?: Array<ProjectResourceMinimalDto>;
|
|
2678
3123
|
}
|
|
2679
3124
|
/**
|
|
2680
3125
|
*
|
|
2681
3126
|
* @export
|
|
2682
|
-
* @interface
|
|
3127
|
+
* @interface ResourceAdminDtoIEnumerablePagedResponse
|
|
2683
3128
|
*/
|
|
2684
|
-
export interface
|
|
3129
|
+
export interface ResourceAdminDtoIEnumerablePagedResponse {
|
|
2685
3130
|
/**
|
|
2686
3131
|
*
|
|
2687
|
-
* @type {
|
|
2688
|
-
* @memberof
|
|
3132
|
+
* @type {Array<Array<ResourceAdminDto>>}
|
|
3133
|
+
* @memberof ResourceAdminDtoIEnumerablePagedResponse
|
|
2689
3134
|
*/
|
|
2690
|
-
|
|
3135
|
+
data?: Array<Array<ResourceAdminDto>> | null;
|
|
3136
|
+
/**
|
|
3137
|
+
*
|
|
3138
|
+
* @type {boolean}
|
|
3139
|
+
* @memberof ResourceAdminDtoIEnumerablePagedResponse
|
|
3140
|
+
*/
|
|
3141
|
+
isSuccess?: boolean;
|
|
3142
|
+
/**
|
|
3143
|
+
*
|
|
3144
|
+
* @type {number}
|
|
3145
|
+
* @memberof ResourceAdminDtoIEnumerablePagedResponse
|
|
3146
|
+
*/
|
|
3147
|
+
statusCode?: number | null;
|
|
3148
|
+
/**
|
|
3149
|
+
*
|
|
3150
|
+
* @type {string}
|
|
3151
|
+
* @memberof ResourceAdminDtoIEnumerablePagedResponse
|
|
3152
|
+
*/
|
|
3153
|
+
traceId?: string | null;
|
|
3154
|
+
/**
|
|
3155
|
+
*
|
|
3156
|
+
* @type {Pagination}
|
|
3157
|
+
* @memberof ResourceAdminDtoIEnumerablePagedResponse
|
|
3158
|
+
*/
|
|
3159
|
+
pagination?: Pagination;
|
|
2691
3160
|
}
|
|
2692
3161
|
/**
|
|
2693
3162
|
*
|
|
@@ -2696,7 +3165,7 @@ export interface RdsS3WormResourceTypeOptionsForManipulationDto {
|
|
|
2696
3165
|
*/
|
|
2697
3166
|
export interface ResourceContentPageColumnsDto {
|
|
2698
3167
|
/**
|
|
2699
|
-
*
|
|
3168
|
+
* Set of columns that should always be displayed in the content view
|
|
2700
3169
|
* @type {Set<string>}
|
|
2701
3170
|
* @memberof ResourceContentPageColumnsDto
|
|
2702
3171
|
*/
|
|
@@ -2709,7 +3178,7 @@ export interface ResourceContentPageColumnsDto {
|
|
|
2709
3178
|
*/
|
|
2710
3179
|
export interface ResourceContentPageDto {
|
|
2711
3180
|
/**
|
|
2712
|
-
*
|
|
3181
|
+
* Resource is read-only
|
|
2713
3182
|
* @type {boolean}
|
|
2714
3183
|
* @memberof ResourceContentPageDto
|
|
2715
3184
|
*/
|
|
@@ -2747,13 +3216,13 @@ export interface ResourceContentPageEntriesViewDto {
|
|
|
2747
3216
|
*/
|
|
2748
3217
|
export interface ResourceContentPageMetadataViewDto {
|
|
2749
3218
|
/**
|
|
2750
|
-
*
|
|
3219
|
+
* A data URL can be provided and is editable
|
|
2751
3220
|
* @type {boolean}
|
|
2752
3221
|
* @memberof ResourceContentPageMetadataViewDto
|
|
2753
3222
|
*/
|
|
2754
3223
|
editableDataUrl?: boolean;
|
|
2755
3224
|
/**
|
|
2756
|
-
*
|
|
3225
|
+
* A key can be provided and is editable
|
|
2757
3226
|
* @type {boolean}
|
|
2758
3227
|
* @memberof ResourceContentPageMetadataViewDto
|
|
2759
3228
|
*/
|
|
@@ -2766,7 +3235,7 @@ export interface ResourceContentPageMetadataViewDto {
|
|
|
2766
3235
|
*/
|
|
2767
3236
|
export interface ResourceCreationPageDto {
|
|
2768
3237
|
/**
|
|
2769
|
-
*
|
|
3238
|
+
* List of Lists containing all the resource type specific components for the steps in the resource creation page
|
|
2770
3239
|
* @type {Array<Array<string>>}
|
|
2771
3240
|
* @memberof ResourceCreationPageDto
|
|
2772
3241
|
*/
|
|
@@ -2882,37 +3351,37 @@ export interface ResourceDto {
|
|
|
2882
3351
|
/**
|
|
2883
3352
|
*
|
|
2884
3353
|
* @export
|
|
2885
|
-
* @interface
|
|
3354
|
+
* @interface ResourceDtoPagedResponse
|
|
2886
3355
|
*/
|
|
2887
|
-
export interface
|
|
3356
|
+
export interface ResourceDtoPagedResponse {
|
|
2888
3357
|
/**
|
|
2889
3358
|
*
|
|
2890
3359
|
* @type {Array<ResourceDto>}
|
|
2891
|
-
* @memberof
|
|
3360
|
+
* @memberof ResourceDtoPagedResponse
|
|
2892
3361
|
*/
|
|
2893
3362
|
data?: Array<ResourceDto> | null;
|
|
2894
3363
|
/**
|
|
2895
3364
|
*
|
|
2896
|
-
* @type {
|
|
2897
|
-
* @memberof
|
|
3365
|
+
* @type {boolean}
|
|
3366
|
+
* @memberof ResourceDtoPagedResponse
|
|
2898
3367
|
*/
|
|
2899
|
-
|
|
3368
|
+
isSuccess?: boolean;
|
|
2900
3369
|
/**
|
|
2901
3370
|
*
|
|
2902
|
-
* @type {
|
|
2903
|
-
* @memberof
|
|
3371
|
+
* @type {number}
|
|
3372
|
+
* @memberof ResourceDtoPagedResponse
|
|
2904
3373
|
*/
|
|
2905
|
-
|
|
3374
|
+
statusCode?: number | null;
|
|
2906
3375
|
/**
|
|
2907
3376
|
*
|
|
2908
3377
|
* @type {string}
|
|
2909
|
-
* @memberof
|
|
3378
|
+
* @memberof ResourceDtoPagedResponse
|
|
2910
3379
|
*/
|
|
2911
3380
|
traceId?: string | null;
|
|
2912
3381
|
/**
|
|
2913
3382
|
*
|
|
2914
3383
|
* @type {Pagination}
|
|
2915
|
-
* @memberof
|
|
3384
|
+
* @memberof ResourceDtoPagedResponse
|
|
2916
3385
|
*/
|
|
2917
3386
|
pagination?: Pagination;
|
|
2918
3387
|
}
|
|
@@ -2930,16 +3399,16 @@ export interface ResourceDtoResponse {
|
|
|
2930
3399
|
data?: ResourceDto;
|
|
2931
3400
|
/**
|
|
2932
3401
|
*
|
|
2933
|
-
* @type {
|
|
3402
|
+
* @type {boolean}
|
|
2934
3403
|
* @memberof ResourceDtoResponse
|
|
2935
3404
|
*/
|
|
2936
|
-
|
|
3405
|
+
isSuccess?: boolean;
|
|
2937
3406
|
/**
|
|
2938
3407
|
*
|
|
2939
|
-
* @type {
|
|
3408
|
+
* @type {number}
|
|
2940
3409
|
* @memberof ResourceDtoResponse
|
|
2941
3410
|
*/
|
|
2942
|
-
|
|
3411
|
+
statusCode?: number | null;
|
|
2943
3412
|
/**
|
|
2944
3413
|
*
|
|
2945
3414
|
* @type {string}
|
|
@@ -2948,7 +3417,7 @@ export interface ResourceDtoResponse {
|
|
|
2948
3417
|
traceId?: string | null;
|
|
2949
3418
|
}
|
|
2950
3419
|
/**
|
|
2951
|
-
*
|
|
3420
|
+
* Represents the data transfer object for creating a resource.
|
|
2952
3421
|
* @export
|
|
2953
3422
|
* @interface ResourceForCreationDto
|
|
2954
3423
|
*/
|
|
@@ -3031,7 +3500,7 @@ export interface ResourceForCreationDto {
|
|
|
3031
3500
|
resourceTypeOptions: ResourceTypeOptionsForCreationDto;
|
|
3032
3501
|
}
|
|
3033
3502
|
/**
|
|
3034
|
-
*
|
|
3503
|
+
* Represents the data transfer object for updating a resource.
|
|
3035
3504
|
* @export
|
|
3036
3505
|
* @interface ResourceForUpdateDto
|
|
3037
3506
|
*/
|
|
@@ -3165,16 +3634,16 @@ export interface ResourceQuotaDtoResponse {
|
|
|
3165
3634
|
data?: ResourceQuotaDto;
|
|
3166
3635
|
/**
|
|
3167
3636
|
*
|
|
3168
|
-
* @type {
|
|
3637
|
+
* @type {boolean}
|
|
3169
3638
|
* @memberof ResourceQuotaDtoResponse
|
|
3170
3639
|
*/
|
|
3171
|
-
|
|
3640
|
+
isSuccess?: boolean;
|
|
3172
3641
|
/**
|
|
3173
3642
|
*
|
|
3174
|
-
* @type {
|
|
3643
|
+
* @type {number}
|
|
3175
3644
|
* @memberof ResourceQuotaDtoResponse
|
|
3176
3645
|
*/
|
|
3177
|
-
|
|
3646
|
+
statusCode?: number | null;
|
|
3178
3647
|
/**
|
|
3179
3648
|
*
|
|
3180
3649
|
* @type {string}
|
|
@@ -3220,19 +3689,19 @@ export interface ResourceTypeDto {
|
|
|
3220
3689
|
*/
|
|
3221
3690
|
export interface ResourceTypeInformationDto {
|
|
3222
3691
|
/**
|
|
3223
|
-
*
|
|
3692
|
+
* Guid of the resource type
|
|
3224
3693
|
* @type {string}
|
|
3225
3694
|
* @memberof ResourceTypeInformationDto
|
|
3226
3695
|
*/
|
|
3227
3696
|
id?: string;
|
|
3228
3697
|
/**
|
|
3229
|
-
*
|
|
3698
|
+
* General resource type
|
|
3230
3699
|
* @type {string}
|
|
3231
3700
|
* @memberof ResourceTypeInformationDto
|
|
3232
3701
|
*/
|
|
3233
3702
|
generalType?: string | null;
|
|
3234
3703
|
/**
|
|
3235
|
-
*
|
|
3704
|
+
* Specific resource type
|
|
3236
3705
|
* @type {string}
|
|
3237
3706
|
* @memberof ResourceTypeInformationDto
|
|
3238
3707
|
*/
|
|
@@ -3244,79 +3713,79 @@ export interface ResourceTypeInformationDto {
|
|
|
3244
3713
|
*/
|
|
3245
3714
|
status?: ResourceTypeStatus;
|
|
3246
3715
|
/**
|
|
3247
|
-
*
|
|
3716
|
+
* The resource type supports creation
|
|
3248
3717
|
* @type {boolean}
|
|
3249
3718
|
* @memberof ResourceTypeInformationDto
|
|
3250
3719
|
*/
|
|
3251
3720
|
canCreate?: boolean;
|
|
3252
3721
|
/**
|
|
3253
|
-
*
|
|
3722
|
+
* The resource type supports reading
|
|
3254
3723
|
* @type {boolean}
|
|
3255
3724
|
* @memberof ResourceTypeInformationDto
|
|
3256
3725
|
*/
|
|
3257
3726
|
canRead?: boolean;
|
|
3258
3727
|
/**
|
|
3259
|
-
*
|
|
3728
|
+
* The resource type supports read-only
|
|
3260
3729
|
* @type {boolean}
|
|
3261
3730
|
* @memberof ResourceTypeInformationDto
|
|
3262
3731
|
*/
|
|
3263
3732
|
canSetResourceReadonly?: boolean;
|
|
3264
3733
|
/**
|
|
3265
|
-
*
|
|
3734
|
+
* The resource type supports updating
|
|
3266
3735
|
* @type {boolean}
|
|
3267
3736
|
* @memberof ResourceTypeInformationDto
|
|
3268
3737
|
*/
|
|
3269
3738
|
canUpdate?: boolean;
|
|
3270
3739
|
/**
|
|
3271
|
-
*
|
|
3740
|
+
* The resource type supports updating (not an Object)
|
|
3272
3741
|
* @type {boolean}
|
|
3273
3742
|
* @memberof ResourceTypeInformationDto
|
|
3274
3743
|
*/
|
|
3275
3744
|
canUpdateResource?: boolean;
|
|
3276
3745
|
/**
|
|
3277
|
-
*
|
|
3746
|
+
* The resource type supports deletion
|
|
3278
3747
|
* @type {boolean}
|
|
3279
3748
|
* @memberof ResourceTypeInformationDto
|
|
3280
3749
|
*/
|
|
3281
3750
|
canDelete?: boolean;
|
|
3282
3751
|
/**
|
|
3283
|
-
*
|
|
3752
|
+
* The resource type supports deletion (not an Object)
|
|
3284
3753
|
* @type {boolean}
|
|
3285
3754
|
* @memberof ResourceTypeInformationDto
|
|
3286
3755
|
*/
|
|
3287
3756
|
canDeleteResource?: boolean;
|
|
3288
3757
|
/**
|
|
3289
|
-
*
|
|
3758
|
+
* The resource type supports listing
|
|
3290
3759
|
* @type {boolean}
|
|
3291
3760
|
* @memberof ResourceTypeInformationDto
|
|
3292
3761
|
*/
|
|
3293
3762
|
canList?: boolean;
|
|
3294
3763
|
/**
|
|
3295
|
-
*
|
|
3764
|
+
* The resource type supports linking
|
|
3296
3765
|
* @type {boolean}
|
|
3297
3766
|
* @memberof ResourceTypeInformationDto
|
|
3298
3767
|
*/
|
|
3299
3768
|
canCreateLinks?: boolean;
|
|
3300
3769
|
/**
|
|
3301
|
-
*
|
|
3770
|
+
* The resource type is archived
|
|
3302
3771
|
* @type {boolean}
|
|
3303
3772
|
* @memberof ResourceTypeInformationDto
|
|
3304
3773
|
*/
|
|
3305
3774
|
isArchived?: boolean;
|
|
3306
3775
|
/**
|
|
3307
|
-
*
|
|
3776
|
+
* Value to see, if the resource type supports quota
|
|
3308
3777
|
* @type {boolean}
|
|
3309
3778
|
* @memberof ResourceTypeInformationDto
|
|
3310
3779
|
*/
|
|
3311
3780
|
isQuotaAvailable?: boolean;
|
|
3312
3781
|
/**
|
|
3313
|
-
*
|
|
3782
|
+
* Value to see, if the resource type quota can be changed
|
|
3314
3783
|
* @type {boolean}
|
|
3315
3784
|
* @memberof ResourceTypeInformationDto
|
|
3316
3785
|
*/
|
|
3317
3786
|
isQuotaAdjustable?: boolean;
|
|
3318
3787
|
/**
|
|
3319
|
-
*
|
|
3788
|
+
* The resource type is enabled
|
|
3320
3789
|
* @type {boolean}
|
|
3321
3790
|
* @memberof ResourceTypeInformationDto
|
|
3322
3791
|
*/
|
|
@@ -3348,16 +3817,16 @@ export interface ResourceTypeInformationDtoIEnumerableResponse {
|
|
|
3348
3817
|
data?: Array<ResourceTypeInformationDto> | null;
|
|
3349
3818
|
/**
|
|
3350
3819
|
*
|
|
3351
|
-
* @type {
|
|
3820
|
+
* @type {boolean}
|
|
3352
3821
|
* @memberof ResourceTypeInformationDtoIEnumerableResponse
|
|
3353
3822
|
*/
|
|
3354
|
-
|
|
3823
|
+
isSuccess?: boolean;
|
|
3355
3824
|
/**
|
|
3356
3825
|
*
|
|
3357
|
-
* @type {
|
|
3826
|
+
* @type {number}
|
|
3358
3827
|
* @memberof ResourceTypeInformationDtoIEnumerableResponse
|
|
3359
3828
|
*/
|
|
3360
|
-
|
|
3829
|
+
statusCode?: number | null;
|
|
3361
3830
|
/**
|
|
3362
3831
|
*
|
|
3363
3832
|
* @type {string}
|
|
@@ -3379,16 +3848,16 @@ export interface ResourceTypeInformationDtoResponse {
|
|
|
3379
3848
|
data?: ResourceTypeInformationDto;
|
|
3380
3849
|
/**
|
|
3381
3850
|
*
|
|
3382
|
-
* @type {
|
|
3851
|
+
* @type {boolean}
|
|
3383
3852
|
* @memberof ResourceTypeInformationDtoResponse
|
|
3384
3853
|
*/
|
|
3385
|
-
|
|
3854
|
+
isSuccess?: boolean;
|
|
3386
3855
|
/**
|
|
3387
3856
|
*
|
|
3388
|
-
* @type {
|
|
3857
|
+
* @type {number}
|
|
3389
3858
|
* @memberof ResourceTypeInformationDtoResponse
|
|
3390
3859
|
*/
|
|
3391
|
-
|
|
3860
|
+
statusCode?: number | null;
|
|
3392
3861
|
/**
|
|
3393
3862
|
*
|
|
3394
3863
|
* @type {string}
|
|
@@ -3453,13 +3922,13 @@ export interface ResourceTypeOptionsDto {
|
|
|
3453
3922
|
rdsS3Worm?: RdsS3WormOptionsDto;
|
|
3454
3923
|
}
|
|
3455
3924
|
/**
|
|
3456
|
-
*
|
|
3925
|
+
* Represents the data transfer object for creating any resource type options.
|
|
3457
3926
|
* @export
|
|
3458
3927
|
* @interface ResourceTypeOptionsForCreationDto
|
|
3459
3928
|
*/
|
|
3460
3929
|
export interface ResourceTypeOptionsForCreationDto {
|
|
3461
3930
|
/**
|
|
3462
|
-
*
|
|
3931
|
+
* Represents the data transfer object for manipulating linked data resource type options.
|
|
3463
3932
|
* @type {object}
|
|
3464
3933
|
* @memberof ResourceTypeOptionsForCreationDto
|
|
3465
3934
|
*/
|
|
@@ -3490,13 +3959,13 @@ export interface ResourceTypeOptionsForCreationDto {
|
|
|
3490
3959
|
rdsS3WormResourceTypeOptions?: RdsS3WormResourceTypeOptionsForManipulationDto;
|
|
3491
3960
|
}
|
|
3492
3961
|
/**
|
|
3493
|
-
*
|
|
3962
|
+
* Represents the data transfer object for updating any resource type options.
|
|
3494
3963
|
* @export
|
|
3495
3964
|
* @interface ResourceTypeOptionsForUpdateDto
|
|
3496
3965
|
*/
|
|
3497
3966
|
export interface ResourceTypeOptionsForUpdateDto {
|
|
3498
3967
|
/**
|
|
3499
|
-
*
|
|
3968
|
+
* Represents the data transfer object for manipulating linked data resource type options.
|
|
3500
3969
|
* @type {object}
|
|
3501
3970
|
* @memberof ResourceTypeOptionsForUpdateDto
|
|
3502
3971
|
*/
|
|
@@ -3527,7 +3996,7 @@ export interface ResourceTypeOptionsForUpdateDto {
|
|
|
3527
3996
|
rdsS3WormResourceTypeOptions?: RdsS3WormResourceTypeOptionsForManipulationDto;
|
|
3528
3997
|
}
|
|
3529
3998
|
/**
|
|
3530
|
-
*
|
|
3999
|
+
* Specifies the status of a resource type.
|
|
3531
4000
|
* @export
|
|
3532
4001
|
* @enum {string}
|
|
3533
4002
|
*/
|
|
@@ -3563,37 +4032,37 @@ export interface RoleDto {
|
|
|
3563
4032
|
/**
|
|
3564
4033
|
*
|
|
3565
4034
|
* @export
|
|
3566
|
-
* @interface
|
|
4035
|
+
* @interface RoleDtoPagedResponse
|
|
3567
4036
|
*/
|
|
3568
|
-
export interface
|
|
4037
|
+
export interface RoleDtoPagedResponse {
|
|
3569
4038
|
/**
|
|
3570
4039
|
*
|
|
3571
4040
|
* @type {Array<RoleDto>}
|
|
3572
|
-
* @memberof
|
|
4041
|
+
* @memberof RoleDtoPagedResponse
|
|
3573
4042
|
*/
|
|
3574
4043
|
data?: Array<RoleDto> | null;
|
|
3575
4044
|
/**
|
|
3576
4045
|
*
|
|
3577
|
-
* @type {
|
|
3578
|
-
* @memberof
|
|
4046
|
+
* @type {boolean}
|
|
4047
|
+
* @memberof RoleDtoPagedResponse
|
|
3579
4048
|
*/
|
|
3580
|
-
|
|
4049
|
+
isSuccess?: boolean;
|
|
3581
4050
|
/**
|
|
3582
4051
|
*
|
|
3583
|
-
* @type {
|
|
3584
|
-
* @memberof
|
|
4052
|
+
* @type {number}
|
|
4053
|
+
* @memberof RoleDtoPagedResponse
|
|
3585
4054
|
*/
|
|
3586
|
-
|
|
4055
|
+
statusCode?: number | null;
|
|
3587
4056
|
/**
|
|
3588
4057
|
*
|
|
3589
4058
|
* @type {string}
|
|
3590
|
-
* @memberof
|
|
4059
|
+
* @memberof RoleDtoPagedResponse
|
|
3591
4060
|
*/
|
|
3592
4061
|
traceId?: string | null;
|
|
3593
4062
|
/**
|
|
3594
4063
|
*
|
|
3595
4064
|
* @type {Pagination}
|
|
3596
|
-
* @memberof
|
|
4065
|
+
* @memberof RoleDtoPagedResponse
|
|
3597
4066
|
*/
|
|
3598
4067
|
pagination?: Pagination;
|
|
3599
4068
|
}
|
|
@@ -3611,16 +4080,16 @@ export interface RoleDtoResponse {
|
|
|
3611
4080
|
data?: RoleDto;
|
|
3612
4081
|
/**
|
|
3613
4082
|
*
|
|
3614
|
-
* @type {
|
|
4083
|
+
* @type {boolean}
|
|
3615
4084
|
* @memberof RoleDtoResponse
|
|
3616
4085
|
*/
|
|
3617
|
-
|
|
4086
|
+
isSuccess?: boolean;
|
|
3618
4087
|
/**
|
|
3619
4088
|
*
|
|
3620
|
-
* @type {
|
|
4089
|
+
* @type {number}
|
|
3621
4090
|
* @memberof RoleDtoResponse
|
|
3622
4091
|
*/
|
|
3623
|
-
|
|
4092
|
+
statusCode?: number | null;
|
|
3624
4093
|
/**
|
|
3625
4094
|
*
|
|
3626
4095
|
* @type {string}
|
|
@@ -3644,6 +4113,25 @@ export interface RoleMinimalDto {
|
|
|
3644
4113
|
/**
|
|
3645
4114
|
*
|
|
3646
4115
|
* @export
|
|
4116
|
+
* @interface SearchCategory
|
|
4117
|
+
*/
|
|
4118
|
+
export interface SearchCategory {
|
|
4119
|
+
/**
|
|
4120
|
+
*
|
|
4121
|
+
* @type {string}
|
|
4122
|
+
* @memberof SearchCategory
|
|
4123
|
+
*/
|
|
4124
|
+
name?: string;
|
|
4125
|
+
/**
|
|
4126
|
+
*
|
|
4127
|
+
* @type {number}
|
|
4128
|
+
* @memberof SearchCategory
|
|
4129
|
+
*/
|
|
4130
|
+
count?: number;
|
|
4131
|
+
}
|
|
4132
|
+
/**
|
|
4133
|
+
* Specifies the search item type.
|
|
4134
|
+
* @export
|
|
3647
4135
|
* @enum {string}
|
|
3648
4136
|
*/
|
|
3649
4137
|
export declare enum SearchCategoryType {
|
|
@@ -3680,39 +4168,45 @@ export interface SearchResultDto {
|
|
|
3680
4168
|
/**
|
|
3681
4169
|
*
|
|
3682
4170
|
* @export
|
|
3683
|
-
* @interface
|
|
4171
|
+
* @interface SearchResultDtoPagedSearchResponse
|
|
3684
4172
|
*/
|
|
3685
|
-
export interface
|
|
4173
|
+
export interface SearchResultDtoPagedSearchResponse {
|
|
3686
4174
|
/**
|
|
3687
4175
|
*
|
|
3688
4176
|
* @type {Array<SearchResultDto>}
|
|
3689
|
-
* @memberof
|
|
4177
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
3690
4178
|
*/
|
|
3691
4179
|
data?: Array<SearchResultDto> | null;
|
|
3692
4180
|
/**
|
|
3693
4181
|
*
|
|
3694
|
-
* @type {
|
|
3695
|
-
* @memberof
|
|
4182
|
+
* @type {boolean}
|
|
4183
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
3696
4184
|
*/
|
|
3697
|
-
|
|
4185
|
+
isSuccess?: boolean;
|
|
3698
4186
|
/**
|
|
3699
4187
|
*
|
|
3700
|
-
* @type {
|
|
3701
|
-
* @memberof
|
|
4188
|
+
* @type {number}
|
|
4189
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
3702
4190
|
*/
|
|
3703
|
-
|
|
4191
|
+
statusCode?: number | null;
|
|
3704
4192
|
/**
|
|
3705
4193
|
*
|
|
3706
4194
|
* @type {string}
|
|
3707
|
-
* @memberof
|
|
4195
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
3708
4196
|
*/
|
|
3709
4197
|
traceId?: string | null;
|
|
3710
4198
|
/**
|
|
3711
4199
|
*
|
|
3712
4200
|
* @type {Pagination}
|
|
3713
|
-
* @memberof
|
|
4201
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
3714
4202
|
*/
|
|
3715
4203
|
pagination?: Pagination;
|
|
4204
|
+
/**
|
|
4205
|
+
*
|
|
4206
|
+
* @type {Array<SearchCategory>}
|
|
4207
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
4208
|
+
*/
|
|
4209
|
+
categories?: Array<SearchCategory> | null;
|
|
3716
4210
|
}
|
|
3717
4211
|
/**
|
|
3718
4212
|
*
|
|
@@ -3747,16 +4241,16 @@ export interface TermsOfServiceDtoResponse {
|
|
|
3747
4241
|
data?: TermsOfServiceDto;
|
|
3748
4242
|
/**
|
|
3749
4243
|
*
|
|
3750
|
-
* @type {
|
|
4244
|
+
* @type {boolean}
|
|
3751
4245
|
* @memberof TermsOfServiceDtoResponse
|
|
3752
4246
|
*/
|
|
3753
|
-
|
|
4247
|
+
isSuccess?: boolean;
|
|
3754
4248
|
/**
|
|
3755
4249
|
*
|
|
3756
|
-
* @type {
|
|
4250
|
+
* @type {number}
|
|
3757
4251
|
* @memberof TermsOfServiceDtoResponse
|
|
3758
4252
|
*/
|
|
3759
|
-
|
|
4253
|
+
statusCode?: number | null;
|
|
3760
4254
|
/**
|
|
3761
4255
|
*
|
|
3762
4256
|
* @type {string}
|
|
@@ -3786,37 +4280,37 @@ export interface TitleDto {
|
|
|
3786
4280
|
/**
|
|
3787
4281
|
*
|
|
3788
4282
|
* @export
|
|
3789
|
-
* @interface
|
|
4283
|
+
* @interface TitleDtoPagedResponse
|
|
3790
4284
|
*/
|
|
3791
|
-
export interface
|
|
4285
|
+
export interface TitleDtoPagedResponse {
|
|
3792
4286
|
/**
|
|
3793
4287
|
*
|
|
3794
4288
|
* @type {Array<TitleDto>}
|
|
3795
|
-
* @memberof
|
|
4289
|
+
* @memberof TitleDtoPagedResponse
|
|
3796
4290
|
*/
|
|
3797
4291
|
data?: Array<TitleDto> | null;
|
|
3798
4292
|
/**
|
|
3799
4293
|
*
|
|
3800
|
-
* @type {
|
|
3801
|
-
* @memberof
|
|
4294
|
+
* @type {boolean}
|
|
4295
|
+
* @memberof TitleDtoPagedResponse
|
|
3802
4296
|
*/
|
|
3803
|
-
|
|
4297
|
+
isSuccess?: boolean;
|
|
3804
4298
|
/**
|
|
3805
4299
|
*
|
|
3806
|
-
* @type {
|
|
3807
|
-
* @memberof
|
|
4300
|
+
* @type {number}
|
|
4301
|
+
* @memberof TitleDtoPagedResponse
|
|
3808
4302
|
*/
|
|
3809
|
-
|
|
4303
|
+
statusCode?: number | null;
|
|
3810
4304
|
/**
|
|
3811
4305
|
*
|
|
3812
4306
|
* @type {string}
|
|
3813
|
-
* @memberof
|
|
4307
|
+
* @memberof TitleDtoPagedResponse
|
|
3814
4308
|
*/
|
|
3815
4309
|
traceId?: string | null;
|
|
3816
4310
|
/**
|
|
3817
4311
|
*
|
|
3818
4312
|
* @type {Pagination}
|
|
3819
|
-
* @memberof
|
|
4313
|
+
* @memberof TitleDtoPagedResponse
|
|
3820
4314
|
*/
|
|
3821
4315
|
pagination?: Pagination;
|
|
3822
4316
|
}
|
|
@@ -3834,16 +4328,16 @@ export interface TitleDtoResponse {
|
|
|
3834
4328
|
data?: TitleDto;
|
|
3835
4329
|
/**
|
|
3836
4330
|
*
|
|
3837
|
-
* @type {
|
|
4331
|
+
* @type {boolean}
|
|
3838
4332
|
* @memberof TitleDtoResponse
|
|
3839
4333
|
*/
|
|
3840
|
-
|
|
4334
|
+
isSuccess?: boolean;
|
|
3841
4335
|
/**
|
|
3842
4336
|
*
|
|
3843
|
-
* @type {
|
|
4337
|
+
* @type {number}
|
|
3844
4338
|
* @memberof TitleDtoResponse
|
|
3845
4339
|
*/
|
|
3846
|
-
|
|
4340
|
+
statusCode?: number | null;
|
|
3847
4341
|
/**
|
|
3848
4342
|
*
|
|
3849
4343
|
* @type {string}
|
|
@@ -3952,6 +4446,43 @@ export interface UserDto {
|
|
|
3952
4446
|
*/
|
|
3953
4447
|
identities?: Array<IdentityProviderDto>;
|
|
3954
4448
|
}
|
|
4449
|
+
/**
|
|
4450
|
+
*
|
|
4451
|
+
* @export
|
|
4452
|
+
* @interface UserDtoIEnumerablePagedResponse
|
|
4453
|
+
*/
|
|
4454
|
+
export interface UserDtoIEnumerablePagedResponse {
|
|
4455
|
+
/**
|
|
4456
|
+
*
|
|
4457
|
+
* @type {Array<Array<UserDto>>}
|
|
4458
|
+
* @memberof UserDtoIEnumerablePagedResponse
|
|
4459
|
+
*/
|
|
4460
|
+
data?: Array<Array<UserDto>> | null;
|
|
4461
|
+
/**
|
|
4462
|
+
*
|
|
4463
|
+
* @type {boolean}
|
|
4464
|
+
* @memberof UserDtoIEnumerablePagedResponse
|
|
4465
|
+
*/
|
|
4466
|
+
isSuccess?: boolean;
|
|
4467
|
+
/**
|
|
4468
|
+
*
|
|
4469
|
+
* @type {number}
|
|
4470
|
+
* @memberof UserDtoIEnumerablePagedResponse
|
|
4471
|
+
*/
|
|
4472
|
+
statusCode?: number | null;
|
|
4473
|
+
/**
|
|
4474
|
+
*
|
|
4475
|
+
* @type {string}
|
|
4476
|
+
* @memberof UserDtoIEnumerablePagedResponse
|
|
4477
|
+
*/
|
|
4478
|
+
traceId?: string | null;
|
|
4479
|
+
/**
|
|
4480
|
+
*
|
|
4481
|
+
* @type {Pagination}
|
|
4482
|
+
* @memberof UserDtoIEnumerablePagedResponse
|
|
4483
|
+
*/
|
|
4484
|
+
pagination?: Pagination;
|
|
4485
|
+
}
|
|
3955
4486
|
/**
|
|
3956
4487
|
*
|
|
3957
4488
|
* @export
|
|
@@ -3966,16 +4497,16 @@ export interface UserDtoResponse {
|
|
|
3966
4497
|
data?: UserDto;
|
|
3967
4498
|
/**
|
|
3968
4499
|
*
|
|
3969
|
-
* @type {
|
|
4500
|
+
* @type {boolean}
|
|
3970
4501
|
* @memberof UserDtoResponse
|
|
3971
4502
|
*/
|
|
3972
|
-
|
|
4503
|
+
isSuccess?: boolean;
|
|
3973
4504
|
/**
|
|
3974
4505
|
*
|
|
3975
|
-
* @type {
|
|
4506
|
+
* @type {number}
|
|
3976
4507
|
* @memberof UserDtoResponse
|
|
3977
4508
|
*/
|
|
3978
|
-
|
|
4509
|
+
statusCode?: number | null;
|
|
3979
4510
|
/**
|
|
3980
4511
|
*
|
|
3981
4512
|
* @type {string}
|
|
@@ -4070,25 +4601,25 @@ export interface UserForUpdateDto {
|
|
|
4070
4601
|
*/
|
|
4071
4602
|
export interface UserInstituteDto {
|
|
4072
4603
|
/**
|
|
4073
|
-
*
|
|
4604
|
+
* The ROR <i>(Research Organization Registry)</i> ID of the organization.
|
|
4074
4605
|
* @type {string}
|
|
4075
4606
|
* @memberof UserInstituteDto
|
|
4076
4607
|
*/
|
|
4077
4608
|
uri?: string;
|
|
4078
4609
|
/**
|
|
4079
|
-
*
|
|
4610
|
+
* The display name of the organization.
|
|
4080
4611
|
* @type {string}
|
|
4081
4612
|
* @memberof UserInstituteDto
|
|
4082
4613
|
*/
|
|
4083
4614
|
displayName?: string;
|
|
4084
4615
|
/**
|
|
4085
|
-
*
|
|
4616
|
+
* The email address of the organization.
|
|
4086
4617
|
* @type {string}
|
|
4087
4618
|
* @memberof UserInstituteDto
|
|
4088
4619
|
*/
|
|
4089
4620
|
email?: string | null;
|
|
4090
4621
|
/**
|
|
4091
|
-
*
|
|
4622
|
+
* Determines if the organization\'s details can be modified. Default to `true`, manually set to `false`.
|
|
4092
4623
|
* @type {boolean}
|
|
4093
4624
|
* @memberof UserInstituteDto
|
|
4094
4625
|
*/
|
|
@@ -4121,16 +4652,16 @@ export interface UserMergeDtoResponse {
|
|
|
4121
4652
|
data?: UserMergeDto;
|
|
4122
4653
|
/**
|
|
4123
4654
|
*
|
|
4124
|
-
* @type {
|
|
4655
|
+
* @type {boolean}
|
|
4125
4656
|
* @memberof UserMergeDtoResponse
|
|
4126
4657
|
*/
|
|
4127
|
-
|
|
4658
|
+
isSuccess?: boolean;
|
|
4128
4659
|
/**
|
|
4129
4660
|
*
|
|
4130
|
-
* @type {
|
|
4661
|
+
* @type {number}
|
|
4131
4662
|
* @memberof UserMergeDtoResponse
|
|
4132
4663
|
*/
|
|
4133
|
-
|
|
4664
|
+
statusCode?: number | null;
|
|
4134
4665
|
/**
|
|
4135
4666
|
*
|
|
4136
4667
|
* @type {string}
|
|
@@ -4158,25 +4689,25 @@ export interface UserMinimalDto {
|
|
|
4158
4689
|
*/
|
|
4159
4690
|
export interface UserOrganizationDto {
|
|
4160
4691
|
/**
|
|
4161
|
-
*
|
|
4692
|
+
* The ROR <i>(Research Organization Registry)</i> ID of the organization.
|
|
4162
4693
|
* @type {string}
|
|
4163
4694
|
* @memberof UserOrganizationDto
|
|
4164
4695
|
*/
|
|
4165
4696
|
uri?: string;
|
|
4166
4697
|
/**
|
|
4167
|
-
*
|
|
4698
|
+
* The display name of the organization.
|
|
4168
4699
|
* @type {string}
|
|
4169
4700
|
* @memberof UserOrganizationDto
|
|
4170
4701
|
*/
|
|
4171
4702
|
displayName?: string;
|
|
4172
4703
|
/**
|
|
4173
|
-
*
|
|
4704
|
+
* The email address of the organization.
|
|
4174
4705
|
* @type {string}
|
|
4175
4706
|
* @memberof UserOrganizationDto
|
|
4176
4707
|
*/
|
|
4177
4708
|
email?: string | null;
|
|
4178
4709
|
/**
|
|
4179
|
-
*
|
|
4710
|
+
* Determines if the organization\'s details can be modified. Default to `true`, manually set to `false`.
|
|
4180
4711
|
* @type {boolean}
|
|
4181
4712
|
* @memberof UserOrganizationDto
|
|
4182
4713
|
*/
|
|
@@ -4217,37 +4748,37 @@ export interface VisibilityDto {
|
|
|
4217
4748
|
/**
|
|
4218
4749
|
*
|
|
4219
4750
|
* @export
|
|
4220
|
-
* @interface
|
|
4751
|
+
* @interface VisibilityDtoPagedResponse
|
|
4221
4752
|
*/
|
|
4222
|
-
export interface
|
|
4753
|
+
export interface VisibilityDtoPagedResponse {
|
|
4223
4754
|
/**
|
|
4224
4755
|
*
|
|
4225
4756
|
* @type {Array<VisibilityDto>}
|
|
4226
|
-
* @memberof
|
|
4757
|
+
* @memberof VisibilityDtoPagedResponse
|
|
4227
4758
|
*/
|
|
4228
4759
|
data?: Array<VisibilityDto> | null;
|
|
4229
4760
|
/**
|
|
4230
4761
|
*
|
|
4231
|
-
* @type {
|
|
4232
|
-
* @memberof
|
|
4762
|
+
* @type {boolean}
|
|
4763
|
+
* @memberof VisibilityDtoPagedResponse
|
|
4233
4764
|
*/
|
|
4234
|
-
|
|
4765
|
+
isSuccess?: boolean;
|
|
4235
4766
|
/**
|
|
4236
4767
|
*
|
|
4237
|
-
* @type {
|
|
4238
|
-
* @memberof
|
|
4768
|
+
* @type {number}
|
|
4769
|
+
* @memberof VisibilityDtoPagedResponse
|
|
4239
4770
|
*/
|
|
4240
|
-
|
|
4771
|
+
statusCode?: number | null;
|
|
4241
4772
|
/**
|
|
4242
4773
|
*
|
|
4243
4774
|
* @type {string}
|
|
4244
|
-
* @memberof
|
|
4775
|
+
* @memberof VisibilityDtoPagedResponse
|
|
4245
4776
|
*/
|
|
4246
4777
|
traceId?: string | null;
|
|
4247
4778
|
/**
|
|
4248
4779
|
*
|
|
4249
4780
|
* @type {Pagination}
|
|
4250
|
-
* @memberof
|
|
4781
|
+
* @memberof VisibilityDtoPagedResponse
|
|
4251
4782
|
*/
|
|
4252
4783
|
pagination?: Pagination;
|
|
4253
4784
|
}
|
|
@@ -4265,16 +4796,16 @@ export interface VisibilityDtoResponse {
|
|
|
4265
4796
|
data?: VisibilityDto;
|
|
4266
4797
|
/**
|
|
4267
4798
|
*
|
|
4268
|
-
* @type {
|
|
4799
|
+
* @type {boolean}
|
|
4269
4800
|
* @memberof VisibilityDtoResponse
|
|
4270
4801
|
*/
|
|
4271
|
-
|
|
4802
|
+
isSuccess?: boolean;
|
|
4272
4803
|
/**
|
|
4273
4804
|
*
|
|
4274
|
-
* @type {
|
|
4805
|
+
* @type {number}
|
|
4275
4806
|
* @memberof VisibilityDtoResponse
|
|
4276
4807
|
*/
|
|
4277
|
-
|
|
4808
|
+
statusCode?: number | null;
|
|
4278
4809
|
/**
|
|
4279
4810
|
*
|
|
4280
4811
|
* @type {string}
|
|
@@ -4315,13 +4846,13 @@ export interface VisibilityForResourceManipulationDto {
|
|
|
4315
4846
|
*/
|
|
4316
4847
|
export interface VocabularyDto {
|
|
4317
4848
|
/**
|
|
4318
|
-
*
|
|
4849
|
+
* The name of the graph, which contains the vocabulary.
|
|
4319
4850
|
* @type {string}
|
|
4320
4851
|
* @memberof VocabularyDto
|
|
4321
4852
|
*/
|
|
4322
4853
|
graphUri?: string;
|
|
4323
4854
|
/**
|
|
4324
|
-
*
|
|
4855
|
+
* The top-level parent class in the vocabulary.
|
|
4325
4856
|
* @type {string}
|
|
4326
4857
|
* @memberof VocabularyDto
|
|
4327
4858
|
*/
|
|
@@ -4342,37 +4873,37 @@ export interface VocabularyDto {
|
|
|
4342
4873
|
/**
|
|
4343
4874
|
*
|
|
4344
4875
|
* @export
|
|
4345
|
-
* @interface
|
|
4876
|
+
* @interface VocabularyDtoPagedResponse
|
|
4346
4877
|
*/
|
|
4347
|
-
export interface
|
|
4878
|
+
export interface VocabularyDtoPagedResponse {
|
|
4348
4879
|
/**
|
|
4349
4880
|
*
|
|
4350
4881
|
* @type {Array<VocabularyDto>}
|
|
4351
|
-
* @memberof
|
|
4882
|
+
* @memberof VocabularyDtoPagedResponse
|
|
4352
4883
|
*/
|
|
4353
4884
|
data?: Array<VocabularyDto> | null;
|
|
4354
4885
|
/**
|
|
4355
4886
|
*
|
|
4356
|
-
* @type {
|
|
4357
|
-
* @memberof
|
|
4887
|
+
* @type {boolean}
|
|
4888
|
+
* @memberof VocabularyDtoPagedResponse
|
|
4358
4889
|
*/
|
|
4359
|
-
|
|
4890
|
+
isSuccess?: boolean;
|
|
4360
4891
|
/**
|
|
4361
4892
|
*
|
|
4362
|
-
* @type {
|
|
4363
|
-
* @memberof
|
|
4893
|
+
* @type {number}
|
|
4894
|
+
* @memberof VocabularyDtoPagedResponse
|
|
4364
4895
|
*/
|
|
4365
|
-
|
|
4896
|
+
statusCode?: number | null;
|
|
4366
4897
|
/**
|
|
4367
4898
|
*
|
|
4368
4899
|
* @type {string}
|
|
4369
|
-
* @memberof
|
|
4900
|
+
* @memberof VocabularyDtoPagedResponse
|
|
4370
4901
|
*/
|
|
4371
4902
|
traceId?: string | null;
|
|
4372
4903
|
/**
|
|
4373
4904
|
*
|
|
4374
4905
|
* @type {Pagination}
|
|
4375
|
-
* @memberof
|
|
4906
|
+
* @memberof VocabularyDtoPagedResponse
|
|
4376
4907
|
*/
|
|
4377
4908
|
pagination?: Pagination;
|
|
4378
4909
|
}
|
|
@@ -4383,25 +4914,25 @@ export interface VocabularyDtoIEnumerablePagedResponse {
|
|
|
4383
4914
|
*/
|
|
4384
4915
|
export interface VocabularyInstanceDto {
|
|
4385
4916
|
/**
|
|
4386
|
-
*
|
|
4917
|
+
* The name of the graph, which contains the vocabulary.
|
|
4387
4918
|
* @type {string}
|
|
4388
4919
|
* @memberof VocabularyInstanceDto
|
|
4389
4920
|
*/
|
|
4390
4921
|
graphUri?: string;
|
|
4391
4922
|
/**
|
|
4392
|
-
*
|
|
4923
|
+
* URI of the instance.
|
|
4393
4924
|
* @type {string}
|
|
4394
4925
|
* @memberof VocabularyInstanceDto
|
|
4395
4926
|
*/
|
|
4396
4927
|
instanceUri?: string;
|
|
4397
4928
|
/**
|
|
4398
|
-
*
|
|
4929
|
+
* Type of the instance.
|
|
4399
4930
|
* @type {string}
|
|
4400
4931
|
* @memberof VocabularyInstanceDto
|
|
4401
4932
|
*/
|
|
4402
4933
|
typeUri?: string | null;
|
|
4403
4934
|
/**
|
|
4404
|
-
*
|
|
4935
|
+
* The direct parent class.
|
|
4405
4936
|
* @type {string}
|
|
4406
4937
|
* @memberof VocabularyInstanceDto
|
|
4407
4938
|
*/
|
|
@@ -4422,37 +4953,37 @@ export interface VocabularyInstanceDto {
|
|
|
4422
4953
|
/**
|
|
4423
4954
|
*
|
|
4424
4955
|
* @export
|
|
4425
|
-
* @interface
|
|
4956
|
+
* @interface VocabularyInstanceDtoPagedResponse
|
|
4426
4957
|
*/
|
|
4427
|
-
export interface
|
|
4958
|
+
export interface VocabularyInstanceDtoPagedResponse {
|
|
4428
4959
|
/**
|
|
4429
4960
|
*
|
|
4430
4961
|
* @type {Array<VocabularyInstanceDto>}
|
|
4431
|
-
* @memberof
|
|
4962
|
+
* @memberof VocabularyInstanceDtoPagedResponse
|
|
4432
4963
|
*/
|
|
4433
4964
|
data?: Array<VocabularyInstanceDto> | null;
|
|
4434
4965
|
/**
|
|
4435
4966
|
*
|
|
4436
|
-
* @type {
|
|
4437
|
-
* @memberof
|
|
4967
|
+
* @type {boolean}
|
|
4968
|
+
* @memberof VocabularyInstanceDtoPagedResponse
|
|
4438
4969
|
*/
|
|
4439
|
-
|
|
4970
|
+
isSuccess?: boolean;
|
|
4440
4971
|
/**
|
|
4441
4972
|
*
|
|
4442
|
-
* @type {
|
|
4443
|
-
* @memberof
|
|
4973
|
+
* @type {number}
|
|
4974
|
+
* @memberof VocabularyInstanceDtoPagedResponse
|
|
4444
4975
|
*/
|
|
4445
|
-
|
|
4976
|
+
statusCode?: number | null;
|
|
4446
4977
|
/**
|
|
4447
4978
|
*
|
|
4448
4979
|
* @type {string}
|
|
4449
|
-
* @memberof
|
|
4980
|
+
* @memberof VocabularyInstanceDtoPagedResponse
|
|
4450
4981
|
*/
|
|
4451
4982
|
traceId?: string | null;
|
|
4452
4983
|
/**
|
|
4453
4984
|
*
|
|
4454
4985
|
* @type {Pagination}
|
|
4455
|
-
* @memberof
|
|
4986
|
+
* @memberof VocabularyInstanceDtoPagedResponse
|
|
4456
4987
|
*/
|
|
4457
4988
|
pagination?: Pagination;
|
|
4458
4989
|
}
|
|
@@ -4470,16 +5001,16 @@ export interface VocabularyInstanceDtoResponse {
|
|
|
4470
5001
|
data?: VocabularyInstanceDto;
|
|
4471
5002
|
/**
|
|
4472
5003
|
*
|
|
4473
|
-
* @type {
|
|
5004
|
+
* @type {boolean}
|
|
4474
5005
|
* @memberof VocabularyInstanceDtoResponse
|
|
4475
5006
|
*/
|
|
4476
|
-
|
|
5007
|
+
isSuccess?: boolean;
|
|
4477
5008
|
/**
|
|
4478
5009
|
*
|
|
4479
|
-
* @type {
|
|
5010
|
+
* @type {number}
|
|
4480
5011
|
* @memberof VocabularyInstanceDtoResponse
|
|
4481
5012
|
*/
|
|
4482
|
-
|
|
5013
|
+
statusCode?: number | null;
|
|
4483
5014
|
/**
|
|
4484
5015
|
*
|
|
4485
5016
|
* @type {string}
|
|
@@ -4487,6 +5018,270 @@ export interface VocabularyInstanceDtoResponse {
|
|
|
4487
5018
|
*/
|
|
4488
5019
|
traceId?: string | null;
|
|
4489
5020
|
}
|
|
5021
|
+
/**
|
|
5022
|
+
* AdminApi - axios parameter creator
|
|
5023
|
+
* @export
|
|
5024
|
+
*/
|
|
5025
|
+
export declare const AdminApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5026
|
+
/**
|
|
5027
|
+
*
|
|
5028
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
5029
|
+
* @param {*} [options] Override http request option.
|
|
5030
|
+
* @throws {RequiredError}
|
|
5031
|
+
*/
|
|
5032
|
+
apiV2AdminOptions: (options?: any) => Promise<RequestArgs>;
|
|
5033
|
+
/**
|
|
5034
|
+
*
|
|
5035
|
+
* @summary Retrieves all projects.
|
|
5036
|
+
* @param {boolean} [topLevel]
|
|
5037
|
+
* @param {boolean} [includeDeleted]
|
|
5038
|
+
* @param {number} [pageNumber]
|
|
5039
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5040
|
+
* @param {string} [orderBy]
|
|
5041
|
+
* @param {*} [options] Override http request option.
|
|
5042
|
+
* @throws {RequiredError}
|
|
5043
|
+
*/
|
|
5044
|
+
getAllProjects: (topLevel?: boolean, includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any) => Promise<RequestArgs>;
|
|
5045
|
+
/**
|
|
5046
|
+
*
|
|
5047
|
+
* @summary Retrieves all resources.
|
|
5048
|
+
* @param {boolean} [includeDeleted]
|
|
5049
|
+
* @param {number} [pageNumber]
|
|
5050
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5051
|
+
* @param {string} [orderBy]
|
|
5052
|
+
* @param {*} [options] Override http request option.
|
|
5053
|
+
* @throws {RequiredError}
|
|
5054
|
+
*/
|
|
5055
|
+
getAllResources: (includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any) => Promise<RequestArgs>;
|
|
5056
|
+
/**
|
|
5057
|
+
*
|
|
5058
|
+
* @summary Retrieves all users.
|
|
5059
|
+
* @param {string} [orderBy]
|
|
5060
|
+
* @param {boolean} [tosAccepted]
|
|
5061
|
+
* @param {number} [pageNumber]
|
|
5062
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5063
|
+
* @param {*} [options] Override http request option.
|
|
5064
|
+
* @throws {RequiredError}
|
|
5065
|
+
*/
|
|
5066
|
+
getAllUsers: (orderBy?: string, tosAccepted?: boolean, pageNumber?: number, pageSize?: number, options?: any) => Promise<RequestArgs>;
|
|
5067
|
+
/**
|
|
5068
|
+
*
|
|
5069
|
+
* @summary Gets a metadata graph.
|
|
5070
|
+
* @param {string} graphUri
|
|
5071
|
+
* @param {RdfFormat} [format]
|
|
5072
|
+
* @param {*} [options] Override http request option.
|
|
5073
|
+
* @throws {RequiredError}
|
|
5074
|
+
*/
|
|
5075
|
+
getMetadataGraph: (graphUri: string, format?: RdfFormat, options?: any) => Promise<RequestArgs>;
|
|
5076
|
+
/**
|
|
5077
|
+
*
|
|
5078
|
+
* @summary Updates a metadata graph.
|
|
5079
|
+
* @param {MetadataUpdateAdminParameters} [metadataUpdateAdminParameters] The metadata update admin parameters.
|
|
5080
|
+
* @param {*} [options] Override http request option.
|
|
5081
|
+
* @throws {RequiredError}
|
|
5082
|
+
*/
|
|
5083
|
+
updateMetadataGraph: (metadataUpdateAdminParameters?: MetadataUpdateAdminParameters, options?: any) => Promise<RequestArgs>;
|
|
5084
|
+
};
|
|
5085
|
+
/**
|
|
5086
|
+
* AdminApi - functional programming interface
|
|
5087
|
+
* @export
|
|
5088
|
+
*/
|
|
5089
|
+
export declare const AdminApiFp: (configuration?: Configuration) => {
|
|
5090
|
+
/**
|
|
5091
|
+
*
|
|
5092
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
5093
|
+
* @param {*} [options] Override http request option.
|
|
5094
|
+
* @throws {RequiredError}
|
|
5095
|
+
*/
|
|
5096
|
+
apiV2AdminOptions(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5097
|
+
/**
|
|
5098
|
+
*
|
|
5099
|
+
* @summary Retrieves all projects.
|
|
5100
|
+
* @param {boolean} [topLevel]
|
|
5101
|
+
* @param {boolean} [includeDeleted]
|
|
5102
|
+
* @param {number} [pageNumber]
|
|
5103
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5104
|
+
* @param {string} [orderBy]
|
|
5105
|
+
* @param {*} [options] Override http request option.
|
|
5106
|
+
* @throws {RequiredError}
|
|
5107
|
+
*/
|
|
5108
|
+
getAllProjects(topLevel?: boolean, includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectAdminDtoIEnumerablePagedResponse>>;
|
|
5109
|
+
/**
|
|
5110
|
+
*
|
|
5111
|
+
* @summary Retrieves all resources.
|
|
5112
|
+
* @param {boolean} [includeDeleted]
|
|
5113
|
+
* @param {number} [pageNumber]
|
|
5114
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5115
|
+
* @param {string} [orderBy]
|
|
5116
|
+
* @param {*} [options] Override http request option.
|
|
5117
|
+
* @throws {RequiredError}
|
|
5118
|
+
*/
|
|
5119
|
+
getAllResources(includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResourceAdminDtoIEnumerablePagedResponse>>;
|
|
5120
|
+
/**
|
|
5121
|
+
*
|
|
5122
|
+
* @summary Retrieves all users.
|
|
5123
|
+
* @param {string} [orderBy]
|
|
5124
|
+
* @param {boolean} [tosAccepted]
|
|
5125
|
+
* @param {number} [pageNumber]
|
|
5126
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5127
|
+
* @param {*} [options] Override http request option.
|
|
5128
|
+
* @throws {RequiredError}
|
|
5129
|
+
*/
|
|
5130
|
+
getAllUsers(orderBy?: string, tosAccepted?: boolean, pageNumber?: number, pageSize?: number, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDtoIEnumerablePagedResponse>>;
|
|
5131
|
+
/**
|
|
5132
|
+
*
|
|
5133
|
+
* @summary Gets a metadata graph.
|
|
5134
|
+
* @param {string} graphUri
|
|
5135
|
+
* @param {RdfFormat} [format]
|
|
5136
|
+
* @param {*} [options] Override http request option.
|
|
5137
|
+
* @throws {RequiredError}
|
|
5138
|
+
*/
|
|
5139
|
+
getMetadataGraph(graphUri: string, format?: RdfFormat, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RdfDefinitionDtoResponse>>;
|
|
5140
|
+
/**
|
|
5141
|
+
*
|
|
5142
|
+
* @summary Updates a metadata graph.
|
|
5143
|
+
* @param {MetadataUpdateAdminParameters} [metadataUpdateAdminParameters] The metadata update admin parameters.
|
|
5144
|
+
* @param {*} [options] Override http request option.
|
|
5145
|
+
* @throws {RequiredError}
|
|
5146
|
+
*/
|
|
5147
|
+
updateMetadataGraph(metadataUpdateAdminParameters?: MetadataUpdateAdminParameters, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5148
|
+
};
|
|
5149
|
+
/**
|
|
5150
|
+
* AdminApi - factory interface
|
|
5151
|
+
* @export
|
|
5152
|
+
*/
|
|
5153
|
+
export declare const AdminApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5154
|
+
/**
|
|
5155
|
+
*
|
|
5156
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
5157
|
+
* @param {*} [options] Override http request option.
|
|
5158
|
+
* @throws {RequiredError}
|
|
5159
|
+
*/
|
|
5160
|
+
apiV2AdminOptions(options?: any): AxiosPromise<void>;
|
|
5161
|
+
/**
|
|
5162
|
+
*
|
|
5163
|
+
* @summary Retrieves all projects.
|
|
5164
|
+
* @param {boolean} [topLevel]
|
|
5165
|
+
* @param {boolean} [includeDeleted]
|
|
5166
|
+
* @param {number} [pageNumber]
|
|
5167
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5168
|
+
* @param {string} [orderBy]
|
|
5169
|
+
* @param {*} [options] Override http request option.
|
|
5170
|
+
* @throws {RequiredError}
|
|
5171
|
+
*/
|
|
5172
|
+
getAllProjects(topLevel?: boolean, includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ProjectAdminDtoIEnumerablePagedResponse>;
|
|
5173
|
+
/**
|
|
5174
|
+
*
|
|
5175
|
+
* @summary Retrieves all resources.
|
|
5176
|
+
* @param {boolean} [includeDeleted]
|
|
5177
|
+
* @param {number} [pageNumber]
|
|
5178
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5179
|
+
* @param {string} [orderBy]
|
|
5180
|
+
* @param {*} [options] Override http request option.
|
|
5181
|
+
* @throws {RequiredError}
|
|
5182
|
+
*/
|
|
5183
|
+
getAllResources(includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ResourceAdminDtoIEnumerablePagedResponse>;
|
|
5184
|
+
/**
|
|
5185
|
+
*
|
|
5186
|
+
* @summary Retrieves all users.
|
|
5187
|
+
* @param {string} [orderBy]
|
|
5188
|
+
* @param {boolean} [tosAccepted]
|
|
5189
|
+
* @param {number} [pageNumber]
|
|
5190
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5191
|
+
* @param {*} [options] Override http request option.
|
|
5192
|
+
* @throws {RequiredError}
|
|
5193
|
+
*/
|
|
5194
|
+
getAllUsers(orderBy?: string, tosAccepted?: boolean, pageNumber?: number, pageSize?: number, options?: any): AxiosPromise<UserDtoIEnumerablePagedResponse>;
|
|
5195
|
+
/**
|
|
5196
|
+
*
|
|
5197
|
+
* @summary Gets a metadata graph.
|
|
5198
|
+
* @param {string} graphUri
|
|
5199
|
+
* @param {RdfFormat} [format]
|
|
5200
|
+
* @param {*} [options] Override http request option.
|
|
5201
|
+
* @throws {RequiredError}
|
|
5202
|
+
*/
|
|
5203
|
+
getMetadataGraph(graphUri: string, format?: RdfFormat, options?: any): AxiosPromise<RdfDefinitionDtoResponse>;
|
|
5204
|
+
/**
|
|
5205
|
+
*
|
|
5206
|
+
* @summary Updates a metadata graph.
|
|
5207
|
+
* @param {MetadataUpdateAdminParameters} [metadataUpdateAdminParameters] The metadata update admin parameters.
|
|
5208
|
+
* @param {*} [options] Override http request option.
|
|
5209
|
+
* @throws {RequiredError}
|
|
5210
|
+
*/
|
|
5211
|
+
updateMetadataGraph(metadataUpdateAdminParameters?: MetadataUpdateAdminParameters, options?: any): AxiosPromise<void>;
|
|
5212
|
+
};
|
|
5213
|
+
/**
|
|
5214
|
+
* AdminApi - object-oriented interface
|
|
5215
|
+
* @export
|
|
5216
|
+
* @class AdminApi
|
|
5217
|
+
* @extends {BaseAPI}
|
|
5218
|
+
*/
|
|
5219
|
+
export declare class AdminApi extends BaseAPI {
|
|
5220
|
+
/**
|
|
5221
|
+
*
|
|
5222
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
5223
|
+
* @param {*} [options] Override http request option.
|
|
5224
|
+
* @throws {RequiredError}
|
|
5225
|
+
* @memberof AdminApi
|
|
5226
|
+
*/
|
|
5227
|
+
apiV2AdminOptions(options?: any): Promise<import("axios").AxiosResponse<void>>;
|
|
5228
|
+
/**
|
|
5229
|
+
*
|
|
5230
|
+
* @summary Retrieves all projects.
|
|
5231
|
+
* @param {boolean} [topLevel]
|
|
5232
|
+
* @param {boolean} [includeDeleted]
|
|
5233
|
+
* @param {number} [pageNumber]
|
|
5234
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5235
|
+
* @param {string} [orderBy]
|
|
5236
|
+
* @param {*} [options] Override http request option.
|
|
5237
|
+
* @throws {RequiredError}
|
|
5238
|
+
* @memberof AdminApi
|
|
5239
|
+
*/
|
|
5240
|
+
getAllProjects(topLevel?: boolean, includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ProjectAdminDtoIEnumerablePagedResponse>>;
|
|
5241
|
+
/**
|
|
5242
|
+
*
|
|
5243
|
+
* @summary Retrieves all resources.
|
|
5244
|
+
* @param {boolean} [includeDeleted]
|
|
5245
|
+
* @param {number} [pageNumber]
|
|
5246
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5247
|
+
* @param {string} [orderBy]
|
|
5248
|
+
* @param {*} [options] Override http request option.
|
|
5249
|
+
* @throws {RequiredError}
|
|
5250
|
+
* @memberof AdminApi
|
|
5251
|
+
*/
|
|
5252
|
+
getAllResources(includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ResourceAdminDtoIEnumerablePagedResponse>>;
|
|
5253
|
+
/**
|
|
5254
|
+
*
|
|
5255
|
+
* @summary Retrieves all users.
|
|
5256
|
+
* @param {string} [orderBy]
|
|
5257
|
+
* @param {boolean} [tosAccepted]
|
|
5258
|
+
* @param {number} [pageNumber]
|
|
5259
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5260
|
+
* @param {*} [options] Override http request option.
|
|
5261
|
+
* @throws {RequiredError}
|
|
5262
|
+
* @memberof AdminApi
|
|
5263
|
+
*/
|
|
5264
|
+
getAllUsers(orderBy?: string, tosAccepted?: boolean, pageNumber?: number, pageSize?: number, options?: any): Promise<import("axios").AxiosResponse<UserDtoIEnumerablePagedResponse>>;
|
|
5265
|
+
/**
|
|
5266
|
+
*
|
|
5267
|
+
* @summary Gets a metadata graph.
|
|
5268
|
+
* @param {string} graphUri
|
|
5269
|
+
* @param {RdfFormat} [format]
|
|
5270
|
+
* @param {*} [options] Override http request option.
|
|
5271
|
+
* @throws {RequiredError}
|
|
5272
|
+
* @memberof AdminApi
|
|
5273
|
+
*/
|
|
5274
|
+
getMetadataGraph(graphUri: string, format?: RdfFormat, options?: any): Promise<import("axios").AxiosResponse<RdfDefinitionDtoResponse>>;
|
|
5275
|
+
/**
|
|
5276
|
+
*
|
|
5277
|
+
* @summary Updates a metadata graph.
|
|
5278
|
+
* @param {MetadataUpdateAdminParameters} [metadataUpdateAdminParameters] The metadata update admin parameters.
|
|
5279
|
+
* @param {*} [options] Override http request option.
|
|
5280
|
+
* @throws {RequiredError}
|
|
5281
|
+
* @memberof AdminApi
|
|
5282
|
+
*/
|
|
5283
|
+
updateMetadataGraph(metadataUpdateAdminParameters?: MetadataUpdateAdminParameters, options?: any): Promise<import("axios").AxiosResponse<void>>;
|
|
5284
|
+
}
|
|
4490
5285
|
/**
|
|
4491
5286
|
* ApplicationProfileApi - axios parameter creator
|
|
4492
5287
|
* @export
|
|
@@ -4522,13 +5317,14 @@ export declare const ApplicationProfileApiAxiosParamCreator: (configuration?: Co
|
|
|
4522
5317
|
* @summary Retrieves all application profiles.
|
|
4523
5318
|
* @param {string} [searchTerm]
|
|
4524
5319
|
* @param {AcceptedLanguage} [language]
|
|
5320
|
+
* @param {boolean} [modules]
|
|
4525
5321
|
* @param {number} [pageNumber]
|
|
4526
|
-
* @param {number} [pageSize]
|
|
5322
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
4527
5323
|
* @param {string} [orderBy]
|
|
4528
5324
|
* @param {*} [options] Override http request option.
|
|
4529
5325
|
* @throws {RequiredError}
|
|
4530
5326
|
*/
|
|
4531
|
-
getApplicationProfiles: (searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any) => Promise<RequestArgs>;
|
|
5327
|
+
getApplicationProfiles: (searchTerm?: string, language?: AcceptedLanguage, modules?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any) => Promise<RequestArgs>;
|
|
4532
5328
|
/**
|
|
4533
5329
|
*
|
|
4534
5330
|
* @summary Retrieves the `raw` application profile definition by its URI.
|
|
@@ -4573,13 +5369,14 @@ export declare const ApplicationProfileApiFp: (configuration?: Configuration) =>
|
|
|
4573
5369
|
* @summary Retrieves all application profiles.
|
|
4574
5370
|
* @param {string} [searchTerm]
|
|
4575
5371
|
* @param {AcceptedLanguage} [language]
|
|
5372
|
+
* @param {boolean} [modules]
|
|
4576
5373
|
* @param {number} [pageNumber]
|
|
4577
|
-
* @param {number} [pageSize]
|
|
5374
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
4578
5375
|
* @param {string} [orderBy]
|
|
4579
5376
|
* @param {*} [options] Override http request option.
|
|
4580
5377
|
* @throws {RequiredError}
|
|
4581
5378
|
*/
|
|
4582
|
-
getApplicationProfiles(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5379
|
+
getApplicationProfiles(searchTerm?: string, language?: AcceptedLanguage, modules?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationProfileDtoPagedResponse>>;
|
|
4583
5380
|
/**
|
|
4584
5381
|
*
|
|
4585
5382
|
* @summary Retrieves the `raw` application profile definition by its URI.
|
|
@@ -4624,13 +5421,14 @@ export declare const ApplicationProfileApiFactory: (configuration?: Configuratio
|
|
|
4624
5421
|
* @summary Retrieves all application profiles.
|
|
4625
5422
|
* @param {string} [searchTerm]
|
|
4626
5423
|
* @param {AcceptedLanguage} [language]
|
|
5424
|
+
* @param {boolean} [modules]
|
|
4627
5425
|
* @param {number} [pageNumber]
|
|
4628
|
-
* @param {number} [pageSize]
|
|
5426
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
4629
5427
|
* @param {string} [orderBy]
|
|
4630
5428
|
* @param {*} [options] Override http request option.
|
|
4631
5429
|
* @throws {RequiredError}
|
|
4632
5430
|
*/
|
|
4633
|
-
getApplicationProfiles(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
5431
|
+
getApplicationProfiles(searchTerm?: string, language?: AcceptedLanguage, modules?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ApplicationProfileDtoPagedResponse>;
|
|
4634
5432
|
/**
|
|
4635
5433
|
*
|
|
4636
5434
|
* @summary Retrieves the `raw` application profile definition by its URI.
|
|
@@ -4680,14 +5478,15 @@ export declare class ApplicationProfileApi extends BaseAPI {
|
|
|
4680
5478
|
* @summary Retrieves all application profiles.
|
|
4681
5479
|
* @param {string} [searchTerm]
|
|
4682
5480
|
* @param {AcceptedLanguage} [language]
|
|
5481
|
+
* @param {boolean} [modules]
|
|
4683
5482
|
* @param {number} [pageNumber]
|
|
4684
|
-
* @param {number} [pageSize]
|
|
5483
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
4685
5484
|
* @param {string} [orderBy]
|
|
4686
5485
|
* @param {*} [options] Override http request option.
|
|
4687
5486
|
* @throws {RequiredError}
|
|
4688
5487
|
* @memberof ApplicationProfileApi
|
|
4689
5488
|
*/
|
|
4690
|
-
getApplicationProfiles(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
5489
|
+
getApplicationProfiles(searchTerm?: string, language?: AcceptedLanguage, modules?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ApplicationProfileDtoPagedResponse>>;
|
|
4691
5490
|
/**
|
|
4692
5491
|
*
|
|
4693
5492
|
* @summary Retrieves the `raw` application profile definition by its URI.
|
|
@@ -4957,7 +5756,7 @@ export declare const DisciplineApiAxiosParamCreator: (configuration?: Configurat
|
|
|
4957
5756
|
*
|
|
4958
5757
|
* @summary Retrieves all disciplines.
|
|
4959
5758
|
* @param {number} [pageNumber]
|
|
4960
|
-
* @param {number} [pageSize]
|
|
5759
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
4961
5760
|
* @param {string} [orderBy]
|
|
4962
5761
|
* @param {*} [options] Override http request option.
|
|
4963
5762
|
* @throws {RequiredError}
|
|
@@ -4988,12 +5787,12 @@ export declare const DisciplineApiFp: (configuration?: Configuration) => {
|
|
|
4988
5787
|
*
|
|
4989
5788
|
* @summary Retrieves all disciplines.
|
|
4990
5789
|
* @param {number} [pageNumber]
|
|
4991
|
-
* @param {number} [pageSize]
|
|
5790
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
4992
5791
|
* @param {string} [orderBy]
|
|
4993
5792
|
* @param {*} [options] Override http request option.
|
|
4994
5793
|
* @throws {RequiredError}
|
|
4995
5794
|
*/
|
|
4996
|
-
getDisciplines(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5795
|
+
getDisciplines(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DisciplineDtoPagedResponse>>;
|
|
4997
5796
|
};
|
|
4998
5797
|
/**
|
|
4999
5798
|
* DisciplineApi - factory interface
|
|
@@ -5019,12 +5818,12 @@ export declare const DisciplineApiFactory: (configuration?: Configuration, baseP
|
|
|
5019
5818
|
*
|
|
5020
5819
|
* @summary Retrieves all disciplines.
|
|
5021
5820
|
* @param {number} [pageNumber]
|
|
5022
|
-
* @param {number} [pageSize]
|
|
5821
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5023
5822
|
* @param {string} [orderBy]
|
|
5024
5823
|
* @param {*} [options] Override http request option.
|
|
5025
5824
|
* @throws {RequiredError}
|
|
5026
5825
|
*/
|
|
5027
|
-
getDisciplines(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
5826
|
+
getDisciplines(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<DisciplineDtoPagedResponse>;
|
|
5028
5827
|
};
|
|
5029
5828
|
/**
|
|
5030
5829
|
* DisciplineApi - object-oriented interface
|
|
@@ -5054,13 +5853,13 @@ export declare class DisciplineApi extends BaseAPI {
|
|
|
5054
5853
|
*
|
|
5055
5854
|
* @summary Retrieves all disciplines.
|
|
5056
5855
|
* @param {number} [pageNumber]
|
|
5057
|
-
* @param {number} [pageSize]
|
|
5856
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5058
5857
|
* @param {string} [orderBy]
|
|
5059
5858
|
* @param {*} [options] Override http request option.
|
|
5060
5859
|
* @throws {RequiredError}
|
|
5061
5860
|
* @memberof DisciplineApi
|
|
5062
5861
|
*/
|
|
5063
|
-
getDisciplines(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
5862
|
+
getDisciplines(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<DisciplineDtoPagedResponse>>;
|
|
5064
5863
|
}
|
|
5065
5864
|
/**
|
|
5066
5865
|
* LanguageApi - axios parameter creator
|
|
@@ -5086,7 +5885,7 @@ export declare const LanguageApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
5086
5885
|
*
|
|
5087
5886
|
* @summary Retrieves all languages.
|
|
5088
5887
|
* @param {number} [pageNumber]
|
|
5089
|
-
* @param {number} [pageSize]
|
|
5888
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5090
5889
|
* @param {string} [orderBy]
|
|
5091
5890
|
* @param {*} [options] Override http request option.
|
|
5092
5891
|
* @throws {RequiredError}
|
|
@@ -5117,12 +5916,12 @@ export declare const LanguageApiFp: (configuration?: Configuration) => {
|
|
|
5117
5916
|
*
|
|
5118
5917
|
* @summary Retrieves all languages.
|
|
5119
5918
|
* @param {number} [pageNumber]
|
|
5120
|
-
* @param {number} [pageSize]
|
|
5919
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5121
5920
|
* @param {string} [orderBy]
|
|
5122
5921
|
* @param {*} [options] Override http request option.
|
|
5123
5922
|
* @throws {RequiredError}
|
|
5124
5923
|
*/
|
|
5125
|
-
getLanguages(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5924
|
+
getLanguages(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LanguageDtoPagedResponse>>;
|
|
5126
5925
|
};
|
|
5127
5926
|
/**
|
|
5128
5927
|
* LanguageApi - factory interface
|
|
@@ -5148,12 +5947,12 @@ export declare const LanguageApiFactory: (configuration?: Configuration, basePat
|
|
|
5148
5947
|
*
|
|
5149
5948
|
* @summary Retrieves all languages.
|
|
5150
5949
|
* @param {number} [pageNumber]
|
|
5151
|
-
* @param {number} [pageSize]
|
|
5950
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5152
5951
|
* @param {string} [orderBy]
|
|
5153
5952
|
* @param {*} [options] Override http request option.
|
|
5154
5953
|
* @throws {RequiredError}
|
|
5155
5954
|
*/
|
|
5156
|
-
getLanguages(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
5955
|
+
getLanguages(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<LanguageDtoPagedResponse>;
|
|
5157
5956
|
};
|
|
5158
5957
|
/**
|
|
5159
5958
|
* LanguageApi - object-oriented interface
|
|
@@ -5183,13 +5982,13 @@ export declare class LanguageApi extends BaseAPI {
|
|
|
5183
5982
|
*
|
|
5184
5983
|
* @summary Retrieves all languages.
|
|
5185
5984
|
* @param {number} [pageNumber]
|
|
5186
|
-
* @param {number} [pageSize]
|
|
5985
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5187
5986
|
* @param {string} [orderBy]
|
|
5188
5987
|
* @param {*} [options] Override http request option.
|
|
5189
5988
|
* @throws {RequiredError}
|
|
5190
5989
|
* @memberof LanguageApi
|
|
5191
5990
|
*/
|
|
5192
|
-
getLanguages(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
5991
|
+
getLanguages(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<LanguageDtoPagedResponse>>;
|
|
5193
5992
|
}
|
|
5194
5993
|
/**
|
|
5195
5994
|
* LicenseApi - axios parameter creator
|
|
@@ -5215,7 +6014,7 @@ export declare const LicenseApiAxiosParamCreator: (configuration?: Configuration
|
|
|
5215
6014
|
*
|
|
5216
6015
|
* @summary Retrieves all licenses.
|
|
5217
6016
|
* @param {number} [pageNumber]
|
|
5218
|
-
* @param {number} [pageSize]
|
|
6017
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5219
6018
|
* @param {string} [orderBy]
|
|
5220
6019
|
* @param {*} [options] Override http request option.
|
|
5221
6020
|
* @throws {RequiredError}
|
|
@@ -5246,12 +6045,12 @@ export declare const LicenseApiFp: (configuration?: Configuration) => {
|
|
|
5246
6045
|
*
|
|
5247
6046
|
* @summary Retrieves all licenses.
|
|
5248
6047
|
* @param {number} [pageNumber]
|
|
5249
|
-
* @param {number} [pageSize]
|
|
6048
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5250
6049
|
* @param {string} [orderBy]
|
|
5251
6050
|
* @param {*} [options] Override http request option.
|
|
5252
6051
|
* @throws {RequiredError}
|
|
5253
6052
|
*/
|
|
5254
|
-
getLicenses(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6053
|
+
getLicenses(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LicenseDtoPagedResponse>>;
|
|
5255
6054
|
};
|
|
5256
6055
|
/**
|
|
5257
6056
|
* LicenseApi - factory interface
|
|
@@ -5277,12 +6076,12 @@ export declare const LicenseApiFactory: (configuration?: Configuration, basePath
|
|
|
5277
6076
|
*
|
|
5278
6077
|
* @summary Retrieves all licenses.
|
|
5279
6078
|
* @param {number} [pageNumber]
|
|
5280
|
-
* @param {number} [pageSize]
|
|
6079
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5281
6080
|
* @param {string} [orderBy]
|
|
5282
6081
|
* @param {*} [options] Override http request option.
|
|
5283
6082
|
* @throws {RequiredError}
|
|
5284
6083
|
*/
|
|
5285
|
-
getLicenses(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
6084
|
+
getLicenses(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<LicenseDtoPagedResponse>;
|
|
5286
6085
|
};
|
|
5287
6086
|
/**
|
|
5288
6087
|
* LicenseApi - object-oriented interface
|
|
@@ -5312,13 +6111,13 @@ export declare class LicenseApi extends BaseAPI {
|
|
|
5312
6111
|
*
|
|
5313
6112
|
* @summary Retrieves all licenses.
|
|
5314
6113
|
* @param {number} [pageNumber]
|
|
5315
|
-
* @param {number} [pageSize]
|
|
6114
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5316
6115
|
* @param {string} [orderBy]
|
|
5317
6116
|
* @param {*} [options] Override http request option.
|
|
5318
6117
|
* @throws {RequiredError}
|
|
5319
6118
|
* @memberof LicenseApi
|
|
5320
6119
|
*/
|
|
5321
|
-
getLicenses(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
6120
|
+
getLicenses(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<LicenseDtoPagedResponse>>;
|
|
5322
6121
|
}
|
|
5323
6122
|
/**
|
|
5324
6123
|
* MaintenanceApi - axios parameter creator
|
|
@@ -5358,7 +6157,7 @@ export declare const MaintenanceApiFp: (configuration?: Configuration) => {
|
|
|
5358
6157
|
* @param {*} [options] Override http request option.
|
|
5359
6158
|
* @throws {RequiredError}
|
|
5360
6159
|
*/
|
|
5361
|
-
getCurrentMaintenances(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6160
|
+
getCurrentMaintenances(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MaintenanceDtoPagedResponse>>;
|
|
5362
6161
|
};
|
|
5363
6162
|
/**
|
|
5364
6163
|
* MaintenanceApi - factory interface
|
|
@@ -5378,7 +6177,7 @@ export declare const MaintenanceApiFactory: (configuration?: Configuration, base
|
|
|
5378
6177
|
* @param {*} [options] Override http request option.
|
|
5379
6178
|
* @throws {RequiredError}
|
|
5380
6179
|
*/
|
|
5381
|
-
getCurrentMaintenances(options?: any): AxiosPromise<
|
|
6180
|
+
getCurrentMaintenances(options?: any): AxiosPromise<MaintenanceDtoPagedResponse>;
|
|
5382
6181
|
};
|
|
5383
6182
|
/**
|
|
5384
6183
|
* MaintenanceApi - object-oriented interface
|
|
@@ -5402,7 +6201,7 @@ export declare class MaintenanceApi extends BaseAPI {
|
|
|
5402
6201
|
* @throws {RequiredError}
|
|
5403
6202
|
* @memberof MaintenanceApi
|
|
5404
6203
|
*/
|
|
5405
|
-
getCurrentMaintenances(options?: any): Promise<import("axios").AxiosResponse<
|
|
6204
|
+
getCurrentMaintenances(options?: any): Promise<import("axios").AxiosResponse<MaintenanceDtoPagedResponse>>;
|
|
5406
6205
|
}
|
|
5407
6206
|
/**
|
|
5408
6207
|
* OrganizationApi - axios parameter creator
|
|
@@ -5429,7 +6228,7 @@ export declare const OrganizationApiAxiosParamCreator: (configuration?: Configur
|
|
|
5429
6228
|
* @summary Retrieves all organizations.
|
|
5430
6229
|
* @param {string} [searchTerm]
|
|
5431
6230
|
* @param {number} [pageNumber]
|
|
5432
|
-
* @param {number} [pageSize]
|
|
6231
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5433
6232
|
* @param {string} [orderBy]
|
|
5434
6233
|
* @param {*} [options] Override http request option.
|
|
5435
6234
|
* @throws {RequiredError}
|
|
@@ -5461,12 +6260,12 @@ export declare const OrganizationApiFp: (configuration?: Configuration) => {
|
|
|
5461
6260
|
* @summary Retrieves all organizations.
|
|
5462
6261
|
* @param {string} [searchTerm]
|
|
5463
6262
|
* @param {number} [pageNumber]
|
|
5464
|
-
* @param {number} [pageSize]
|
|
6263
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5465
6264
|
* @param {string} [orderBy]
|
|
5466
6265
|
* @param {*} [options] Override http request option.
|
|
5467
6266
|
* @throws {RequiredError}
|
|
5468
6267
|
*/
|
|
5469
|
-
getOrganizations(searchTerm?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6268
|
+
getOrganizations(searchTerm?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrganizationDtoPagedResponse>>;
|
|
5470
6269
|
};
|
|
5471
6270
|
/**
|
|
5472
6271
|
* OrganizationApi - factory interface
|
|
@@ -5493,12 +6292,12 @@ export declare const OrganizationApiFactory: (configuration?: Configuration, bas
|
|
|
5493
6292
|
* @summary Retrieves all organizations.
|
|
5494
6293
|
* @param {string} [searchTerm]
|
|
5495
6294
|
* @param {number} [pageNumber]
|
|
5496
|
-
* @param {number} [pageSize]
|
|
6295
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5497
6296
|
* @param {string} [orderBy]
|
|
5498
6297
|
* @param {*} [options] Override http request option.
|
|
5499
6298
|
* @throws {RequiredError}
|
|
5500
6299
|
*/
|
|
5501
|
-
getOrganizations(searchTerm?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
6300
|
+
getOrganizations(searchTerm?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<OrganizationDtoPagedResponse>;
|
|
5502
6301
|
};
|
|
5503
6302
|
/**
|
|
5504
6303
|
* OrganizationApi - object-oriented interface
|
|
@@ -5529,13 +6328,13 @@ export declare class OrganizationApi extends BaseAPI {
|
|
|
5529
6328
|
* @summary Retrieves all organizations.
|
|
5530
6329
|
* @param {string} [searchTerm]
|
|
5531
6330
|
* @param {number} [pageNumber]
|
|
5532
|
-
* @param {number} [pageSize]
|
|
6331
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5533
6332
|
* @param {string} [orderBy]
|
|
5534
6333
|
* @param {*} [options] Override http request option.
|
|
5535
6334
|
* @throws {RequiredError}
|
|
5536
6335
|
* @memberof OrganizationApi
|
|
5537
6336
|
*/
|
|
5538
|
-
getOrganizations(searchTerm?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
6337
|
+
getOrganizations(searchTerm?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<OrganizationDtoPagedResponse>>;
|
|
5539
6338
|
}
|
|
5540
6339
|
/**
|
|
5541
6340
|
* PidApi - axios parameter creator
|
|
@@ -5712,7 +6511,7 @@ export declare const ProjectApiAxiosParamCreator: (configuration?: Configuration
|
|
|
5712
6511
|
* @summary Retrieves all projects.
|
|
5713
6512
|
* @param {boolean} [topLevel]
|
|
5714
6513
|
* @param {number} [pageNumber]
|
|
5715
|
-
* @param {number} [pageSize]
|
|
6514
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5716
6515
|
* @param {string} [orderBy]
|
|
5717
6516
|
* @param {*} [options] Override http request option.
|
|
5718
6517
|
* @throws {RequiredError}
|
|
@@ -5770,12 +6569,12 @@ export declare const ProjectApiFp: (configuration?: Configuration) => {
|
|
|
5770
6569
|
* @summary Retrieves all projects.
|
|
5771
6570
|
* @param {boolean} [topLevel]
|
|
5772
6571
|
* @param {number} [pageNumber]
|
|
5773
|
-
* @param {number} [pageSize]
|
|
6572
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5774
6573
|
* @param {string} [orderBy]
|
|
5775
6574
|
* @param {*} [options] Override http request option.
|
|
5776
6575
|
* @throws {RequiredError}
|
|
5777
6576
|
*/
|
|
5778
|
-
getProjects(topLevel?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6577
|
+
getProjects(topLevel?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectDtoPagedResponse>>;
|
|
5779
6578
|
/**
|
|
5780
6579
|
*
|
|
5781
6580
|
* @summary Updates a project.
|
|
@@ -5828,12 +6627,12 @@ export declare const ProjectApiFactory: (configuration?: Configuration, basePath
|
|
|
5828
6627
|
* @summary Retrieves all projects.
|
|
5829
6628
|
* @param {boolean} [topLevel]
|
|
5830
6629
|
* @param {number} [pageNumber]
|
|
5831
|
-
* @param {number} [pageSize]
|
|
6630
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5832
6631
|
* @param {string} [orderBy]
|
|
5833
6632
|
* @param {*} [options] Override http request option.
|
|
5834
6633
|
* @throws {RequiredError}
|
|
5835
6634
|
*/
|
|
5836
|
-
getProjects(topLevel?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
6635
|
+
getProjects(topLevel?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ProjectDtoPagedResponse>;
|
|
5837
6636
|
/**
|
|
5838
6637
|
*
|
|
5839
6638
|
* @summary Updates a project.
|
|
@@ -5892,13 +6691,13 @@ export declare class ProjectApi extends BaseAPI {
|
|
|
5892
6691
|
* @summary Retrieves all projects.
|
|
5893
6692
|
* @param {boolean} [topLevel]
|
|
5894
6693
|
* @param {number} [pageNumber]
|
|
5895
|
-
* @param {number} [pageSize]
|
|
6694
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5896
6695
|
* @param {string} [orderBy]
|
|
5897
6696
|
* @param {*} [options] Override http request option.
|
|
5898
6697
|
* @throws {RequiredError}
|
|
5899
6698
|
* @memberof ProjectApi
|
|
5900
6699
|
*/
|
|
5901
|
-
getProjects(topLevel?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
6700
|
+
getProjects(topLevel?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ProjectDtoPagedResponse>>;
|
|
5902
6701
|
/**
|
|
5903
6702
|
*
|
|
5904
6703
|
* @summary Updates a project.
|
|
@@ -5955,7 +6754,7 @@ export declare const ProjectInvitationApiAxiosParamCreator: (configuration?: Con
|
|
|
5955
6754
|
* @summary Retrieves all project invitations for a specified project.
|
|
5956
6755
|
* @param {string} projectId The Id or slug of the project.
|
|
5957
6756
|
* @param {number} [pageNumber]
|
|
5958
|
-
* @param {number} [pageSize]
|
|
6757
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5959
6758
|
* @param {string} [orderBy]
|
|
5960
6759
|
* @param {*} [options] Override http request option.
|
|
5961
6760
|
* @throws {RequiredError}
|
|
@@ -6007,12 +6806,12 @@ export declare const ProjectInvitationApiFp: (configuration?: Configuration) =>
|
|
|
6007
6806
|
* @summary Retrieves all project invitations for a specified project.
|
|
6008
6807
|
* @param {string} projectId The Id or slug of the project.
|
|
6009
6808
|
* @param {number} [pageNumber]
|
|
6010
|
-
* @param {number} [pageSize]
|
|
6809
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6011
6810
|
* @param {string} [orderBy]
|
|
6012
6811
|
* @param {*} [options] Override http request option.
|
|
6013
6812
|
* @throws {RequiredError}
|
|
6014
6813
|
*/
|
|
6015
|
-
getProjectInvitations(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6814
|
+
getProjectInvitations(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectInvitationDtoPagedResponse>>;
|
|
6016
6815
|
};
|
|
6017
6816
|
/**
|
|
6018
6817
|
* ProjectInvitationApi - factory interface
|
|
@@ -6059,12 +6858,12 @@ export declare const ProjectInvitationApiFactory: (configuration?: Configuration
|
|
|
6059
6858
|
* @summary Retrieves all project invitations for a specified project.
|
|
6060
6859
|
* @param {string} projectId The Id or slug of the project.
|
|
6061
6860
|
* @param {number} [pageNumber]
|
|
6062
|
-
* @param {number} [pageSize]
|
|
6861
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6063
6862
|
* @param {string} [orderBy]
|
|
6064
6863
|
* @param {*} [options] Override http request option.
|
|
6065
6864
|
* @throws {RequiredError}
|
|
6066
6865
|
*/
|
|
6067
|
-
getProjectInvitations(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
6866
|
+
getProjectInvitations(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ProjectInvitationDtoPagedResponse>;
|
|
6068
6867
|
};
|
|
6069
6868
|
/**
|
|
6070
6869
|
* ProjectInvitationApi - object-oriented interface
|
|
@@ -6117,13 +6916,13 @@ export declare class ProjectInvitationApi extends BaseAPI {
|
|
|
6117
6916
|
* @summary Retrieves all project invitations for a specified project.
|
|
6118
6917
|
* @param {string} projectId The Id or slug of the project.
|
|
6119
6918
|
* @param {number} [pageNumber]
|
|
6120
|
-
* @param {number} [pageSize]
|
|
6919
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6121
6920
|
* @param {string} [orderBy]
|
|
6122
6921
|
* @param {*} [options] Override http request option.
|
|
6123
6922
|
* @throws {RequiredError}
|
|
6124
6923
|
* @memberof ProjectInvitationApi
|
|
6125
6924
|
*/
|
|
6126
|
-
getProjectInvitations(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
6925
|
+
getProjectInvitations(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ProjectInvitationDtoPagedResponse>>;
|
|
6127
6926
|
}
|
|
6128
6927
|
/**
|
|
6129
6928
|
* ProjectMemberApi - axios parameter creator
|
|
@@ -6170,7 +6969,7 @@ export declare const ProjectMemberApiAxiosParamCreator: (configuration?: Configu
|
|
|
6170
6969
|
* @summary Retrieves all project memberships for a specified project.
|
|
6171
6970
|
* @param {string} projectId The Id or slug of the project.
|
|
6172
6971
|
* @param {number} [pageNumber]
|
|
6173
|
-
* @param {number} [pageSize]
|
|
6972
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6174
6973
|
* @param {string} [orderBy]
|
|
6175
6974
|
* @param {*} [options] Override http request option.
|
|
6176
6975
|
* @throws {RequiredError}
|
|
@@ -6232,12 +7031,12 @@ export declare const ProjectMemberApiFp: (configuration?: Configuration) => {
|
|
|
6232
7031
|
* @summary Retrieves all project memberships for a specified project.
|
|
6233
7032
|
* @param {string} projectId The Id or slug of the project.
|
|
6234
7033
|
* @param {number} [pageNumber]
|
|
6235
|
-
* @param {number} [pageSize]
|
|
7034
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6236
7035
|
* @param {string} [orderBy]
|
|
6237
7036
|
* @param {*} [options] Override http request option.
|
|
6238
7037
|
* @throws {RequiredError}
|
|
6239
7038
|
*/
|
|
6240
|
-
getMemberships(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
7039
|
+
getMemberships(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectRoleDtoPagedResponse>>;
|
|
6241
7040
|
/**
|
|
6242
7041
|
*
|
|
6243
7042
|
* @summary Updates a project membership for a specified project.
|
|
@@ -6294,12 +7093,12 @@ export declare const ProjectMemberApiFactory: (configuration?: Configuration, ba
|
|
|
6294
7093
|
* @summary Retrieves all project memberships for a specified project.
|
|
6295
7094
|
* @param {string} projectId The Id or slug of the project.
|
|
6296
7095
|
* @param {number} [pageNumber]
|
|
6297
|
-
* @param {number} [pageSize]
|
|
7096
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6298
7097
|
* @param {string} [orderBy]
|
|
6299
7098
|
* @param {*} [options] Override http request option.
|
|
6300
7099
|
* @throws {RequiredError}
|
|
6301
7100
|
*/
|
|
6302
|
-
getMemberships(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
7101
|
+
getMemberships(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ProjectRoleDtoPagedResponse>;
|
|
6303
7102
|
/**
|
|
6304
7103
|
*
|
|
6305
7104
|
* @summary Updates a project membership for a specified project.
|
|
@@ -6362,13 +7161,13 @@ export declare class ProjectMemberApi extends BaseAPI {
|
|
|
6362
7161
|
* @summary Retrieves all project memberships for a specified project.
|
|
6363
7162
|
* @param {string} projectId The Id or slug of the project.
|
|
6364
7163
|
* @param {number} [pageNumber]
|
|
6365
|
-
* @param {number} [pageSize]
|
|
7164
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6366
7165
|
* @param {string} [orderBy]
|
|
6367
7166
|
* @param {*} [options] Override http request option.
|
|
6368
7167
|
* @throws {RequiredError}
|
|
6369
7168
|
* @memberof ProjectMemberApi
|
|
6370
7169
|
*/
|
|
6371
|
-
getMemberships(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
7170
|
+
getMemberships(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ProjectRoleDtoPagedResponse>>;
|
|
6372
7171
|
/**
|
|
6373
7172
|
*
|
|
6374
7173
|
* @summary Updates a project membership for a specified project.
|
|
@@ -6408,7 +7207,7 @@ export declare const ProjectQuotaApiAxiosParamCreator: (configuration?: Configur
|
|
|
6408
7207
|
* @summary Retrieves all project quotas for a specified project.
|
|
6409
7208
|
* @param {string} projectId The Id or slug of the project.
|
|
6410
7209
|
* @param {number} [pageNumber]
|
|
6411
|
-
* @param {number} [pageSize]
|
|
7210
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6412
7211
|
* @param {string} [orderBy]
|
|
6413
7212
|
* @param {*} [options] Override http request option.
|
|
6414
7213
|
* @throws {RequiredError}
|
|
@@ -6452,12 +7251,12 @@ export declare const ProjectQuotaApiFp: (configuration?: Configuration) => {
|
|
|
6452
7251
|
* @summary Retrieves all project quotas for a specified project.
|
|
6453
7252
|
* @param {string} projectId The Id or slug of the project.
|
|
6454
7253
|
* @param {number} [pageNumber]
|
|
6455
|
-
* @param {number} [pageSize]
|
|
7254
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6456
7255
|
* @param {string} [orderBy]
|
|
6457
7256
|
* @param {*} [options] Override http request option.
|
|
6458
7257
|
* @throws {RequiredError}
|
|
6459
7258
|
*/
|
|
6460
|
-
getProjectQuotas(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
7259
|
+
getProjectQuotas(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectQuotaDtoPagedResponse>>;
|
|
6461
7260
|
/**
|
|
6462
7261
|
*
|
|
6463
7262
|
* @summary Updates a project quota for a specified project and resource type.
|
|
@@ -6496,12 +7295,12 @@ export declare const ProjectQuotaApiFactory: (configuration?: Configuration, bas
|
|
|
6496
7295
|
* @summary Retrieves all project quotas for a specified project.
|
|
6497
7296
|
* @param {string} projectId The Id or slug of the project.
|
|
6498
7297
|
* @param {number} [pageNumber]
|
|
6499
|
-
* @param {number} [pageSize]
|
|
7298
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6500
7299
|
* @param {string} [orderBy]
|
|
6501
7300
|
* @param {*} [options] Override http request option.
|
|
6502
7301
|
* @throws {RequiredError}
|
|
6503
7302
|
*/
|
|
6504
|
-
getProjectQuotas(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
7303
|
+
getProjectQuotas(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ProjectQuotaDtoPagedResponse>;
|
|
6505
7304
|
/**
|
|
6506
7305
|
*
|
|
6507
7306
|
* @summary Updates a project quota for a specified project and resource type.
|
|
@@ -6544,13 +7343,13 @@ export declare class ProjectQuotaApi extends BaseAPI {
|
|
|
6544
7343
|
* @summary Retrieves all project quotas for a specified project.
|
|
6545
7344
|
* @param {string} projectId The Id or slug of the project.
|
|
6546
7345
|
* @param {number} [pageNumber]
|
|
6547
|
-
* @param {number} [pageSize]
|
|
7346
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6548
7347
|
* @param {string} [orderBy]
|
|
6549
7348
|
* @param {*} [options] Override http request option.
|
|
6550
7349
|
* @throws {RequiredError}
|
|
6551
7350
|
* @memberof ProjectQuotaApi
|
|
6552
7351
|
*/
|
|
6553
|
-
getProjectQuotas(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
7352
|
+
getProjectQuotas(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ProjectQuotaDtoPagedResponse>>;
|
|
6554
7353
|
/**
|
|
6555
7354
|
*
|
|
6556
7355
|
* @summary Updates a project quota for a specified project and resource type.
|
|
@@ -6608,7 +7407,7 @@ export declare const ProjectResourceApiAxiosParamCreator: (configuration?: Confi
|
|
|
6608
7407
|
* @summary Retrieves all resources for a specified project.
|
|
6609
7408
|
* @param {string} projectId The Id or slug of the project.
|
|
6610
7409
|
* @param {number} [pageNumber]
|
|
6611
|
-
* @param {number} [pageSize]
|
|
7410
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6612
7411
|
* @param {string} [orderBy]
|
|
6613
7412
|
* @param {*} [options] Override http request option.
|
|
6614
7413
|
* @throws {RequiredError}
|
|
@@ -6670,12 +7469,12 @@ export declare const ProjectResourceApiFp: (configuration?: Configuration) => {
|
|
|
6670
7469
|
* @summary Retrieves all resources for a specified project.
|
|
6671
7470
|
* @param {string} projectId The Id or slug of the project.
|
|
6672
7471
|
* @param {number} [pageNumber]
|
|
6673
|
-
* @param {number} [pageSize]
|
|
7472
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6674
7473
|
* @param {string} [orderBy]
|
|
6675
7474
|
* @param {*} [options] Override http request option.
|
|
6676
7475
|
* @throws {RequiredError}
|
|
6677
7476
|
*/
|
|
6678
|
-
getResourcesForProject(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
7477
|
+
getResourcesForProject(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResourceDtoPagedResponse>>;
|
|
6679
7478
|
/**
|
|
6680
7479
|
*
|
|
6681
7480
|
* @summary Updates a resource for a specified project.
|
|
@@ -6732,12 +7531,12 @@ export declare const ProjectResourceApiFactory: (configuration?: Configuration,
|
|
|
6732
7531
|
* @summary Retrieves all resources for a specified project.
|
|
6733
7532
|
* @param {string} projectId The Id or slug of the project.
|
|
6734
7533
|
* @param {number} [pageNumber]
|
|
6735
|
-
* @param {number} [pageSize]
|
|
7534
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6736
7535
|
* @param {string} [orderBy]
|
|
6737
7536
|
* @param {*} [options] Override http request option.
|
|
6738
7537
|
* @throws {RequiredError}
|
|
6739
7538
|
*/
|
|
6740
|
-
getResourcesForProject(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
7539
|
+
getResourcesForProject(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ResourceDtoPagedResponse>;
|
|
6741
7540
|
/**
|
|
6742
7541
|
*
|
|
6743
7542
|
* @summary Updates a resource for a specified project.
|
|
@@ -6800,13 +7599,13 @@ export declare class ProjectResourceApi extends BaseAPI {
|
|
|
6800
7599
|
* @summary Retrieves all resources for a specified project.
|
|
6801
7600
|
* @param {string} projectId The Id or slug of the project.
|
|
6802
7601
|
* @param {number} [pageNumber]
|
|
6803
|
-
* @param {number} [pageSize]
|
|
7602
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6804
7603
|
* @param {string} [orderBy]
|
|
6805
7604
|
* @param {*} [options] Override http request option.
|
|
6806
7605
|
* @throws {RequiredError}
|
|
6807
7606
|
* @memberof ProjectResourceApi
|
|
6808
7607
|
*/
|
|
6809
|
-
getResourcesForProject(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
7608
|
+
getResourcesForProject(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ResourceDtoPagedResponse>>;
|
|
6810
7609
|
/**
|
|
6811
7610
|
*
|
|
6812
7611
|
* @summary Updates a resource for a specified project.
|
|
@@ -7115,8 +7914,8 @@ export declare const ResourceTypeApiAxiosParamCreator: (configuration?: Configur
|
|
|
7115
7914
|
*
|
|
7116
7915
|
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
|
|
7117
7916
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
7118
|
-
* @param {string} domain
|
|
7119
|
-
* @param {string} accessToken
|
|
7917
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
7918
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7120
7919
|
* @param {*} [options] Override http request option.
|
|
7121
7920
|
* @throws {RequiredError}
|
|
7122
7921
|
*/
|
|
@@ -7124,8 +7923,8 @@ export declare const ResourceTypeApiAxiosParamCreator: (configuration?: Configur
|
|
|
7124
7923
|
/**
|
|
7125
7924
|
*
|
|
7126
7925
|
* @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
|
|
7127
|
-
* @param {string} domain
|
|
7128
|
-
* @param {string} accessToken
|
|
7926
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
7927
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7129
7928
|
* @param {*} [options] Override http request option.
|
|
7130
7929
|
* @throws {RequiredError}
|
|
7131
7930
|
*/
|
|
@@ -7141,8 +7940,8 @@ export declare const ResourceTypeApiAxiosParamCreator: (configuration?: Configur
|
|
|
7141
7940
|
*
|
|
7142
7941
|
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
|
|
7143
7942
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
7144
|
-
* @param {string} domain
|
|
7145
|
-
* @param {string} accessToken
|
|
7943
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
7944
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7146
7945
|
* @param {*} [options] Override http request option.
|
|
7147
7946
|
* @throws {RequiredError}
|
|
7148
7947
|
*/
|
|
@@ -7172,8 +7971,8 @@ export declare const ResourceTypeApiFp: (configuration?: Configuration) => {
|
|
|
7172
7971
|
*
|
|
7173
7972
|
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
|
|
7174
7973
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
7175
|
-
* @param {string} domain
|
|
7176
|
-
* @param {string} accessToken
|
|
7974
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
7975
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7177
7976
|
* @param {*} [options] Override http request option.
|
|
7178
7977
|
* @throws {RequiredError}
|
|
7179
7978
|
*/
|
|
@@ -7181,8 +7980,8 @@ export declare const ResourceTypeApiFp: (configuration?: Configuration) => {
|
|
|
7181
7980
|
/**
|
|
7182
7981
|
*
|
|
7183
7982
|
* @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
|
|
7184
|
-
* @param {string} domain
|
|
7185
|
-
* @param {string} accessToken
|
|
7983
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
7984
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7186
7985
|
* @param {*} [options] Override http request option.
|
|
7187
7986
|
* @throws {RequiredError}
|
|
7188
7987
|
*/
|
|
@@ -7198,8 +7997,8 @@ export declare const ResourceTypeApiFp: (configuration?: Configuration) => {
|
|
|
7198
7997
|
*
|
|
7199
7998
|
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
|
|
7200
7999
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
7201
|
-
* @param {string} domain
|
|
7202
|
-
* @param {string} accessToken
|
|
8000
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8001
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7203
8002
|
* @param {*} [options] Override http request option.
|
|
7204
8003
|
* @throws {RequiredError}
|
|
7205
8004
|
*/
|
|
@@ -7229,8 +8028,8 @@ export declare const ResourceTypeApiFactory: (configuration?: Configuration, bas
|
|
|
7229
8028
|
*
|
|
7230
8029
|
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
|
|
7231
8030
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
7232
|
-
* @param {string} domain
|
|
7233
|
-
* @param {string} accessToken
|
|
8031
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8032
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7234
8033
|
* @param {*} [options] Override http request option.
|
|
7235
8034
|
* @throws {RequiredError}
|
|
7236
8035
|
*/
|
|
@@ -7238,8 +8037,8 @@ export declare const ResourceTypeApiFactory: (configuration?: Configuration, bas
|
|
|
7238
8037
|
/**
|
|
7239
8038
|
*
|
|
7240
8039
|
* @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
|
|
7241
|
-
* @param {string} domain
|
|
7242
|
-
* @param {string} accessToken
|
|
8040
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8041
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7243
8042
|
* @param {*} [options] Override http request option.
|
|
7244
8043
|
* @throws {RequiredError}
|
|
7245
8044
|
*/
|
|
@@ -7255,8 +8054,8 @@ export declare const ResourceTypeApiFactory: (configuration?: Configuration, bas
|
|
|
7255
8054
|
*
|
|
7256
8055
|
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
|
|
7257
8056
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
7258
|
-
* @param {string} domain
|
|
7259
|
-
* @param {string} accessToken
|
|
8057
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8058
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7260
8059
|
* @param {*} [options] Override http request option.
|
|
7261
8060
|
* @throws {RequiredError}
|
|
7262
8061
|
*/
|
|
@@ -7289,8 +8088,8 @@ export declare class ResourceTypeApi extends BaseAPI {
|
|
|
7289
8088
|
*
|
|
7290
8089
|
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
|
|
7291
8090
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
7292
|
-
* @param {string} domain
|
|
7293
|
-
* @param {string} accessToken
|
|
8091
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8092
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7294
8093
|
* @param {*} [options] Override http request option.
|
|
7295
8094
|
* @throws {RequiredError}
|
|
7296
8095
|
* @memberof ResourceTypeApi
|
|
@@ -7299,8 +8098,8 @@ export declare class ResourceTypeApi extends BaseAPI {
|
|
|
7299
8098
|
/**
|
|
7300
8099
|
*
|
|
7301
8100
|
* @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
|
|
7302
|
-
* @param {string} domain
|
|
7303
|
-
* @param {string} accessToken
|
|
8101
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8102
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7304
8103
|
* @param {*} [options] Override http request option.
|
|
7305
8104
|
* @throws {RequiredError}
|
|
7306
8105
|
* @memberof ResourceTypeApi
|
|
@@ -7318,8 +8117,8 @@ export declare class ResourceTypeApi extends BaseAPI {
|
|
|
7318
8117
|
*
|
|
7319
8118
|
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
|
|
7320
8119
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
7321
|
-
* @param {string} domain
|
|
7322
|
-
* @param {string} accessToken
|
|
8120
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8121
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7323
8122
|
* @param {*} [options] Override http request option.
|
|
7324
8123
|
* @throws {RequiredError}
|
|
7325
8124
|
* @memberof ResourceTypeApi
|
|
@@ -7359,7 +8158,7 @@ export declare const RoleApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
7359
8158
|
*
|
|
7360
8159
|
* @summary Retrieves all roles.
|
|
7361
8160
|
* @param {number} [pageNumber]
|
|
7362
|
-
* @param {number} [pageSize]
|
|
8161
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7363
8162
|
* @param {string} [orderBy]
|
|
7364
8163
|
* @param {*} [options] Override http request option.
|
|
7365
8164
|
* @throws {RequiredError}
|
|
@@ -7390,12 +8189,12 @@ export declare const RoleApiFp: (configuration?: Configuration) => {
|
|
|
7390
8189
|
*
|
|
7391
8190
|
* @summary Retrieves all roles.
|
|
7392
8191
|
* @param {number} [pageNumber]
|
|
7393
|
-
* @param {number} [pageSize]
|
|
8192
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7394
8193
|
* @param {string} [orderBy]
|
|
7395
8194
|
* @param {*} [options] Override http request option.
|
|
7396
8195
|
* @throws {RequiredError}
|
|
7397
8196
|
*/
|
|
7398
|
-
getRoles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8197
|
+
getRoles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleDtoPagedResponse>>;
|
|
7399
8198
|
};
|
|
7400
8199
|
/**
|
|
7401
8200
|
* RoleApi - factory interface
|
|
@@ -7421,12 +8220,12 @@ export declare const RoleApiFactory: (configuration?: Configuration, basePath?:
|
|
|
7421
8220
|
*
|
|
7422
8221
|
* @summary Retrieves all roles.
|
|
7423
8222
|
* @param {number} [pageNumber]
|
|
7424
|
-
* @param {number} [pageSize]
|
|
8223
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7425
8224
|
* @param {string} [orderBy]
|
|
7426
8225
|
* @param {*} [options] Override http request option.
|
|
7427
8226
|
* @throws {RequiredError}
|
|
7428
8227
|
*/
|
|
7429
|
-
getRoles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
8228
|
+
getRoles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<RoleDtoPagedResponse>;
|
|
7430
8229
|
};
|
|
7431
8230
|
/**
|
|
7432
8231
|
* RoleApi - object-oriented interface
|
|
@@ -7456,13 +8255,13 @@ export declare class RoleApi extends BaseAPI {
|
|
|
7456
8255
|
*
|
|
7457
8256
|
* @summary Retrieves all roles.
|
|
7458
8257
|
* @param {number} [pageNumber]
|
|
7459
|
-
* @param {number} [pageSize]
|
|
8258
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7460
8259
|
* @param {string} [orderBy]
|
|
7461
8260
|
* @param {*} [options] Override http request option.
|
|
7462
8261
|
* @throws {RequiredError}
|
|
7463
8262
|
* @memberof RoleApi
|
|
7464
8263
|
*/
|
|
7465
|
-
getRoles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
8264
|
+
getRoles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<RoleDtoPagedResponse>>;
|
|
7466
8265
|
}
|
|
7467
8266
|
/**
|
|
7468
8267
|
* SearchApi - axios parameter creator
|
|
@@ -7479,12 +8278,12 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7479
8278
|
/**
|
|
7480
8279
|
*
|
|
7481
8280
|
* @summary Retrieves a search result by given search parameters.
|
|
7482
|
-
* @param {string} [query]
|
|
7483
|
-
* @param {boolean} [useAdvancedSyntax]
|
|
7484
|
-
* @param {Array<string>} [languages]
|
|
7485
|
-
* @param {SearchCategoryType} [category]
|
|
8281
|
+
* @param {string} [query] The search query
|
|
8282
|
+
* @param {boolean} [useAdvancedSyntax] Set true for advanced Elasticsearch search syntax
|
|
8283
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
8284
|
+
* @param {SearchCategoryType} [category] Set the category filter
|
|
7486
8285
|
* @param {number} [pageNumber]
|
|
7487
|
-
* @param {number} [pageSize]
|
|
8286
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7488
8287
|
* @param {string} [orderBy]
|
|
7489
8288
|
* @param {*} [options] Override http request option.
|
|
7490
8289
|
* @throws {RequiredError}
|
|
@@ -7506,17 +8305,17 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
7506
8305
|
/**
|
|
7507
8306
|
*
|
|
7508
8307
|
* @summary Retrieves a search result by given search parameters.
|
|
7509
|
-
* @param {string} [query]
|
|
7510
|
-
* @param {boolean} [useAdvancedSyntax]
|
|
7511
|
-
* @param {Array<string>} [languages]
|
|
7512
|
-
* @param {SearchCategoryType} [category]
|
|
8308
|
+
* @param {string} [query] The search query
|
|
8309
|
+
* @param {boolean} [useAdvancedSyntax] Set true for advanced Elasticsearch search syntax
|
|
8310
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
8311
|
+
* @param {SearchCategoryType} [category] Set the category filter
|
|
7513
8312
|
* @param {number} [pageNumber]
|
|
7514
|
-
* @param {number} [pageSize]
|
|
8313
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7515
8314
|
* @param {string} [orderBy]
|
|
7516
8315
|
* @param {*} [options] Override http request option.
|
|
7517
8316
|
* @throws {RequiredError}
|
|
7518
8317
|
*/
|
|
7519
|
-
getSearchResults(query?: string, useAdvancedSyntax?: boolean, languages?: Array<string>, category?: SearchCategoryType, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8318
|
+
getSearchResults(query?: string, useAdvancedSyntax?: boolean, languages?: Array<string>, category?: SearchCategoryType, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchResultDtoPagedSearchResponse>>;
|
|
7520
8319
|
};
|
|
7521
8320
|
/**
|
|
7522
8321
|
* SearchApi - factory interface
|
|
@@ -7533,17 +8332,17 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
|
|
|
7533
8332
|
/**
|
|
7534
8333
|
*
|
|
7535
8334
|
* @summary Retrieves a search result by given search parameters.
|
|
7536
|
-
* @param {string} [query]
|
|
7537
|
-
* @param {boolean} [useAdvancedSyntax]
|
|
7538
|
-
* @param {Array<string>} [languages]
|
|
7539
|
-
* @param {SearchCategoryType} [category]
|
|
8335
|
+
* @param {string} [query] The search query
|
|
8336
|
+
* @param {boolean} [useAdvancedSyntax] Set true for advanced Elasticsearch search syntax
|
|
8337
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
8338
|
+
* @param {SearchCategoryType} [category] Set the category filter
|
|
7540
8339
|
* @param {number} [pageNumber]
|
|
7541
|
-
* @param {number} [pageSize]
|
|
8340
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7542
8341
|
* @param {string} [orderBy]
|
|
7543
8342
|
* @param {*} [options] Override http request option.
|
|
7544
8343
|
* @throws {RequiredError}
|
|
7545
8344
|
*/
|
|
7546
|
-
getSearchResults(query?: string, useAdvancedSyntax?: boolean, languages?: Array<string>, category?: SearchCategoryType, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
8345
|
+
getSearchResults(query?: string, useAdvancedSyntax?: boolean, languages?: Array<string>, category?: SearchCategoryType, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<SearchResultDtoPagedSearchResponse>;
|
|
7547
8346
|
};
|
|
7548
8347
|
/**
|
|
7549
8348
|
* SearchApi - object-oriented interface
|
|
@@ -7563,18 +8362,18 @@ export declare class SearchApi extends BaseAPI {
|
|
|
7563
8362
|
/**
|
|
7564
8363
|
*
|
|
7565
8364
|
* @summary Retrieves a search result by given search parameters.
|
|
7566
|
-
* @param {string} [query]
|
|
7567
|
-
* @param {boolean} [useAdvancedSyntax]
|
|
7568
|
-
* @param {Array<string>} [languages]
|
|
7569
|
-
* @param {SearchCategoryType} [category]
|
|
8365
|
+
* @param {string} [query] The search query
|
|
8366
|
+
* @param {boolean} [useAdvancedSyntax] Set true for advanced Elasticsearch search syntax
|
|
8367
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
8368
|
+
* @param {SearchCategoryType} [category] Set the category filter
|
|
7570
8369
|
* @param {number} [pageNumber]
|
|
7571
|
-
* @param {number} [pageSize]
|
|
8370
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7572
8371
|
* @param {string} [orderBy]
|
|
7573
8372
|
* @param {*} [options] Override http request option.
|
|
7574
8373
|
* @throws {RequiredError}
|
|
7575
8374
|
* @memberof SearchApi
|
|
7576
8375
|
*/
|
|
7577
|
-
getSearchResults(query?: string, useAdvancedSyntax?: boolean, languages?: Array<string>, category?: SearchCategoryType, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
8376
|
+
getSearchResults(query?: string, useAdvancedSyntax?: boolean, languages?: Array<string>, category?: SearchCategoryType, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<SearchResultDtoPagedSearchResponse>>;
|
|
7578
8377
|
}
|
|
7579
8378
|
/**
|
|
7580
8379
|
* SelfApi - axios parameter creator
|
|
@@ -7849,7 +8648,7 @@ export declare const SelfApiTokenApiAxiosParamCreator: (configuration?: Configur
|
|
|
7849
8648
|
*
|
|
7850
8649
|
* @summary Retrieves all API tokens for the current authenticated user.
|
|
7851
8650
|
* @param {number} [pageNumber]
|
|
7852
|
-
* @param {number} [pageSize]
|
|
8651
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7853
8652
|
* @param {string} [orderBy]
|
|
7854
8653
|
* @param {*} [options] Override http request option.
|
|
7855
8654
|
* @throws {RequiredError}
|
|
@@ -7896,12 +8695,12 @@ export declare const SelfApiTokenApiFp: (configuration?: Configuration) => {
|
|
|
7896
8695
|
*
|
|
7897
8696
|
* @summary Retrieves all API tokens for the current authenticated user.
|
|
7898
8697
|
* @param {number} [pageNumber]
|
|
7899
|
-
* @param {number} [pageSize]
|
|
8698
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7900
8699
|
* @param {string} [orderBy]
|
|
7901
8700
|
* @param {*} [options] Override http request option.
|
|
7902
8701
|
* @throws {RequiredError}
|
|
7903
8702
|
*/
|
|
7904
|
-
getAllApiTokens(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8703
|
+
getAllApiTokens(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiTokenDtoPagedResponse>>;
|
|
7905
8704
|
/**
|
|
7906
8705
|
*
|
|
7907
8706
|
* @summary Retrieves an API token for the current authenticated user.
|
|
@@ -7943,12 +8742,12 @@ export declare const SelfApiTokenApiFactory: (configuration?: Configuration, bas
|
|
|
7943
8742
|
*
|
|
7944
8743
|
* @summary Retrieves all API tokens for the current authenticated user.
|
|
7945
8744
|
* @param {number} [pageNumber]
|
|
7946
|
-
* @param {number} [pageSize]
|
|
8745
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7947
8746
|
* @param {string} [orderBy]
|
|
7948
8747
|
* @param {*} [options] Override http request option.
|
|
7949
8748
|
* @throws {RequiredError}
|
|
7950
8749
|
*/
|
|
7951
|
-
getAllApiTokens(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
8750
|
+
getAllApiTokens(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ApiTokenDtoPagedResponse>;
|
|
7952
8751
|
/**
|
|
7953
8752
|
*
|
|
7954
8753
|
* @summary Retrieves an API token for the current authenticated user.
|
|
@@ -7994,13 +8793,13 @@ export declare class SelfApiTokenApi extends BaseAPI {
|
|
|
7994
8793
|
*
|
|
7995
8794
|
* @summary Retrieves all API tokens for the current authenticated user.
|
|
7996
8795
|
* @param {number} [pageNumber]
|
|
7997
|
-
* @param {number} [pageSize]
|
|
8796
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7998
8797
|
* @param {string} [orderBy]
|
|
7999
8798
|
* @param {*} [options] Override http request option.
|
|
8000
8799
|
* @throws {RequiredError}
|
|
8001
8800
|
* @memberof SelfApiTokenApi
|
|
8002
8801
|
*/
|
|
8003
|
-
getAllApiTokens(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
8802
|
+
getAllApiTokens(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ApiTokenDtoPagedResponse>>;
|
|
8004
8803
|
/**
|
|
8005
8804
|
*
|
|
8006
8805
|
* @summary Retrieves an API token for the current authenticated user.
|
|
@@ -8044,7 +8843,7 @@ export declare const TitleApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8044
8843
|
*
|
|
8045
8844
|
* @summary Retrieves all titles.
|
|
8046
8845
|
* @param {number} [pageNumber]
|
|
8047
|
-
* @param {number} [pageSize]
|
|
8846
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8048
8847
|
* @param {string} [orderBy]
|
|
8049
8848
|
* @param {*} [options] Override http request option.
|
|
8050
8849
|
* @throws {RequiredError}
|
|
@@ -8075,12 +8874,12 @@ export declare const TitleApiFp: (configuration?: Configuration) => {
|
|
|
8075
8874
|
*
|
|
8076
8875
|
* @summary Retrieves all titles.
|
|
8077
8876
|
* @param {number} [pageNumber]
|
|
8078
|
-
* @param {number} [pageSize]
|
|
8877
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8079
8878
|
* @param {string} [orderBy]
|
|
8080
8879
|
* @param {*} [options] Override http request option.
|
|
8081
8880
|
* @throws {RequiredError}
|
|
8082
8881
|
*/
|
|
8083
|
-
getTitles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8882
|
+
getTitles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TitleDtoPagedResponse>>;
|
|
8084
8883
|
};
|
|
8085
8884
|
/**
|
|
8086
8885
|
* TitleApi - factory interface
|
|
@@ -8106,12 +8905,12 @@ export declare const TitleApiFactory: (configuration?: Configuration, basePath?:
|
|
|
8106
8905
|
*
|
|
8107
8906
|
* @summary Retrieves all titles.
|
|
8108
8907
|
* @param {number} [pageNumber]
|
|
8109
|
-
* @param {number} [pageSize]
|
|
8908
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8110
8909
|
* @param {string} [orderBy]
|
|
8111
8910
|
* @param {*} [options] Override http request option.
|
|
8112
8911
|
* @throws {RequiredError}
|
|
8113
8912
|
*/
|
|
8114
|
-
getTitles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
8913
|
+
getTitles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<TitleDtoPagedResponse>;
|
|
8115
8914
|
};
|
|
8116
8915
|
/**
|
|
8117
8916
|
* TitleApi - object-oriented interface
|
|
@@ -8141,13 +8940,13 @@ export declare class TitleApi extends BaseAPI {
|
|
|
8141
8940
|
*
|
|
8142
8941
|
* @summary Retrieves all titles.
|
|
8143
8942
|
* @param {number} [pageNumber]
|
|
8144
|
-
* @param {number} [pageSize]
|
|
8943
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8145
8944
|
* @param {string} [orderBy]
|
|
8146
8945
|
* @param {*} [options] Override http request option.
|
|
8147
8946
|
* @throws {RequiredError}
|
|
8148
8947
|
* @memberof TitleApi
|
|
8149
8948
|
*/
|
|
8150
|
-
getTitles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
8949
|
+
getTitles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<TitleDtoPagedResponse>>;
|
|
8151
8950
|
}
|
|
8152
8951
|
/**
|
|
8153
8952
|
* TosApi - axios parameter creator
|
|
@@ -8264,7 +9063,7 @@ export declare const TreeApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
8264
9063
|
* @param {string} resourceId The unique identifier of the resource.
|
|
8265
9064
|
* @param {string} [path]
|
|
8266
9065
|
* @param {number} [pageNumber]
|
|
8267
|
-
* @param {number} [pageSize]
|
|
9066
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8268
9067
|
* @param {string} [orderBy]
|
|
8269
9068
|
* @param {*} [options] Override http request option.
|
|
8270
9069
|
* @throws {RequiredError}
|
|
@@ -8276,9 +9075,9 @@ export declare const TreeApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
8276
9075
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
8277
9076
|
* @param {string} resourceId The unique identifier of the resource.
|
|
8278
9077
|
* @param {string} [path]
|
|
8279
|
-
* @param {RdfFormat} [format]
|
|
9078
|
+
* @param {RdfFormat} [format] Value indicating whether to list folder contents recursively, including subfolders.
|
|
8280
9079
|
* @param {number} [pageNumber]
|
|
8281
|
-
* @param {number} [pageSize]
|
|
9080
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8282
9081
|
* @param {string} [orderBy]
|
|
8283
9082
|
* @param {*} [options] Override http request option.
|
|
8284
9083
|
* @throws {RequiredError}
|
|
@@ -8326,26 +9125,26 @@ export declare const TreeApiFp: (configuration?: Configuration) => {
|
|
|
8326
9125
|
* @param {string} resourceId The unique identifier of the resource.
|
|
8327
9126
|
* @param {string} [path]
|
|
8328
9127
|
* @param {number} [pageNumber]
|
|
8329
|
-
* @param {number} [pageSize]
|
|
9128
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8330
9129
|
* @param {string} [orderBy]
|
|
8331
9130
|
* @param {*} [options] Override http request option.
|
|
8332
9131
|
* @throws {RequiredError}
|
|
8333
9132
|
*/
|
|
8334
|
-
getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9133
|
+
getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileTreeDtoPagedResponse>>;
|
|
8335
9134
|
/**
|
|
8336
9135
|
*
|
|
8337
9136
|
* @summary Retrieves the metadata tree associated with a resource.
|
|
8338
9137
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
8339
9138
|
* @param {string} resourceId The unique identifier of the resource.
|
|
8340
9139
|
* @param {string} [path]
|
|
8341
|
-
* @param {RdfFormat} [format]
|
|
9140
|
+
* @param {RdfFormat} [format] Value indicating whether to list folder contents recursively, including subfolders.
|
|
8342
9141
|
* @param {number} [pageNumber]
|
|
8343
|
-
* @param {number} [pageSize]
|
|
9142
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8344
9143
|
* @param {string} [orderBy]
|
|
8345
9144
|
* @param {*} [options] Override http request option.
|
|
8346
9145
|
* @throws {RequiredError}
|
|
8347
9146
|
*/
|
|
8348
|
-
getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9147
|
+
getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MetadataTreeDtoPagedResponse>>;
|
|
8349
9148
|
/**
|
|
8350
9149
|
*
|
|
8351
9150
|
* @summary Updates an existing metadata tree of a resource.
|
|
@@ -8388,26 +9187,26 @@ export declare const TreeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
8388
9187
|
* @param {string} resourceId The unique identifier of the resource.
|
|
8389
9188
|
* @param {string} [path]
|
|
8390
9189
|
* @param {number} [pageNumber]
|
|
8391
|
-
* @param {number} [pageSize]
|
|
9190
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8392
9191
|
* @param {string} [orderBy]
|
|
8393
9192
|
* @param {*} [options] Override http request option.
|
|
8394
9193
|
* @throws {RequiredError}
|
|
8395
9194
|
*/
|
|
8396
|
-
getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
9195
|
+
getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<FileTreeDtoPagedResponse>;
|
|
8397
9196
|
/**
|
|
8398
9197
|
*
|
|
8399
9198
|
* @summary Retrieves the metadata tree associated with a resource.
|
|
8400
9199
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
8401
9200
|
* @param {string} resourceId The unique identifier of the resource.
|
|
8402
9201
|
* @param {string} [path]
|
|
8403
|
-
* @param {RdfFormat} [format]
|
|
9202
|
+
* @param {RdfFormat} [format] Value indicating whether to list folder contents recursively, including subfolders.
|
|
8404
9203
|
* @param {number} [pageNumber]
|
|
8405
|
-
* @param {number} [pageSize]
|
|
9204
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8406
9205
|
* @param {string} [orderBy]
|
|
8407
9206
|
* @param {*} [options] Override http request option.
|
|
8408
9207
|
* @throws {RequiredError}
|
|
8409
9208
|
*/
|
|
8410
|
-
getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
9209
|
+
getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<MetadataTreeDtoPagedResponse>;
|
|
8411
9210
|
/**
|
|
8412
9211
|
*
|
|
8413
9212
|
* @summary Updates an existing metadata tree of a resource.
|
|
@@ -8454,28 +9253,28 @@ export declare class TreeApi extends BaseAPI {
|
|
|
8454
9253
|
* @param {string} resourceId The unique identifier of the resource.
|
|
8455
9254
|
* @param {string} [path]
|
|
8456
9255
|
* @param {number} [pageNumber]
|
|
8457
|
-
* @param {number} [pageSize]
|
|
9256
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8458
9257
|
* @param {string} [orderBy]
|
|
8459
9258
|
* @param {*} [options] Override http request option.
|
|
8460
9259
|
* @throws {RequiredError}
|
|
8461
9260
|
* @memberof TreeApi
|
|
8462
9261
|
*/
|
|
8463
|
-
getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
9262
|
+
getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<FileTreeDtoPagedResponse>>;
|
|
8464
9263
|
/**
|
|
8465
9264
|
*
|
|
8466
9265
|
* @summary Retrieves the metadata tree associated with a resource.
|
|
8467
9266
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
8468
9267
|
* @param {string} resourceId The unique identifier of the resource.
|
|
8469
9268
|
* @param {string} [path]
|
|
8470
|
-
* @param {RdfFormat} [format]
|
|
9269
|
+
* @param {RdfFormat} [format] Value indicating whether to list folder contents recursively, including subfolders.
|
|
8471
9270
|
* @param {number} [pageNumber]
|
|
8472
|
-
* @param {number} [pageSize]
|
|
9271
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8473
9272
|
* @param {string} [orderBy]
|
|
8474
9273
|
* @param {*} [options] Override http request option.
|
|
8475
9274
|
* @throws {RequiredError}
|
|
8476
9275
|
* @memberof TreeApi
|
|
8477
9276
|
*/
|
|
8478
|
-
getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
9277
|
+
getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<MetadataTreeDtoPagedResponse>>;
|
|
8479
9278
|
/**
|
|
8480
9279
|
*
|
|
8481
9280
|
* @summary Updates an existing metadata tree of a resource.
|
|
@@ -8596,7 +9395,7 @@ export declare const VisibilityApiAxiosParamCreator: (configuration?: Configurat
|
|
|
8596
9395
|
*
|
|
8597
9396
|
* @summary Retrieves all visibilities.
|
|
8598
9397
|
* @param {number} [pageNumber]
|
|
8599
|
-
* @param {number} [pageSize]
|
|
9398
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8600
9399
|
* @param {string} [orderBy]
|
|
8601
9400
|
* @param {*} [options] Override http request option.
|
|
8602
9401
|
* @throws {RequiredError}
|
|
@@ -8627,12 +9426,12 @@ export declare const VisibilityApiFp: (configuration?: Configuration) => {
|
|
|
8627
9426
|
*
|
|
8628
9427
|
* @summary Retrieves all visibilities.
|
|
8629
9428
|
* @param {number} [pageNumber]
|
|
8630
|
-
* @param {number} [pageSize]
|
|
9429
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8631
9430
|
* @param {string} [orderBy]
|
|
8632
9431
|
* @param {*} [options] Override http request option.
|
|
8633
9432
|
* @throws {RequiredError}
|
|
8634
9433
|
*/
|
|
8635
|
-
getVisibilities(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9434
|
+
getVisibilities(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VisibilityDtoPagedResponse>>;
|
|
8636
9435
|
/**
|
|
8637
9436
|
*
|
|
8638
9437
|
* @summary Retrieves a visibility by ID.
|
|
@@ -8658,12 +9457,12 @@ export declare const VisibilityApiFactory: (configuration?: Configuration, baseP
|
|
|
8658
9457
|
*
|
|
8659
9458
|
* @summary Retrieves all visibilities.
|
|
8660
9459
|
* @param {number} [pageNumber]
|
|
8661
|
-
* @param {number} [pageSize]
|
|
9460
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8662
9461
|
* @param {string} [orderBy]
|
|
8663
9462
|
* @param {*} [options] Override http request option.
|
|
8664
9463
|
* @throws {RequiredError}
|
|
8665
9464
|
*/
|
|
8666
|
-
getVisibilities(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
9465
|
+
getVisibilities(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<VisibilityDtoPagedResponse>;
|
|
8667
9466
|
/**
|
|
8668
9467
|
*
|
|
8669
9468
|
* @summary Retrieves a visibility by ID.
|
|
@@ -8692,13 +9491,13 @@ export declare class VisibilityApi extends BaseAPI {
|
|
|
8692
9491
|
*
|
|
8693
9492
|
* @summary Retrieves all visibilities.
|
|
8694
9493
|
* @param {number} [pageNumber]
|
|
8695
|
-
* @param {number} [pageSize]
|
|
9494
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8696
9495
|
* @param {string} [orderBy]
|
|
8697
9496
|
* @param {*} [options] Override http request option.
|
|
8698
9497
|
* @throws {RequiredError}
|
|
8699
9498
|
* @memberof VisibilityApi
|
|
8700
9499
|
*/
|
|
8701
|
-
getVisibilities(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
9500
|
+
getVisibilities(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<VisibilityDtoPagedResponse>>;
|
|
8702
9501
|
/**
|
|
8703
9502
|
*
|
|
8704
9503
|
* @summary Retrieves a visibility by ID.
|
|
@@ -8727,7 +9526,7 @@ export declare const VocabularyApiAxiosParamCreator: (configuration?: Configurat
|
|
|
8727
9526
|
* @param {string} [searchTerm]
|
|
8728
9527
|
* @param {AcceptedLanguage} [language]
|
|
8729
9528
|
* @param {number} [pageNumber]
|
|
8730
|
-
* @param {number} [pageSize]
|
|
9529
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8731
9530
|
* @param {string} [orderBy]
|
|
8732
9531
|
* @param {*} [options] Override http request option.
|
|
8733
9532
|
* @throws {RequiredError}
|
|
@@ -8748,13 +9547,13 @@ export declare const VocabularyApiAxiosParamCreator: (configuration?: Configurat
|
|
|
8748
9547
|
* @param {string} _class
|
|
8749
9548
|
* @param {string} [searchTerm]
|
|
8750
9549
|
* @param {AcceptedLanguage} [language]
|
|
9550
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `150`.
|
|
8751
9551
|
* @param {number} [pageNumber]
|
|
8752
|
-
* @param {number} [pageSize]
|
|
8753
9552
|
* @param {string} [orderBy]
|
|
8754
9553
|
* @param {*} [options] Override http request option.
|
|
8755
9554
|
* @throws {RequiredError}
|
|
8756
9555
|
*/
|
|
8757
|
-
getVocabularyInstances: (_class: string, searchTerm?: string, language?: AcceptedLanguage,
|
|
9556
|
+
getVocabularyInstances: (_class: string, searchTerm?: string, language?: AcceptedLanguage, pageSize?: number, pageNumber?: number, orderBy?: string, options?: any) => Promise<RequestArgs>;
|
|
8758
9557
|
};
|
|
8759
9558
|
/**
|
|
8760
9559
|
* VocabularyApi - functional programming interface
|
|
@@ -8774,12 +9573,12 @@ export declare const VocabularyApiFp: (configuration?: Configuration) => {
|
|
|
8774
9573
|
* @param {string} [searchTerm]
|
|
8775
9574
|
* @param {AcceptedLanguage} [language]
|
|
8776
9575
|
* @param {number} [pageNumber]
|
|
8777
|
-
* @param {number} [pageSize]
|
|
9576
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8778
9577
|
* @param {string} [orderBy]
|
|
8779
9578
|
* @param {*} [options] Override http request option.
|
|
8780
9579
|
* @throws {RequiredError}
|
|
8781
9580
|
*/
|
|
8782
|
-
getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9581
|
+
getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VocabularyDtoPagedResponse>>;
|
|
8783
9582
|
/**
|
|
8784
9583
|
* Could be a top-level instance, or an intermediate-level instance from a vocabulary.
|
|
8785
9584
|
* @summary Retrieves a single instance from a vocabulary.
|
|
@@ -8795,13 +9594,13 @@ export declare const VocabularyApiFp: (configuration?: Configuration) => {
|
|
|
8795
9594
|
* @param {string} _class
|
|
8796
9595
|
* @param {string} [searchTerm]
|
|
8797
9596
|
* @param {AcceptedLanguage} [language]
|
|
9597
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `150`.
|
|
8798
9598
|
* @param {number} [pageNumber]
|
|
8799
|
-
* @param {number} [pageSize]
|
|
8800
9599
|
* @param {string} [orderBy]
|
|
8801
9600
|
* @param {*} [options] Override http request option.
|
|
8802
9601
|
* @throws {RequiredError}
|
|
8803
9602
|
*/
|
|
8804
|
-
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage,
|
|
9603
|
+
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageSize?: number, pageNumber?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VocabularyInstanceDtoPagedResponse>>;
|
|
8805
9604
|
};
|
|
8806
9605
|
/**
|
|
8807
9606
|
* VocabularyApi - factory interface
|
|
@@ -8821,12 +9620,12 @@ export declare const VocabularyApiFactory: (configuration?: Configuration, baseP
|
|
|
8821
9620
|
* @param {string} [searchTerm]
|
|
8822
9621
|
* @param {AcceptedLanguage} [language]
|
|
8823
9622
|
* @param {number} [pageNumber]
|
|
8824
|
-
* @param {number} [pageSize]
|
|
9623
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8825
9624
|
* @param {string} [orderBy]
|
|
8826
9625
|
* @param {*} [options] Override http request option.
|
|
8827
9626
|
* @throws {RequiredError}
|
|
8828
9627
|
*/
|
|
8829
|
-
getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
9628
|
+
getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<VocabularyDtoPagedResponse>;
|
|
8830
9629
|
/**
|
|
8831
9630
|
* Could be a top-level instance, or an intermediate-level instance from a vocabulary.
|
|
8832
9631
|
* @summary Retrieves a single instance from a vocabulary.
|
|
@@ -8842,13 +9641,13 @@ export declare const VocabularyApiFactory: (configuration?: Configuration, baseP
|
|
|
8842
9641
|
* @param {string} _class
|
|
8843
9642
|
* @param {string} [searchTerm]
|
|
8844
9643
|
* @param {AcceptedLanguage} [language]
|
|
9644
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `150`.
|
|
8845
9645
|
* @param {number} [pageNumber]
|
|
8846
|
-
* @param {number} [pageSize]
|
|
8847
9646
|
* @param {string} [orderBy]
|
|
8848
9647
|
* @param {*} [options] Override http request option.
|
|
8849
9648
|
* @throws {RequiredError}
|
|
8850
9649
|
*/
|
|
8851
|
-
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage,
|
|
9650
|
+
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageSize?: number, pageNumber?: number, orderBy?: string, options?: any): AxiosPromise<VocabularyInstanceDtoPagedResponse>;
|
|
8852
9651
|
};
|
|
8853
9652
|
/**
|
|
8854
9653
|
* VocabularyApi - object-oriented interface
|
|
@@ -8871,13 +9670,13 @@ export declare class VocabularyApi extends BaseAPI {
|
|
|
8871
9670
|
* @param {string} [searchTerm]
|
|
8872
9671
|
* @param {AcceptedLanguage} [language]
|
|
8873
9672
|
* @param {number} [pageNumber]
|
|
8874
|
-
* @param {number} [pageSize]
|
|
9673
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8875
9674
|
* @param {string} [orderBy]
|
|
8876
9675
|
* @param {*} [options] Override http request option.
|
|
8877
9676
|
* @throws {RequiredError}
|
|
8878
9677
|
* @memberof VocabularyApi
|
|
8879
9678
|
*/
|
|
8880
|
-
getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
9679
|
+
getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<VocabularyDtoPagedResponse>>;
|
|
8881
9680
|
/**
|
|
8882
9681
|
* Could be a top-level instance, or an intermediate-level instance from a vocabulary.
|
|
8883
9682
|
* @summary Retrieves a single instance from a vocabulary.
|
|
@@ -8894,12 +9693,12 @@ export declare class VocabularyApi extends BaseAPI {
|
|
|
8894
9693
|
* @param {string} _class
|
|
8895
9694
|
* @param {string} [searchTerm]
|
|
8896
9695
|
* @param {AcceptedLanguage} [language]
|
|
9696
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `150`.
|
|
8897
9697
|
* @param {number} [pageNumber]
|
|
8898
|
-
* @param {number} [pageSize]
|
|
8899
9698
|
* @param {string} [orderBy]
|
|
8900
9699
|
* @param {*} [options] Override http request option.
|
|
8901
9700
|
* @throws {RequiredError}
|
|
8902
9701
|
* @memberof VocabularyApi
|
|
8903
9702
|
*/
|
|
8904
|
-
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage,
|
|
9703
|
+
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageSize?: number, pageNumber?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<VocabularyInstanceDtoPagedResponse>>;
|
|
8905
9704
|
}
|