@coscine/api-client 3.2.1 → 3.3.0
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 +4073 -4067
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +4073 -4067
- package/dist/index.umd.js.map +1 -1
- package/dist/lib/Coscine.Api/api.js +516 -10
- 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 +1203 -453
- package/dist/types/apis.d.ts +20 -20
- package/dist/types/index.d.ts +40 -40
- package/package.json +2 -2
|
@@ -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}
|
|
@@ -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}
|
|
@@ -528,37 +528,37 @@ export interface FileTreeDto {
|
|
|
528
528
|
/**
|
|
529
529
|
*
|
|
530
530
|
* @export
|
|
531
|
-
* @interface
|
|
531
|
+
* @interface FileTreeDtoPagedResponse
|
|
532
532
|
*/
|
|
533
|
-
export interface
|
|
533
|
+
export interface FileTreeDtoPagedResponse {
|
|
534
534
|
/**
|
|
535
535
|
*
|
|
536
536
|
* @type {Array<FileTreeDto>}
|
|
537
|
-
* @memberof
|
|
537
|
+
* @memberof FileTreeDtoPagedResponse
|
|
538
538
|
*/
|
|
539
539
|
data?: Array<FileTreeDto> | null;
|
|
540
540
|
/**
|
|
541
541
|
*
|
|
542
|
-
* @type {
|
|
543
|
-
* @memberof
|
|
542
|
+
* @type {boolean}
|
|
543
|
+
* @memberof FileTreeDtoPagedResponse
|
|
544
544
|
*/
|
|
545
|
-
|
|
545
|
+
isSuccess?: boolean;
|
|
546
546
|
/**
|
|
547
547
|
*
|
|
548
|
-
* @type {
|
|
549
|
-
* @memberof
|
|
548
|
+
* @type {number}
|
|
549
|
+
* @memberof FileTreeDtoPagedResponse
|
|
550
550
|
*/
|
|
551
|
-
|
|
551
|
+
statusCode?: number | null;
|
|
552
552
|
/**
|
|
553
553
|
*
|
|
554
554
|
* @type {string}
|
|
555
|
-
* @memberof
|
|
555
|
+
* @memberof FileTreeDtoPagedResponse
|
|
556
556
|
*/
|
|
557
557
|
traceId?: string | null;
|
|
558
558
|
/**
|
|
559
559
|
*
|
|
560
560
|
* @type {Pagination}
|
|
561
|
-
* @memberof
|
|
561
|
+
* @memberof FileTreeDtoPagedResponse
|
|
562
562
|
*/
|
|
563
563
|
pagination?: Pagination;
|
|
564
564
|
}
|
|
@@ -681,16 +681,16 @@ export interface GitlabBranchDtoIEnumerableResponse {
|
|
|
681
681
|
data?: Array<GitlabBranchDto> | null;
|
|
682
682
|
/**
|
|
683
683
|
*
|
|
684
|
-
* @type {
|
|
684
|
+
* @type {boolean}
|
|
685
685
|
* @memberof GitlabBranchDtoIEnumerableResponse
|
|
686
686
|
*/
|
|
687
|
-
|
|
687
|
+
isSuccess?: boolean;
|
|
688
688
|
/**
|
|
689
689
|
*
|
|
690
|
-
* @type {
|
|
690
|
+
* @type {number}
|
|
691
691
|
* @memberof GitlabBranchDtoIEnumerableResponse
|
|
692
692
|
*/
|
|
693
|
-
|
|
693
|
+
statusCode?: number | null;
|
|
694
694
|
/**
|
|
695
695
|
*
|
|
696
696
|
* @type {string}
|
|
@@ -797,16 +797,16 @@ export interface GitlabProjectDtoIEnumerableResponse {
|
|
|
797
797
|
data?: Array<GitlabProjectDto> | null;
|
|
798
798
|
/**
|
|
799
799
|
*
|
|
800
|
-
* @type {
|
|
800
|
+
* @type {boolean}
|
|
801
801
|
* @memberof GitlabProjectDtoIEnumerableResponse
|
|
802
802
|
*/
|
|
803
|
-
|
|
803
|
+
isSuccess?: boolean;
|
|
804
804
|
/**
|
|
805
805
|
*
|
|
806
|
-
* @type {
|
|
806
|
+
* @type {number}
|
|
807
807
|
* @memberof GitlabProjectDtoIEnumerableResponse
|
|
808
808
|
*/
|
|
809
|
-
|
|
809
|
+
statusCode?: number | null;
|
|
810
810
|
/**
|
|
811
811
|
*
|
|
812
812
|
* @type {string}
|
|
@@ -828,16 +828,16 @@ export interface GitlabProjectDtoResponse {
|
|
|
828
828
|
data?: GitlabProjectDto;
|
|
829
829
|
/**
|
|
830
830
|
*
|
|
831
|
-
* @type {
|
|
831
|
+
* @type {boolean}
|
|
832
832
|
* @memberof GitlabProjectDtoResponse
|
|
833
833
|
*/
|
|
834
|
-
|
|
834
|
+
isSuccess?: boolean;
|
|
835
835
|
/**
|
|
836
836
|
*
|
|
837
|
-
* @type {
|
|
837
|
+
* @type {number}
|
|
838
838
|
* @memberof GitlabProjectDtoResponse
|
|
839
839
|
*/
|
|
840
|
-
|
|
840
|
+
statusCode?: number | null;
|
|
841
841
|
/**
|
|
842
842
|
*
|
|
843
843
|
* @type {string}
|
|
@@ -957,37 +957,37 @@ export interface LanguageDto {
|
|
|
957
957
|
/**
|
|
958
958
|
*
|
|
959
959
|
* @export
|
|
960
|
-
* @interface
|
|
960
|
+
* @interface LanguageDtoPagedResponse
|
|
961
961
|
*/
|
|
962
|
-
export interface
|
|
962
|
+
export interface LanguageDtoPagedResponse {
|
|
963
963
|
/**
|
|
964
964
|
*
|
|
965
965
|
* @type {Array<LanguageDto>}
|
|
966
|
-
* @memberof
|
|
966
|
+
* @memberof LanguageDtoPagedResponse
|
|
967
967
|
*/
|
|
968
968
|
data?: Array<LanguageDto> | null;
|
|
969
969
|
/**
|
|
970
970
|
*
|
|
971
|
-
* @type {
|
|
972
|
-
* @memberof
|
|
971
|
+
* @type {boolean}
|
|
972
|
+
* @memberof LanguageDtoPagedResponse
|
|
973
973
|
*/
|
|
974
|
-
|
|
974
|
+
isSuccess?: boolean;
|
|
975
975
|
/**
|
|
976
976
|
*
|
|
977
|
-
* @type {
|
|
978
|
-
* @memberof
|
|
977
|
+
* @type {number}
|
|
978
|
+
* @memberof LanguageDtoPagedResponse
|
|
979
979
|
*/
|
|
980
|
-
|
|
980
|
+
statusCode?: number | null;
|
|
981
981
|
/**
|
|
982
982
|
*
|
|
983
983
|
* @type {string}
|
|
984
|
-
* @memberof
|
|
984
|
+
* @memberof LanguageDtoPagedResponse
|
|
985
985
|
*/
|
|
986
986
|
traceId?: string | null;
|
|
987
987
|
/**
|
|
988
988
|
*
|
|
989
989
|
* @type {Pagination}
|
|
990
|
-
* @memberof
|
|
990
|
+
* @memberof LanguageDtoPagedResponse
|
|
991
991
|
*/
|
|
992
992
|
pagination?: Pagination;
|
|
993
993
|
}
|
|
@@ -1005,16 +1005,16 @@ export interface LanguageDtoResponse {
|
|
|
1005
1005
|
data?: LanguageDto;
|
|
1006
1006
|
/**
|
|
1007
1007
|
*
|
|
1008
|
-
* @type {
|
|
1008
|
+
* @type {boolean}
|
|
1009
1009
|
* @memberof LanguageDtoResponse
|
|
1010
1010
|
*/
|
|
1011
|
-
|
|
1011
|
+
isSuccess?: boolean;
|
|
1012
1012
|
/**
|
|
1013
1013
|
*
|
|
1014
|
-
* @type {
|
|
1014
|
+
* @type {number}
|
|
1015
1015
|
* @memberof LanguageDtoResponse
|
|
1016
1016
|
*/
|
|
1017
|
-
|
|
1017
|
+
statusCode?: number | null;
|
|
1018
1018
|
/**
|
|
1019
1019
|
*
|
|
1020
1020
|
* @type {string}
|
|
@@ -1057,37 +1057,37 @@ export interface LicenseDto {
|
|
|
1057
1057
|
/**
|
|
1058
1058
|
*
|
|
1059
1059
|
* @export
|
|
1060
|
-
* @interface
|
|
1060
|
+
* @interface LicenseDtoPagedResponse
|
|
1061
1061
|
*/
|
|
1062
|
-
export interface
|
|
1062
|
+
export interface LicenseDtoPagedResponse {
|
|
1063
1063
|
/**
|
|
1064
1064
|
*
|
|
1065
1065
|
* @type {Array<LicenseDto>}
|
|
1066
|
-
* @memberof
|
|
1066
|
+
* @memberof LicenseDtoPagedResponse
|
|
1067
1067
|
*/
|
|
1068
1068
|
data?: Array<LicenseDto> | null;
|
|
1069
1069
|
/**
|
|
1070
1070
|
*
|
|
1071
|
-
* @type {
|
|
1072
|
-
* @memberof
|
|
1071
|
+
* @type {boolean}
|
|
1072
|
+
* @memberof LicenseDtoPagedResponse
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
isSuccess?: boolean;
|
|
1075
1075
|
/**
|
|
1076
1076
|
*
|
|
1077
|
-
* @type {
|
|
1078
|
-
* @memberof
|
|
1077
|
+
* @type {number}
|
|
1078
|
+
* @memberof LicenseDtoPagedResponse
|
|
1079
1079
|
*/
|
|
1080
|
-
|
|
1080
|
+
statusCode?: number | null;
|
|
1081
1081
|
/**
|
|
1082
1082
|
*
|
|
1083
1083
|
* @type {string}
|
|
1084
|
-
* @memberof
|
|
1084
|
+
* @memberof LicenseDtoPagedResponse
|
|
1085
1085
|
*/
|
|
1086
1086
|
traceId?: string | null;
|
|
1087
1087
|
/**
|
|
1088
1088
|
*
|
|
1089
1089
|
* @type {Pagination}
|
|
1090
|
-
* @memberof
|
|
1090
|
+
* @memberof LicenseDtoPagedResponse
|
|
1091
1091
|
*/
|
|
1092
1092
|
pagination?: Pagination;
|
|
1093
1093
|
}
|
|
@@ -1105,16 +1105,16 @@ export interface LicenseDtoResponse {
|
|
|
1105
1105
|
data?: LicenseDto;
|
|
1106
1106
|
/**
|
|
1107
1107
|
*
|
|
1108
|
-
* @type {
|
|
1108
|
+
* @type {boolean}
|
|
1109
1109
|
* @memberof LicenseDtoResponse
|
|
1110
1110
|
*/
|
|
1111
|
-
|
|
1111
|
+
isSuccess?: boolean;
|
|
1112
1112
|
/**
|
|
1113
1113
|
*
|
|
1114
|
-
* @type {
|
|
1114
|
+
* @type {number}
|
|
1115
1115
|
* @memberof LicenseDtoResponse
|
|
1116
1116
|
*/
|
|
1117
|
-
|
|
1117
|
+
statusCode?: number | null;
|
|
1118
1118
|
/**
|
|
1119
1119
|
*
|
|
1120
1120
|
* @type {string}
|
|
@@ -1181,37 +1181,37 @@ export interface MaintenanceDto {
|
|
|
1181
1181
|
/**
|
|
1182
1182
|
*
|
|
1183
1183
|
* @export
|
|
1184
|
-
* @interface
|
|
1184
|
+
* @interface MaintenanceDtoPagedResponse
|
|
1185
1185
|
*/
|
|
1186
|
-
export interface
|
|
1186
|
+
export interface MaintenanceDtoPagedResponse {
|
|
1187
1187
|
/**
|
|
1188
1188
|
*
|
|
1189
1189
|
* @type {Array<MaintenanceDto>}
|
|
1190
|
-
* @memberof
|
|
1190
|
+
* @memberof MaintenanceDtoPagedResponse
|
|
1191
1191
|
*/
|
|
1192
1192
|
data?: Array<MaintenanceDto> | null;
|
|
1193
1193
|
/**
|
|
1194
1194
|
*
|
|
1195
|
-
* @type {
|
|
1196
|
-
* @memberof
|
|
1195
|
+
* @type {boolean}
|
|
1196
|
+
* @memberof MaintenanceDtoPagedResponse
|
|
1197
1197
|
*/
|
|
1198
|
-
|
|
1198
|
+
isSuccess?: boolean;
|
|
1199
1199
|
/**
|
|
1200
1200
|
*
|
|
1201
|
-
* @type {
|
|
1202
|
-
* @memberof
|
|
1201
|
+
* @type {number}
|
|
1202
|
+
* @memberof MaintenanceDtoPagedResponse
|
|
1203
1203
|
*/
|
|
1204
|
-
|
|
1204
|
+
statusCode?: number | null;
|
|
1205
1205
|
/**
|
|
1206
1206
|
*
|
|
1207
1207
|
* @type {string}
|
|
1208
|
-
* @memberof
|
|
1208
|
+
* @memberof MaintenanceDtoPagedResponse
|
|
1209
1209
|
*/
|
|
1210
1210
|
traceId?: string | null;
|
|
1211
1211
|
/**
|
|
1212
1212
|
*
|
|
1213
1213
|
* @type {Pagination}
|
|
1214
|
-
* @memberof
|
|
1214
|
+
* @memberof MaintenanceDtoPagedResponse
|
|
1215
1215
|
*/
|
|
1216
1216
|
pagination?: Pagination;
|
|
1217
1217
|
}
|
|
@@ -1255,37 +1255,37 @@ export interface MetadataTreeDto {
|
|
|
1255
1255
|
/**
|
|
1256
1256
|
*
|
|
1257
1257
|
* @export
|
|
1258
|
-
* @interface
|
|
1258
|
+
* @interface MetadataTreeDtoPagedResponse
|
|
1259
1259
|
*/
|
|
1260
|
-
export interface
|
|
1260
|
+
export interface MetadataTreeDtoPagedResponse {
|
|
1261
1261
|
/**
|
|
1262
1262
|
*
|
|
1263
1263
|
* @type {Array<MetadataTreeDto>}
|
|
1264
|
-
* @memberof
|
|
1264
|
+
* @memberof MetadataTreeDtoPagedResponse
|
|
1265
1265
|
*/
|
|
1266
1266
|
data?: Array<MetadataTreeDto> | null;
|
|
1267
1267
|
/**
|
|
1268
1268
|
*
|
|
1269
|
-
* @type {
|
|
1270
|
-
* @memberof
|
|
1269
|
+
* @type {boolean}
|
|
1270
|
+
* @memberof MetadataTreeDtoPagedResponse
|
|
1271
1271
|
*/
|
|
1272
|
-
|
|
1272
|
+
isSuccess?: boolean;
|
|
1273
1273
|
/**
|
|
1274
1274
|
*
|
|
1275
|
-
* @type {
|
|
1276
|
-
* @memberof
|
|
1275
|
+
* @type {number}
|
|
1276
|
+
* @memberof MetadataTreeDtoPagedResponse
|
|
1277
1277
|
*/
|
|
1278
|
-
|
|
1278
|
+
statusCode?: number | null;
|
|
1279
1279
|
/**
|
|
1280
1280
|
*
|
|
1281
1281
|
* @type {string}
|
|
1282
|
-
* @memberof
|
|
1282
|
+
* @memberof MetadataTreeDtoPagedResponse
|
|
1283
1283
|
*/
|
|
1284
1284
|
traceId?: string | null;
|
|
1285
1285
|
/**
|
|
1286
1286
|
*
|
|
1287
1287
|
* @type {Pagination}
|
|
1288
|
-
* @memberof
|
|
1288
|
+
* @memberof MetadataTreeDtoPagedResponse
|
|
1289
1289
|
*/
|
|
1290
1290
|
pagination?: Pagination;
|
|
1291
1291
|
}
|
|
@@ -1303,16 +1303,16 @@ export interface MetadataTreeDtoResponse {
|
|
|
1303
1303
|
data?: MetadataTreeDto;
|
|
1304
1304
|
/**
|
|
1305
1305
|
*
|
|
1306
|
-
* @type {
|
|
1306
|
+
* @type {boolean}
|
|
1307
1307
|
* @memberof MetadataTreeDtoResponse
|
|
1308
1308
|
*/
|
|
1309
|
-
|
|
1309
|
+
isSuccess?: boolean;
|
|
1310
1310
|
/**
|
|
1311
1311
|
*
|
|
1312
|
-
* @type {
|
|
1312
|
+
* @type {number}
|
|
1313
1313
|
* @memberof MetadataTreeDtoResponse
|
|
1314
1314
|
*/
|
|
1315
|
-
|
|
1315
|
+
statusCode?: number | null;
|
|
1316
1316
|
/**
|
|
1317
1317
|
*
|
|
1318
1318
|
* @type {string}
|
|
@@ -1358,6 +1358,25 @@ export interface MetadataTreeForUpdateDto {
|
|
|
1358
1358
|
*/
|
|
1359
1359
|
definition: RdfDefinitionForManipulationDto;
|
|
1360
1360
|
}
|
|
1361
|
+
/**
|
|
1362
|
+
*
|
|
1363
|
+
* @export
|
|
1364
|
+
* @interface MetadataUpdateAdminParameters
|
|
1365
|
+
*/
|
|
1366
|
+
export interface MetadataUpdateAdminParameters {
|
|
1367
|
+
/**
|
|
1368
|
+
*
|
|
1369
|
+
* @type {string}
|
|
1370
|
+
* @memberof MetadataUpdateAdminParameters
|
|
1371
|
+
*/
|
|
1372
|
+
graphUri: string;
|
|
1373
|
+
/**
|
|
1374
|
+
*
|
|
1375
|
+
* @type {RdfDefinitionForManipulationDto}
|
|
1376
|
+
* @memberof MetadataUpdateAdminParameters
|
|
1377
|
+
*/
|
|
1378
|
+
definition: RdfDefinitionForManipulationDto;
|
|
1379
|
+
}
|
|
1361
1380
|
/**
|
|
1362
1381
|
*
|
|
1363
1382
|
* @export
|
|
@@ -1386,37 +1405,37 @@ export interface OrganizationDto {
|
|
|
1386
1405
|
/**
|
|
1387
1406
|
*
|
|
1388
1407
|
* @export
|
|
1389
|
-
* @interface
|
|
1408
|
+
* @interface OrganizationDtoPagedResponse
|
|
1390
1409
|
*/
|
|
1391
|
-
export interface
|
|
1410
|
+
export interface OrganizationDtoPagedResponse {
|
|
1392
1411
|
/**
|
|
1393
1412
|
*
|
|
1394
1413
|
* @type {Array<OrganizationDto>}
|
|
1395
|
-
* @memberof
|
|
1414
|
+
* @memberof OrganizationDtoPagedResponse
|
|
1396
1415
|
*/
|
|
1397
1416
|
data?: Array<OrganizationDto> | null;
|
|
1398
1417
|
/**
|
|
1399
1418
|
*
|
|
1400
|
-
* @type {
|
|
1401
|
-
* @memberof
|
|
1419
|
+
* @type {boolean}
|
|
1420
|
+
* @memberof OrganizationDtoPagedResponse
|
|
1402
1421
|
*/
|
|
1403
|
-
|
|
1422
|
+
isSuccess?: boolean;
|
|
1404
1423
|
/**
|
|
1405
1424
|
*
|
|
1406
|
-
* @type {
|
|
1407
|
-
* @memberof
|
|
1425
|
+
* @type {number}
|
|
1426
|
+
* @memberof OrganizationDtoPagedResponse
|
|
1408
1427
|
*/
|
|
1409
|
-
|
|
1428
|
+
statusCode?: number | null;
|
|
1410
1429
|
/**
|
|
1411
1430
|
*
|
|
1412
1431
|
* @type {string}
|
|
1413
|
-
* @memberof
|
|
1432
|
+
* @memberof OrganizationDtoPagedResponse
|
|
1414
1433
|
*/
|
|
1415
1434
|
traceId?: string | null;
|
|
1416
1435
|
/**
|
|
1417
1436
|
*
|
|
1418
1437
|
* @type {Pagination}
|
|
1419
|
-
* @memberof
|
|
1438
|
+
* @memberof OrganizationDtoPagedResponse
|
|
1420
1439
|
*/
|
|
1421
1440
|
pagination?: Pagination;
|
|
1422
1441
|
}
|
|
@@ -1434,16 +1453,16 @@ export interface OrganizationDtoResponse {
|
|
|
1434
1453
|
data?: OrganizationDto;
|
|
1435
1454
|
/**
|
|
1436
1455
|
*
|
|
1437
|
-
* @type {
|
|
1456
|
+
* @type {boolean}
|
|
1438
1457
|
* @memberof OrganizationDtoResponse
|
|
1439
1458
|
*/
|
|
1440
|
-
|
|
1459
|
+
isSuccess?: boolean;
|
|
1441
1460
|
/**
|
|
1442
1461
|
*
|
|
1443
|
-
* @type {
|
|
1462
|
+
* @type {number}
|
|
1444
1463
|
* @memberof OrganizationDtoResponse
|
|
1445
1464
|
*/
|
|
1446
|
-
|
|
1465
|
+
statusCode?: number | null;
|
|
1447
1466
|
/**
|
|
1448
1467
|
*
|
|
1449
1468
|
* @type {string}
|
|
@@ -1580,16 +1599,16 @@ export interface PidValidationDtoResponse {
|
|
|
1580
1599
|
data?: PidValidationDto;
|
|
1581
1600
|
/**
|
|
1582
1601
|
*
|
|
1583
|
-
* @type {
|
|
1602
|
+
* @type {boolean}
|
|
1584
1603
|
* @memberof PidValidationDtoResponse
|
|
1585
1604
|
*/
|
|
1586
|
-
|
|
1605
|
+
isSuccess?: boolean;
|
|
1587
1606
|
/**
|
|
1588
1607
|
*
|
|
1589
|
-
* @type {
|
|
1608
|
+
* @type {number}
|
|
1590
1609
|
* @memberof PidValidationDtoResponse
|
|
1591
1610
|
*/
|
|
1592
|
-
|
|
1611
|
+
statusCode?: number | null;
|
|
1593
1612
|
/**
|
|
1594
1613
|
*
|
|
1595
1614
|
* @type {string}
|
|
@@ -1600,208 +1619,378 @@ export interface PidValidationDtoResponse {
|
|
|
1600
1619
|
/**
|
|
1601
1620
|
*
|
|
1602
1621
|
* @export
|
|
1603
|
-
* @interface
|
|
1622
|
+
* @interface ProjectAdminDto
|
|
1604
1623
|
*/
|
|
1605
|
-
export interface
|
|
1624
|
+
export interface ProjectAdminDto {
|
|
1606
1625
|
/**
|
|
1607
1626
|
*
|
|
1608
1627
|
* @type {string}
|
|
1609
|
-
* @memberof
|
|
1628
|
+
* @memberof ProjectAdminDto
|
|
1610
1629
|
*/
|
|
1611
1630
|
id?: string;
|
|
1612
1631
|
/**
|
|
1613
1632
|
*
|
|
1614
1633
|
* @type {string}
|
|
1615
|
-
* @memberof
|
|
1634
|
+
* @memberof ProjectAdminDto
|
|
1616
1635
|
*/
|
|
1617
1636
|
pid?: string;
|
|
1618
1637
|
/**
|
|
1619
1638
|
*
|
|
1620
1639
|
* @type {string}
|
|
1621
|
-
* @memberof
|
|
1640
|
+
* @memberof ProjectAdminDto
|
|
1622
1641
|
*/
|
|
1623
1642
|
name?: string;
|
|
1624
1643
|
/**
|
|
1625
1644
|
*
|
|
1626
1645
|
* @type {string}
|
|
1627
|
-
* @memberof
|
|
1646
|
+
* @memberof ProjectAdminDto
|
|
1628
1647
|
*/
|
|
1629
1648
|
description?: string;
|
|
1630
1649
|
/**
|
|
1631
1650
|
*
|
|
1632
1651
|
* @type {string}
|
|
1633
|
-
* @memberof
|
|
1652
|
+
* @memberof ProjectAdminDto
|
|
1634
1653
|
*/
|
|
1635
1654
|
startDate?: string;
|
|
1636
1655
|
/**
|
|
1637
1656
|
*
|
|
1638
1657
|
* @type {string}
|
|
1639
|
-
* @memberof
|
|
1658
|
+
* @memberof ProjectAdminDto
|
|
1640
1659
|
*/
|
|
1641
1660
|
endDate?: string;
|
|
1642
1661
|
/**
|
|
1643
1662
|
*
|
|
1644
1663
|
* @type {Array<string>}
|
|
1645
|
-
* @memberof
|
|
1664
|
+
* @memberof ProjectAdminDto
|
|
1646
1665
|
*/
|
|
1647
1666
|
keywords?: Array<string> | null;
|
|
1648
1667
|
/**
|
|
1649
1668
|
*
|
|
1650
1669
|
* @type {string}
|
|
1651
|
-
* @memberof
|
|
1670
|
+
* @memberof ProjectAdminDto
|
|
1652
1671
|
*/
|
|
1653
1672
|
displayName?: string | null;
|
|
1654
1673
|
/**
|
|
1655
1674
|
*
|
|
1656
1675
|
* @type {string}
|
|
1657
|
-
* @memberof
|
|
1676
|
+
* @memberof ProjectAdminDto
|
|
1658
1677
|
*/
|
|
1659
1678
|
principleInvestigators?: string | null;
|
|
1660
1679
|
/**
|
|
1661
1680
|
*
|
|
1662
1681
|
* @type {string}
|
|
1663
|
-
* @memberof
|
|
1682
|
+
* @memberof ProjectAdminDto
|
|
1664
1683
|
*/
|
|
1665
1684
|
grantId?: string | null;
|
|
1666
1685
|
/**
|
|
1667
1686
|
*
|
|
1668
1687
|
* @type {VisibilityDto}
|
|
1669
|
-
* @memberof
|
|
1688
|
+
* @memberof ProjectAdminDto
|
|
1670
1689
|
*/
|
|
1671
1690
|
visibility?: VisibilityDto;
|
|
1672
1691
|
/**
|
|
1673
1692
|
*
|
|
1674
1693
|
* @type {Array<DisciplineDto>}
|
|
1675
|
-
* @memberof
|
|
1694
|
+
* @memberof ProjectAdminDto
|
|
1676
1695
|
*/
|
|
1677
1696
|
disciplines?: Array<DisciplineDto>;
|
|
1678
1697
|
/**
|
|
1679
1698
|
*
|
|
1680
1699
|
* @type {Array<OrganizationDto>}
|
|
1681
|
-
* @memberof
|
|
1700
|
+
* @memberof ProjectAdminDto
|
|
1682
1701
|
*/
|
|
1683
1702
|
organizations?: Array<OrganizationDto>;
|
|
1684
1703
|
/**
|
|
1685
1704
|
*
|
|
1686
1705
|
* @type {string}
|
|
1687
|
-
* @memberof
|
|
1706
|
+
* @memberof ProjectAdminDto
|
|
1688
1707
|
*/
|
|
1689
1708
|
slug?: string;
|
|
1690
1709
|
/**
|
|
1691
1710
|
*
|
|
1692
1711
|
* @type {UserMinimalDto}
|
|
1693
|
-
* @memberof
|
|
1712
|
+
* @memberof ProjectAdminDto
|
|
1694
1713
|
*/
|
|
1695
1714
|
creator?: UserMinimalDto;
|
|
1696
1715
|
/**
|
|
1697
1716
|
*
|
|
1698
1717
|
* @type {string}
|
|
1699
|
-
* @memberof
|
|
1718
|
+
* @memberof ProjectAdminDto
|
|
1700
1719
|
*/
|
|
1701
1720
|
creationDate?: string | null;
|
|
1702
1721
|
/**
|
|
1703
1722
|
*
|
|
1704
1723
|
* @type {Array<ProjectDto>}
|
|
1705
|
-
* @memberof
|
|
1724
|
+
* @memberof ProjectAdminDto
|
|
1706
1725
|
*/
|
|
1707
1726
|
subProjects?: Array<ProjectDto> | null;
|
|
1708
1727
|
/**
|
|
1709
1728
|
*
|
|
1710
1729
|
* @type {ProjectMinimalDto}
|
|
1711
|
-
* @memberof
|
|
1730
|
+
* @memberof ProjectAdminDto
|
|
1712
1731
|
*/
|
|
1713
1732
|
parent?: ProjectMinimalDto;
|
|
1714
|
-
}
|
|
1715
|
-
/**
|
|
1716
|
-
*
|
|
1717
|
-
* @export
|
|
1718
|
-
* @interface ProjectDtoIEnumerablePagedResponse
|
|
1719
|
-
*/
|
|
1720
|
-
export interface ProjectDtoIEnumerablePagedResponse {
|
|
1721
|
-
/**
|
|
1722
|
-
*
|
|
1723
|
-
* @type {Array<ProjectDto>}
|
|
1724
|
-
* @memberof ProjectDtoIEnumerablePagedResponse
|
|
1725
|
-
*/
|
|
1726
|
-
data?: Array<ProjectDto> | null;
|
|
1727
|
-
/**
|
|
1728
|
-
*
|
|
1729
|
-
* @type {number}
|
|
1730
|
-
* @memberof ProjectDtoIEnumerablePagedResponse
|
|
1731
|
-
*/
|
|
1732
|
-
statusCode?: number | null;
|
|
1733
1733
|
/**
|
|
1734
1734
|
*
|
|
1735
1735
|
* @type {boolean}
|
|
1736
|
-
* @memberof
|
|
1736
|
+
* @memberof ProjectAdminDto
|
|
1737
1737
|
*/
|
|
1738
|
-
|
|
1738
|
+
deleted?: boolean;
|
|
1739
1739
|
/**
|
|
1740
1740
|
*
|
|
1741
|
-
* @type {
|
|
1742
|
-
* @memberof
|
|
1741
|
+
* @type {Array<ProjectResourceMinimalDto>}
|
|
1742
|
+
* @memberof ProjectAdminDto
|
|
1743
1743
|
*/
|
|
1744
|
-
|
|
1744
|
+
projectResources?: Array<ProjectResourceMinimalDto>;
|
|
1745
1745
|
/**
|
|
1746
1746
|
*
|
|
1747
|
-
* @type {
|
|
1748
|
-
* @memberof
|
|
1747
|
+
* @type {Array<ProjectRoleMinimalDto>}
|
|
1748
|
+
* @memberof ProjectAdminDto
|
|
1749
1749
|
*/
|
|
1750
|
-
|
|
1750
|
+
projectRoles?: Array<ProjectRoleMinimalDto>;
|
|
1751
1751
|
}
|
|
1752
1752
|
/**
|
|
1753
1753
|
*
|
|
1754
1754
|
* @export
|
|
1755
|
-
* @interface
|
|
1755
|
+
* @interface ProjectAdminDtoIEnumerablePagedResponse
|
|
1756
1756
|
*/
|
|
1757
|
-
export interface
|
|
1757
|
+
export interface ProjectAdminDtoIEnumerablePagedResponse {
|
|
1758
1758
|
/**
|
|
1759
1759
|
*
|
|
1760
|
-
* @type {
|
|
1761
|
-
* @memberof
|
|
1760
|
+
* @type {Array<Array<ProjectAdminDto>>}
|
|
1761
|
+
* @memberof ProjectAdminDtoIEnumerablePagedResponse
|
|
1762
1762
|
*/
|
|
1763
|
-
data?:
|
|
1763
|
+
data?: Array<Array<ProjectAdminDto>> | null;
|
|
1764
1764
|
/**
|
|
1765
1765
|
*
|
|
1766
|
-
* @type {
|
|
1767
|
-
* @memberof
|
|
1766
|
+
* @type {boolean}
|
|
1767
|
+
* @memberof ProjectAdminDtoIEnumerablePagedResponse
|
|
1768
1768
|
*/
|
|
1769
|
-
|
|
1769
|
+
isSuccess?: boolean;
|
|
1770
1770
|
/**
|
|
1771
1771
|
*
|
|
1772
|
-
* @type {
|
|
1773
|
-
* @memberof
|
|
1772
|
+
* @type {number}
|
|
1773
|
+
* @memberof ProjectAdminDtoIEnumerablePagedResponse
|
|
1774
1774
|
*/
|
|
1775
|
-
|
|
1775
|
+
statusCode?: number | null;
|
|
1776
1776
|
/**
|
|
1777
1777
|
*
|
|
1778
1778
|
* @type {string}
|
|
1779
|
-
* @memberof
|
|
1779
|
+
* @memberof ProjectAdminDtoIEnumerablePagedResponse
|
|
1780
1780
|
*/
|
|
1781
1781
|
traceId?: string | null;
|
|
1782
|
+
/**
|
|
1783
|
+
*
|
|
1784
|
+
* @type {Pagination}
|
|
1785
|
+
* @memberof ProjectAdminDtoIEnumerablePagedResponse
|
|
1786
|
+
*/
|
|
1787
|
+
pagination?: Pagination;
|
|
1782
1788
|
}
|
|
1783
1789
|
/**
|
|
1784
1790
|
*
|
|
1785
1791
|
* @export
|
|
1786
|
-
* @interface
|
|
1792
|
+
* @interface ProjectDto
|
|
1787
1793
|
*/
|
|
1788
|
-
export interface
|
|
1794
|
+
export interface ProjectDto {
|
|
1789
1795
|
/**
|
|
1790
1796
|
*
|
|
1791
1797
|
* @type {string}
|
|
1792
|
-
* @memberof
|
|
1798
|
+
* @memberof ProjectDto
|
|
1793
1799
|
*/
|
|
1794
|
-
|
|
1800
|
+
id?: string;
|
|
1795
1801
|
/**
|
|
1796
1802
|
*
|
|
1797
1803
|
* @type {string}
|
|
1798
|
-
* @memberof
|
|
1804
|
+
* @memberof ProjectDto
|
|
1799
1805
|
*/
|
|
1800
|
-
|
|
1806
|
+
pid?: string;
|
|
1801
1807
|
/**
|
|
1802
1808
|
*
|
|
1803
1809
|
* @type {string}
|
|
1804
|
-
* @memberof
|
|
1810
|
+
* @memberof ProjectDto
|
|
1811
|
+
*/
|
|
1812
|
+
name?: string;
|
|
1813
|
+
/**
|
|
1814
|
+
*
|
|
1815
|
+
* @type {string}
|
|
1816
|
+
* @memberof ProjectDto
|
|
1817
|
+
*/
|
|
1818
|
+
description?: string;
|
|
1819
|
+
/**
|
|
1820
|
+
*
|
|
1821
|
+
* @type {string}
|
|
1822
|
+
* @memberof ProjectDto
|
|
1823
|
+
*/
|
|
1824
|
+
startDate?: string;
|
|
1825
|
+
/**
|
|
1826
|
+
*
|
|
1827
|
+
* @type {string}
|
|
1828
|
+
* @memberof ProjectDto
|
|
1829
|
+
*/
|
|
1830
|
+
endDate?: string;
|
|
1831
|
+
/**
|
|
1832
|
+
*
|
|
1833
|
+
* @type {Array<string>}
|
|
1834
|
+
* @memberof ProjectDto
|
|
1835
|
+
*/
|
|
1836
|
+
keywords?: Array<string> | null;
|
|
1837
|
+
/**
|
|
1838
|
+
*
|
|
1839
|
+
* @type {string}
|
|
1840
|
+
* @memberof ProjectDto
|
|
1841
|
+
*/
|
|
1842
|
+
displayName?: string | null;
|
|
1843
|
+
/**
|
|
1844
|
+
*
|
|
1845
|
+
* @type {string}
|
|
1846
|
+
* @memberof ProjectDto
|
|
1847
|
+
*/
|
|
1848
|
+
principleInvestigators?: string | null;
|
|
1849
|
+
/**
|
|
1850
|
+
*
|
|
1851
|
+
* @type {string}
|
|
1852
|
+
* @memberof ProjectDto
|
|
1853
|
+
*/
|
|
1854
|
+
grantId?: string | null;
|
|
1855
|
+
/**
|
|
1856
|
+
*
|
|
1857
|
+
* @type {VisibilityDto}
|
|
1858
|
+
* @memberof ProjectDto
|
|
1859
|
+
*/
|
|
1860
|
+
visibility?: VisibilityDto;
|
|
1861
|
+
/**
|
|
1862
|
+
*
|
|
1863
|
+
* @type {Array<DisciplineDto>}
|
|
1864
|
+
* @memberof ProjectDto
|
|
1865
|
+
*/
|
|
1866
|
+
disciplines?: Array<DisciplineDto>;
|
|
1867
|
+
/**
|
|
1868
|
+
*
|
|
1869
|
+
* @type {Array<OrganizationDto>}
|
|
1870
|
+
* @memberof ProjectDto
|
|
1871
|
+
*/
|
|
1872
|
+
organizations?: Array<OrganizationDto>;
|
|
1873
|
+
/**
|
|
1874
|
+
*
|
|
1875
|
+
* @type {string}
|
|
1876
|
+
* @memberof ProjectDto
|
|
1877
|
+
*/
|
|
1878
|
+
slug?: string;
|
|
1879
|
+
/**
|
|
1880
|
+
*
|
|
1881
|
+
* @type {UserMinimalDto}
|
|
1882
|
+
* @memberof ProjectDto
|
|
1883
|
+
*/
|
|
1884
|
+
creator?: UserMinimalDto;
|
|
1885
|
+
/**
|
|
1886
|
+
*
|
|
1887
|
+
* @type {string}
|
|
1888
|
+
* @memberof ProjectDto
|
|
1889
|
+
*/
|
|
1890
|
+
creationDate?: string | null;
|
|
1891
|
+
/**
|
|
1892
|
+
*
|
|
1893
|
+
* @type {Array<ProjectDto>}
|
|
1894
|
+
* @memberof ProjectDto
|
|
1895
|
+
*/
|
|
1896
|
+
subProjects?: Array<ProjectDto> | null;
|
|
1897
|
+
/**
|
|
1898
|
+
*
|
|
1899
|
+
* @type {ProjectMinimalDto}
|
|
1900
|
+
* @memberof ProjectDto
|
|
1901
|
+
*/
|
|
1902
|
+
parent?: ProjectMinimalDto;
|
|
1903
|
+
}
|
|
1904
|
+
/**
|
|
1905
|
+
*
|
|
1906
|
+
* @export
|
|
1907
|
+
* @interface ProjectDtoPagedResponse
|
|
1908
|
+
*/
|
|
1909
|
+
export interface ProjectDtoPagedResponse {
|
|
1910
|
+
/**
|
|
1911
|
+
*
|
|
1912
|
+
* @type {Array<ProjectDto>}
|
|
1913
|
+
* @memberof ProjectDtoPagedResponse
|
|
1914
|
+
*/
|
|
1915
|
+
data?: Array<ProjectDto> | null;
|
|
1916
|
+
/**
|
|
1917
|
+
*
|
|
1918
|
+
* @type {boolean}
|
|
1919
|
+
* @memberof ProjectDtoPagedResponse
|
|
1920
|
+
*/
|
|
1921
|
+
isSuccess?: boolean;
|
|
1922
|
+
/**
|
|
1923
|
+
*
|
|
1924
|
+
* @type {number}
|
|
1925
|
+
* @memberof ProjectDtoPagedResponse
|
|
1926
|
+
*/
|
|
1927
|
+
statusCode?: number | null;
|
|
1928
|
+
/**
|
|
1929
|
+
*
|
|
1930
|
+
* @type {string}
|
|
1931
|
+
* @memberof ProjectDtoPagedResponse
|
|
1932
|
+
*/
|
|
1933
|
+
traceId?: string | null;
|
|
1934
|
+
/**
|
|
1935
|
+
*
|
|
1936
|
+
* @type {Pagination}
|
|
1937
|
+
* @memberof ProjectDtoPagedResponse
|
|
1938
|
+
*/
|
|
1939
|
+
pagination?: Pagination;
|
|
1940
|
+
}
|
|
1941
|
+
/**
|
|
1942
|
+
*
|
|
1943
|
+
* @export
|
|
1944
|
+
* @interface ProjectDtoResponse
|
|
1945
|
+
*/
|
|
1946
|
+
export interface ProjectDtoResponse {
|
|
1947
|
+
/**
|
|
1948
|
+
*
|
|
1949
|
+
* @type {ProjectDto}
|
|
1950
|
+
* @memberof ProjectDtoResponse
|
|
1951
|
+
*/
|
|
1952
|
+
data?: ProjectDto;
|
|
1953
|
+
/**
|
|
1954
|
+
*
|
|
1955
|
+
* @type {boolean}
|
|
1956
|
+
* @memberof ProjectDtoResponse
|
|
1957
|
+
*/
|
|
1958
|
+
isSuccess?: boolean;
|
|
1959
|
+
/**
|
|
1960
|
+
*
|
|
1961
|
+
* @type {number}
|
|
1962
|
+
* @memberof ProjectDtoResponse
|
|
1963
|
+
*/
|
|
1964
|
+
statusCode?: number | null;
|
|
1965
|
+
/**
|
|
1966
|
+
*
|
|
1967
|
+
* @type {string}
|
|
1968
|
+
* @memberof ProjectDtoResponse
|
|
1969
|
+
*/
|
|
1970
|
+
traceId?: string | null;
|
|
1971
|
+
}
|
|
1972
|
+
/**
|
|
1973
|
+
*
|
|
1974
|
+
* @export
|
|
1975
|
+
* @interface ProjectForCreationDto
|
|
1976
|
+
*/
|
|
1977
|
+
export interface ProjectForCreationDto {
|
|
1978
|
+
/**
|
|
1979
|
+
*
|
|
1980
|
+
* @type {string}
|
|
1981
|
+
* @memberof ProjectForCreationDto
|
|
1982
|
+
*/
|
|
1983
|
+
name: string;
|
|
1984
|
+
/**
|
|
1985
|
+
*
|
|
1986
|
+
* @type {string}
|
|
1987
|
+
* @memberof ProjectForCreationDto
|
|
1988
|
+
*/
|
|
1989
|
+
description: string;
|
|
1990
|
+
/**
|
|
1991
|
+
*
|
|
1992
|
+
* @type {string}
|
|
1993
|
+
* @memberof ProjectForCreationDto
|
|
1805
1994
|
*/
|
|
1806
1995
|
startDate?: string;
|
|
1807
1996
|
/**
|
|
@@ -1984,37 +2173,37 @@ export interface ProjectInvitationDto {
|
|
|
1984
2173
|
/**
|
|
1985
2174
|
*
|
|
1986
2175
|
* @export
|
|
1987
|
-
* @interface
|
|
2176
|
+
* @interface ProjectInvitationDtoPagedResponse
|
|
1988
2177
|
*/
|
|
1989
|
-
export interface
|
|
2178
|
+
export interface ProjectInvitationDtoPagedResponse {
|
|
1990
2179
|
/**
|
|
1991
2180
|
*
|
|
1992
2181
|
* @type {Array<ProjectInvitationDto>}
|
|
1993
|
-
* @memberof
|
|
2182
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
1994
2183
|
*/
|
|
1995
2184
|
data?: Array<ProjectInvitationDto> | null;
|
|
1996
2185
|
/**
|
|
1997
2186
|
*
|
|
1998
|
-
* @type {
|
|
1999
|
-
* @memberof
|
|
2187
|
+
* @type {boolean}
|
|
2188
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
2000
2189
|
*/
|
|
2001
|
-
|
|
2190
|
+
isSuccess?: boolean;
|
|
2002
2191
|
/**
|
|
2003
2192
|
*
|
|
2004
|
-
* @type {
|
|
2005
|
-
* @memberof
|
|
2193
|
+
* @type {number}
|
|
2194
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
2006
2195
|
*/
|
|
2007
|
-
|
|
2196
|
+
statusCode?: number | null;
|
|
2008
2197
|
/**
|
|
2009
2198
|
*
|
|
2010
2199
|
* @type {string}
|
|
2011
|
-
* @memberof
|
|
2200
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
2012
2201
|
*/
|
|
2013
2202
|
traceId?: string | null;
|
|
2014
2203
|
/**
|
|
2015
2204
|
*
|
|
2016
2205
|
* @type {Pagination}
|
|
2017
|
-
* @memberof
|
|
2206
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
2018
2207
|
*/
|
|
2019
2208
|
pagination?: Pagination;
|
|
2020
2209
|
}
|
|
@@ -2032,16 +2221,16 @@ export interface ProjectInvitationDtoResponse {
|
|
|
2032
2221
|
data?: ProjectInvitationDto;
|
|
2033
2222
|
/**
|
|
2034
2223
|
*
|
|
2035
|
-
* @type {
|
|
2224
|
+
* @type {boolean}
|
|
2036
2225
|
* @memberof ProjectInvitationDtoResponse
|
|
2037
2226
|
*/
|
|
2038
|
-
|
|
2227
|
+
isSuccess?: boolean;
|
|
2039
2228
|
/**
|
|
2040
2229
|
*
|
|
2041
|
-
* @type {
|
|
2230
|
+
* @type {number}
|
|
2042
2231
|
* @memberof ProjectInvitationDtoResponse
|
|
2043
2232
|
*/
|
|
2044
|
-
|
|
2233
|
+
statusCode?: number | null;
|
|
2045
2234
|
/**
|
|
2046
2235
|
*
|
|
2047
2236
|
* @type {string}
|
|
@@ -2146,37 +2335,37 @@ export interface ProjectQuotaDto {
|
|
|
2146
2335
|
/**
|
|
2147
2336
|
*
|
|
2148
2337
|
* @export
|
|
2149
|
-
* @interface
|
|
2338
|
+
* @interface ProjectQuotaDtoPagedResponse
|
|
2150
2339
|
*/
|
|
2151
|
-
export interface
|
|
2340
|
+
export interface ProjectQuotaDtoPagedResponse {
|
|
2152
2341
|
/**
|
|
2153
2342
|
*
|
|
2154
2343
|
* @type {Array<ProjectQuotaDto>}
|
|
2155
|
-
* @memberof
|
|
2344
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
2156
2345
|
*/
|
|
2157
2346
|
data?: Array<ProjectQuotaDto> | null;
|
|
2158
2347
|
/**
|
|
2159
2348
|
*
|
|
2160
|
-
* @type {
|
|
2161
|
-
* @memberof
|
|
2349
|
+
* @type {boolean}
|
|
2350
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
2162
2351
|
*/
|
|
2163
|
-
|
|
2352
|
+
isSuccess?: boolean;
|
|
2164
2353
|
/**
|
|
2165
2354
|
*
|
|
2166
|
-
* @type {
|
|
2167
|
-
* @memberof
|
|
2355
|
+
* @type {number}
|
|
2356
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
2168
2357
|
*/
|
|
2169
|
-
|
|
2358
|
+
statusCode?: number | null;
|
|
2170
2359
|
/**
|
|
2171
2360
|
*
|
|
2172
2361
|
* @type {string}
|
|
2173
|
-
* @memberof
|
|
2362
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
2174
2363
|
*/
|
|
2175
2364
|
traceId?: string | null;
|
|
2176
2365
|
/**
|
|
2177
2366
|
*
|
|
2178
2367
|
* @type {Pagination}
|
|
2179
|
-
* @memberof
|
|
2368
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
2180
2369
|
*/
|
|
2181
2370
|
pagination?: Pagination;
|
|
2182
2371
|
}
|
|
@@ -2194,16 +2383,16 @@ export interface ProjectQuotaDtoResponse {
|
|
|
2194
2383
|
data?: ProjectQuotaDto;
|
|
2195
2384
|
/**
|
|
2196
2385
|
*
|
|
2197
|
-
* @type {
|
|
2386
|
+
* @type {boolean}
|
|
2198
2387
|
* @memberof ProjectQuotaDtoResponse
|
|
2199
2388
|
*/
|
|
2200
|
-
|
|
2389
|
+
isSuccess?: boolean;
|
|
2201
2390
|
/**
|
|
2202
2391
|
*
|
|
2203
|
-
* @type {
|
|
2392
|
+
* @type {number}
|
|
2204
2393
|
* @memberof ProjectQuotaDtoResponse
|
|
2205
2394
|
*/
|
|
2206
|
-
|
|
2395
|
+
statusCode?: number | null;
|
|
2207
2396
|
/**
|
|
2208
2397
|
*
|
|
2209
2398
|
* @type {string}
|
|
@@ -2230,6 +2419,25 @@ export interface ProjectQuotaForUpdateDto {
|
|
|
2230
2419
|
*/
|
|
2231
2420
|
maximum?: QuotaForManipulationDto;
|
|
2232
2421
|
}
|
|
2422
|
+
/**
|
|
2423
|
+
*
|
|
2424
|
+
* @export
|
|
2425
|
+
* @interface ProjectResourceMinimalDto
|
|
2426
|
+
*/
|
|
2427
|
+
export interface ProjectResourceMinimalDto {
|
|
2428
|
+
/**
|
|
2429
|
+
*
|
|
2430
|
+
* @type {string}
|
|
2431
|
+
* @memberof ProjectResourceMinimalDto
|
|
2432
|
+
*/
|
|
2433
|
+
resourceId?: string;
|
|
2434
|
+
/**
|
|
2435
|
+
*
|
|
2436
|
+
* @type {string}
|
|
2437
|
+
* @memberof ProjectResourceMinimalDto
|
|
2438
|
+
*/
|
|
2439
|
+
projectId?: string;
|
|
2440
|
+
}
|
|
2233
2441
|
/**
|
|
2234
2442
|
*
|
|
2235
2443
|
* @export
|
|
@@ -2264,37 +2472,37 @@ export interface ProjectRoleDto {
|
|
|
2264
2472
|
/**
|
|
2265
2473
|
*
|
|
2266
2474
|
* @export
|
|
2267
|
-
* @interface
|
|
2475
|
+
* @interface ProjectRoleDtoPagedResponse
|
|
2268
2476
|
*/
|
|
2269
|
-
export interface
|
|
2477
|
+
export interface ProjectRoleDtoPagedResponse {
|
|
2270
2478
|
/**
|
|
2271
2479
|
*
|
|
2272
2480
|
* @type {Array<ProjectRoleDto>}
|
|
2273
|
-
* @memberof
|
|
2481
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
2274
2482
|
*/
|
|
2275
2483
|
data?: Array<ProjectRoleDto> | null;
|
|
2276
2484
|
/**
|
|
2277
2485
|
*
|
|
2278
|
-
* @type {
|
|
2279
|
-
* @memberof
|
|
2486
|
+
* @type {boolean}
|
|
2487
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
2280
2488
|
*/
|
|
2281
|
-
|
|
2489
|
+
isSuccess?: boolean;
|
|
2282
2490
|
/**
|
|
2283
2491
|
*
|
|
2284
|
-
* @type {
|
|
2285
|
-
* @memberof
|
|
2492
|
+
* @type {number}
|
|
2493
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
2286
2494
|
*/
|
|
2287
|
-
|
|
2495
|
+
statusCode?: number | null;
|
|
2288
2496
|
/**
|
|
2289
2497
|
*
|
|
2290
2498
|
* @type {string}
|
|
2291
|
-
* @memberof
|
|
2499
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
2292
2500
|
*/
|
|
2293
2501
|
traceId?: string | null;
|
|
2294
2502
|
/**
|
|
2295
2503
|
*
|
|
2296
2504
|
* @type {Pagination}
|
|
2297
|
-
* @memberof
|
|
2505
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
2298
2506
|
*/
|
|
2299
2507
|
pagination?: Pagination;
|
|
2300
2508
|
}
|
|
@@ -2312,16 +2520,16 @@ export interface ProjectRoleDtoResponse {
|
|
|
2312
2520
|
data?: ProjectRoleDto;
|
|
2313
2521
|
/**
|
|
2314
2522
|
*
|
|
2315
|
-
* @type {
|
|
2523
|
+
* @type {boolean}
|
|
2316
2524
|
* @memberof ProjectRoleDtoResponse
|
|
2317
2525
|
*/
|
|
2318
|
-
|
|
2526
|
+
isSuccess?: boolean;
|
|
2319
2527
|
/**
|
|
2320
2528
|
*
|
|
2321
|
-
* @type {
|
|
2529
|
+
* @type {number}
|
|
2322
2530
|
* @memberof ProjectRoleDtoResponse
|
|
2323
2531
|
*/
|
|
2324
|
-
|
|
2532
|
+
statusCode?: number | null;
|
|
2325
2533
|
/**
|
|
2326
2534
|
*
|
|
2327
2535
|
* @type {string}
|
|
@@ -2364,33 +2572,58 @@ export interface ProjectRoleForProjectManipulationDto {
|
|
|
2364
2572
|
/**
|
|
2365
2573
|
*
|
|
2366
2574
|
* @export
|
|
2367
|
-
* @interface
|
|
2575
|
+
* @interface ProjectRoleMinimalDto
|
|
2368
2576
|
*/
|
|
2369
|
-
export interface
|
|
2577
|
+
export interface ProjectRoleMinimalDto {
|
|
2370
2578
|
/**
|
|
2371
2579
|
*
|
|
2372
2580
|
* @type {string}
|
|
2373
|
-
* @memberof
|
|
2581
|
+
* @memberof ProjectRoleMinimalDto
|
|
2374
2582
|
*/
|
|
2375
|
-
|
|
2583
|
+
projectId?: string;
|
|
2376
2584
|
/**
|
|
2377
2585
|
*
|
|
2378
2586
|
* @type {string}
|
|
2379
|
-
* @memberof
|
|
2587
|
+
* @memberof ProjectRoleMinimalDto
|
|
2380
2588
|
*/
|
|
2381
|
-
|
|
2589
|
+
userId?: string;
|
|
2382
2590
|
/**
|
|
2383
2591
|
*
|
|
2384
2592
|
* @type {string}
|
|
2385
|
-
* @memberof
|
|
2593
|
+
* @memberof ProjectRoleMinimalDto
|
|
2386
2594
|
*/
|
|
2387
|
-
|
|
2595
|
+
roleId?: string;
|
|
2596
|
+
}
|
|
2597
|
+
/**
|
|
2598
|
+
*
|
|
2599
|
+
* @export
|
|
2600
|
+
* @interface PublicUserDto
|
|
2601
|
+
*/
|
|
2602
|
+
export interface PublicUserDto {
|
|
2388
2603
|
/**
|
|
2389
2604
|
*
|
|
2390
2605
|
* @type {string}
|
|
2391
2606
|
* @memberof PublicUserDto
|
|
2392
2607
|
*/
|
|
2393
|
-
|
|
2608
|
+
id?: string;
|
|
2609
|
+
/**
|
|
2610
|
+
*
|
|
2611
|
+
* @type {string}
|
|
2612
|
+
* @memberof PublicUserDto
|
|
2613
|
+
*/
|
|
2614
|
+
displayName?: string;
|
|
2615
|
+
/**
|
|
2616
|
+
*
|
|
2617
|
+
* @type {string}
|
|
2618
|
+
* @memberof PublicUserDto
|
|
2619
|
+
*/
|
|
2620
|
+
givenName?: string;
|
|
2621
|
+
/**
|
|
2622
|
+
*
|
|
2623
|
+
* @type {string}
|
|
2624
|
+
* @memberof PublicUserDto
|
|
2625
|
+
*/
|
|
2626
|
+
familyName?: string;
|
|
2394
2627
|
/**
|
|
2395
2628
|
*
|
|
2396
2629
|
* @type {string}
|
|
@@ -2418,16 +2651,16 @@ export interface PublicUserDtoIEnumerableResponse {
|
|
|
2418
2651
|
data?: Array<PublicUserDto> | null;
|
|
2419
2652
|
/**
|
|
2420
2653
|
*
|
|
2421
|
-
* @type {
|
|
2654
|
+
* @type {boolean}
|
|
2422
2655
|
* @memberof PublicUserDtoIEnumerableResponse
|
|
2423
2656
|
*/
|
|
2424
|
-
|
|
2657
|
+
isSuccess?: boolean;
|
|
2425
2658
|
/**
|
|
2426
2659
|
*
|
|
2427
|
-
* @type {
|
|
2660
|
+
* @type {number}
|
|
2428
2661
|
* @memberof PublicUserDtoIEnumerableResponse
|
|
2429
2662
|
*/
|
|
2430
|
-
|
|
2663
|
+
statusCode?: number | null;
|
|
2431
2664
|
/**
|
|
2432
2665
|
*
|
|
2433
2666
|
* @type {string}
|
|
@@ -2505,6 +2738,37 @@ export interface RdfDefinitionDto {
|
|
|
2505
2738
|
*/
|
|
2506
2739
|
type?: string | null;
|
|
2507
2740
|
}
|
|
2741
|
+
/**
|
|
2742
|
+
*
|
|
2743
|
+
* @export
|
|
2744
|
+
* @interface RdfDefinitionDtoResponse
|
|
2745
|
+
*/
|
|
2746
|
+
export interface RdfDefinitionDtoResponse {
|
|
2747
|
+
/**
|
|
2748
|
+
*
|
|
2749
|
+
* @type {RdfDefinitionDto}
|
|
2750
|
+
* @memberof RdfDefinitionDtoResponse
|
|
2751
|
+
*/
|
|
2752
|
+
data?: RdfDefinitionDto;
|
|
2753
|
+
/**
|
|
2754
|
+
*
|
|
2755
|
+
* @type {boolean}
|
|
2756
|
+
* @memberof RdfDefinitionDtoResponse
|
|
2757
|
+
*/
|
|
2758
|
+
isSuccess?: boolean;
|
|
2759
|
+
/**
|
|
2760
|
+
*
|
|
2761
|
+
* @type {number}
|
|
2762
|
+
* @memberof RdfDefinitionDtoResponse
|
|
2763
|
+
*/
|
|
2764
|
+
statusCode?: number | null;
|
|
2765
|
+
/**
|
|
2766
|
+
*
|
|
2767
|
+
* @type {string}
|
|
2768
|
+
* @memberof RdfDefinitionDtoResponse
|
|
2769
|
+
*/
|
|
2770
|
+
traceId?: string | null;
|
|
2771
|
+
}
|
|
2508
2772
|
/**
|
|
2509
2773
|
*
|
|
2510
2774
|
* @export
|
|
@@ -2689,6 +2953,162 @@ export interface RdsS3WormResourceTypeOptionsForManipulationDto {
|
|
|
2689
2953
|
*/
|
|
2690
2954
|
quota?: QuotaForManipulationDto;
|
|
2691
2955
|
}
|
|
2956
|
+
/**
|
|
2957
|
+
*
|
|
2958
|
+
* @export
|
|
2959
|
+
* @interface ResourceAdminDto
|
|
2960
|
+
*/
|
|
2961
|
+
export interface ResourceAdminDto {
|
|
2962
|
+
/**
|
|
2963
|
+
*
|
|
2964
|
+
* @type {string}
|
|
2965
|
+
* @memberof ResourceAdminDto
|
|
2966
|
+
*/
|
|
2967
|
+
id?: string;
|
|
2968
|
+
/**
|
|
2969
|
+
*
|
|
2970
|
+
* @type {string}
|
|
2971
|
+
* @memberof ResourceAdminDto
|
|
2972
|
+
*/
|
|
2973
|
+
pid?: string;
|
|
2974
|
+
/**
|
|
2975
|
+
*
|
|
2976
|
+
* @type {ResourceTypeDto}
|
|
2977
|
+
* @memberof ResourceAdminDto
|
|
2978
|
+
*/
|
|
2979
|
+
type?: ResourceTypeDto;
|
|
2980
|
+
/**
|
|
2981
|
+
*
|
|
2982
|
+
* @type {string}
|
|
2983
|
+
* @memberof ResourceAdminDto
|
|
2984
|
+
*/
|
|
2985
|
+
name?: string;
|
|
2986
|
+
/**
|
|
2987
|
+
*
|
|
2988
|
+
* @type {string}
|
|
2989
|
+
* @memberof ResourceAdminDto
|
|
2990
|
+
*/
|
|
2991
|
+
displayName?: string;
|
|
2992
|
+
/**
|
|
2993
|
+
*
|
|
2994
|
+
* @type {string}
|
|
2995
|
+
* @memberof ResourceAdminDto
|
|
2996
|
+
*/
|
|
2997
|
+
description?: string;
|
|
2998
|
+
/**
|
|
2999
|
+
*
|
|
3000
|
+
* @type {Array<string>}
|
|
3001
|
+
* @memberof ResourceAdminDto
|
|
3002
|
+
*/
|
|
3003
|
+
keywords?: Array<string> | null;
|
|
3004
|
+
/**
|
|
3005
|
+
*
|
|
3006
|
+
* @type {LicenseDto}
|
|
3007
|
+
* @memberof ResourceAdminDto
|
|
3008
|
+
*/
|
|
3009
|
+
license?: LicenseDto;
|
|
3010
|
+
/**
|
|
3011
|
+
*
|
|
3012
|
+
* @type {string}
|
|
3013
|
+
* @memberof ResourceAdminDto
|
|
3014
|
+
*/
|
|
3015
|
+
usageRights?: string | null;
|
|
3016
|
+
/**
|
|
3017
|
+
*
|
|
3018
|
+
* @type {ApplicationProfileMinimalDto}
|
|
3019
|
+
* @memberof ResourceAdminDto
|
|
3020
|
+
*/
|
|
3021
|
+
applicationProfile?: ApplicationProfileMinimalDto;
|
|
3022
|
+
/**
|
|
3023
|
+
*
|
|
3024
|
+
* @type {{ [key: string]: { [key: string]: Array<FixedValueForResourceManipulationDto>; }; }}
|
|
3025
|
+
* @memberof ResourceAdminDto
|
|
3026
|
+
*/
|
|
3027
|
+
fixedValues?: {
|
|
3028
|
+
[key: string]: {
|
|
3029
|
+
[key: string]: Array<FixedValueForResourceManipulationDto>;
|
|
3030
|
+
};
|
|
3031
|
+
};
|
|
3032
|
+
/**
|
|
3033
|
+
*
|
|
3034
|
+
* @type {Array<DisciplineDto>}
|
|
3035
|
+
* @memberof ResourceAdminDto
|
|
3036
|
+
*/
|
|
3037
|
+
disciplines?: Array<DisciplineDto>;
|
|
3038
|
+
/**
|
|
3039
|
+
*
|
|
3040
|
+
* @type {VisibilityDto}
|
|
3041
|
+
* @memberof ResourceAdminDto
|
|
3042
|
+
*/
|
|
3043
|
+
visibility?: VisibilityDto;
|
|
3044
|
+
/**
|
|
3045
|
+
*
|
|
3046
|
+
* @type {string}
|
|
3047
|
+
* @memberof ResourceAdminDto
|
|
3048
|
+
*/
|
|
3049
|
+
dateCreated?: string | null;
|
|
3050
|
+
/**
|
|
3051
|
+
*
|
|
3052
|
+
* @type {string}
|
|
3053
|
+
* @memberof ResourceAdminDto
|
|
3054
|
+
*/
|
|
3055
|
+
creator?: string | null;
|
|
3056
|
+
/**
|
|
3057
|
+
*
|
|
3058
|
+
* @type {boolean}
|
|
3059
|
+
* @memberof ResourceAdminDto
|
|
3060
|
+
*/
|
|
3061
|
+
archived?: boolean;
|
|
3062
|
+
/**
|
|
3063
|
+
*
|
|
3064
|
+
* @type {boolean}
|
|
3065
|
+
* @memberof ResourceAdminDto
|
|
3066
|
+
*/
|
|
3067
|
+
deleted?: boolean;
|
|
3068
|
+
/**
|
|
3069
|
+
*
|
|
3070
|
+
* @type {Array<ProjectResourceMinimalDto>}
|
|
3071
|
+
* @memberof ResourceAdminDto
|
|
3072
|
+
*/
|
|
3073
|
+
projectResources?: Array<ProjectResourceMinimalDto>;
|
|
3074
|
+
}
|
|
3075
|
+
/**
|
|
3076
|
+
*
|
|
3077
|
+
* @export
|
|
3078
|
+
* @interface ResourceAdminDtoIEnumerablePagedResponse
|
|
3079
|
+
*/
|
|
3080
|
+
export interface ResourceAdminDtoIEnumerablePagedResponse {
|
|
3081
|
+
/**
|
|
3082
|
+
*
|
|
3083
|
+
* @type {Array<Array<ResourceAdminDto>>}
|
|
3084
|
+
* @memberof ResourceAdminDtoIEnumerablePagedResponse
|
|
3085
|
+
*/
|
|
3086
|
+
data?: Array<Array<ResourceAdminDto>> | null;
|
|
3087
|
+
/**
|
|
3088
|
+
*
|
|
3089
|
+
* @type {boolean}
|
|
3090
|
+
* @memberof ResourceAdminDtoIEnumerablePagedResponse
|
|
3091
|
+
*/
|
|
3092
|
+
isSuccess?: boolean;
|
|
3093
|
+
/**
|
|
3094
|
+
*
|
|
3095
|
+
* @type {number}
|
|
3096
|
+
* @memberof ResourceAdminDtoIEnumerablePagedResponse
|
|
3097
|
+
*/
|
|
3098
|
+
statusCode?: number | null;
|
|
3099
|
+
/**
|
|
3100
|
+
*
|
|
3101
|
+
* @type {string}
|
|
3102
|
+
* @memberof ResourceAdminDtoIEnumerablePagedResponse
|
|
3103
|
+
*/
|
|
3104
|
+
traceId?: string | null;
|
|
3105
|
+
/**
|
|
3106
|
+
*
|
|
3107
|
+
* @type {Pagination}
|
|
3108
|
+
* @memberof ResourceAdminDtoIEnumerablePagedResponse
|
|
3109
|
+
*/
|
|
3110
|
+
pagination?: Pagination;
|
|
3111
|
+
}
|
|
2692
3112
|
/**
|
|
2693
3113
|
*
|
|
2694
3114
|
* @export
|
|
@@ -2882,37 +3302,37 @@ export interface ResourceDto {
|
|
|
2882
3302
|
/**
|
|
2883
3303
|
*
|
|
2884
3304
|
* @export
|
|
2885
|
-
* @interface
|
|
3305
|
+
* @interface ResourceDtoPagedResponse
|
|
2886
3306
|
*/
|
|
2887
|
-
export interface
|
|
3307
|
+
export interface ResourceDtoPagedResponse {
|
|
2888
3308
|
/**
|
|
2889
3309
|
*
|
|
2890
3310
|
* @type {Array<ResourceDto>}
|
|
2891
|
-
* @memberof
|
|
3311
|
+
* @memberof ResourceDtoPagedResponse
|
|
2892
3312
|
*/
|
|
2893
3313
|
data?: Array<ResourceDto> | null;
|
|
2894
3314
|
/**
|
|
2895
3315
|
*
|
|
2896
|
-
* @type {
|
|
2897
|
-
* @memberof
|
|
3316
|
+
* @type {boolean}
|
|
3317
|
+
* @memberof ResourceDtoPagedResponse
|
|
2898
3318
|
*/
|
|
2899
|
-
|
|
3319
|
+
isSuccess?: boolean;
|
|
2900
3320
|
/**
|
|
2901
3321
|
*
|
|
2902
|
-
* @type {
|
|
2903
|
-
* @memberof
|
|
3322
|
+
* @type {number}
|
|
3323
|
+
* @memberof ResourceDtoPagedResponse
|
|
2904
3324
|
*/
|
|
2905
|
-
|
|
3325
|
+
statusCode?: number | null;
|
|
2906
3326
|
/**
|
|
2907
3327
|
*
|
|
2908
3328
|
* @type {string}
|
|
2909
|
-
* @memberof
|
|
3329
|
+
* @memberof ResourceDtoPagedResponse
|
|
2910
3330
|
*/
|
|
2911
3331
|
traceId?: string | null;
|
|
2912
3332
|
/**
|
|
2913
3333
|
*
|
|
2914
3334
|
* @type {Pagination}
|
|
2915
|
-
* @memberof
|
|
3335
|
+
* @memberof ResourceDtoPagedResponse
|
|
2916
3336
|
*/
|
|
2917
3337
|
pagination?: Pagination;
|
|
2918
3338
|
}
|
|
@@ -2930,16 +3350,16 @@ export interface ResourceDtoResponse {
|
|
|
2930
3350
|
data?: ResourceDto;
|
|
2931
3351
|
/**
|
|
2932
3352
|
*
|
|
2933
|
-
* @type {
|
|
3353
|
+
* @type {boolean}
|
|
2934
3354
|
* @memberof ResourceDtoResponse
|
|
2935
3355
|
*/
|
|
2936
|
-
|
|
3356
|
+
isSuccess?: boolean;
|
|
2937
3357
|
/**
|
|
2938
3358
|
*
|
|
2939
|
-
* @type {
|
|
3359
|
+
* @type {number}
|
|
2940
3360
|
* @memberof ResourceDtoResponse
|
|
2941
3361
|
*/
|
|
2942
|
-
|
|
3362
|
+
statusCode?: number | null;
|
|
2943
3363
|
/**
|
|
2944
3364
|
*
|
|
2945
3365
|
* @type {string}
|
|
@@ -3165,16 +3585,16 @@ export interface ResourceQuotaDtoResponse {
|
|
|
3165
3585
|
data?: ResourceQuotaDto;
|
|
3166
3586
|
/**
|
|
3167
3587
|
*
|
|
3168
|
-
* @type {
|
|
3588
|
+
* @type {boolean}
|
|
3169
3589
|
* @memberof ResourceQuotaDtoResponse
|
|
3170
3590
|
*/
|
|
3171
|
-
|
|
3591
|
+
isSuccess?: boolean;
|
|
3172
3592
|
/**
|
|
3173
3593
|
*
|
|
3174
|
-
* @type {
|
|
3594
|
+
* @type {number}
|
|
3175
3595
|
* @memberof ResourceQuotaDtoResponse
|
|
3176
3596
|
*/
|
|
3177
|
-
|
|
3597
|
+
statusCode?: number | null;
|
|
3178
3598
|
/**
|
|
3179
3599
|
*
|
|
3180
3600
|
* @type {string}
|
|
@@ -3348,16 +3768,16 @@ export interface ResourceTypeInformationDtoIEnumerableResponse {
|
|
|
3348
3768
|
data?: Array<ResourceTypeInformationDto> | null;
|
|
3349
3769
|
/**
|
|
3350
3770
|
*
|
|
3351
|
-
* @type {
|
|
3771
|
+
* @type {boolean}
|
|
3352
3772
|
* @memberof ResourceTypeInformationDtoIEnumerableResponse
|
|
3353
3773
|
*/
|
|
3354
|
-
|
|
3774
|
+
isSuccess?: boolean;
|
|
3355
3775
|
/**
|
|
3356
3776
|
*
|
|
3357
|
-
* @type {
|
|
3777
|
+
* @type {number}
|
|
3358
3778
|
* @memberof ResourceTypeInformationDtoIEnumerableResponse
|
|
3359
3779
|
*/
|
|
3360
|
-
|
|
3780
|
+
statusCode?: number | null;
|
|
3361
3781
|
/**
|
|
3362
3782
|
*
|
|
3363
3783
|
* @type {string}
|
|
@@ -3379,16 +3799,16 @@ export interface ResourceTypeInformationDtoResponse {
|
|
|
3379
3799
|
data?: ResourceTypeInformationDto;
|
|
3380
3800
|
/**
|
|
3381
3801
|
*
|
|
3382
|
-
* @type {
|
|
3802
|
+
* @type {boolean}
|
|
3383
3803
|
* @memberof ResourceTypeInformationDtoResponse
|
|
3384
3804
|
*/
|
|
3385
|
-
|
|
3805
|
+
isSuccess?: boolean;
|
|
3386
3806
|
/**
|
|
3387
3807
|
*
|
|
3388
|
-
* @type {
|
|
3808
|
+
* @type {number}
|
|
3389
3809
|
* @memberof ResourceTypeInformationDtoResponse
|
|
3390
3810
|
*/
|
|
3391
|
-
|
|
3811
|
+
statusCode?: number | null;
|
|
3392
3812
|
/**
|
|
3393
3813
|
*
|
|
3394
3814
|
* @type {string}
|
|
@@ -3563,37 +3983,37 @@ export interface RoleDto {
|
|
|
3563
3983
|
/**
|
|
3564
3984
|
*
|
|
3565
3985
|
* @export
|
|
3566
|
-
* @interface
|
|
3986
|
+
* @interface RoleDtoPagedResponse
|
|
3567
3987
|
*/
|
|
3568
|
-
export interface
|
|
3988
|
+
export interface RoleDtoPagedResponse {
|
|
3569
3989
|
/**
|
|
3570
3990
|
*
|
|
3571
3991
|
* @type {Array<RoleDto>}
|
|
3572
|
-
* @memberof
|
|
3992
|
+
* @memberof RoleDtoPagedResponse
|
|
3573
3993
|
*/
|
|
3574
3994
|
data?: Array<RoleDto> | null;
|
|
3575
3995
|
/**
|
|
3576
3996
|
*
|
|
3577
|
-
* @type {
|
|
3578
|
-
* @memberof
|
|
3997
|
+
* @type {boolean}
|
|
3998
|
+
* @memberof RoleDtoPagedResponse
|
|
3579
3999
|
*/
|
|
3580
|
-
|
|
4000
|
+
isSuccess?: boolean;
|
|
3581
4001
|
/**
|
|
3582
4002
|
*
|
|
3583
|
-
* @type {
|
|
3584
|
-
* @memberof
|
|
4003
|
+
* @type {number}
|
|
4004
|
+
* @memberof RoleDtoPagedResponse
|
|
3585
4005
|
*/
|
|
3586
|
-
|
|
4006
|
+
statusCode?: number | null;
|
|
3587
4007
|
/**
|
|
3588
4008
|
*
|
|
3589
4009
|
* @type {string}
|
|
3590
|
-
* @memberof
|
|
4010
|
+
* @memberof RoleDtoPagedResponse
|
|
3591
4011
|
*/
|
|
3592
4012
|
traceId?: string | null;
|
|
3593
4013
|
/**
|
|
3594
4014
|
*
|
|
3595
4015
|
* @type {Pagination}
|
|
3596
|
-
* @memberof
|
|
4016
|
+
* @memberof RoleDtoPagedResponse
|
|
3597
4017
|
*/
|
|
3598
4018
|
pagination?: Pagination;
|
|
3599
4019
|
}
|
|
@@ -3611,16 +4031,16 @@ export interface RoleDtoResponse {
|
|
|
3611
4031
|
data?: RoleDto;
|
|
3612
4032
|
/**
|
|
3613
4033
|
*
|
|
3614
|
-
* @type {
|
|
4034
|
+
* @type {boolean}
|
|
3615
4035
|
* @memberof RoleDtoResponse
|
|
3616
4036
|
*/
|
|
3617
|
-
|
|
4037
|
+
isSuccess?: boolean;
|
|
3618
4038
|
/**
|
|
3619
4039
|
*
|
|
3620
|
-
* @type {
|
|
4040
|
+
* @type {number}
|
|
3621
4041
|
* @memberof RoleDtoResponse
|
|
3622
4042
|
*/
|
|
3623
|
-
|
|
4043
|
+
statusCode?: number | null;
|
|
3624
4044
|
/**
|
|
3625
4045
|
*
|
|
3626
4046
|
* @type {string}
|
|
@@ -3641,6 +4061,25 @@ export interface RoleMinimalDto {
|
|
|
3641
4061
|
*/
|
|
3642
4062
|
id?: string;
|
|
3643
4063
|
}
|
|
4064
|
+
/**
|
|
4065
|
+
*
|
|
4066
|
+
* @export
|
|
4067
|
+
* @interface SearchCategory
|
|
4068
|
+
*/
|
|
4069
|
+
export interface SearchCategory {
|
|
4070
|
+
/**
|
|
4071
|
+
*
|
|
4072
|
+
* @type {string}
|
|
4073
|
+
* @memberof SearchCategory
|
|
4074
|
+
*/
|
|
4075
|
+
name?: string;
|
|
4076
|
+
/**
|
|
4077
|
+
*
|
|
4078
|
+
* @type {number}
|
|
4079
|
+
* @memberof SearchCategory
|
|
4080
|
+
*/
|
|
4081
|
+
count?: number;
|
|
4082
|
+
}
|
|
3644
4083
|
/**
|
|
3645
4084
|
*
|
|
3646
4085
|
* @export
|
|
@@ -3680,39 +4119,45 @@ export interface SearchResultDto {
|
|
|
3680
4119
|
/**
|
|
3681
4120
|
*
|
|
3682
4121
|
* @export
|
|
3683
|
-
* @interface
|
|
4122
|
+
* @interface SearchResultDtoPagedSearchResponse
|
|
3684
4123
|
*/
|
|
3685
|
-
export interface
|
|
4124
|
+
export interface SearchResultDtoPagedSearchResponse {
|
|
3686
4125
|
/**
|
|
3687
4126
|
*
|
|
3688
4127
|
* @type {Array<SearchResultDto>}
|
|
3689
|
-
* @memberof
|
|
4128
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
3690
4129
|
*/
|
|
3691
4130
|
data?: Array<SearchResultDto> | null;
|
|
3692
4131
|
/**
|
|
3693
4132
|
*
|
|
3694
|
-
* @type {
|
|
3695
|
-
* @memberof
|
|
4133
|
+
* @type {boolean}
|
|
4134
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
3696
4135
|
*/
|
|
3697
|
-
|
|
4136
|
+
isSuccess?: boolean;
|
|
3698
4137
|
/**
|
|
3699
4138
|
*
|
|
3700
|
-
* @type {
|
|
3701
|
-
* @memberof
|
|
4139
|
+
* @type {number}
|
|
4140
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
3702
4141
|
*/
|
|
3703
|
-
|
|
4142
|
+
statusCode?: number | null;
|
|
3704
4143
|
/**
|
|
3705
4144
|
*
|
|
3706
4145
|
* @type {string}
|
|
3707
|
-
* @memberof
|
|
4146
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
3708
4147
|
*/
|
|
3709
4148
|
traceId?: string | null;
|
|
3710
4149
|
/**
|
|
3711
4150
|
*
|
|
3712
4151
|
* @type {Pagination}
|
|
3713
|
-
* @memberof
|
|
4152
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
3714
4153
|
*/
|
|
3715
4154
|
pagination?: Pagination;
|
|
4155
|
+
/**
|
|
4156
|
+
*
|
|
4157
|
+
* @type {Array<SearchCategory>}
|
|
4158
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
4159
|
+
*/
|
|
4160
|
+
categories?: Array<SearchCategory> | null;
|
|
3716
4161
|
}
|
|
3717
4162
|
/**
|
|
3718
4163
|
*
|
|
@@ -3747,16 +4192,16 @@ export interface TermsOfServiceDtoResponse {
|
|
|
3747
4192
|
data?: TermsOfServiceDto;
|
|
3748
4193
|
/**
|
|
3749
4194
|
*
|
|
3750
|
-
* @type {
|
|
4195
|
+
* @type {boolean}
|
|
3751
4196
|
* @memberof TermsOfServiceDtoResponse
|
|
3752
4197
|
*/
|
|
3753
|
-
|
|
4198
|
+
isSuccess?: boolean;
|
|
3754
4199
|
/**
|
|
3755
4200
|
*
|
|
3756
|
-
* @type {
|
|
4201
|
+
* @type {number}
|
|
3757
4202
|
* @memberof TermsOfServiceDtoResponse
|
|
3758
4203
|
*/
|
|
3759
|
-
|
|
4204
|
+
statusCode?: number | null;
|
|
3760
4205
|
/**
|
|
3761
4206
|
*
|
|
3762
4207
|
* @type {string}
|
|
@@ -3786,37 +4231,37 @@ export interface TitleDto {
|
|
|
3786
4231
|
/**
|
|
3787
4232
|
*
|
|
3788
4233
|
* @export
|
|
3789
|
-
* @interface
|
|
4234
|
+
* @interface TitleDtoPagedResponse
|
|
3790
4235
|
*/
|
|
3791
|
-
export interface
|
|
4236
|
+
export interface TitleDtoPagedResponse {
|
|
3792
4237
|
/**
|
|
3793
4238
|
*
|
|
3794
4239
|
* @type {Array<TitleDto>}
|
|
3795
|
-
* @memberof
|
|
4240
|
+
* @memberof TitleDtoPagedResponse
|
|
3796
4241
|
*/
|
|
3797
4242
|
data?: Array<TitleDto> | null;
|
|
3798
4243
|
/**
|
|
3799
4244
|
*
|
|
3800
|
-
* @type {
|
|
3801
|
-
* @memberof
|
|
4245
|
+
* @type {boolean}
|
|
4246
|
+
* @memberof TitleDtoPagedResponse
|
|
3802
4247
|
*/
|
|
3803
|
-
|
|
4248
|
+
isSuccess?: boolean;
|
|
3804
4249
|
/**
|
|
3805
4250
|
*
|
|
3806
|
-
* @type {
|
|
3807
|
-
* @memberof
|
|
4251
|
+
* @type {number}
|
|
4252
|
+
* @memberof TitleDtoPagedResponse
|
|
3808
4253
|
*/
|
|
3809
|
-
|
|
4254
|
+
statusCode?: number | null;
|
|
3810
4255
|
/**
|
|
3811
4256
|
*
|
|
3812
4257
|
* @type {string}
|
|
3813
|
-
* @memberof
|
|
4258
|
+
* @memberof TitleDtoPagedResponse
|
|
3814
4259
|
*/
|
|
3815
4260
|
traceId?: string | null;
|
|
3816
4261
|
/**
|
|
3817
4262
|
*
|
|
3818
4263
|
* @type {Pagination}
|
|
3819
|
-
* @memberof
|
|
4264
|
+
* @memberof TitleDtoPagedResponse
|
|
3820
4265
|
*/
|
|
3821
4266
|
pagination?: Pagination;
|
|
3822
4267
|
}
|
|
@@ -3834,16 +4279,16 @@ export interface TitleDtoResponse {
|
|
|
3834
4279
|
data?: TitleDto;
|
|
3835
4280
|
/**
|
|
3836
4281
|
*
|
|
3837
|
-
* @type {
|
|
4282
|
+
* @type {boolean}
|
|
3838
4283
|
* @memberof TitleDtoResponse
|
|
3839
4284
|
*/
|
|
3840
|
-
|
|
4285
|
+
isSuccess?: boolean;
|
|
3841
4286
|
/**
|
|
3842
4287
|
*
|
|
3843
|
-
* @type {
|
|
4288
|
+
* @type {number}
|
|
3844
4289
|
* @memberof TitleDtoResponse
|
|
3845
4290
|
*/
|
|
3846
|
-
|
|
4291
|
+
statusCode?: number | null;
|
|
3847
4292
|
/**
|
|
3848
4293
|
*
|
|
3849
4294
|
* @type {string}
|
|
@@ -3952,6 +4397,43 @@ export interface UserDto {
|
|
|
3952
4397
|
*/
|
|
3953
4398
|
identities?: Array<IdentityProviderDto>;
|
|
3954
4399
|
}
|
|
4400
|
+
/**
|
|
4401
|
+
*
|
|
4402
|
+
* @export
|
|
4403
|
+
* @interface UserDtoIEnumerablePagedResponse
|
|
4404
|
+
*/
|
|
4405
|
+
export interface UserDtoIEnumerablePagedResponse {
|
|
4406
|
+
/**
|
|
4407
|
+
*
|
|
4408
|
+
* @type {Array<Array<UserDto>>}
|
|
4409
|
+
* @memberof UserDtoIEnumerablePagedResponse
|
|
4410
|
+
*/
|
|
4411
|
+
data?: Array<Array<UserDto>> | null;
|
|
4412
|
+
/**
|
|
4413
|
+
*
|
|
4414
|
+
* @type {boolean}
|
|
4415
|
+
* @memberof UserDtoIEnumerablePagedResponse
|
|
4416
|
+
*/
|
|
4417
|
+
isSuccess?: boolean;
|
|
4418
|
+
/**
|
|
4419
|
+
*
|
|
4420
|
+
* @type {number}
|
|
4421
|
+
* @memberof UserDtoIEnumerablePagedResponse
|
|
4422
|
+
*/
|
|
4423
|
+
statusCode?: number | null;
|
|
4424
|
+
/**
|
|
4425
|
+
*
|
|
4426
|
+
* @type {string}
|
|
4427
|
+
* @memberof UserDtoIEnumerablePagedResponse
|
|
4428
|
+
*/
|
|
4429
|
+
traceId?: string | null;
|
|
4430
|
+
/**
|
|
4431
|
+
*
|
|
4432
|
+
* @type {Pagination}
|
|
4433
|
+
* @memberof UserDtoIEnumerablePagedResponse
|
|
4434
|
+
*/
|
|
4435
|
+
pagination?: Pagination;
|
|
4436
|
+
}
|
|
3955
4437
|
/**
|
|
3956
4438
|
*
|
|
3957
4439
|
* @export
|
|
@@ -3966,16 +4448,16 @@ export interface UserDtoResponse {
|
|
|
3966
4448
|
data?: UserDto;
|
|
3967
4449
|
/**
|
|
3968
4450
|
*
|
|
3969
|
-
* @type {
|
|
4451
|
+
* @type {boolean}
|
|
3970
4452
|
* @memberof UserDtoResponse
|
|
3971
4453
|
*/
|
|
3972
|
-
|
|
4454
|
+
isSuccess?: boolean;
|
|
3973
4455
|
/**
|
|
3974
4456
|
*
|
|
3975
|
-
* @type {
|
|
4457
|
+
* @type {number}
|
|
3976
4458
|
* @memberof UserDtoResponse
|
|
3977
4459
|
*/
|
|
3978
|
-
|
|
4460
|
+
statusCode?: number | null;
|
|
3979
4461
|
/**
|
|
3980
4462
|
*
|
|
3981
4463
|
* @type {string}
|
|
@@ -4121,16 +4603,16 @@ export interface UserMergeDtoResponse {
|
|
|
4121
4603
|
data?: UserMergeDto;
|
|
4122
4604
|
/**
|
|
4123
4605
|
*
|
|
4124
|
-
* @type {
|
|
4606
|
+
* @type {boolean}
|
|
4125
4607
|
* @memberof UserMergeDtoResponse
|
|
4126
4608
|
*/
|
|
4127
|
-
|
|
4609
|
+
isSuccess?: boolean;
|
|
4128
4610
|
/**
|
|
4129
4611
|
*
|
|
4130
|
-
* @type {
|
|
4612
|
+
* @type {number}
|
|
4131
4613
|
* @memberof UserMergeDtoResponse
|
|
4132
4614
|
*/
|
|
4133
|
-
|
|
4615
|
+
statusCode?: number | null;
|
|
4134
4616
|
/**
|
|
4135
4617
|
*
|
|
4136
4618
|
* @type {string}
|
|
@@ -4217,37 +4699,37 @@ export interface VisibilityDto {
|
|
|
4217
4699
|
/**
|
|
4218
4700
|
*
|
|
4219
4701
|
* @export
|
|
4220
|
-
* @interface
|
|
4702
|
+
* @interface VisibilityDtoPagedResponse
|
|
4221
4703
|
*/
|
|
4222
|
-
export interface
|
|
4704
|
+
export interface VisibilityDtoPagedResponse {
|
|
4223
4705
|
/**
|
|
4224
4706
|
*
|
|
4225
4707
|
* @type {Array<VisibilityDto>}
|
|
4226
|
-
* @memberof
|
|
4708
|
+
* @memberof VisibilityDtoPagedResponse
|
|
4227
4709
|
*/
|
|
4228
4710
|
data?: Array<VisibilityDto> | null;
|
|
4229
4711
|
/**
|
|
4230
4712
|
*
|
|
4231
|
-
* @type {
|
|
4232
|
-
* @memberof
|
|
4713
|
+
* @type {boolean}
|
|
4714
|
+
* @memberof VisibilityDtoPagedResponse
|
|
4233
4715
|
*/
|
|
4234
|
-
|
|
4716
|
+
isSuccess?: boolean;
|
|
4235
4717
|
/**
|
|
4236
4718
|
*
|
|
4237
|
-
* @type {
|
|
4238
|
-
* @memberof
|
|
4719
|
+
* @type {number}
|
|
4720
|
+
* @memberof VisibilityDtoPagedResponse
|
|
4239
4721
|
*/
|
|
4240
|
-
|
|
4722
|
+
statusCode?: number | null;
|
|
4241
4723
|
/**
|
|
4242
4724
|
*
|
|
4243
4725
|
* @type {string}
|
|
4244
|
-
* @memberof
|
|
4726
|
+
* @memberof VisibilityDtoPagedResponse
|
|
4245
4727
|
*/
|
|
4246
4728
|
traceId?: string | null;
|
|
4247
4729
|
/**
|
|
4248
4730
|
*
|
|
4249
4731
|
* @type {Pagination}
|
|
4250
|
-
* @memberof
|
|
4732
|
+
* @memberof VisibilityDtoPagedResponse
|
|
4251
4733
|
*/
|
|
4252
4734
|
pagination?: Pagination;
|
|
4253
4735
|
}
|
|
@@ -4265,16 +4747,16 @@ export interface VisibilityDtoResponse {
|
|
|
4265
4747
|
data?: VisibilityDto;
|
|
4266
4748
|
/**
|
|
4267
4749
|
*
|
|
4268
|
-
* @type {
|
|
4750
|
+
* @type {boolean}
|
|
4269
4751
|
* @memberof VisibilityDtoResponse
|
|
4270
4752
|
*/
|
|
4271
|
-
|
|
4753
|
+
isSuccess?: boolean;
|
|
4272
4754
|
/**
|
|
4273
4755
|
*
|
|
4274
|
-
* @type {
|
|
4756
|
+
* @type {number}
|
|
4275
4757
|
* @memberof VisibilityDtoResponse
|
|
4276
4758
|
*/
|
|
4277
|
-
|
|
4759
|
+
statusCode?: number | null;
|
|
4278
4760
|
/**
|
|
4279
4761
|
*
|
|
4280
4762
|
* @type {string}
|
|
@@ -4342,37 +4824,37 @@ export interface VocabularyDto {
|
|
|
4342
4824
|
/**
|
|
4343
4825
|
*
|
|
4344
4826
|
* @export
|
|
4345
|
-
* @interface
|
|
4827
|
+
* @interface VocabularyDtoPagedResponse
|
|
4346
4828
|
*/
|
|
4347
|
-
export interface
|
|
4829
|
+
export interface VocabularyDtoPagedResponse {
|
|
4348
4830
|
/**
|
|
4349
4831
|
*
|
|
4350
4832
|
* @type {Array<VocabularyDto>}
|
|
4351
|
-
* @memberof
|
|
4833
|
+
* @memberof VocabularyDtoPagedResponse
|
|
4352
4834
|
*/
|
|
4353
4835
|
data?: Array<VocabularyDto> | null;
|
|
4354
4836
|
/**
|
|
4355
4837
|
*
|
|
4356
|
-
* @type {
|
|
4357
|
-
* @memberof
|
|
4838
|
+
* @type {boolean}
|
|
4839
|
+
* @memberof VocabularyDtoPagedResponse
|
|
4358
4840
|
*/
|
|
4359
|
-
|
|
4841
|
+
isSuccess?: boolean;
|
|
4360
4842
|
/**
|
|
4361
4843
|
*
|
|
4362
|
-
* @type {
|
|
4363
|
-
* @memberof
|
|
4844
|
+
* @type {number}
|
|
4845
|
+
* @memberof VocabularyDtoPagedResponse
|
|
4364
4846
|
*/
|
|
4365
|
-
|
|
4847
|
+
statusCode?: number | null;
|
|
4366
4848
|
/**
|
|
4367
4849
|
*
|
|
4368
4850
|
* @type {string}
|
|
4369
|
-
* @memberof
|
|
4851
|
+
* @memberof VocabularyDtoPagedResponse
|
|
4370
4852
|
*/
|
|
4371
4853
|
traceId?: string | null;
|
|
4372
4854
|
/**
|
|
4373
4855
|
*
|
|
4374
4856
|
* @type {Pagination}
|
|
4375
|
-
* @memberof
|
|
4857
|
+
* @memberof VocabularyDtoPagedResponse
|
|
4376
4858
|
*/
|
|
4377
4859
|
pagination?: Pagination;
|
|
4378
4860
|
}
|
|
@@ -4422,37 +4904,37 @@ export interface VocabularyInstanceDto {
|
|
|
4422
4904
|
/**
|
|
4423
4905
|
*
|
|
4424
4906
|
* @export
|
|
4425
|
-
* @interface
|
|
4907
|
+
* @interface VocabularyInstanceDtoPagedResponse
|
|
4426
4908
|
*/
|
|
4427
|
-
export interface
|
|
4909
|
+
export interface VocabularyInstanceDtoPagedResponse {
|
|
4428
4910
|
/**
|
|
4429
4911
|
*
|
|
4430
4912
|
* @type {Array<VocabularyInstanceDto>}
|
|
4431
|
-
* @memberof
|
|
4913
|
+
* @memberof VocabularyInstanceDtoPagedResponse
|
|
4432
4914
|
*/
|
|
4433
4915
|
data?: Array<VocabularyInstanceDto> | null;
|
|
4434
4916
|
/**
|
|
4435
4917
|
*
|
|
4436
|
-
* @type {
|
|
4437
|
-
* @memberof
|
|
4918
|
+
* @type {boolean}
|
|
4919
|
+
* @memberof VocabularyInstanceDtoPagedResponse
|
|
4438
4920
|
*/
|
|
4439
|
-
|
|
4921
|
+
isSuccess?: boolean;
|
|
4440
4922
|
/**
|
|
4441
4923
|
*
|
|
4442
|
-
* @type {
|
|
4443
|
-
* @memberof
|
|
4924
|
+
* @type {number}
|
|
4925
|
+
* @memberof VocabularyInstanceDtoPagedResponse
|
|
4444
4926
|
*/
|
|
4445
|
-
|
|
4927
|
+
statusCode?: number | null;
|
|
4446
4928
|
/**
|
|
4447
4929
|
*
|
|
4448
4930
|
* @type {string}
|
|
4449
|
-
* @memberof
|
|
4931
|
+
* @memberof VocabularyInstanceDtoPagedResponse
|
|
4450
4932
|
*/
|
|
4451
4933
|
traceId?: string | null;
|
|
4452
4934
|
/**
|
|
4453
4935
|
*
|
|
4454
4936
|
* @type {Pagination}
|
|
4455
|
-
* @memberof
|
|
4937
|
+
* @memberof VocabularyInstanceDtoPagedResponse
|
|
4456
4938
|
*/
|
|
4457
4939
|
pagination?: Pagination;
|
|
4458
4940
|
}
|
|
@@ -4470,16 +4952,16 @@ export interface VocabularyInstanceDtoResponse {
|
|
|
4470
4952
|
data?: VocabularyInstanceDto;
|
|
4471
4953
|
/**
|
|
4472
4954
|
*
|
|
4473
|
-
* @type {
|
|
4955
|
+
* @type {boolean}
|
|
4474
4956
|
* @memberof VocabularyInstanceDtoResponse
|
|
4475
4957
|
*/
|
|
4476
|
-
|
|
4958
|
+
isSuccess?: boolean;
|
|
4477
4959
|
/**
|
|
4478
4960
|
*
|
|
4479
|
-
* @type {
|
|
4961
|
+
* @type {number}
|
|
4480
4962
|
* @memberof VocabularyInstanceDtoResponse
|
|
4481
4963
|
*/
|
|
4482
|
-
|
|
4964
|
+
statusCode?: number | null;
|
|
4483
4965
|
/**
|
|
4484
4966
|
*
|
|
4485
4967
|
* @type {string}
|
|
@@ -4487,6 +4969,270 @@ export interface VocabularyInstanceDtoResponse {
|
|
|
4487
4969
|
*/
|
|
4488
4970
|
traceId?: string | null;
|
|
4489
4971
|
}
|
|
4972
|
+
/**
|
|
4973
|
+
* AdminApi - axios parameter creator
|
|
4974
|
+
* @export
|
|
4975
|
+
*/
|
|
4976
|
+
export declare const AdminApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4977
|
+
/**
|
|
4978
|
+
*
|
|
4979
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
4980
|
+
* @param {*} [options] Override http request option.
|
|
4981
|
+
* @throws {RequiredError}
|
|
4982
|
+
*/
|
|
4983
|
+
apiV2AdminOptions: (options?: any) => Promise<RequestArgs>;
|
|
4984
|
+
/**
|
|
4985
|
+
*
|
|
4986
|
+
* @summary Retrieves all projects.
|
|
4987
|
+
* @param {boolean} [topLevel]
|
|
4988
|
+
* @param {boolean} [includeDeleted]
|
|
4989
|
+
* @param {number} [pageNumber]
|
|
4990
|
+
* @param {number} [pageSize]
|
|
4991
|
+
* @param {string} [orderBy]
|
|
4992
|
+
* @param {*} [options] Override http request option.
|
|
4993
|
+
* @throws {RequiredError}
|
|
4994
|
+
*/
|
|
4995
|
+
getAllProjects: (topLevel?: boolean, includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any) => Promise<RequestArgs>;
|
|
4996
|
+
/**
|
|
4997
|
+
*
|
|
4998
|
+
* @summary Retrieves all resources.
|
|
4999
|
+
* @param {boolean} [includeDeleted]
|
|
5000
|
+
* @param {number} [pageNumber]
|
|
5001
|
+
* @param {number} [pageSize]
|
|
5002
|
+
* @param {string} [orderBy]
|
|
5003
|
+
* @param {*} [options] Override http request option.
|
|
5004
|
+
* @throws {RequiredError}
|
|
5005
|
+
*/
|
|
5006
|
+
getAllResources: (includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any) => Promise<RequestArgs>;
|
|
5007
|
+
/**
|
|
5008
|
+
*
|
|
5009
|
+
* @summary Retrieves all users.
|
|
5010
|
+
* @param {string} [orderBy]
|
|
5011
|
+
* @param {boolean} [tosAccepted]
|
|
5012
|
+
* @param {number} [pageNumber]
|
|
5013
|
+
* @param {number} [pageSize]
|
|
5014
|
+
* @param {*} [options] Override http request option.
|
|
5015
|
+
* @throws {RequiredError}
|
|
5016
|
+
*/
|
|
5017
|
+
getAllUsers: (orderBy?: string, tosAccepted?: boolean, pageNumber?: number, pageSize?: number, options?: any) => Promise<RequestArgs>;
|
|
5018
|
+
/**
|
|
5019
|
+
*
|
|
5020
|
+
* @summary Gets a metadata graph.
|
|
5021
|
+
* @param {string} graphUri
|
|
5022
|
+
* @param {RdfFormat} [format]
|
|
5023
|
+
* @param {*} [options] Override http request option.
|
|
5024
|
+
* @throws {RequiredError}
|
|
5025
|
+
*/
|
|
5026
|
+
getMetadataGraph: (graphUri: string, format?: RdfFormat, options?: any) => Promise<RequestArgs>;
|
|
5027
|
+
/**
|
|
5028
|
+
*
|
|
5029
|
+
* @summary Updates a metadata graph.
|
|
5030
|
+
* @param {MetadataUpdateAdminParameters} [metadataUpdateAdminParameters] The metadata update admin parameters.
|
|
5031
|
+
* @param {*} [options] Override http request option.
|
|
5032
|
+
* @throws {RequiredError}
|
|
5033
|
+
*/
|
|
5034
|
+
updateMetadataGraph: (metadataUpdateAdminParameters?: MetadataUpdateAdminParameters, options?: any) => Promise<RequestArgs>;
|
|
5035
|
+
};
|
|
5036
|
+
/**
|
|
5037
|
+
* AdminApi - functional programming interface
|
|
5038
|
+
* @export
|
|
5039
|
+
*/
|
|
5040
|
+
export declare const AdminApiFp: (configuration?: Configuration) => {
|
|
5041
|
+
/**
|
|
5042
|
+
*
|
|
5043
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
5044
|
+
* @param {*} [options] Override http request option.
|
|
5045
|
+
* @throws {RequiredError}
|
|
5046
|
+
*/
|
|
5047
|
+
apiV2AdminOptions(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5048
|
+
/**
|
|
5049
|
+
*
|
|
5050
|
+
* @summary Retrieves all projects.
|
|
5051
|
+
* @param {boolean} [topLevel]
|
|
5052
|
+
* @param {boolean} [includeDeleted]
|
|
5053
|
+
* @param {number} [pageNumber]
|
|
5054
|
+
* @param {number} [pageSize]
|
|
5055
|
+
* @param {string} [orderBy]
|
|
5056
|
+
* @param {*} [options] Override http request option.
|
|
5057
|
+
* @throws {RequiredError}
|
|
5058
|
+
*/
|
|
5059
|
+
getAllProjects(topLevel?: boolean, includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectAdminDtoIEnumerablePagedResponse>>;
|
|
5060
|
+
/**
|
|
5061
|
+
*
|
|
5062
|
+
* @summary Retrieves all resources.
|
|
5063
|
+
* @param {boolean} [includeDeleted]
|
|
5064
|
+
* @param {number} [pageNumber]
|
|
5065
|
+
* @param {number} [pageSize]
|
|
5066
|
+
* @param {string} [orderBy]
|
|
5067
|
+
* @param {*} [options] Override http request option.
|
|
5068
|
+
* @throws {RequiredError}
|
|
5069
|
+
*/
|
|
5070
|
+
getAllResources(includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResourceAdminDtoIEnumerablePagedResponse>>;
|
|
5071
|
+
/**
|
|
5072
|
+
*
|
|
5073
|
+
* @summary Retrieves all users.
|
|
5074
|
+
* @param {string} [orderBy]
|
|
5075
|
+
* @param {boolean} [tosAccepted]
|
|
5076
|
+
* @param {number} [pageNumber]
|
|
5077
|
+
* @param {number} [pageSize]
|
|
5078
|
+
* @param {*} [options] Override http request option.
|
|
5079
|
+
* @throws {RequiredError}
|
|
5080
|
+
*/
|
|
5081
|
+
getAllUsers(orderBy?: string, tosAccepted?: boolean, pageNumber?: number, pageSize?: number, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDtoIEnumerablePagedResponse>>;
|
|
5082
|
+
/**
|
|
5083
|
+
*
|
|
5084
|
+
* @summary Gets a metadata graph.
|
|
5085
|
+
* @param {string} graphUri
|
|
5086
|
+
* @param {RdfFormat} [format]
|
|
5087
|
+
* @param {*} [options] Override http request option.
|
|
5088
|
+
* @throws {RequiredError}
|
|
5089
|
+
*/
|
|
5090
|
+
getMetadataGraph(graphUri: string, format?: RdfFormat, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RdfDefinitionDtoResponse>>;
|
|
5091
|
+
/**
|
|
5092
|
+
*
|
|
5093
|
+
* @summary Updates a metadata graph.
|
|
5094
|
+
* @param {MetadataUpdateAdminParameters} [metadataUpdateAdminParameters] The metadata update admin parameters.
|
|
5095
|
+
* @param {*} [options] Override http request option.
|
|
5096
|
+
* @throws {RequiredError}
|
|
5097
|
+
*/
|
|
5098
|
+
updateMetadataGraph(metadataUpdateAdminParameters?: MetadataUpdateAdminParameters, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5099
|
+
};
|
|
5100
|
+
/**
|
|
5101
|
+
* AdminApi - factory interface
|
|
5102
|
+
* @export
|
|
5103
|
+
*/
|
|
5104
|
+
export declare const AdminApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5105
|
+
/**
|
|
5106
|
+
*
|
|
5107
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
5108
|
+
* @param {*} [options] Override http request option.
|
|
5109
|
+
* @throws {RequiredError}
|
|
5110
|
+
*/
|
|
5111
|
+
apiV2AdminOptions(options?: any): AxiosPromise<void>;
|
|
5112
|
+
/**
|
|
5113
|
+
*
|
|
5114
|
+
* @summary Retrieves all projects.
|
|
5115
|
+
* @param {boolean} [topLevel]
|
|
5116
|
+
* @param {boolean} [includeDeleted]
|
|
5117
|
+
* @param {number} [pageNumber]
|
|
5118
|
+
* @param {number} [pageSize]
|
|
5119
|
+
* @param {string} [orderBy]
|
|
5120
|
+
* @param {*} [options] Override http request option.
|
|
5121
|
+
* @throws {RequiredError}
|
|
5122
|
+
*/
|
|
5123
|
+
getAllProjects(topLevel?: boolean, includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ProjectAdminDtoIEnumerablePagedResponse>;
|
|
5124
|
+
/**
|
|
5125
|
+
*
|
|
5126
|
+
* @summary Retrieves all resources.
|
|
5127
|
+
* @param {boolean} [includeDeleted]
|
|
5128
|
+
* @param {number} [pageNumber]
|
|
5129
|
+
* @param {number} [pageSize]
|
|
5130
|
+
* @param {string} [orderBy]
|
|
5131
|
+
* @param {*} [options] Override http request option.
|
|
5132
|
+
* @throws {RequiredError}
|
|
5133
|
+
*/
|
|
5134
|
+
getAllResources(includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ResourceAdminDtoIEnumerablePagedResponse>;
|
|
5135
|
+
/**
|
|
5136
|
+
*
|
|
5137
|
+
* @summary Retrieves all users.
|
|
5138
|
+
* @param {string} [orderBy]
|
|
5139
|
+
* @param {boolean} [tosAccepted]
|
|
5140
|
+
* @param {number} [pageNumber]
|
|
5141
|
+
* @param {number} [pageSize]
|
|
5142
|
+
* @param {*} [options] Override http request option.
|
|
5143
|
+
* @throws {RequiredError}
|
|
5144
|
+
*/
|
|
5145
|
+
getAllUsers(orderBy?: string, tosAccepted?: boolean, pageNumber?: number, pageSize?: number, options?: any): AxiosPromise<UserDtoIEnumerablePagedResponse>;
|
|
5146
|
+
/**
|
|
5147
|
+
*
|
|
5148
|
+
* @summary Gets a metadata graph.
|
|
5149
|
+
* @param {string} graphUri
|
|
5150
|
+
* @param {RdfFormat} [format]
|
|
5151
|
+
* @param {*} [options] Override http request option.
|
|
5152
|
+
* @throws {RequiredError}
|
|
5153
|
+
*/
|
|
5154
|
+
getMetadataGraph(graphUri: string, format?: RdfFormat, options?: any): AxiosPromise<RdfDefinitionDtoResponse>;
|
|
5155
|
+
/**
|
|
5156
|
+
*
|
|
5157
|
+
* @summary Updates a metadata graph.
|
|
5158
|
+
* @param {MetadataUpdateAdminParameters} [metadataUpdateAdminParameters] The metadata update admin parameters.
|
|
5159
|
+
* @param {*} [options] Override http request option.
|
|
5160
|
+
* @throws {RequiredError}
|
|
5161
|
+
*/
|
|
5162
|
+
updateMetadataGraph(metadataUpdateAdminParameters?: MetadataUpdateAdminParameters, options?: any): AxiosPromise<void>;
|
|
5163
|
+
};
|
|
5164
|
+
/**
|
|
5165
|
+
* AdminApi - object-oriented interface
|
|
5166
|
+
* @export
|
|
5167
|
+
* @class AdminApi
|
|
5168
|
+
* @extends {BaseAPI}
|
|
5169
|
+
*/
|
|
5170
|
+
export declare class AdminApi extends BaseAPI {
|
|
5171
|
+
/**
|
|
5172
|
+
*
|
|
5173
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
5174
|
+
* @param {*} [options] Override http request option.
|
|
5175
|
+
* @throws {RequiredError}
|
|
5176
|
+
* @memberof AdminApi
|
|
5177
|
+
*/
|
|
5178
|
+
apiV2AdminOptions(options?: any): Promise<import("axios").AxiosResponse<void>>;
|
|
5179
|
+
/**
|
|
5180
|
+
*
|
|
5181
|
+
* @summary Retrieves all projects.
|
|
5182
|
+
* @param {boolean} [topLevel]
|
|
5183
|
+
* @param {boolean} [includeDeleted]
|
|
5184
|
+
* @param {number} [pageNumber]
|
|
5185
|
+
* @param {number} [pageSize]
|
|
5186
|
+
* @param {string} [orderBy]
|
|
5187
|
+
* @param {*} [options] Override http request option.
|
|
5188
|
+
* @throws {RequiredError}
|
|
5189
|
+
* @memberof AdminApi
|
|
5190
|
+
*/
|
|
5191
|
+
getAllProjects(topLevel?: boolean, includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ProjectAdminDtoIEnumerablePagedResponse>>;
|
|
5192
|
+
/**
|
|
5193
|
+
*
|
|
5194
|
+
* @summary Retrieves all resources.
|
|
5195
|
+
* @param {boolean} [includeDeleted]
|
|
5196
|
+
* @param {number} [pageNumber]
|
|
5197
|
+
* @param {number} [pageSize]
|
|
5198
|
+
* @param {string} [orderBy]
|
|
5199
|
+
* @param {*} [options] Override http request option.
|
|
5200
|
+
* @throws {RequiredError}
|
|
5201
|
+
* @memberof AdminApi
|
|
5202
|
+
*/
|
|
5203
|
+
getAllResources(includeDeleted?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ResourceAdminDtoIEnumerablePagedResponse>>;
|
|
5204
|
+
/**
|
|
5205
|
+
*
|
|
5206
|
+
* @summary Retrieves all users.
|
|
5207
|
+
* @param {string} [orderBy]
|
|
5208
|
+
* @param {boolean} [tosAccepted]
|
|
5209
|
+
* @param {number} [pageNumber]
|
|
5210
|
+
* @param {number} [pageSize]
|
|
5211
|
+
* @param {*} [options] Override http request option.
|
|
5212
|
+
* @throws {RequiredError}
|
|
5213
|
+
* @memberof AdminApi
|
|
5214
|
+
*/
|
|
5215
|
+
getAllUsers(orderBy?: string, tosAccepted?: boolean, pageNumber?: number, pageSize?: number, options?: any): Promise<import("axios").AxiosResponse<UserDtoIEnumerablePagedResponse>>;
|
|
5216
|
+
/**
|
|
5217
|
+
*
|
|
5218
|
+
* @summary Gets a metadata graph.
|
|
5219
|
+
* @param {string} graphUri
|
|
5220
|
+
* @param {RdfFormat} [format]
|
|
5221
|
+
* @param {*} [options] Override http request option.
|
|
5222
|
+
* @throws {RequiredError}
|
|
5223
|
+
* @memberof AdminApi
|
|
5224
|
+
*/
|
|
5225
|
+
getMetadataGraph(graphUri: string, format?: RdfFormat, options?: any): Promise<import("axios").AxiosResponse<RdfDefinitionDtoResponse>>;
|
|
5226
|
+
/**
|
|
5227
|
+
*
|
|
5228
|
+
* @summary Updates a metadata graph.
|
|
5229
|
+
* @param {MetadataUpdateAdminParameters} [metadataUpdateAdminParameters] The metadata update admin parameters.
|
|
5230
|
+
* @param {*} [options] Override http request option.
|
|
5231
|
+
* @throws {RequiredError}
|
|
5232
|
+
* @memberof AdminApi
|
|
5233
|
+
*/
|
|
5234
|
+
updateMetadataGraph(metadataUpdateAdminParameters?: MetadataUpdateAdminParameters, options?: any): Promise<import("axios").AxiosResponse<void>>;
|
|
5235
|
+
}
|
|
4490
5236
|
/**
|
|
4491
5237
|
* ApplicationProfileApi - axios parameter creator
|
|
4492
5238
|
* @export
|
|
@@ -4522,13 +5268,14 @@ export declare const ApplicationProfileApiAxiosParamCreator: (configuration?: Co
|
|
|
4522
5268
|
* @summary Retrieves all application profiles.
|
|
4523
5269
|
* @param {string} [searchTerm]
|
|
4524
5270
|
* @param {AcceptedLanguage} [language]
|
|
5271
|
+
* @param {boolean} [modules]
|
|
4525
5272
|
* @param {number} [pageNumber]
|
|
4526
5273
|
* @param {number} [pageSize]
|
|
4527
5274
|
* @param {string} [orderBy]
|
|
4528
5275
|
* @param {*} [options] Override http request option.
|
|
4529
5276
|
* @throws {RequiredError}
|
|
4530
5277
|
*/
|
|
4531
|
-
getApplicationProfiles: (searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any) => Promise<RequestArgs>;
|
|
5278
|
+
getApplicationProfiles: (searchTerm?: string, language?: AcceptedLanguage, modules?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any) => Promise<RequestArgs>;
|
|
4532
5279
|
/**
|
|
4533
5280
|
*
|
|
4534
5281
|
* @summary Retrieves the `raw` application profile definition by its URI.
|
|
@@ -4573,13 +5320,14 @@ export declare const ApplicationProfileApiFp: (configuration?: Configuration) =>
|
|
|
4573
5320
|
* @summary Retrieves all application profiles.
|
|
4574
5321
|
* @param {string} [searchTerm]
|
|
4575
5322
|
* @param {AcceptedLanguage} [language]
|
|
5323
|
+
* @param {boolean} [modules]
|
|
4576
5324
|
* @param {number} [pageNumber]
|
|
4577
5325
|
* @param {number} [pageSize]
|
|
4578
5326
|
* @param {string} [orderBy]
|
|
4579
5327
|
* @param {*} [options] Override http request option.
|
|
4580
5328
|
* @throws {RequiredError}
|
|
4581
5329
|
*/
|
|
4582
|
-
getApplicationProfiles(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5330
|
+
getApplicationProfiles(searchTerm?: string, language?: AcceptedLanguage, modules?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationProfileDtoPagedResponse>>;
|
|
4583
5331
|
/**
|
|
4584
5332
|
*
|
|
4585
5333
|
* @summary Retrieves the `raw` application profile definition by its URI.
|
|
@@ -4624,13 +5372,14 @@ export declare const ApplicationProfileApiFactory: (configuration?: Configuratio
|
|
|
4624
5372
|
* @summary Retrieves all application profiles.
|
|
4625
5373
|
* @param {string} [searchTerm]
|
|
4626
5374
|
* @param {AcceptedLanguage} [language]
|
|
5375
|
+
* @param {boolean} [modules]
|
|
4627
5376
|
* @param {number} [pageNumber]
|
|
4628
5377
|
* @param {number} [pageSize]
|
|
4629
5378
|
* @param {string} [orderBy]
|
|
4630
5379
|
* @param {*} [options] Override http request option.
|
|
4631
5380
|
* @throws {RequiredError}
|
|
4632
5381
|
*/
|
|
4633
|
-
getApplicationProfiles(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
5382
|
+
getApplicationProfiles(searchTerm?: string, language?: AcceptedLanguage, modules?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ApplicationProfileDtoPagedResponse>;
|
|
4634
5383
|
/**
|
|
4635
5384
|
*
|
|
4636
5385
|
* @summary Retrieves the `raw` application profile definition by its URI.
|
|
@@ -4680,6 +5429,7 @@ export declare class ApplicationProfileApi extends BaseAPI {
|
|
|
4680
5429
|
* @summary Retrieves all application profiles.
|
|
4681
5430
|
* @param {string} [searchTerm]
|
|
4682
5431
|
* @param {AcceptedLanguage} [language]
|
|
5432
|
+
* @param {boolean} [modules]
|
|
4683
5433
|
* @param {number} [pageNumber]
|
|
4684
5434
|
* @param {number} [pageSize]
|
|
4685
5435
|
* @param {string} [orderBy]
|
|
@@ -4687,7 +5437,7 @@ export declare class ApplicationProfileApi extends BaseAPI {
|
|
|
4687
5437
|
* @throws {RequiredError}
|
|
4688
5438
|
* @memberof ApplicationProfileApi
|
|
4689
5439
|
*/
|
|
4690
|
-
getApplicationProfiles(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
5440
|
+
getApplicationProfiles(searchTerm?: string, language?: AcceptedLanguage, modules?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ApplicationProfileDtoPagedResponse>>;
|
|
4691
5441
|
/**
|
|
4692
5442
|
*
|
|
4693
5443
|
* @summary Retrieves the `raw` application profile definition by its URI.
|
|
@@ -4993,7 +5743,7 @@ export declare const DisciplineApiFp: (configuration?: Configuration) => {
|
|
|
4993
5743
|
* @param {*} [options] Override http request option.
|
|
4994
5744
|
* @throws {RequiredError}
|
|
4995
5745
|
*/
|
|
4996
|
-
getDisciplines(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5746
|
+
getDisciplines(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DisciplineDtoPagedResponse>>;
|
|
4997
5747
|
};
|
|
4998
5748
|
/**
|
|
4999
5749
|
* DisciplineApi - factory interface
|
|
@@ -5024,7 +5774,7 @@ export declare const DisciplineApiFactory: (configuration?: Configuration, baseP
|
|
|
5024
5774
|
* @param {*} [options] Override http request option.
|
|
5025
5775
|
* @throws {RequiredError}
|
|
5026
5776
|
*/
|
|
5027
|
-
getDisciplines(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
5777
|
+
getDisciplines(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<DisciplineDtoPagedResponse>;
|
|
5028
5778
|
};
|
|
5029
5779
|
/**
|
|
5030
5780
|
* DisciplineApi - object-oriented interface
|
|
@@ -5060,7 +5810,7 @@ export declare class DisciplineApi extends BaseAPI {
|
|
|
5060
5810
|
* @throws {RequiredError}
|
|
5061
5811
|
* @memberof DisciplineApi
|
|
5062
5812
|
*/
|
|
5063
|
-
getDisciplines(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
5813
|
+
getDisciplines(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<DisciplineDtoPagedResponse>>;
|
|
5064
5814
|
}
|
|
5065
5815
|
/**
|
|
5066
5816
|
* LanguageApi - axios parameter creator
|
|
@@ -5122,7 +5872,7 @@ export declare const LanguageApiFp: (configuration?: Configuration) => {
|
|
|
5122
5872
|
* @param {*} [options] Override http request option.
|
|
5123
5873
|
* @throws {RequiredError}
|
|
5124
5874
|
*/
|
|
5125
|
-
getLanguages(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5875
|
+
getLanguages(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LanguageDtoPagedResponse>>;
|
|
5126
5876
|
};
|
|
5127
5877
|
/**
|
|
5128
5878
|
* LanguageApi - factory interface
|
|
@@ -5153,7 +5903,7 @@ export declare const LanguageApiFactory: (configuration?: Configuration, basePat
|
|
|
5153
5903
|
* @param {*} [options] Override http request option.
|
|
5154
5904
|
* @throws {RequiredError}
|
|
5155
5905
|
*/
|
|
5156
|
-
getLanguages(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
5906
|
+
getLanguages(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<LanguageDtoPagedResponse>;
|
|
5157
5907
|
};
|
|
5158
5908
|
/**
|
|
5159
5909
|
* LanguageApi - object-oriented interface
|
|
@@ -5189,7 +5939,7 @@ export declare class LanguageApi extends BaseAPI {
|
|
|
5189
5939
|
* @throws {RequiredError}
|
|
5190
5940
|
* @memberof LanguageApi
|
|
5191
5941
|
*/
|
|
5192
|
-
getLanguages(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
5942
|
+
getLanguages(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<LanguageDtoPagedResponse>>;
|
|
5193
5943
|
}
|
|
5194
5944
|
/**
|
|
5195
5945
|
* LicenseApi - axios parameter creator
|
|
@@ -5251,7 +6001,7 @@ export declare const LicenseApiFp: (configuration?: Configuration) => {
|
|
|
5251
6001
|
* @param {*} [options] Override http request option.
|
|
5252
6002
|
* @throws {RequiredError}
|
|
5253
6003
|
*/
|
|
5254
|
-
getLicenses(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6004
|
+
getLicenses(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LicenseDtoPagedResponse>>;
|
|
5255
6005
|
};
|
|
5256
6006
|
/**
|
|
5257
6007
|
* LicenseApi - factory interface
|
|
@@ -5282,7 +6032,7 @@ export declare const LicenseApiFactory: (configuration?: Configuration, basePath
|
|
|
5282
6032
|
* @param {*} [options] Override http request option.
|
|
5283
6033
|
* @throws {RequiredError}
|
|
5284
6034
|
*/
|
|
5285
|
-
getLicenses(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
6035
|
+
getLicenses(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<LicenseDtoPagedResponse>;
|
|
5286
6036
|
};
|
|
5287
6037
|
/**
|
|
5288
6038
|
* LicenseApi - object-oriented interface
|
|
@@ -5318,7 +6068,7 @@ export declare class LicenseApi extends BaseAPI {
|
|
|
5318
6068
|
* @throws {RequiredError}
|
|
5319
6069
|
* @memberof LicenseApi
|
|
5320
6070
|
*/
|
|
5321
|
-
getLicenses(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
6071
|
+
getLicenses(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<LicenseDtoPagedResponse>>;
|
|
5322
6072
|
}
|
|
5323
6073
|
/**
|
|
5324
6074
|
* MaintenanceApi - axios parameter creator
|
|
@@ -5358,7 +6108,7 @@ export declare const MaintenanceApiFp: (configuration?: Configuration) => {
|
|
|
5358
6108
|
* @param {*} [options] Override http request option.
|
|
5359
6109
|
* @throws {RequiredError}
|
|
5360
6110
|
*/
|
|
5361
|
-
getCurrentMaintenances(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6111
|
+
getCurrentMaintenances(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MaintenanceDtoPagedResponse>>;
|
|
5362
6112
|
};
|
|
5363
6113
|
/**
|
|
5364
6114
|
* MaintenanceApi - factory interface
|
|
@@ -5378,7 +6128,7 @@ export declare const MaintenanceApiFactory: (configuration?: Configuration, base
|
|
|
5378
6128
|
* @param {*} [options] Override http request option.
|
|
5379
6129
|
* @throws {RequiredError}
|
|
5380
6130
|
*/
|
|
5381
|
-
getCurrentMaintenances(options?: any): AxiosPromise<
|
|
6131
|
+
getCurrentMaintenances(options?: any): AxiosPromise<MaintenanceDtoPagedResponse>;
|
|
5382
6132
|
};
|
|
5383
6133
|
/**
|
|
5384
6134
|
* MaintenanceApi - object-oriented interface
|
|
@@ -5402,7 +6152,7 @@ export declare class MaintenanceApi extends BaseAPI {
|
|
|
5402
6152
|
* @throws {RequiredError}
|
|
5403
6153
|
* @memberof MaintenanceApi
|
|
5404
6154
|
*/
|
|
5405
|
-
getCurrentMaintenances(options?: any): Promise<import("axios").AxiosResponse<
|
|
6155
|
+
getCurrentMaintenances(options?: any): Promise<import("axios").AxiosResponse<MaintenanceDtoPagedResponse>>;
|
|
5406
6156
|
}
|
|
5407
6157
|
/**
|
|
5408
6158
|
* OrganizationApi - axios parameter creator
|
|
@@ -5466,7 +6216,7 @@ export declare const OrganizationApiFp: (configuration?: Configuration) => {
|
|
|
5466
6216
|
* @param {*} [options] Override http request option.
|
|
5467
6217
|
* @throws {RequiredError}
|
|
5468
6218
|
*/
|
|
5469
|
-
getOrganizations(searchTerm?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6219
|
+
getOrganizations(searchTerm?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrganizationDtoPagedResponse>>;
|
|
5470
6220
|
};
|
|
5471
6221
|
/**
|
|
5472
6222
|
* OrganizationApi - factory interface
|
|
@@ -5498,7 +6248,7 @@ export declare const OrganizationApiFactory: (configuration?: Configuration, bas
|
|
|
5498
6248
|
* @param {*} [options] Override http request option.
|
|
5499
6249
|
* @throws {RequiredError}
|
|
5500
6250
|
*/
|
|
5501
|
-
getOrganizations(searchTerm?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
6251
|
+
getOrganizations(searchTerm?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<OrganizationDtoPagedResponse>;
|
|
5502
6252
|
};
|
|
5503
6253
|
/**
|
|
5504
6254
|
* OrganizationApi - object-oriented interface
|
|
@@ -5535,7 +6285,7 @@ export declare class OrganizationApi extends BaseAPI {
|
|
|
5535
6285
|
* @throws {RequiredError}
|
|
5536
6286
|
* @memberof OrganizationApi
|
|
5537
6287
|
*/
|
|
5538
|
-
getOrganizations(searchTerm?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
6288
|
+
getOrganizations(searchTerm?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<OrganizationDtoPagedResponse>>;
|
|
5539
6289
|
}
|
|
5540
6290
|
/**
|
|
5541
6291
|
* PidApi - axios parameter creator
|
|
@@ -5775,7 +6525,7 @@ export declare const ProjectApiFp: (configuration?: Configuration) => {
|
|
|
5775
6525
|
* @param {*} [options] Override http request option.
|
|
5776
6526
|
* @throws {RequiredError}
|
|
5777
6527
|
*/
|
|
5778
|
-
getProjects(topLevel?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6528
|
+
getProjects(topLevel?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectDtoPagedResponse>>;
|
|
5779
6529
|
/**
|
|
5780
6530
|
*
|
|
5781
6531
|
* @summary Updates a project.
|
|
@@ -5833,7 +6583,7 @@ export declare const ProjectApiFactory: (configuration?: Configuration, basePath
|
|
|
5833
6583
|
* @param {*} [options] Override http request option.
|
|
5834
6584
|
* @throws {RequiredError}
|
|
5835
6585
|
*/
|
|
5836
|
-
getProjects(topLevel?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
6586
|
+
getProjects(topLevel?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ProjectDtoPagedResponse>;
|
|
5837
6587
|
/**
|
|
5838
6588
|
*
|
|
5839
6589
|
* @summary Updates a project.
|
|
@@ -5898,7 +6648,7 @@ export declare class ProjectApi extends BaseAPI {
|
|
|
5898
6648
|
* @throws {RequiredError}
|
|
5899
6649
|
* @memberof ProjectApi
|
|
5900
6650
|
*/
|
|
5901
|
-
getProjects(topLevel?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
6651
|
+
getProjects(topLevel?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ProjectDtoPagedResponse>>;
|
|
5902
6652
|
/**
|
|
5903
6653
|
*
|
|
5904
6654
|
* @summary Updates a project.
|
|
@@ -6012,7 +6762,7 @@ export declare const ProjectInvitationApiFp: (configuration?: Configuration) =>
|
|
|
6012
6762
|
* @param {*} [options] Override http request option.
|
|
6013
6763
|
* @throws {RequiredError}
|
|
6014
6764
|
*/
|
|
6015
|
-
getProjectInvitations(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6765
|
+
getProjectInvitations(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectInvitationDtoPagedResponse>>;
|
|
6016
6766
|
};
|
|
6017
6767
|
/**
|
|
6018
6768
|
* ProjectInvitationApi - factory interface
|
|
@@ -6064,7 +6814,7 @@ export declare const ProjectInvitationApiFactory: (configuration?: Configuration
|
|
|
6064
6814
|
* @param {*} [options] Override http request option.
|
|
6065
6815
|
* @throws {RequiredError}
|
|
6066
6816
|
*/
|
|
6067
|
-
getProjectInvitations(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
6817
|
+
getProjectInvitations(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ProjectInvitationDtoPagedResponse>;
|
|
6068
6818
|
};
|
|
6069
6819
|
/**
|
|
6070
6820
|
* ProjectInvitationApi - object-oriented interface
|
|
@@ -6123,7 +6873,7 @@ export declare class ProjectInvitationApi extends BaseAPI {
|
|
|
6123
6873
|
* @throws {RequiredError}
|
|
6124
6874
|
* @memberof ProjectInvitationApi
|
|
6125
6875
|
*/
|
|
6126
|
-
getProjectInvitations(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
6876
|
+
getProjectInvitations(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ProjectInvitationDtoPagedResponse>>;
|
|
6127
6877
|
}
|
|
6128
6878
|
/**
|
|
6129
6879
|
* ProjectMemberApi - axios parameter creator
|
|
@@ -6237,7 +6987,7 @@ export declare const ProjectMemberApiFp: (configuration?: Configuration) => {
|
|
|
6237
6987
|
* @param {*} [options] Override http request option.
|
|
6238
6988
|
* @throws {RequiredError}
|
|
6239
6989
|
*/
|
|
6240
|
-
getMemberships(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6990
|
+
getMemberships(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectRoleDtoPagedResponse>>;
|
|
6241
6991
|
/**
|
|
6242
6992
|
*
|
|
6243
6993
|
* @summary Updates a project membership for a specified project.
|
|
@@ -6299,7 +7049,7 @@ export declare const ProjectMemberApiFactory: (configuration?: Configuration, ba
|
|
|
6299
7049
|
* @param {*} [options] Override http request option.
|
|
6300
7050
|
* @throws {RequiredError}
|
|
6301
7051
|
*/
|
|
6302
|
-
getMemberships(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
7052
|
+
getMemberships(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ProjectRoleDtoPagedResponse>;
|
|
6303
7053
|
/**
|
|
6304
7054
|
*
|
|
6305
7055
|
* @summary Updates a project membership for a specified project.
|
|
@@ -6368,7 +7118,7 @@ export declare class ProjectMemberApi extends BaseAPI {
|
|
|
6368
7118
|
* @throws {RequiredError}
|
|
6369
7119
|
* @memberof ProjectMemberApi
|
|
6370
7120
|
*/
|
|
6371
|
-
getMemberships(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
7121
|
+
getMemberships(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ProjectRoleDtoPagedResponse>>;
|
|
6372
7122
|
/**
|
|
6373
7123
|
*
|
|
6374
7124
|
* @summary Updates a project membership for a specified project.
|
|
@@ -6457,7 +7207,7 @@ export declare const ProjectQuotaApiFp: (configuration?: Configuration) => {
|
|
|
6457
7207
|
* @param {*} [options] Override http request option.
|
|
6458
7208
|
* @throws {RequiredError}
|
|
6459
7209
|
*/
|
|
6460
|
-
getProjectQuotas(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
7210
|
+
getProjectQuotas(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectQuotaDtoPagedResponse>>;
|
|
6461
7211
|
/**
|
|
6462
7212
|
*
|
|
6463
7213
|
* @summary Updates a project quota for a specified project and resource type.
|
|
@@ -6501,7 +7251,7 @@ export declare const ProjectQuotaApiFactory: (configuration?: Configuration, bas
|
|
|
6501
7251
|
* @param {*} [options] Override http request option.
|
|
6502
7252
|
* @throws {RequiredError}
|
|
6503
7253
|
*/
|
|
6504
|
-
getProjectQuotas(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
7254
|
+
getProjectQuotas(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ProjectQuotaDtoPagedResponse>;
|
|
6505
7255
|
/**
|
|
6506
7256
|
*
|
|
6507
7257
|
* @summary Updates a project quota for a specified project and resource type.
|
|
@@ -6550,7 +7300,7 @@ export declare class ProjectQuotaApi extends BaseAPI {
|
|
|
6550
7300
|
* @throws {RequiredError}
|
|
6551
7301
|
* @memberof ProjectQuotaApi
|
|
6552
7302
|
*/
|
|
6553
|
-
getProjectQuotas(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
7303
|
+
getProjectQuotas(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ProjectQuotaDtoPagedResponse>>;
|
|
6554
7304
|
/**
|
|
6555
7305
|
*
|
|
6556
7306
|
* @summary Updates a project quota for a specified project and resource type.
|
|
@@ -6675,7 +7425,7 @@ export declare const ProjectResourceApiFp: (configuration?: Configuration) => {
|
|
|
6675
7425
|
* @param {*} [options] Override http request option.
|
|
6676
7426
|
* @throws {RequiredError}
|
|
6677
7427
|
*/
|
|
6678
|
-
getResourcesForProject(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
7428
|
+
getResourcesForProject(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResourceDtoPagedResponse>>;
|
|
6679
7429
|
/**
|
|
6680
7430
|
*
|
|
6681
7431
|
* @summary Updates a resource for a specified project.
|
|
@@ -6737,7 +7487,7 @@ export declare const ProjectResourceApiFactory: (configuration?: Configuration,
|
|
|
6737
7487
|
* @param {*} [options] Override http request option.
|
|
6738
7488
|
* @throws {RequiredError}
|
|
6739
7489
|
*/
|
|
6740
|
-
getResourcesForProject(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
7490
|
+
getResourcesForProject(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ResourceDtoPagedResponse>;
|
|
6741
7491
|
/**
|
|
6742
7492
|
*
|
|
6743
7493
|
* @summary Updates a resource for a specified project.
|
|
@@ -6806,7 +7556,7 @@ export declare class ProjectResourceApi extends BaseAPI {
|
|
|
6806
7556
|
* @throws {RequiredError}
|
|
6807
7557
|
* @memberof ProjectResourceApi
|
|
6808
7558
|
*/
|
|
6809
|
-
getResourcesForProject(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
7559
|
+
getResourcesForProject(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ResourceDtoPagedResponse>>;
|
|
6810
7560
|
/**
|
|
6811
7561
|
*
|
|
6812
7562
|
* @summary Updates a resource for a specified project.
|
|
@@ -7395,7 +8145,7 @@ export declare const RoleApiFp: (configuration?: Configuration) => {
|
|
|
7395
8145
|
* @param {*} [options] Override http request option.
|
|
7396
8146
|
* @throws {RequiredError}
|
|
7397
8147
|
*/
|
|
7398
|
-
getRoles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8148
|
+
getRoles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleDtoPagedResponse>>;
|
|
7399
8149
|
};
|
|
7400
8150
|
/**
|
|
7401
8151
|
* RoleApi - factory interface
|
|
@@ -7426,7 +8176,7 @@ export declare const RoleApiFactory: (configuration?: Configuration, basePath?:
|
|
|
7426
8176
|
* @param {*} [options] Override http request option.
|
|
7427
8177
|
* @throws {RequiredError}
|
|
7428
8178
|
*/
|
|
7429
|
-
getRoles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
8179
|
+
getRoles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<RoleDtoPagedResponse>;
|
|
7430
8180
|
};
|
|
7431
8181
|
/**
|
|
7432
8182
|
* RoleApi - object-oriented interface
|
|
@@ -7462,7 +8212,7 @@ export declare class RoleApi extends BaseAPI {
|
|
|
7462
8212
|
* @throws {RequiredError}
|
|
7463
8213
|
* @memberof RoleApi
|
|
7464
8214
|
*/
|
|
7465
|
-
getRoles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
8215
|
+
getRoles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<RoleDtoPagedResponse>>;
|
|
7466
8216
|
}
|
|
7467
8217
|
/**
|
|
7468
8218
|
* SearchApi - axios parameter creator
|
|
@@ -7516,7 +8266,7 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
7516
8266
|
* @param {*} [options] Override http request option.
|
|
7517
8267
|
* @throws {RequiredError}
|
|
7518
8268
|
*/
|
|
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<
|
|
8269
|
+
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
8270
|
};
|
|
7521
8271
|
/**
|
|
7522
8272
|
* SearchApi - factory interface
|
|
@@ -7543,7 +8293,7 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
|
|
|
7543
8293
|
* @param {*} [options] Override http request option.
|
|
7544
8294
|
* @throws {RequiredError}
|
|
7545
8295
|
*/
|
|
7546
|
-
getSearchResults(query?: string, useAdvancedSyntax?: boolean, languages?: Array<string>, category?: SearchCategoryType, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
8296
|
+
getSearchResults(query?: string, useAdvancedSyntax?: boolean, languages?: Array<string>, category?: SearchCategoryType, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<SearchResultDtoPagedSearchResponse>;
|
|
7547
8297
|
};
|
|
7548
8298
|
/**
|
|
7549
8299
|
* SearchApi - object-oriented interface
|
|
@@ -7574,7 +8324,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
7574
8324
|
* @throws {RequiredError}
|
|
7575
8325
|
* @memberof SearchApi
|
|
7576
8326
|
*/
|
|
7577
|
-
getSearchResults(query?: string, useAdvancedSyntax?: boolean, languages?: Array<string>, category?: SearchCategoryType, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
8327
|
+
getSearchResults(query?: string, useAdvancedSyntax?: boolean, languages?: Array<string>, category?: SearchCategoryType, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<SearchResultDtoPagedSearchResponse>>;
|
|
7578
8328
|
}
|
|
7579
8329
|
/**
|
|
7580
8330
|
* SelfApi - axios parameter creator
|
|
@@ -7901,7 +8651,7 @@ export declare const SelfApiTokenApiFp: (configuration?: Configuration) => {
|
|
|
7901
8651
|
* @param {*} [options] Override http request option.
|
|
7902
8652
|
* @throws {RequiredError}
|
|
7903
8653
|
*/
|
|
7904
|
-
getAllApiTokens(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8654
|
+
getAllApiTokens(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiTokenDtoPagedResponse>>;
|
|
7905
8655
|
/**
|
|
7906
8656
|
*
|
|
7907
8657
|
* @summary Retrieves an API token for the current authenticated user.
|
|
@@ -7948,7 +8698,7 @@ export declare const SelfApiTokenApiFactory: (configuration?: Configuration, bas
|
|
|
7948
8698
|
* @param {*} [options] Override http request option.
|
|
7949
8699
|
* @throws {RequiredError}
|
|
7950
8700
|
*/
|
|
7951
|
-
getAllApiTokens(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
8701
|
+
getAllApiTokens(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<ApiTokenDtoPagedResponse>;
|
|
7952
8702
|
/**
|
|
7953
8703
|
*
|
|
7954
8704
|
* @summary Retrieves an API token for the current authenticated user.
|
|
@@ -8000,7 +8750,7 @@ export declare class SelfApiTokenApi extends BaseAPI {
|
|
|
8000
8750
|
* @throws {RequiredError}
|
|
8001
8751
|
* @memberof SelfApiTokenApi
|
|
8002
8752
|
*/
|
|
8003
|
-
getAllApiTokens(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
8753
|
+
getAllApiTokens(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<ApiTokenDtoPagedResponse>>;
|
|
8004
8754
|
/**
|
|
8005
8755
|
*
|
|
8006
8756
|
* @summary Retrieves an API token for the current authenticated user.
|
|
@@ -8080,7 +8830,7 @@ export declare const TitleApiFp: (configuration?: Configuration) => {
|
|
|
8080
8830
|
* @param {*} [options] Override http request option.
|
|
8081
8831
|
* @throws {RequiredError}
|
|
8082
8832
|
*/
|
|
8083
|
-
getTitles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8833
|
+
getTitles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TitleDtoPagedResponse>>;
|
|
8084
8834
|
};
|
|
8085
8835
|
/**
|
|
8086
8836
|
* TitleApi - factory interface
|
|
@@ -8111,7 +8861,7 @@ export declare const TitleApiFactory: (configuration?: Configuration, basePath?:
|
|
|
8111
8861
|
* @param {*} [options] Override http request option.
|
|
8112
8862
|
* @throws {RequiredError}
|
|
8113
8863
|
*/
|
|
8114
|
-
getTitles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
8864
|
+
getTitles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<TitleDtoPagedResponse>;
|
|
8115
8865
|
};
|
|
8116
8866
|
/**
|
|
8117
8867
|
* TitleApi - object-oriented interface
|
|
@@ -8147,7 +8897,7 @@ export declare class TitleApi extends BaseAPI {
|
|
|
8147
8897
|
* @throws {RequiredError}
|
|
8148
8898
|
* @memberof TitleApi
|
|
8149
8899
|
*/
|
|
8150
|
-
getTitles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
8900
|
+
getTitles(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<TitleDtoPagedResponse>>;
|
|
8151
8901
|
}
|
|
8152
8902
|
/**
|
|
8153
8903
|
* TosApi - axios parameter creator
|
|
@@ -8331,7 +9081,7 @@ export declare const TreeApiFp: (configuration?: Configuration) => {
|
|
|
8331
9081
|
* @param {*} [options] Override http request option.
|
|
8332
9082
|
* @throws {RequiredError}
|
|
8333
9083
|
*/
|
|
8334
|
-
getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9084
|
+
getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileTreeDtoPagedResponse>>;
|
|
8335
9085
|
/**
|
|
8336
9086
|
*
|
|
8337
9087
|
* @summary Retrieves the metadata tree associated with a resource.
|
|
@@ -8345,7 +9095,7 @@ export declare const TreeApiFp: (configuration?: Configuration) => {
|
|
|
8345
9095
|
* @param {*} [options] Override http request option.
|
|
8346
9096
|
* @throws {RequiredError}
|
|
8347
9097
|
*/
|
|
8348
|
-
getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9098
|
+
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
9099
|
/**
|
|
8350
9100
|
*
|
|
8351
9101
|
* @summary Updates an existing metadata tree of a resource.
|
|
@@ -8393,7 +9143,7 @@ export declare const TreeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
8393
9143
|
* @param {*} [options] Override http request option.
|
|
8394
9144
|
* @throws {RequiredError}
|
|
8395
9145
|
*/
|
|
8396
|
-
getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
9146
|
+
getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<FileTreeDtoPagedResponse>;
|
|
8397
9147
|
/**
|
|
8398
9148
|
*
|
|
8399
9149
|
* @summary Retrieves the metadata tree associated with a resource.
|
|
@@ -8407,7 +9157,7 @@ export declare const TreeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
8407
9157
|
* @param {*} [options] Override http request option.
|
|
8408
9158
|
* @throws {RequiredError}
|
|
8409
9159
|
*/
|
|
8410
|
-
getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
9160
|
+
getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<MetadataTreeDtoPagedResponse>;
|
|
8411
9161
|
/**
|
|
8412
9162
|
*
|
|
8413
9163
|
* @summary Updates an existing metadata tree of a resource.
|
|
@@ -8460,7 +9210,7 @@ export declare class TreeApi extends BaseAPI {
|
|
|
8460
9210
|
* @throws {RequiredError}
|
|
8461
9211
|
* @memberof TreeApi
|
|
8462
9212
|
*/
|
|
8463
|
-
getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
9213
|
+
getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<FileTreeDtoPagedResponse>>;
|
|
8464
9214
|
/**
|
|
8465
9215
|
*
|
|
8466
9216
|
* @summary Retrieves the metadata tree associated with a resource.
|
|
@@ -8475,7 +9225,7 @@ export declare class TreeApi extends BaseAPI {
|
|
|
8475
9225
|
* @throws {RequiredError}
|
|
8476
9226
|
* @memberof TreeApi
|
|
8477
9227
|
*/
|
|
8478
|
-
getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
9228
|
+
getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<MetadataTreeDtoPagedResponse>>;
|
|
8479
9229
|
/**
|
|
8480
9230
|
*
|
|
8481
9231
|
* @summary Updates an existing metadata tree of a resource.
|
|
@@ -8632,7 +9382,7 @@ export declare const VisibilityApiFp: (configuration?: Configuration) => {
|
|
|
8632
9382
|
* @param {*} [options] Override http request option.
|
|
8633
9383
|
* @throws {RequiredError}
|
|
8634
9384
|
*/
|
|
8635
|
-
getVisibilities(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9385
|
+
getVisibilities(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VisibilityDtoPagedResponse>>;
|
|
8636
9386
|
/**
|
|
8637
9387
|
*
|
|
8638
9388
|
* @summary Retrieves a visibility by ID.
|
|
@@ -8663,7 +9413,7 @@ export declare const VisibilityApiFactory: (configuration?: Configuration, baseP
|
|
|
8663
9413
|
* @param {*} [options] Override http request option.
|
|
8664
9414
|
* @throws {RequiredError}
|
|
8665
9415
|
*/
|
|
8666
|
-
getVisibilities(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
9416
|
+
getVisibilities(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<VisibilityDtoPagedResponse>;
|
|
8667
9417
|
/**
|
|
8668
9418
|
*
|
|
8669
9419
|
* @summary Retrieves a visibility by ID.
|
|
@@ -8698,7 +9448,7 @@ export declare class VisibilityApi extends BaseAPI {
|
|
|
8698
9448
|
* @throws {RequiredError}
|
|
8699
9449
|
* @memberof VisibilityApi
|
|
8700
9450
|
*/
|
|
8701
|
-
getVisibilities(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
9451
|
+
getVisibilities(pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<VisibilityDtoPagedResponse>>;
|
|
8702
9452
|
/**
|
|
8703
9453
|
*
|
|
8704
9454
|
* @summary Retrieves a visibility by ID.
|
|
@@ -8779,7 +9529,7 @@ export declare const VocabularyApiFp: (configuration?: Configuration) => {
|
|
|
8779
9529
|
* @param {*} [options] Override http request option.
|
|
8780
9530
|
* @throws {RequiredError}
|
|
8781
9531
|
*/
|
|
8782
|
-
getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9532
|
+
getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VocabularyDtoPagedResponse>>;
|
|
8783
9533
|
/**
|
|
8784
9534
|
* Could be a top-level instance, or an intermediate-level instance from a vocabulary.
|
|
8785
9535
|
* @summary Retrieves a single instance from a vocabulary.
|
|
@@ -8801,7 +9551,7 @@ export declare const VocabularyApiFp: (configuration?: Configuration) => {
|
|
|
8801
9551
|
* @param {*} [options] Override http request option.
|
|
8802
9552
|
* @throws {RequiredError}
|
|
8803
9553
|
*/
|
|
8804
|
-
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9554
|
+
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VocabularyInstanceDtoPagedResponse>>;
|
|
8805
9555
|
};
|
|
8806
9556
|
/**
|
|
8807
9557
|
* VocabularyApi - factory interface
|
|
@@ -8826,7 +9576,7 @@ export declare const VocabularyApiFactory: (configuration?: Configuration, baseP
|
|
|
8826
9576
|
* @param {*} [options] Override http request option.
|
|
8827
9577
|
* @throws {RequiredError}
|
|
8828
9578
|
*/
|
|
8829
|
-
getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
9579
|
+
getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<VocabularyDtoPagedResponse>;
|
|
8830
9580
|
/**
|
|
8831
9581
|
* Could be a top-level instance, or an intermediate-level instance from a vocabulary.
|
|
8832
9582
|
* @summary Retrieves a single instance from a vocabulary.
|
|
@@ -8848,7 +9598,7 @@ export declare const VocabularyApiFactory: (configuration?: Configuration, baseP
|
|
|
8848
9598
|
* @param {*} [options] Override http request option.
|
|
8849
9599
|
* @throws {RequiredError}
|
|
8850
9600
|
*/
|
|
8851
|
-
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<
|
|
9601
|
+
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<VocabularyInstanceDtoPagedResponse>;
|
|
8852
9602
|
};
|
|
8853
9603
|
/**
|
|
8854
9604
|
* VocabularyApi - object-oriented interface
|
|
@@ -8877,7 +9627,7 @@ export declare class VocabularyApi extends BaseAPI {
|
|
|
8877
9627
|
* @throws {RequiredError}
|
|
8878
9628
|
* @memberof VocabularyApi
|
|
8879
9629
|
*/
|
|
8880
|
-
getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
9630
|
+
getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<VocabularyDtoPagedResponse>>;
|
|
8881
9631
|
/**
|
|
8882
9632
|
* Could be a top-level instance, or an intermediate-level instance from a vocabulary.
|
|
8883
9633
|
* @summary Retrieves a single instance from a vocabulary.
|
|
@@ -8901,5 +9651,5 @@ export declare class VocabularyApi extends BaseAPI {
|
|
|
8901
9651
|
* @throws {RequiredError}
|
|
8902
9652
|
* @memberof VocabularyApi
|
|
8903
9653
|
*/
|
|
8904
|
-
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<
|
|
9654
|
+
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<VocabularyInstanceDtoPagedResponse>>;
|
|
8905
9655
|
}
|