@coscine/api-client 3.3.0 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +117 -105
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +117 -105
- package/dist/index.umd.js.map +1 -1
- package/dist/lib/Coscine.Api/api.js +164 -152
- package/dist/lib/Coscine.Api/api.js.map +1 -1
- package/dist/types/Coscine.Api/api.d.ts +261 -212
- package/dist/types/apis.d.ts +1 -1
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ import { Configuration } from './configuration';
|
|
|
13
13
|
import { AxiosPromise, AxiosInstance } from 'axios';
|
|
14
14
|
import { RequestArgs, BaseAPI } from './base';
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* Accepted languages by the API.
|
|
17
17
|
* @export
|
|
18
18
|
* @enum {string}
|
|
19
19
|
*/
|
|
@@ -145,7 +145,7 @@ export interface ApiTokenForCreationDto {
|
|
|
145
145
|
*/
|
|
146
146
|
name: string;
|
|
147
147
|
/**
|
|
148
|
-
*
|
|
148
|
+
* Gets or sets the expiration of the token.
|
|
149
149
|
* @type {number}
|
|
150
150
|
* @memberof ApiTokenForCreationDto
|
|
151
151
|
*/
|
|
@@ -471,7 +471,50 @@ export interface DisciplineForUserManipulationDto {
|
|
|
471
471
|
id: string;
|
|
472
472
|
}
|
|
473
473
|
/**
|
|
474
|
-
*
|
|
474
|
+
* Represents a Data Transfer Object (DTO) for file actions, including the URL and HTTP method.
|
|
475
|
+
* @export
|
|
476
|
+
* @interface FileActionDto
|
|
477
|
+
*/
|
|
478
|
+
export interface FileActionDto {
|
|
479
|
+
/**
|
|
480
|
+
* Gets or sets the presigned URL associated with the file action.
|
|
481
|
+
* @type {string}
|
|
482
|
+
* @memberof FileActionDto
|
|
483
|
+
*/
|
|
484
|
+
url?: string;
|
|
485
|
+
/**
|
|
486
|
+
*
|
|
487
|
+
* @type {FileActionHttpMethod}
|
|
488
|
+
* @memberof FileActionDto
|
|
489
|
+
*/
|
|
490
|
+
method?: FileActionHttpMethod;
|
|
491
|
+
}
|
|
492
|
+
/**
|
|
493
|
+
* Represents the possible HTTP methods associated with file actions.
|
|
494
|
+
* @export
|
|
495
|
+
* @enum {string}
|
|
496
|
+
*/
|
|
497
|
+
export declare enum FileActionHttpMethod {
|
|
498
|
+
Get = "GET",
|
|
499
|
+
Post = "POST",
|
|
500
|
+
Put = "PUT",
|
|
501
|
+
Delete = "DELETE"
|
|
502
|
+
}
|
|
503
|
+
/**
|
|
504
|
+
* Represents a Data Transfer Object (DTO) for a collection of file actions, including download action details.
|
|
505
|
+
* @export
|
|
506
|
+
* @interface FileActionsDto
|
|
507
|
+
*/
|
|
508
|
+
export interface FileActionsDto {
|
|
509
|
+
/**
|
|
510
|
+
*
|
|
511
|
+
* @type {FileActionDto}
|
|
512
|
+
* @memberof FileActionsDto
|
|
513
|
+
*/
|
|
514
|
+
download?: FileActionDto;
|
|
515
|
+
}
|
|
516
|
+
/**
|
|
517
|
+
* Represents a Data Transfer Object (DTO) for a file within a tree structure, extending the base TreeDto.
|
|
475
518
|
* @export
|
|
476
519
|
* @interface FileTreeDto
|
|
477
520
|
*/
|
|
@@ -489,41 +532,47 @@ export interface FileTreeDto {
|
|
|
489
532
|
*/
|
|
490
533
|
type?: TreeDataType;
|
|
491
534
|
/**
|
|
492
|
-
*
|
|
535
|
+
* Gets or sets the directory of the file.
|
|
493
536
|
* @type {string}
|
|
494
537
|
* @memberof FileTreeDto
|
|
495
538
|
*/
|
|
496
539
|
directory?: string;
|
|
497
540
|
/**
|
|
498
|
-
*
|
|
541
|
+
* Gets or sets the name of the file.
|
|
499
542
|
* @type {string}
|
|
500
543
|
* @memberof FileTreeDto
|
|
501
544
|
*/
|
|
502
545
|
name?: string;
|
|
503
546
|
/**
|
|
504
|
-
*
|
|
547
|
+
* Gets or sets the extension of the file.
|
|
505
548
|
* @type {string}
|
|
506
549
|
* @memberof FileTreeDto
|
|
507
550
|
*/
|
|
508
551
|
extension?: string;
|
|
509
552
|
/**
|
|
510
|
-
*
|
|
553
|
+
* Gets or sets the size of the file in bytes.
|
|
511
554
|
* @type {number}
|
|
512
555
|
* @memberof FileTreeDto
|
|
513
556
|
*/
|
|
514
557
|
size?: number;
|
|
515
558
|
/**
|
|
516
|
-
*
|
|
559
|
+
* Gets or sets the creation date of the file.
|
|
517
560
|
* @type {string}
|
|
518
561
|
* @memberof FileTreeDto
|
|
519
562
|
*/
|
|
520
563
|
creationDate?: string | null;
|
|
521
564
|
/**
|
|
522
|
-
*
|
|
565
|
+
* Gets or sets the last change date of the file.
|
|
523
566
|
* @type {string}
|
|
524
567
|
* @memberof FileTreeDto
|
|
525
568
|
*/
|
|
526
569
|
changeDate?: string | null;
|
|
570
|
+
/**
|
|
571
|
+
*
|
|
572
|
+
* @type {FileActionsDto}
|
|
573
|
+
* @memberof FileTreeDto
|
|
574
|
+
*/
|
|
575
|
+
actions?: FileActionsDto;
|
|
527
576
|
}
|
|
528
577
|
/**
|
|
529
578
|
*
|
|
@@ -563,7 +612,7 @@ export interface FileTreeDtoPagedResponse {
|
|
|
563
612
|
pagination?: Pagination;
|
|
564
613
|
}
|
|
565
614
|
/**
|
|
566
|
-
*
|
|
615
|
+
* Represents the data transfer object for manipulating a resource fixed value.
|
|
567
616
|
* @export
|
|
568
617
|
* @interface FixedValueForResourceManipulationDto
|
|
569
618
|
*/
|
|
@@ -846,7 +895,7 @@ export interface GitlabProjectDtoResponse {
|
|
|
846
895
|
traceId?: string | null;
|
|
847
896
|
}
|
|
848
897
|
/**
|
|
849
|
-
*
|
|
898
|
+
* Represents the data transfer object for creating GitLab resource type options.
|
|
850
899
|
* @export
|
|
851
900
|
* @interface GitlabResourceTypeOptionsForCreationDto
|
|
852
901
|
*/
|
|
@@ -883,7 +932,7 @@ export interface GitlabResourceTypeOptionsForCreationDto {
|
|
|
883
932
|
tosAccepted: boolean;
|
|
884
933
|
}
|
|
885
934
|
/**
|
|
886
|
-
*
|
|
935
|
+
* Represents the data transfer object for updating GitLab resource type options.
|
|
887
936
|
* @export
|
|
888
937
|
* @interface GitlabResourceTypeOptionsForUpdateDto
|
|
889
938
|
*/
|
|
@@ -921,7 +970,7 @@ export interface IdentityProviderDto {
|
|
|
921
970
|
displayName?: string;
|
|
922
971
|
}
|
|
923
972
|
/**
|
|
924
|
-
*
|
|
973
|
+
* Specifies the supported external authentication services.
|
|
925
974
|
* @export
|
|
926
975
|
* @enum {string}
|
|
927
976
|
*/
|
|
@@ -1136,43 +1185,43 @@ export interface LicenseForResourceManipulationDto {
|
|
|
1136
1185
|
id: string;
|
|
1137
1186
|
}
|
|
1138
1187
|
/**
|
|
1139
|
-
*
|
|
1188
|
+
* This class represents a maintenance with its significant properties, which is returned from the API.
|
|
1140
1189
|
* @export
|
|
1141
1190
|
* @interface MaintenanceDto
|
|
1142
1191
|
*/
|
|
1143
1192
|
export interface MaintenanceDto {
|
|
1144
1193
|
/**
|
|
1145
|
-
*
|
|
1194
|
+
* Maintenance title.
|
|
1146
1195
|
* @type {string}
|
|
1147
1196
|
* @memberof MaintenanceDto
|
|
1148
1197
|
*/
|
|
1149
1198
|
displayName?: string;
|
|
1150
1199
|
/**
|
|
1151
|
-
*
|
|
1200
|
+
* Maintenance URL.
|
|
1152
1201
|
* @type {string}
|
|
1153
1202
|
* @memberof MaintenanceDto
|
|
1154
1203
|
*/
|
|
1155
1204
|
href?: string;
|
|
1156
1205
|
/**
|
|
1157
|
-
*
|
|
1206
|
+
* Maintenance type.
|
|
1158
1207
|
* @type {string}
|
|
1159
1208
|
* @memberof MaintenanceDto
|
|
1160
1209
|
*/
|
|
1161
1210
|
type?: string;
|
|
1162
1211
|
/**
|
|
1163
|
-
*
|
|
1212
|
+
* Maintenance description.
|
|
1164
1213
|
* @type {string}
|
|
1165
1214
|
* @memberof MaintenanceDto
|
|
1166
1215
|
*/
|
|
1167
1216
|
body?: string;
|
|
1168
1217
|
/**
|
|
1169
|
-
*
|
|
1218
|
+
* Maintenance start.
|
|
1170
1219
|
* @type {string}
|
|
1171
1220
|
* @memberof MaintenanceDto
|
|
1172
1221
|
*/
|
|
1173
1222
|
startsDate?: string | null;
|
|
1174
1223
|
/**
|
|
1175
|
-
*
|
|
1224
|
+
* Maintenance end.
|
|
1176
1225
|
* @type {string}
|
|
1177
1226
|
* @memberof MaintenanceDto
|
|
1178
1227
|
*/
|
|
@@ -1384,19 +1433,19 @@ export interface MetadataUpdateAdminParameters {
|
|
|
1384
1433
|
*/
|
|
1385
1434
|
export interface OrganizationDto {
|
|
1386
1435
|
/**
|
|
1387
|
-
*
|
|
1436
|
+
* The ROR <i>(Research Organization Registry)</i> ID of the organization.
|
|
1388
1437
|
* @type {string}
|
|
1389
1438
|
* @memberof OrganizationDto
|
|
1390
1439
|
*/
|
|
1391
1440
|
uri?: string;
|
|
1392
1441
|
/**
|
|
1393
|
-
*
|
|
1442
|
+
* The display name of the organization.
|
|
1394
1443
|
* @type {string}
|
|
1395
1444
|
* @memberof OrganizationDto
|
|
1396
1445
|
*/
|
|
1397
1446
|
displayName?: string;
|
|
1398
1447
|
/**
|
|
1399
|
-
*
|
|
1448
|
+
* The email address of the organization.
|
|
1400
1449
|
* @type {string}
|
|
1401
1450
|
* @memberof OrganizationDto
|
|
1402
1451
|
*/
|
|
@@ -1558,7 +1607,7 @@ export interface PidRequestDto {
|
|
|
1558
1607
|
sendConfirmationEmail?: boolean;
|
|
1559
1608
|
}
|
|
1560
1609
|
/**
|
|
1561
|
-
*
|
|
1610
|
+
* Specifies the type of PID.
|
|
1562
1611
|
* @export
|
|
1563
1612
|
* @enum {string}
|
|
1564
1613
|
*/
|
|
@@ -2290,7 +2339,7 @@ export interface ProjectMinimalDto {
|
|
|
2290
2339
|
*/
|
|
2291
2340
|
export interface ProjectQuotaDto {
|
|
2292
2341
|
/**
|
|
2293
|
-
*
|
|
2342
|
+
* Id of the project.
|
|
2294
2343
|
* @type {string}
|
|
2295
2344
|
* @memberof ProjectQuotaDto
|
|
2296
2345
|
*/
|
|
@@ -2326,7 +2375,7 @@ export interface ProjectQuotaDto {
|
|
|
2326
2375
|
*/
|
|
2327
2376
|
resourceType?: ResourceTypeMinimalDto;
|
|
2328
2377
|
/**
|
|
2329
|
-
*
|
|
2378
|
+
* Resources quota for all individual resources of a resource type in a selected project.
|
|
2330
2379
|
* @type {Array<ResourceQuotaDto>}
|
|
2331
2380
|
* @memberof ProjectQuotaDto
|
|
2332
2381
|
*/
|
|
@@ -2688,13 +2737,13 @@ export interface QuotaDto {
|
|
|
2688
2737
|
unit: QuotaUnit;
|
|
2689
2738
|
}
|
|
2690
2739
|
/**
|
|
2691
|
-
*
|
|
2740
|
+
* Represents the data transfer object for manipulating a quota value.
|
|
2692
2741
|
* @export
|
|
2693
2742
|
* @interface QuotaForManipulationDto
|
|
2694
2743
|
*/
|
|
2695
2744
|
export interface QuotaForManipulationDto {
|
|
2696
2745
|
/**
|
|
2697
|
-
*
|
|
2746
|
+
* Numerical value of the quota as a positive System.Int64.
|
|
2698
2747
|
* @type {number}
|
|
2699
2748
|
* @memberof QuotaForManipulationDto
|
|
2700
2749
|
*/
|
|
@@ -2707,7 +2756,7 @@ export interface QuotaForManipulationDto {
|
|
|
2707
2756
|
unit: QuotaUnit;
|
|
2708
2757
|
}
|
|
2709
2758
|
/**
|
|
2710
|
-
*
|
|
2759
|
+
* Specifies the unit of quota.
|
|
2711
2760
|
* @export
|
|
2712
2761
|
* @enum {string}
|
|
2713
2762
|
*/
|
|
@@ -2789,7 +2838,7 @@ export interface RdfDefinitionForManipulationDto {
|
|
|
2789
2838
|
type: RdfFormat;
|
|
2790
2839
|
}
|
|
2791
2840
|
/**
|
|
2792
|
-
*
|
|
2841
|
+
* Specifies the RDF <i>(Resource Description Framework)</i> format.
|
|
2793
2842
|
* @export
|
|
2794
2843
|
* @enum {string}
|
|
2795
2844
|
*/
|
|
@@ -2817,7 +2866,7 @@ export interface RdsOptionsDto {
|
|
|
2817
2866
|
size?: QuotaDto;
|
|
2818
2867
|
}
|
|
2819
2868
|
/**
|
|
2820
|
-
*
|
|
2869
|
+
* Represents the data transfer object for manipulating RDS Web resource type options.
|
|
2821
2870
|
* @export
|
|
2822
2871
|
* @interface RdsResourceTypeOptionsForManipulationDto
|
|
2823
2872
|
*/
|
|
@@ -2879,7 +2928,7 @@ export interface RdsS3OptionsDto {
|
|
|
2879
2928
|
size?: QuotaDto;
|
|
2880
2929
|
}
|
|
2881
2930
|
/**
|
|
2882
|
-
*
|
|
2931
|
+
* Represents the data transfer object for manipulating RDS S3 resource type options.
|
|
2883
2932
|
* @export
|
|
2884
2933
|
* @interface RdsS3ResourceTypeOptionsForManipulationDto
|
|
2885
2934
|
*/
|
|
@@ -2941,7 +2990,7 @@ export interface RdsS3WormOptionsDto {
|
|
|
2941
2990
|
size?: QuotaDto;
|
|
2942
2991
|
}
|
|
2943
2992
|
/**
|
|
2944
|
-
*
|
|
2993
|
+
* Represents the data transfer object for manipulating RDS S3 WORM resource type options.
|
|
2945
2994
|
* @export
|
|
2946
2995
|
* @interface RdsS3WormResourceTypeOptionsForManipulationDto
|
|
2947
2996
|
*/
|
|
@@ -3116,7 +3165,7 @@ export interface ResourceAdminDtoIEnumerablePagedResponse {
|
|
|
3116
3165
|
*/
|
|
3117
3166
|
export interface ResourceContentPageColumnsDto {
|
|
3118
3167
|
/**
|
|
3119
|
-
*
|
|
3168
|
+
* Set of columns that should always be displayed in the content view
|
|
3120
3169
|
* @type {Set<string>}
|
|
3121
3170
|
* @memberof ResourceContentPageColumnsDto
|
|
3122
3171
|
*/
|
|
@@ -3129,7 +3178,7 @@ export interface ResourceContentPageColumnsDto {
|
|
|
3129
3178
|
*/
|
|
3130
3179
|
export interface ResourceContentPageDto {
|
|
3131
3180
|
/**
|
|
3132
|
-
*
|
|
3181
|
+
* Resource is read-only
|
|
3133
3182
|
* @type {boolean}
|
|
3134
3183
|
* @memberof ResourceContentPageDto
|
|
3135
3184
|
*/
|
|
@@ -3167,13 +3216,13 @@ export interface ResourceContentPageEntriesViewDto {
|
|
|
3167
3216
|
*/
|
|
3168
3217
|
export interface ResourceContentPageMetadataViewDto {
|
|
3169
3218
|
/**
|
|
3170
|
-
*
|
|
3219
|
+
* A data URL can be provided and is editable
|
|
3171
3220
|
* @type {boolean}
|
|
3172
3221
|
* @memberof ResourceContentPageMetadataViewDto
|
|
3173
3222
|
*/
|
|
3174
3223
|
editableDataUrl?: boolean;
|
|
3175
3224
|
/**
|
|
3176
|
-
*
|
|
3225
|
+
* A key can be provided and is editable
|
|
3177
3226
|
* @type {boolean}
|
|
3178
3227
|
* @memberof ResourceContentPageMetadataViewDto
|
|
3179
3228
|
*/
|
|
@@ -3186,7 +3235,7 @@ export interface ResourceContentPageMetadataViewDto {
|
|
|
3186
3235
|
*/
|
|
3187
3236
|
export interface ResourceCreationPageDto {
|
|
3188
3237
|
/**
|
|
3189
|
-
*
|
|
3238
|
+
* List of Lists containing all the resource type specific components for the steps in the resource creation page
|
|
3190
3239
|
* @type {Array<Array<string>>}
|
|
3191
3240
|
* @memberof ResourceCreationPageDto
|
|
3192
3241
|
*/
|
|
@@ -3368,7 +3417,7 @@ export interface ResourceDtoResponse {
|
|
|
3368
3417
|
traceId?: string | null;
|
|
3369
3418
|
}
|
|
3370
3419
|
/**
|
|
3371
|
-
*
|
|
3420
|
+
* Represents the data transfer object for creating a resource.
|
|
3372
3421
|
* @export
|
|
3373
3422
|
* @interface ResourceForCreationDto
|
|
3374
3423
|
*/
|
|
@@ -3451,7 +3500,7 @@ export interface ResourceForCreationDto {
|
|
|
3451
3500
|
resourceTypeOptions: ResourceTypeOptionsForCreationDto;
|
|
3452
3501
|
}
|
|
3453
3502
|
/**
|
|
3454
|
-
*
|
|
3503
|
+
* Represents the data transfer object for updating a resource.
|
|
3455
3504
|
* @export
|
|
3456
3505
|
* @interface ResourceForUpdateDto
|
|
3457
3506
|
*/
|
|
@@ -3640,19 +3689,19 @@ export interface ResourceTypeDto {
|
|
|
3640
3689
|
*/
|
|
3641
3690
|
export interface ResourceTypeInformationDto {
|
|
3642
3691
|
/**
|
|
3643
|
-
*
|
|
3692
|
+
* Guid of the resource type
|
|
3644
3693
|
* @type {string}
|
|
3645
3694
|
* @memberof ResourceTypeInformationDto
|
|
3646
3695
|
*/
|
|
3647
3696
|
id?: string;
|
|
3648
3697
|
/**
|
|
3649
|
-
*
|
|
3698
|
+
* General resource type
|
|
3650
3699
|
* @type {string}
|
|
3651
3700
|
* @memberof ResourceTypeInformationDto
|
|
3652
3701
|
*/
|
|
3653
3702
|
generalType?: string | null;
|
|
3654
3703
|
/**
|
|
3655
|
-
*
|
|
3704
|
+
* Specific resource type
|
|
3656
3705
|
* @type {string}
|
|
3657
3706
|
* @memberof ResourceTypeInformationDto
|
|
3658
3707
|
*/
|
|
@@ -3664,79 +3713,79 @@ export interface ResourceTypeInformationDto {
|
|
|
3664
3713
|
*/
|
|
3665
3714
|
status?: ResourceTypeStatus;
|
|
3666
3715
|
/**
|
|
3667
|
-
*
|
|
3716
|
+
* The resource type supports creation
|
|
3668
3717
|
* @type {boolean}
|
|
3669
3718
|
* @memberof ResourceTypeInformationDto
|
|
3670
3719
|
*/
|
|
3671
3720
|
canCreate?: boolean;
|
|
3672
3721
|
/**
|
|
3673
|
-
*
|
|
3722
|
+
* The resource type supports reading
|
|
3674
3723
|
* @type {boolean}
|
|
3675
3724
|
* @memberof ResourceTypeInformationDto
|
|
3676
3725
|
*/
|
|
3677
3726
|
canRead?: boolean;
|
|
3678
3727
|
/**
|
|
3679
|
-
*
|
|
3728
|
+
* The resource type supports read-only
|
|
3680
3729
|
* @type {boolean}
|
|
3681
3730
|
* @memberof ResourceTypeInformationDto
|
|
3682
3731
|
*/
|
|
3683
3732
|
canSetResourceReadonly?: boolean;
|
|
3684
3733
|
/**
|
|
3685
|
-
*
|
|
3734
|
+
* The resource type supports updating
|
|
3686
3735
|
* @type {boolean}
|
|
3687
3736
|
* @memberof ResourceTypeInformationDto
|
|
3688
3737
|
*/
|
|
3689
3738
|
canUpdate?: boolean;
|
|
3690
3739
|
/**
|
|
3691
|
-
*
|
|
3740
|
+
* The resource type supports updating (not an Object)
|
|
3692
3741
|
* @type {boolean}
|
|
3693
3742
|
* @memberof ResourceTypeInformationDto
|
|
3694
3743
|
*/
|
|
3695
3744
|
canUpdateResource?: boolean;
|
|
3696
3745
|
/**
|
|
3697
|
-
*
|
|
3746
|
+
* The resource type supports deletion
|
|
3698
3747
|
* @type {boolean}
|
|
3699
3748
|
* @memberof ResourceTypeInformationDto
|
|
3700
3749
|
*/
|
|
3701
3750
|
canDelete?: boolean;
|
|
3702
3751
|
/**
|
|
3703
|
-
*
|
|
3752
|
+
* The resource type supports deletion (not an Object)
|
|
3704
3753
|
* @type {boolean}
|
|
3705
3754
|
* @memberof ResourceTypeInformationDto
|
|
3706
3755
|
*/
|
|
3707
3756
|
canDeleteResource?: boolean;
|
|
3708
3757
|
/**
|
|
3709
|
-
*
|
|
3758
|
+
* The resource type supports listing
|
|
3710
3759
|
* @type {boolean}
|
|
3711
3760
|
* @memberof ResourceTypeInformationDto
|
|
3712
3761
|
*/
|
|
3713
3762
|
canList?: boolean;
|
|
3714
3763
|
/**
|
|
3715
|
-
*
|
|
3764
|
+
* The resource type supports linking
|
|
3716
3765
|
* @type {boolean}
|
|
3717
3766
|
* @memberof ResourceTypeInformationDto
|
|
3718
3767
|
*/
|
|
3719
3768
|
canCreateLinks?: boolean;
|
|
3720
3769
|
/**
|
|
3721
|
-
*
|
|
3770
|
+
* The resource type is archived
|
|
3722
3771
|
* @type {boolean}
|
|
3723
3772
|
* @memberof ResourceTypeInformationDto
|
|
3724
3773
|
*/
|
|
3725
3774
|
isArchived?: boolean;
|
|
3726
3775
|
/**
|
|
3727
|
-
*
|
|
3776
|
+
* Value to see, if the resource type supports quota
|
|
3728
3777
|
* @type {boolean}
|
|
3729
3778
|
* @memberof ResourceTypeInformationDto
|
|
3730
3779
|
*/
|
|
3731
3780
|
isQuotaAvailable?: boolean;
|
|
3732
3781
|
/**
|
|
3733
|
-
*
|
|
3782
|
+
* Value to see, if the resource type quota can be changed
|
|
3734
3783
|
* @type {boolean}
|
|
3735
3784
|
* @memberof ResourceTypeInformationDto
|
|
3736
3785
|
*/
|
|
3737
3786
|
isQuotaAdjustable?: boolean;
|
|
3738
3787
|
/**
|
|
3739
|
-
*
|
|
3788
|
+
* The resource type is enabled
|
|
3740
3789
|
* @type {boolean}
|
|
3741
3790
|
* @memberof ResourceTypeInformationDto
|
|
3742
3791
|
*/
|
|
@@ -3873,13 +3922,13 @@ export interface ResourceTypeOptionsDto {
|
|
|
3873
3922
|
rdsS3Worm?: RdsS3WormOptionsDto;
|
|
3874
3923
|
}
|
|
3875
3924
|
/**
|
|
3876
|
-
*
|
|
3925
|
+
* Represents the data transfer object for creating any resource type options.
|
|
3877
3926
|
* @export
|
|
3878
3927
|
* @interface ResourceTypeOptionsForCreationDto
|
|
3879
3928
|
*/
|
|
3880
3929
|
export interface ResourceTypeOptionsForCreationDto {
|
|
3881
3930
|
/**
|
|
3882
|
-
*
|
|
3931
|
+
* Represents the data transfer object for manipulating linked data resource type options.
|
|
3883
3932
|
* @type {object}
|
|
3884
3933
|
* @memberof ResourceTypeOptionsForCreationDto
|
|
3885
3934
|
*/
|
|
@@ -3910,13 +3959,13 @@ export interface ResourceTypeOptionsForCreationDto {
|
|
|
3910
3959
|
rdsS3WormResourceTypeOptions?: RdsS3WormResourceTypeOptionsForManipulationDto;
|
|
3911
3960
|
}
|
|
3912
3961
|
/**
|
|
3913
|
-
*
|
|
3962
|
+
* Represents the data transfer object for updating any resource type options.
|
|
3914
3963
|
* @export
|
|
3915
3964
|
* @interface ResourceTypeOptionsForUpdateDto
|
|
3916
3965
|
*/
|
|
3917
3966
|
export interface ResourceTypeOptionsForUpdateDto {
|
|
3918
3967
|
/**
|
|
3919
|
-
*
|
|
3968
|
+
* Represents the data transfer object for manipulating linked data resource type options.
|
|
3920
3969
|
* @type {object}
|
|
3921
3970
|
* @memberof ResourceTypeOptionsForUpdateDto
|
|
3922
3971
|
*/
|
|
@@ -3947,7 +3996,7 @@ export interface ResourceTypeOptionsForUpdateDto {
|
|
|
3947
3996
|
rdsS3WormResourceTypeOptions?: RdsS3WormResourceTypeOptionsForManipulationDto;
|
|
3948
3997
|
}
|
|
3949
3998
|
/**
|
|
3950
|
-
*
|
|
3999
|
+
* Specifies the status of a resource type.
|
|
3951
4000
|
* @export
|
|
3952
4001
|
* @enum {string}
|
|
3953
4002
|
*/
|
|
@@ -4081,7 +4130,7 @@ export interface SearchCategory {
|
|
|
4081
4130
|
count?: number;
|
|
4082
4131
|
}
|
|
4083
4132
|
/**
|
|
4084
|
-
*
|
|
4133
|
+
* Specifies the search item type.
|
|
4085
4134
|
* @export
|
|
4086
4135
|
* @enum {string}
|
|
4087
4136
|
*/
|
|
@@ -4552,25 +4601,25 @@ export interface UserForUpdateDto {
|
|
|
4552
4601
|
*/
|
|
4553
4602
|
export interface UserInstituteDto {
|
|
4554
4603
|
/**
|
|
4555
|
-
*
|
|
4604
|
+
* The ROR <i>(Research Organization Registry)</i> ID of the organization.
|
|
4556
4605
|
* @type {string}
|
|
4557
4606
|
* @memberof UserInstituteDto
|
|
4558
4607
|
*/
|
|
4559
4608
|
uri?: string;
|
|
4560
4609
|
/**
|
|
4561
|
-
*
|
|
4610
|
+
* The display name of the organization.
|
|
4562
4611
|
* @type {string}
|
|
4563
4612
|
* @memberof UserInstituteDto
|
|
4564
4613
|
*/
|
|
4565
4614
|
displayName?: string;
|
|
4566
4615
|
/**
|
|
4567
|
-
*
|
|
4616
|
+
* The email address of the organization.
|
|
4568
4617
|
* @type {string}
|
|
4569
4618
|
* @memberof UserInstituteDto
|
|
4570
4619
|
*/
|
|
4571
4620
|
email?: string | null;
|
|
4572
4621
|
/**
|
|
4573
|
-
*
|
|
4622
|
+
* Determines if the organization\'s details can be modified. Default to `true`, manually set to `false`.
|
|
4574
4623
|
* @type {boolean}
|
|
4575
4624
|
* @memberof UserInstituteDto
|
|
4576
4625
|
*/
|
|
@@ -4640,25 +4689,25 @@ export interface UserMinimalDto {
|
|
|
4640
4689
|
*/
|
|
4641
4690
|
export interface UserOrganizationDto {
|
|
4642
4691
|
/**
|
|
4643
|
-
*
|
|
4692
|
+
* The ROR <i>(Research Organization Registry)</i> ID of the organization.
|
|
4644
4693
|
* @type {string}
|
|
4645
4694
|
* @memberof UserOrganizationDto
|
|
4646
4695
|
*/
|
|
4647
4696
|
uri?: string;
|
|
4648
4697
|
/**
|
|
4649
|
-
*
|
|
4698
|
+
* The display name of the organization.
|
|
4650
4699
|
* @type {string}
|
|
4651
4700
|
* @memberof UserOrganizationDto
|
|
4652
4701
|
*/
|
|
4653
4702
|
displayName?: string;
|
|
4654
4703
|
/**
|
|
4655
|
-
*
|
|
4704
|
+
* The email address of the organization.
|
|
4656
4705
|
* @type {string}
|
|
4657
4706
|
* @memberof UserOrganizationDto
|
|
4658
4707
|
*/
|
|
4659
4708
|
email?: string | null;
|
|
4660
4709
|
/**
|
|
4661
|
-
*
|
|
4710
|
+
* Determines if the organization\'s details can be modified. Default to `true`, manually set to `false`.
|
|
4662
4711
|
* @type {boolean}
|
|
4663
4712
|
* @memberof UserOrganizationDto
|
|
4664
4713
|
*/
|
|
@@ -4797,13 +4846,13 @@ export interface VisibilityForResourceManipulationDto {
|
|
|
4797
4846
|
*/
|
|
4798
4847
|
export interface VocabularyDto {
|
|
4799
4848
|
/**
|
|
4800
|
-
*
|
|
4849
|
+
* The name of the graph, which contains the vocabulary.
|
|
4801
4850
|
* @type {string}
|
|
4802
4851
|
* @memberof VocabularyDto
|
|
4803
4852
|
*/
|
|
4804
4853
|
graphUri?: string;
|
|
4805
4854
|
/**
|
|
4806
|
-
*
|
|
4855
|
+
* The top-level parent class in the vocabulary.
|
|
4807
4856
|
* @type {string}
|
|
4808
4857
|
* @memberof VocabularyDto
|
|
4809
4858
|
*/
|
|
@@ -4865,25 +4914,25 @@ export interface VocabularyDtoPagedResponse {
|
|
|
4865
4914
|
*/
|
|
4866
4915
|
export interface VocabularyInstanceDto {
|
|
4867
4916
|
/**
|
|
4868
|
-
*
|
|
4917
|
+
* The name of the graph, which contains the vocabulary.
|
|
4869
4918
|
* @type {string}
|
|
4870
4919
|
* @memberof VocabularyInstanceDto
|
|
4871
4920
|
*/
|
|
4872
4921
|
graphUri?: string;
|
|
4873
4922
|
/**
|
|
4874
|
-
*
|
|
4923
|
+
* URI of the instance.
|
|
4875
4924
|
* @type {string}
|
|
4876
4925
|
* @memberof VocabularyInstanceDto
|
|
4877
4926
|
*/
|
|
4878
4927
|
instanceUri?: string;
|
|
4879
4928
|
/**
|
|
4880
|
-
*
|
|
4929
|
+
* Type of the instance.
|
|
4881
4930
|
* @type {string}
|
|
4882
4931
|
* @memberof VocabularyInstanceDto
|
|
4883
4932
|
*/
|
|
4884
4933
|
typeUri?: string | null;
|
|
4885
4934
|
/**
|
|
4886
|
-
*
|
|
4935
|
+
* The direct parent class.
|
|
4887
4936
|
* @type {string}
|
|
4888
4937
|
* @memberof VocabularyInstanceDto
|
|
4889
4938
|
*/
|
|
@@ -4987,7 +5036,7 @@ export declare const AdminApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4987
5036
|
* @param {boolean} [topLevel]
|
|
4988
5037
|
* @param {boolean} [includeDeleted]
|
|
4989
5038
|
* @param {number} [pageNumber]
|
|
4990
|
-
* @param {number} [pageSize]
|
|
5039
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
4991
5040
|
* @param {string} [orderBy]
|
|
4992
5041
|
* @param {*} [options] Override http request option.
|
|
4993
5042
|
* @throws {RequiredError}
|
|
@@ -4998,7 +5047,7 @@ export declare const AdminApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4998
5047
|
* @summary Retrieves all resources.
|
|
4999
5048
|
* @param {boolean} [includeDeleted]
|
|
5000
5049
|
* @param {number} [pageNumber]
|
|
5001
|
-
* @param {number} [pageSize]
|
|
5050
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5002
5051
|
* @param {string} [orderBy]
|
|
5003
5052
|
* @param {*} [options] Override http request option.
|
|
5004
5053
|
* @throws {RequiredError}
|
|
@@ -5010,7 +5059,7 @@ export declare const AdminApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
5010
5059
|
* @param {string} [orderBy]
|
|
5011
5060
|
* @param {boolean} [tosAccepted]
|
|
5012
5061
|
* @param {number} [pageNumber]
|
|
5013
|
-
* @param {number} [pageSize]
|
|
5062
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5014
5063
|
* @param {*} [options] Override http request option.
|
|
5015
5064
|
* @throws {RequiredError}
|
|
5016
5065
|
*/
|
|
@@ -5051,7 +5100,7 @@ export declare const AdminApiFp: (configuration?: Configuration) => {
|
|
|
5051
5100
|
* @param {boolean} [topLevel]
|
|
5052
5101
|
* @param {boolean} [includeDeleted]
|
|
5053
5102
|
* @param {number} [pageNumber]
|
|
5054
|
-
* @param {number} [pageSize]
|
|
5103
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5055
5104
|
* @param {string} [orderBy]
|
|
5056
5105
|
* @param {*} [options] Override http request option.
|
|
5057
5106
|
* @throws {RequiredError}
|
|
@@ -5062,7 +5111,7 @@ export declare const AdminApiFp: (configuration?: Configuration) => {
|
|
|
5062
5111
|
* @summary Retrieves all resources.
|
|
5063
5112
|
* @param {boolean} [includeDeleted]
|
|
5064
5113
|
* @param {number} [pageNumber]
|
|
5065
|
-
* @param {number} [pageSize]
|
|
5114
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5066
5115
|
* @param {string} [orderBy]
|
|
5067
5116
|
* @param {*} [options] Override http request option.
|
|
5068
5117
|
* @throws {RequiredError}
|
|
@@ -5074,7 +5123,7 @@ export declare const AdminApiFp: (configuration?: Configuration) => {
|
|
|
5074
5123
|
* @param {string} [orderBy]
|
|
5075
5124
|
* @param {boolean} [tosAccepted]
|
|
5076
5125
|
* @param {number} [pageNumber]
|
|
5077
|
-
* @param {number} [pageSize]
|
|
5126
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5078
5127
|
* @param {*} [options] Override http request option.
|
|
5079
5128
|
* @throws {RequiredError}
|
|
5080
5129
|
*/
|
|
@@ -5115,7 +5164,7 @@ export declare const AdminApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5115
5164
|
* @param {boolean} [topLevel]
|
|
5116
5165
|
* @param {boolean} [includeDeleted]
|
|
5117
5166
|
* @param {number} [pageNumber]
|
|
5118
|
-
* @param {number} [pageSize]
|
|
5167
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5119
5168
|
* @param {string} [orderBy]
|
|
5120
5169
|
* @param {*} [options] Override http request option.
|
|
5121
5170
|
* @throws {RequiredError}
|
|
@@ -5126,7 +5175,7 @@ export declare const AdminApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5126
5175
|
* @summary Retrieves all resources.
|
|
5127
5176
|
* @param {boolean} [includeDeleted]
|
|
5128
5177
|
* @param {number} [pageNumber]
|
|
5129
|
-
* @param {number} [pageSize]
|
|
5178
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5130
5179
|
* @param {string} [orderBy]
|
|
5131
5180
|
* @param {*} [options] Override http request option.
|
|
5132
5181
|
* @throws {RequiredError}
|
|
@@ -5138,7 +5187,7 @@ export declare const AdminApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5138
5187
|
* @param {string} [orderBy]
|
|
5139
5188
|
* @param {boolean} [tosAccepted]
|
|
5140
5189
|
* @param {number} [pageNumber]
|
|
5141
|
-
* @param {number} [pageSize]
|
|
5190
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5142
5191
|
* @param {*} [options] Override http request option.
|
|
5143
5192
|
* @throws {RequiredError}
|
|
5144
5193
|
*/
|
|
@@ -5182,7 +5231,7 @@ export declare class AdminApi extends BaseAPI {
|
|
|
5182
5231
|
* @param {boolean} [topLevel]
|
|
5183
5232
|
* @param {boolean} [includeDeleted]
|
|
5184
5233
|
* @param {number} [pageNumber]
|
|
5185
|
-
* @param {number} [pageSize]
|
|
5234
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5186
5235
|
* @param {string} [orderBy]
|
|
5187
5236
|
* @param {*} [options] Override http request option.
|
|
5188
5237
|
* @throws {RequiredError}
|
|
@@ -5194,7 +5243,7 @@ export declare class AdminApi extends BaseAPI {
|
|
|
5194
5243
|
* @summary Retrieves all resources.
|
|
5195
5244
|
* @param {boolean} [includeDeleted]
|
|
5196
5245
|
* @param {number} [pageNumber]
|
|
5197
|
-
* @param {number} [pageSize]
|
|
5246
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5198
5247
|
* @param {string} [orderBy]
|
|
5199
5248
|
* @param {*} [options] Override http request option.
|
|
5200
5249
|
* @throws {RequiredError}
|
|
@@ -5207,7 +5256,7 @@ export declare class AdminApi extends BaseAPI {
|
|
|
5207
5256
|
* @param {string} [orderBy]
|
|
5208
5257
|
* @param {boolean} [tosAccepted]
|
|
5209
5258
|
* @param {number} [pageNumber]
|
|
5210
|
-
* @param {number} [pageSize]
|
|
5259
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5211
5260
|
* @param {*} [options] Override http request option.
|
|
5212
5261
|
* @throws {RequiredError}
|
|
5213
5262
|
* @memberof AdminApi
|
|
@@ -5270,7 +5319,7 @@ export declare const ApplicationProfileApiAxiosParamCreator: (configuration?: Co
|
|
|
5270
5319
|
* @param {AcceptedLanguage} [language]
|
|
5271
5320
|
* @param {boolean} [modules]
|
|
5272
5321
|
* @param {number} [pageNumber]
|
|
5273
|
-
* @param {number} [pageSize]
|
|
5322
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5274
5323
|
* @param {string} [orderBy]
|
|
5275
5324
|
* @param {*} [options] Override http request option.
|
|
5276
5325
|
* @throws {RequiredError}
|
|
@@ -5322,7 +5371,7 @@ export declare const ApplicationProfileApiFp: (configuration?: Configuration) =>
|
|
|
5322
5371
|
* @param {AcceptedLanguage} [language]
|
|
5323
5372
|
* @param {boolean} [modules]
|
|
5324
5373
|
* @param {number} [pageNumber]
|
|
5325
|
-
* @param {number} [pageSize]
|
|
5374
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5326
5375
|
* @param {string} [orderBy]
|
|
5327
5376
|
* @param {*} [options] Override http request option.
|
|
5328
5377
|
* @throws {RequiredError}
|
|
@@ -5374,7 +5423,7 @@ export declare const ApplicationProfileApiFactory: (configuration?: Configuratio
|
|
|
5374
5423
|
* @param {AcceptedLanguage} [language]
|
|
5375
5424
|
* @param {boolean} [modules]
|
|
5376
5425
|
* @param {number} [pageNumber]
|
|
5377
|
-
* @param {number} [pageSize]
|
|
5426
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5378
5427
|
* @param {string} [orderBy]
|
|
5379
5428
|
* @param {*} [options] Override http request option.
|
|
5380
5429
|
* @throws {RequiredError}
|
|
@@ -5431,7 +5480,7 @@ export declare class ApplicationProfileApi extends BaseAPI {
|
|
|
5431
5480
|
* @param {AcceptedLanguage} [language]
|
|
5432
5481
|
* @param {boolean} [modules]
|
|
5433
5482
|
* @param {number} [pageNumber]
|
|
5434
|
-
* @param {number} [pageSize]
|
|
5483
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5435
5484
|
* @param {string} [orderBy]
|
|
5436
5485
|
* @param {*} [options] Override http request option.
|
|
5437
5486
|
* @throws {RequiredError}
|
|
@@ -5707,7 +5756,7 @@ export declare const DisciplineApiAxiosParamCreator: (configuration?: Configurat
|
|
|
5707
5756
|
*
|
|
5708
5757
|
* @summary Retrieves all disciplines.
|
|
5709
5758
|
* @param {number} [pageNumber]
|
|
5710
|
-
* @param {number} [pageSize]
|
|
5759
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5711
5760
|
* @param {string} [orderBy]
|
|
5712
5761
|
* @param {*} [options] Override http request option.
|
|
5713
5762
|
* @throws {RequiredError}
|
|
@@ -5738,7 +5787,7 @@ export declare const DisciplineApiFp: (configuration?: Configuration) => {
|
|
|
5738
5787
|
*
|
|
5739
5788
|
* @summary Retrieves all disciplines.
|
|
5740
5789
|
* @param {number} [pageNumber]
|
|
5741
|
-
* @param {number} [pageSize]
|
|
5790
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5742
5791
|
* @param {string} [orderBy]
|
|
5743
5792
|
* @param {*} [options] Override http request option.
|
|
5744
5793
|
* @throws {RequiredError}
|
|
@@ -5769,7 +5818,7 @@ export declare const DisciplineApiFactory: (configuration?: Configuration, baseP
|
|
|
5769
5818
|
*
|
|
5770
5819
|
* @summary Retrieves all disciplines.
|
|
5771
5820
|
* @param {number} [pageNumber]
|
|
5772
|
-
* @param {number} [pageSize]
|
|
5821
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5773
5822
|
* @param {string} [orderBy]
|
|
5774
5823
|
* @param {*} [options] Override http request option.
|
|
5775
5824
|
* @throws {RequiredError}
|
|
@@ -5804,7 +5853,7 @@ export declare class DisciplineApi extends BaseAPI {
|
|
|
5804
5853
|
*
|
|
5805
5854
|
* @summary Retrieves all disciplines.
|
|
5806
5855
|
* @param {number} [pageNumber]
|
|
5807
|
-
* @param {number} [pageSize]
|
|
5856
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5808
5857
|
* @param {string} [orderBy]
|
|
5809
5858
|
* @param {*} [options] Override http request option.
|
|
5810
5859
|
* @throws {RequiredError}
|
|
@@ -5836,7 +5885,7 @@ export declare const LanguageApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
5836
5885
|
*
|
|
5837
5886
|
* @summary Retrieves all languages.
|
|
5838
5887
|
* @param {number} [pageNumber]
|
|
5839
|
-
* @param {number} [pageSize]
|
|
5888
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5840
5889
|
* @param {string} [orderBy]
|
|
5841
5890
|
* @param {*} [options] Override http request option.
|
|
5842
5891
|
* @throws {RequiredError}
|
|
@@ -5867,7 +5916,7 @@ export declare const LanguageApiFp: (configuration?: Configuration) => {
|
|
|
5867
5916
|
*
|
|
5868
5917
|
* @summary Retrieves all languages.
|
|
5869
5918
|
* @param {number} [pageNumber]
|
|
5870
|
-
* @param {number} [pageSize]
|
|
5919
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5871
5920
|
* @param {string} [orderBy]
|
|
5872
5921
|
* @param {*} [options] Override http request option.
|
|
5873
5922
|
* @throws {RequiredError}
|
|
@@ -5898,7 +5947,7 @@ export declare const LanguageApiFactory: (configuration?: Configuration, basePat
|
|
|
5898
5947
|
*
|
|
5899
5948
|
* @summary Retrieves all languages.
|
|
5900
5949
|
* @param {number} [pageNumber]
|
|
5901
|
-
* @param {number} [pageSize]
|
|
5950
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5902
5951
|
* @param {string} [orderBy]
|
|
5903
5952
|
* @param {*} [options] Override http request option.
|
|
5904
5953
|
* @throws {RequiredError}
|
|
@@ -5933,7 +5982,7 @@ export declare class LanguageApi extends BaseAPI {
|
|
|
5933
5982
|
*
|
|
5934
5983
|
* @summary Retrieves all languages.
|
|
5935
5984
|
* @param {number} [pageNumber]
|
|
5936
|
-
* @param {number} [pageSize]
|
|
5985
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5937
5986
|
* @param {string} [orderBy]
|
|
5938
5987
|
* @param {*} [options] Override http request option.
|
|
5939
5988
|
* @throws {RequiredError}
|
|
@@ -5965,7 +6014,7 @@ export declare const LicenseApiAxiosParamCreator: (configuration?: Configuration
|
|
|
5965
6014
|
*
|
|
5966
6015
|
* @summary Retrieves all licenses.
|
|
5967
6016
|
* @param {number} [pageNumber]
|
|
5968
|
-
* @param {number} [pageSize]
|
|
6017
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
5969
6018
|
* @param {string} [orderBy]
|
|
5970
6019
|
* @param {*} [options] Override http request option.
|
|
5971
6020
|
* @throws {RequiredError}
|
|
@@ -5996,7 +6045,7 @@ export declare const LicenseApiFp: (configuration?: Configuration) => {
|
|
|
5996
6045
|
*
|
|
5997
6046
|
* @summary Retrieves all licenses.
|
|
5998
6047
|
* @param {number} [pageNumber]
|
|
5999
|
-
* @param {number} [pageSize]
|
|
6048
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6000
6049
|
* @param {string} [orderBy]
|
|
6001
6050
|
* @param {*} [options] Override http request option.
|
|
6002
6051
|
* @throws {RequiredError}
|
|
@@ -6027,7 +6076,7 @@ export declare const LicenseApiFactory: (configuration?: Configuration, basePath
|
|
|
6027
6076
|
*
|
|
6028
6077
|
* @summary Retrieves all licenses.
|
|
6029
6078
|
* @param {number} [pageNumber]
|
|
6030
|
-
* @param {number} [pageSize]
|
|
6079
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6031
6080
|
* @param {string} [orderBy]
|
|
6032
6081
|
* @param {*} [options] Override http request option.
|
|
6033
6082
|
* @throws {RequiredError}
|
|
@@ -6062,7 +6111,7 @@ export declare class LicenseApi extends BaseAPI {
|
|
|
6062
6111
|
*
|
|
6063
6112
|
* @summary Retrieves all licenses.
|
|
6064
6113
|
* @param {number} [pageNumber]
|
|
6065
|
-
* @param {number} [pageSize]
|
|
6114
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6066
6115
|
* @param {string} [orderBy]
|
|
6067
6116
|
* @param {*} [options] Override http request option.
|
|
6068
6117
|
* @throws {RequiredError}
|
|
@@ -6179,7 +6228,7 @@ export declare const OrganizationApiAxiosParamCreator: (configuration?: Configur
|
|
|
6179
6228
|
* @summary Retrieves all organizations.
|
|
6180
6229
|
* @param {string} [searchTerm]
|
|
6181
6230
|
* @param {number} [pageNumber]
|
|
6182
|
-
* @param {number} [pageSize]
|
|
6231
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6183
6232
|
* @param {string} [orderBy]
|
|
6184
6233
|
* @param {*} [options] Override http request option.
|
|
6185
6234
|
* @throws {RequiredError}
|
|
@@ -6211,7 +6260,7 @@ export declare const OrganizationApiFp: (configuration?: Configuration) => {
|
|
|
6211
6260
|
* @summary Retrieves all organizations.
|
|
6212
6261
|
* @param {string} [searchTerm]
|
|
6213
6262
|
* @param {number} [pageNumber]
|
|
6214
|
-
* @param {number} [pageSize]
|
|
6263
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6215
6264
|
* @param {string} [orderBy]
|
|
6216
6265
|
* @param {*} [options] Override http request option.
|
|
6217
6266
|
* @throws {RequiredError}
|
|
@@ -6243,7 +6292,7 @@ export declare const OrganizationApiFactory: (configuration?: Configuration, bas
|
|
|
6243
6292
|
* @summary Retrieves all organizations.
|
|
6244
6293
|
* @param {string} [searchTerm]
|
|
6245
6294
|
* @param {number} [pageNumber]
|
|
6246
|
-
* @param {number} [pageSize]
|
|
6295
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6247
6296
|
* @param {string} [orderBy]
|
|
6248
6297
|
* @param {*} [options] Override http request option.
|
|
6249
6298
|
* @throws {RequiredError}
|
|
@@ -6279,7 +6328,7 @@ export declare class OrganizationApi extends BaseAPI {
|
|
|
6279
6328
|
* @summary Retrieves all organizations.
|
|
6280
6329
|
* @param {string} [searchTerm]
|
|
6281
6330
|
* @param {number} [pageNumber]
|
|
6282
|
-
* @param {number} [pageSize]
|
|
6331
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6283
6332
|
* @param {string} [orderBy]
|
|
6284
6333
|
* @param {*} [options] Override http request option.
|
|
6285
6334
|
* @throws {RequiredError}
|
|
@@ -6462,7 +6511,7 @@ export declare const ProjectApiAxiosParamCreator: (configuration?: Configuration
|
|
|
6462
6511
|
* @summary Retrieves all projects.
|
|
6463
6512
|
* @param {boolean} [topLevel]
|
|
6464
6513
|
* @param {number} [pageNumber]
|
|
6465
|
-
* @param {number} [pageSize]
|
|
6514
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6466
6515
|
* @param {string} [orderBy]
|
|
6467
6516
|
* @param {*} [options] Override http request option.
|
|
6468
6517
|
* @throws {RequiredError}
|
|
@@ -6520,7 +6569,7 @@ export declare const ProjectApiFp: (configuration?: Configuration) => {
|
|
|
6520
6569
|
* @summary Retrieves all projects.
|
|
6521
6570
|
* @param {boolean} [topLevel]
|
|
6522
6571
|
* @param {number} [pageNumber]
|
|
6523
|
-
* @param {number} [pageSize]
|
|
6572
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6524
6573
|
* @param {string} [orderBy]
|
|
6525
6574
|
* @param {*} [options] Override http request option.
|
|
6526
6575
|
* @throws {RequiredError}
|
|
@@ -6578,7 +6627,7 @@ export declare const ProjectApiFactory: (configuration?: Configuration, basePath
|
|
|
6578
6627
|
* @summary Retrieves all projects.
|
|
6579
6628
|
* @param {boolean} [topLevel]
|
|
6580
6629
|
* @param {number} [pageNumber]
|
|
6581
|
-
* @param {number} [pageSize]
|
|
6630
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6582
6631
|
* @param {string} [orderBy]
|
|
6583
6632
|
* @param {*} [options] Override http request option.
|
|
6584
6633
|
* @throws {RequiredError}
|
|
@@ -6642,7 +6691,7 @@ export declare class ProjectApi extends BaseAPI {
|
|
|
6642
6691
|
* @summary Retrieves all projects.
|
|
6643
6692
|
* @param {boolean} [topLevel]
|
|
6644
6693
|
* @param {number} [pageNumber]
|
|
6645
|
-
* @param {number} [pageSize]
|
|
6694
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6646
6695
|
* @param {string} [orderBy]
|
|
6647
6696
|
* @param {*} [options] Override http request option.
|
|
6648
6697
|
* @throws {RequiredError}
|
|
@@ -6705,7 +6754,7 @@ export declare const ProjectInvitationApiAxiosParamCreator: (configuration?: Con
|
|
|
6705
6754
|
* @summary Retrieves all project invitations for a specified project.
|
|
6706
6755
|
* @param {string} projectId The Id or slug of the project.
|
|
6707
6756
|
* @param {number} [pageNumber]
|
|
6708
|
-
* @param {number} [pageSize]
|
|
6757
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6709
6758
|
* @param {string} [orderBy]
|
|
6710
6759
|
* @param {*} [options] Override http request option.
|
|
6711
6760
|
* @throws {RequiredError}
|
|
@@ -6757,7 +6806,7 @@ export declare const ProjectInvitationApiFp: (configuration?: Configuration) =>
|
|
|
6757
6806
|
* @summary Retrieves all project invitations for a specified project.
|
|
6758
6807
|
* @param {string} projectId The Id or slug of the project.
|
|
6759
6808
|
* @param {number} [pageNumber]
|
|
6760
|
-
* @param {number} [pageSize]
|
|
6809
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6761
6810
|
* @param {string} [orderBy]
|
|
6762
6811
|
* @param {*} [options] Override http request option.
|
|
6763
6812
|
* @throws {RequiredError}
|
|
@@ -6809,7 +6858,7 @@ export declare const ProjectInvitationApiFactory: (configuration?: Configuration
|
|
|
6809
6858
|
* @summary Retrieves all project invitations for a specified project.
|
|
6810
6859
|
* @param {string} projectId The Id or slug of the project.
|
|
6811
6860
|
* @param {number} [pageNumber]
|
|
6812
|
-
* @param {number} [pageSize]
|
|
6861
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6813
6862
|
* @param {string} [orderBy]
|
|
6814
6863
|
* @param {*} [options] Override http request option.
|
|
6815
6864
|
* @throws {RequiredError}
|
|
@@ -6867,7 +6916,7 @@ export declare class ProjectInvitationApi extends BaseAPI {
|
|
|
6867
6916
|
* @summary Retrieves all project invitations for a specified project.
|
|
6868
6917
|
* @param {string} projectId The Id or slug of the project.
|
|
6869
6918
|
* @param {number} [pageNumber]
|
|
6870
|
-
* @param {number} [pageSize]
|
|
6919
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6871
6920
|
* @param {string} [orderBy]
|
|
6872
6921
|
* @param {*} [options] Override http request option.
|
|
6873
6922
|
* @throws {RequiredError}
|
|
@@ -6920,7 +6969,7 @@ export declare const ProjectMemberApiAxiosParamCreator: (configuration?: Configu
|
|
|
6920
6969
|
* @summary Retrieves all project memberships for a specified project.
|
|
6921
6970
|
* @param {string} projectId The Id or slug of the project.
|
|
6922
6971
|
* @param {number} [pageNumber]
|
|
6923
|
-
* @param {number} [pageSize]
|
|
6972
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6924
6973
|
* @param {string} [orderBy]
|
|
6925
6974
|
* @param {*} [options] Override http request option.
|
|
6926
6975
|
* @throws {RequiredError}
|
|
@@ -6982,7 +7031,7 @@ export declare const ProjectMemberApiFp: (configuration?: Configuration) => {
|
|
|
6982
7031
|
* @summary Retrieves all project memberships for a specified project.
|
|
6983
7032
|
* @param {string} projectId The Id or slug of the project.
|
|
6984
7033
|
* @param {number} [pageNumber]
|
|
6985
|
-
* @param {number} [pageSize]
|
|
7034
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
6986
7035
|
* @param {string} [orderBy]
|
|
6987
7036
|
* @param {*} [options] Override http request option.
|
|
6988
7037
|
* @throws {RequiredError}
|
|
@@ -7044,7 +7093,7 @@ export declare const ProjectMemberApiFactory: (configuration?: Configuration, ba
|
|
|
7044
7093
|
* @summary Retrieves all project memberships for a specified project.
|
|
7045
7094
|
* @param {string} projectId The Id or slug of the project.
|
|
7046
7095
|
* @param {number} [pageNumber]
|
|
7047
|
-
* @param {number} [pageSize]
|
|
7096
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7048
7097
|
* @param {string} [orderBy]
|
|
7049
7098
|
* @param {*} [options] Override http request option.
|
|
7050
7099
|
* @throws {RequiredError}
|
|
@@ -7112,7 +7161,7 @@ export declare class ProjectMemberApi extends BaseAPI {
|
|
|
7112
7161
|
* @summary Retrieves all project memberships for a specified project.
|
|
7113
7162
|
* @param {string} projectId The Id or slug of the project.
|
|
7114
7163
|
* @param {number} [pageNumber]
|
|
7115
|
-
* @param {number} [pageSize]
|
|
7164
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7116
7165
|
* @param {string} [orderBy]
|
|
7117
7166
|
* @param {*} [options] Override http request option.
|
|
7118
7167
|
* @throws {RequiredError}
|
|
@@ -7158,7 +7207,7 @@ export declare const ProjectQuotaApiAxiosParamCreator: (configuration?: Configur
|
|
|
7158
7207
|
* @summary Retrieves all project quotas for a specified project.
|
|
7159
7208
|
* @param {string} projectId The Id or slug of the project.
|
|
7160
7209
|
* @param {number} [pageNumber]
|
|
7161
|
-
* @param {number} [pageSize]
|
|
7210
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7162
7211
|
* @param {string} [orderBy]
|
|
7163
7212
|
* @param {*} [options] Override http request option.
|
|
7164
7213
|
* @throws {RequiredError}
|
|
@@ -7202,7 +7251,7 @@ export declare const ProjectQuotaApiFp: (configuration?: Configuration) => {
|
|
|
7202
7251
|
* @summary Retrieves all project quotas for a specified project.
|
|
7203
7252
|
* @param {string} projectId The Id or slug of the project.
|
|
7204
7253
|
* @param {number} [pageNumber]
|
|
7205
|
-
* @param {number} [pageSize]
|
|
7254
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7206
7255
|
* @param {string} [orderBy]
|
|
7207
7256
|
* @param {*} [options] Override http request option.
|
|
7208
7257
|
* @throws {RequiredError}
|
|
@@ -7246,7 +7295,7 @@ export declare const ProjectQuotaApiFactory: (configuration?: Configuration, bas
|
|
|
7246
7295
|
* @summary Retrieves all project quotas for a specified project.
|
|
7247
7296
|
* @param {string} projectId The Id or slug of the project.
|
|
7248
7297
|
* @param {number} [pageNumber]
|
|
7249
|
-
* @param {number} [pageSize]
|
|
7298
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7250
7299
|
* @param {string} [orderBy]
|
|
7251
7300
|
* @param {*} [options] Override http request option.
|
|
7252
7301
|
* @throws {RequiredError}
|
|
@@ -7294,7 +7343,7 @@ export declare class ProjectQuotaApi extends BaseAPI {
|
|
|
7294
7343
|
* @summary Retrieves all project quotas for a specified project.
|
|
7295
7344
|
* @param {string} projectId The Id or slug of the project.
|
|
7296
7345
|
* @param {number} [pageNumber]
|
|
7297
|
-
* @param {number} [pageSize]
|
|
7346
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7298
7347
|
* @param {string} [orderBy]
|
|
7299
7348
|
* @param {*} [options] Override http request option.
|
|
7300
7349
|
* @throws {RequiredError}
|
|
@@ -7358,7 +7407,7 @@ export declare const ProjectResourceApiAxiosParamCreator: (configuration?: Confi
|
|
|
7358
7407
|
* @summary Retrieves all resources for a specified project.
|
|
7359
7408
|
* @param {string} projectId The Id or slug of the project.
|
|
7360
7409
|
* @param {number} [pageNumber]
|
|
7361
|
-
* @param {number} [pageSize]
|
|
7410
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7362
7411
|
* @param {string} [orderBy]
|
|
7363
7412
|
* @param {*} [options] Override http request option.
|
|
7364
7413
|
* @throws {RequiredError}
|
|
@@ -7420,7 +7469,7 @@ export declare const ProjectResourceApiFp: (configuration?: Configuration) => {
|
|
|
7420
7469
|
* @summary Retrieves all resources for a specified project.
|
|
7421
7470
|
* @param {string} projectId The Id or slug of the project.
|
|
7422
7471
|
* @param {number} [pageNumber]
|
|
7423
|
-
* @param {number} [pageSize]
|
|
7472
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7424
7473
|
* @param {string} [orderBy]
|
|
7425
7474
|
* @param {*} [options] Override http request option.
|
|
7426
7475
|
* @throws {RequiredError}
|
|
@@ -7482,7 +7531,7 @@ export declare const ProjectResourceApiFactory: (configuration?: Configuration,
|
|
|
7482
7531
|
* @summary Retrieves all resources for a specified project.
|
|
7483
7532
|
* @param {string} projectId The Id or slug of the project.
|
|
7484
7533
|
* @param {number} [pageNumber]
|
|
7485
|
-
* @param {number} [pageSize]
|
|
7534
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7486
7535
|
* @param {string} [orderBy]
|
|
7487
7536
|
* @param {*} [options] Override http request option.
|
|
7488
7537
|
* @throws {RequiredError}
|
|
@@ -7550,7 +7599,7 @@ export declare class ProjectResourceApi extends BaseAPI {
|
|
|
7550
7599
|
* @summary Retrieves all resources for a specified project.
|
|
7551
7600
|
* @param {string} projectId The Id or slug of the project.
|
|
7552
7601
|
* @param {number} [pageNumber]
|
|
7553
|
-
* @param {number} [pageSize]
|
|
7602
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
7554
7603
|
* @param {string} [orderBy]
|
|
7555
7604
|
* @param {*} [options] Override http request option.
|
|
7556
7605
|
* @throws {RequiredError}
|
|
@@ -7865,8 +7914,8 @@ export declare const ResourceTypeApiAxiosParamCreator: (configuration?: Configur
|
|
|
7865
7914
|
*
|
|
7866
7915
|
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
|
|
7867
7916
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
7868
|
-
* @param {string} domain
|
|
7869
|
-
* @param {string} accessToken
|
|
7917
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
7918
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7870
7919
|
* @param {*} [options] Override http request option.
|
|
7871
7920
|
* @throws {RequiredError}
|
|
7872
7921
|
*/
|
|
@@ -7874,8 +7923,8 @@ export declare const ResourceTypeApiAxiosParamCreator: (configuration?: Configur
|
|
|
7874
7923
|
/**
|
|
7875
7924
|
*
|
|
7876
7925
|
* @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
|
|
7877
|
-
* @param {string} domain
|
|
7878
|
-
* @param {string} accessToken
|
|
7926
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
7927
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7879
7928
|
* @param {*} [options] Override http request option.
|
|
7880
7929
|
* @throws {RequiredError}
|
|
7881
7930
|
*/
|
|
@@ -7891,8 +7940,8 @@ export declare const ResourceTypeApiAxiosParamCreator: (configuration?: Configur
|
|
|
7891
7940
|
*
|
|
7892
7941
|
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
|
|
7893
7942
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
7894
|
-
* @param {string} domain
|
|
7895
|
-
* @param {string} accessToken
|
|
7943
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
7944
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7896
7945
|
* @param {*} [options] Override http request option.
|
|
7897
7946
|
* @throws {RequiredError}
|
|
7898
7947
|
*/
|
|
@@ -7922,8 +7971,8 @@ export declare const ResourceTypeApiFp: (configuration?: Configuration) => {
|
|
|
7922
7971
|
*
|
|
7923
7972
|
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
|
|
7924
7973
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
7925
|
-
* @param {string} domain
|
|
7926
|
-
* @param {string} accessToken
|
|
7974
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
7975
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7927
7976
|
* @param {*} [options] Override http request option.
|
|
7928
7977
|
* @throws {RequiredError}
|
|
7929
7978
|
*/
|
|
@@ -7931,8 +7980,8 @@ export declare const ResourceTypeApiFp: (configuration?: Configuration) => {
|
|
|
7931
7980
|
/**
|
|
7932
7981
|
*
|
|
7933
7982
|
* @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
|
|
7934
|
-
* @param {string} domain
|
|
7935
|
-
* @param {string} accessToken
|
|
7983
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
7984
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7936
7985
|
* @param {*} [options] Override http request option.
|
|
7937
7986
|
* @throws {RequiredError}
|
|
7938
7987
|
*/
|
|
@@ -7948,8 +7997,8 @@ export declare const ResourceTypeApiFp: (configuration?: Configuration) => {
|
|
|
7948
7997
|
*
|
|
7949
7998
|
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
|
|
7950
7999
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
7951
|
-
* @param {string} domain
|
|
7952
|
-
* @param {string} accessToken
|
|
8000
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8001
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7953
8002
|
* @param {*} [options] Override http request option.
|
|
7954
8003
|
* @throws {RequiredError}
|
|
7955
8004
|
*/
|
|
@@ -7979,8 +8028,8 @@ export declare const ResourceTypeApiFactory: (configuration?: Configuration, bas
|
|
|
7979
8028
|
*
|
|
7980
8029
|
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
|
|
7981
8030
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
7982
|
-
* @param {string} domain
|
|
7983
|
-
* @param {string} accessToken
|
|
8031
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8032
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7984
8033
|
* @param {*} [options] Override http request option.
|
|
7985
8034
|
* @throws {RequiredError}
|
|
7986
8035
|
*/
|
|
@@ -7988,8 +8037,8 @@ export declare const ResourceTypeApiFactory: (configuration?: Configuration, bas
|
|
|
7988
8037
|
/**
|
|
7989
8038
|
*
|
|
7990
8039
|
* @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
|
|
7991
|
-
* @param {string} domain
|
|
7992
|
-
* @param {string} accessToken
|
|
8040
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8041
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
7993
8042
|
* @param {*} [options] Override http request option.
|
|
7994
8043
|
* @throws {RequiredError}
|
|
7995
8044
|
*/
|
|
@@ -8005,8 +8054,8 @@ export declare const ResourceTypeApiFactory: (configuration?: Configuration, bas
|
|
|
8005
8054
|
*
|
|
8006
8055
|
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
|
|
8007
8056
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
8008
|
-
* @param {string} domain
|
|
8009
|
-
* @param {string} accessToken
|
|
8057
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8058
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
8010
8059
|
* @param {*} [options] Override http request option.
|
|
8011
8060
|
* @throws {RequiredError}
|
|
8012
8061
|
*/
|
|
@@ -8039,8 +8088,8 @@ export declare class ResourceTypeApi extends BaseAPI {
|
|
|
8039
8088
|
*
|
|
8040
8089
|
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
|
|
8041
8090
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
8042
|
-
* @param {string} domain
|
|
8043
|
-
* @param {string} accessToken
|
|
8091
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8092
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
8044
8093
|
* @param {*} [options] Override http request option.
|
|
8045
8094
|
* @throws {RequiredError}
|
|
8046
8095
|
* @memberof ResourceTypeApi
|
|
@@ -8049,8 +8098,8 @@ export declare class ResourceTypeApi extends BaseAPI {
|
|
|
8049
8098
|
/**
|
|
8050
8099
|
*
|
|
8051
8100
|
* @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
|
|
8052
|
-
* @param {string} domain
|
|
8053
|
-
* @param {string} accessToken
|
|
8101
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8102
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
8054
8103
|
* @param {*} [options] Override http request option.
|
|
8055
8104
|
* @throws {RequiredError}
|
|
8056
8105
|
* @memberof ResourceTypeApi
|
|
@@ -8068,8 +8117,8 @@ export declare class ResourceTypeApi extends BaseAPI {
|
|
|
8068
8117
|
*
|
|
8069
8118
|
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
|
|
8070
8119
|
* @param {number} gitlabProjectId The ID of the GitLab project.
|
|
8071
|
-
* @param {string} domain
|
|
8072
|
-
* @param {string} accessToken
|
|
8120
|
+
* @param {string} domain Domain/Host of the GitLab Provider
|
|
8121
|
+
* @param {string} accessToken GitLab Project or Group Access Token
|
|
8073
8122
|
* @param {*} [options] Override http request option.
|
|
8074
8123
|
* @throws {RequiredError}
|
|
8075
8124
|
* @memberof ResourceTypeApi
|
|
@@ -8109,7 +8158,7 @@ export declare const RoleApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
8109
8158
|
*
|
|
8110
8159
|
* @summary Retrieves all roles.
|
|
8111
8160
|
* @param {number} [pageNumber]
|
|
8112
|
-
* @param {number} [pageSize]
|
|
8161
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8113
8162
|
* @param {string} [orderBy]
|
|
8114
8163
|
* @param {*} [options] Override http request option.
|
|
8115
8164
|
* @throws {RequiredError}
|
|
@@ -8140,7 +8189,7 @@ export declare const RoleApiFp: (configuration?: Configuration) => {
|
|
|
8140
8189
|
*
|
|
8141
8190
|
* @summary Retrieves all roles.
|
|
8142
8191
|
* @param {number} [pageNumber]
|
|
8143
|
-
* @param {number} [pageSize]
|
|
8192
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8144
8193
|
* @param {string} [orderBy]
|
|
8145
8194
|
* @param {*} [options] Override http request option.
|
|
8146
8195
|
* @throws {RequiredError}
|
|
@@ -8171,7 +8220,7 @@ export declare const RoleApiFactory: (configuration?: Configuration, basePath?:
|
|
|
8171
8220
|
*
|
|
8172
8221
|
* @summary Retrieves all roles.
|
|
8173
8222
|
* @param {number} [pageNumber]
|
|
8174
|
-
* @param {number} [pageSize]
|
|
8223
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8175
8224
|
* @param {string} [orderBy]
|
|
8176
8225
|
* @param {*} [options] Override http request option.
|
|
8177
8226
|
* @throws {RequiredError}
|
|
@@ -8206,7 +8255,7 @@ export declare class RoleApi extends BaseAPI {
|
|
|
8206
8255
|
*
|
|
8207
8256
|
* @summary Retrieves all roles.
|
|
8208
8257
|
* @param {number} [pageNumber]
|
|
8209
|
-
* @param {number} [pageSize]
|
|
8258
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8210
8259
|
* @param {string} [orderBy]
|
|
8211
8260
|
* @param {*} [options] Override http request option.
|
|
8212
8261
|
* @throws {RequiredError}
|
|
@@ -8229,12 +8278,12 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8229
8278
|
/**
|
|
8230
8279
|
*
|
|
8231
8280
|
* @summary Retrieves a search result by given search parameters.
|
|
8232
|
-
* @param {string} [query]
|
|
8233
|
-
* @param {boolean} [useAdvancedSyntax]
|
|
8234
|
-
* @param {Array<string>} [languages]
|
|
8235
|
-
* @param {SearchCategoryType} [category]
|
|
8281
|
+
* @param {string} [query] The search query
|
|
8282
|
+
* @param {boolean} [useAdvancedSyntax] Set true for advanced Elasticsearch search syntax
|
|
8283
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
8284
|
+
* @param {SearchCategoryType} [category] Set the category filter
|
|
8236
8285
|
* @param {number} [pageNumber]
|
|
8237
|
-
* @param {number} [pageSize]
|
|
8286
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8238
8287
|
* @param {string} [orderBy]
|
|
8239
8288
|
* @param {*} [options] Override http request option.
|
|
8240
8289
|
* @throws {RequiredError}
|
|
@@ -8256,12 +8305,12 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
8256
8305
|
/**
|
|
8257
8306
|
*
|
|
8258
8307
|
* @summary Retrieves a search result by given search parameters.
|
|
8259
|
-
* @param {string} [query]
|
|
8260
|
-
* @param {boolean} [useAdvancedSyntax]
|
|
8261
|
-
* @param {Array<string>} [languages]
|
|
8262
|
-
* @param {SearchCategoryType} [category]
|
|
8308
|
+
* @param {string} [query] The search query
|
|
8309
|
+
* @param {boolean} [useAdvancedSyntax] Set true for advanced Elasticsearch search syntax
|
|
8310
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
8311
|
+
* @param {SearchCategoryType} [category] Set the category filter
|
|
8263
8312
|
* @param {number} [pageNumber]
|
|
8264
|
-
* @param {number} [pageSize]
|
|
8313
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8265
8314
|
* @param {string} [orderBy]
|
|
8266
8315
|
* @param {*} [options] Override http request option.
|
|
8267
8316
|
* @throws {RequiredError}
|
|
@@ -8283,12 +8332,12 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
|
|
|
8283
8332
|
/**
|
|
8284
8333
|
*
|
|
8285
8334
|
* @summary Retrieves a search result by given search parameters.
|
|
8286
|
-
* @param {string} [query]
|
|
8287
|
-
* @param {boolean} [useAdvancedSyntax]
|
|
8288
|
-
* @param {Array<string>} [languages]
|
|
8289
|
-
* @param {SearchCategoryType} [category]
|
|
8335
|
+
* @param {string} [query] The search query
|
|
8336
|
+
* @param {boolean} [useAdvancedSyntax] Set true for advanced Elasticsearch search syntax
|
|
8337
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
8338
|
+
* @param {SearchCategoryType} [category] Set the category filter
|
|
8290
8339
|
* @param {number} [pageNumber]
|
|
8291
|
-
* @param {number} [pageSize]
|
|
8340
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8292
8341
|
* @param {string} [orderBy]
|
|
8293
8342
|
* @param {*} [options] Override http request option.
|
|
8294
8343
|
* @throws {RequiredError}
|
|
@@ -8313,12 +8362,12 @@ export declare class SearchApi extends BaseAPI {
|
|
|
8313
8362
|
/**
|
|
8314
8363
|
*
|
|
8315
8364
|
* @summary Retrieves a search result by given search parameters.
|
|
8316
|
-
* @param {string} [query]
|
|
8317
|
-
* @param {boolean} [useAdvancedSyntax]
|
|
8318
|
-
* @param {Array<string>} [languages]
|
|
8319
|
-
* @param {SearchCategoryType} [category]
|
|
8365
|
+
* @param {string} [query] The search query
|
|
8366
|
+
* @param {boolean} [useAdvancedSyntax] Set true for advanced Elasticsearch search syntax
|
|
8367
|
+
* @param {Array<string>} [languages] Set the used languages
|
|
8368
|
+
* @param {SearchCategoryType} [category] Set the category filter
|
|
8320
8369
|
* @param {number} [pageNumber]
|
|
8321
|
-
* @param {number} [pageSize]
|
|
8370
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8322
8371
|
* @param {string} [orderBy]
|
|
8323
8372
|
* @param {*} [options] Override http request option.
|
|
8324
8373
|
* @throws {RequiredError}
|
|
@@ -8599,7 +8648,7 @@ export declare const SelfApiTokenApiAxiosParamCreator: (configuration?: Configur
|
|
|
8599
8648
|
*
|
|
8600
8649
|
* @summary Retrieves all API tokens for the current authenticated user.
|
|
8601
8650
|
* @param {number} [pageNumber]
|
|
8602
|
-
* @param {number} [pageSize]
|
|
8651
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8603
8652
|
* @param {string} [orderBy]
|
|
8604
8653
|
* @param {*} [options] Override http request option.
|
|
8605
8654
|
* @throws {RequiredError}
|
|
@@ -8646,7 +8695,7 @@ export declare const SelfApiTokenApiFp: (configuration?: Configuration) => {
|
|
|
8646
8695
|
*
|
|
8647
8696
|
* @summary Retrieves all API tokens for the current authenticated user.
|
|
8648
8697
|
* @param {number} [pageNumber]
|
|
8649
|
-
* @param {number} [pageSize]
|
|
8698
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8650
8699
|
* @param {string} [orderBy]
|
|
8651
8700
|
* @param {*} [options] Override http request option.
|
|
8652
8701
|
* @throws {RequiredError}
|
|
@@ -8693,7 +8742,7 @@ export declare const SelfApiTokenApiFactory: (configuration?: Configuration, bas
|
|
|
8693
8742
|
*
|
|
8694
8743
|
* @summary Retrieves all API tokens for the current authenticated user.
|
|
8695
8744
|
* @param {number} [pageNumber]
|
|
8696
|
-
* @param {number} [pageSize]
|
|
8745
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8697
8746
|
* @param {string} [orderBy]
|
|
8698
8747
|
* @param {*} [options] Override http request option.
|
|
8699
8748
|
* @throws {RequiredError}
|
|
@@ -8744,7 +8793,7 @@ export declare class SelfApiTokenApi extends BaseAPI {
|
|
|
8744
8793
|
*
|
|
8745
8794
|
* @summary Retrieves all API tokens for the current authenticated user.
|
|
8746
8795
|
* @param {number} [pageNumber]
|
|
8747
|
-
* @param {number} [pageSize]
|
|
8796
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8748
8797
|
* @param {string} [orderBy]
|
|
8749
8798
|
* @param {*} [options] Override http request option.
|
|
8750
8799
|
* @throws {RequiredError}
|
|
@@ -8794,7 +8843,7 @@ export declare const TitleApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8794
8843
|
*
|
|
8795
8844
|
* @summary Retrieves all titles.
|
|
8796
8845
|
* @param {number} [pageNumber]
|
|
8797
|
-
* @param {number} [pageSize]
|
|
8846
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8798
8847
|
* @param {string} [orderBy]
|
|
8799
8848
|
* @param {*} [options] Override http request option.
|
|
8800
8849
|
* @throws {RequiredError}
|
|
@@ -8825,7 +8874,7 @@ export declare const TitleApiFp: (configuration?: Configuration) => {
|
|
|
8825
8874
|
*
|
|
8826
8875
|
* @summary Retrieves all titles.
|
|
8827
8876
|
* @param {number} [pageNumber]
|
|
8828
|
-
* @param {number} [pageSize]
|
|
8877
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8829
8878
|
* @param {string} [orderBy]
|
|
8830
8879
|
* @param {*} [options] Override http request option.
|
|
8831
8880
|
* @throws {RequiredError}
|
|
@@ -8856,7 +8905,7 @@ export declare const TitleApiFactory: (configuration?: Configuration, basePath?:
|
|
|
8856
8905
|
*
|
|
8857
8906
|
* @summary Retrieves all titles.
|
|
8858
8907
|
* @param {number} [pageNumber]
|
|
8859
|
-
* @param {number} [pageSize]
|
|
8908
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8860
8909
|
* @param {string} [orderBy]
|
|
8861
8910
|
* @param {*} [options] Override http request option.
|
|
8862
8911
|
* @throws {RequiredError}
|
|
@@ -8891,7 +8940,7 @@ export declare class TitleApi extends BaseAPI {
|
|
|
8891
8940
|
*
|
|
8892
8941
|
* @summary Retrieves all titles.
|
|
8893
8942
|
* @param {number} [pageNumber]
|
|
8894
|
-
* @param {number} [pageSize]
|
|
8943
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
8895
8944
|
* @param {string} [orderBy]
|
|
8896
8945
|
* @param {*} [options] Override http request option.
|
|
8897
8946
|
* @throws {RequiredError}
|
|
@@ -9014,7 +9063,7 @@ export declare const TreeApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
9014
9063
|
* @param {string} resourceId The unique identifier of the resource.
|
|
9015
9064
|
* @param {string} [path]
|
|
9016
9065
|
* @param {number} [pageNumber]
|
|
9017
|
-
* @param {number} [pageSize]
|
|
9066
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9018
9067
|
* @param {string} [orderBy]
|
|
9019
9068
|
* @param {*} [options] Override http request option.
|
|
9020
9069
|
* @throws {RequiredError}
|
|
@@ -9026,9 +9075,9 @@ export declare const TreeApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
9026
9075
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
9027
9076
|
* @param {string} resourceId The unique identifier of the resource.
|
|
9028
9077
|
* @param {string} [path]
|
|
9029
|
-
* @param {RdfFormat} [format]
|
|
9078
|
+
* @param {RdfFormat} [format] Value indicating whether to list folder contents recursively, including subfolders.
|
|
9030
9079
|
* @param {number} [pageNumber]
|
|
9031
|
-
* @param {number} [pageSize]
|
|
9080
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9032
9081
|
* @param {string} [orderBy]
|
|
9033
9082
|
* @param {*} [options] Override http request option.
|
|
9034
9083
|
* @throws {RequiredError}
|
|
@@ -9076,7 +9125,7 @@ export declare const TreeApiFp: (configuration?: Configuration) => {
|
|
|
9076
9125
|
* @param {string} resourceId The unique identifier of the resource.
|
|
9077
9126
|
* @param {string} [path]
|
|
9078
9127
|
* @param {number} [pageNumber]
|
|
9079
|
-
* @param {number} [pageSize]
|
|
9128
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9080
9129
|
* @param {string} [orderBy]
|
|
9081
9130
|
* @param {*} [options] Override http request option.
|
|
9082
9131
|
* @throws {RequiredError}
|
|
@@ -9088,9 +9137,9 @@ export declare const TreeApiFp: (configuration?: Configuration) => {
|
|
|
9088
9137
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
9089
9138
|
* @param {string} resourceId The unique identifier of the resource.
|
|
9090
9139
|
* @param {string} [path]
|
|
9091
|
-
* @param {RdfFormat} [format]
|
|
9140
|
+
* @param {RdfFormat} [format] Value indicating whether to list folder contents recursively, including subfolders.
|
|
9092
9141
|
* @param {number} [pageNumber]
|
|
9093
|
-
* @param {number} [pageSize]
|
|
9142
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9094
9143
|
* @param {string} [orderBy]
|
|
9095
9144
|
* @param {*} [options] Override http request option.
|
|
9096
9145
|
* @throws {RequiredError}
|
|
@@ -9138,7 +9187,7 @@ export declare const TreeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
9138
9187
|
* @param {string} resourceId The unique identifier of the resource.
|
|
9139
9188
|
* @param {string} [path]
|
|
9140
9189
|
* @param {number} [pageNumber]
|
|
9141
|
-
* @param {number} [pageSize]
|
|
9190
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9142
9191
|
* @param {string} [orderBy]
|
|
9143
9192
|
* @param {*} [options] Override http request option.
|
|
9144
9193
|
* @throws {RequiredError}
|
|
@@ -9150,9 +9199,9 @@ export declare const TreeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
9150
9199
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
9151
9200
|
* @param {string} resourceId The unique identifier of the resource.
|
|
9152
9201
|
* @param {string} [path]
|
|
9153
|
-
* @param {RdfFormat} [format]
|
|
9202
|
+
* @param {RdfFormat} [format] Value indicating whether to list folder contents recursively, including subfolders.
|
|
9154
9203
|
* @param {number} [pageNumber]
|
|
9155
|
-
* @param {number} [pageSize]
|
|
9204
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9156
9205
|
* @param {string} [orderBy]
|
|
9157
9206
|
* @param {*} [options] Override http request option.
|
|
9158
9207
|
* @throws {RequiredError}
|
|
@@ -9204,7 +9253,7 @@ export declare class TreeApi extends BaseAPI {
|
|
|
9204
9253
|
* @param {string} resourceId The unique identifier of the resource.
|
|
9205
9254
|
* @param {string} [path]
|
|
9206
9255
|
* @param {number} [pageNumber]
|
|
9207
|
-
* @param {number} [pageSize]
|
|
9256
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9208
9257
|
* @param {string} [orderBy]
|
|
9209
9258
|
* @param {*} [options] Override http request option.
|
|
9210
9259
|
* @throws {RequiredError}
|
|
@@ -9217,9 +9266,9 @@ export declare class TreeApi extends BaseAPI {
|
|
|
9217
9266
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
9218
9267
|
* @param {string} resourceId The unique identifier of the resource.
|
|
9219
9268
|
* @param {string} [path]
|
|
9220
|
-
* @param {RdfFormat} [format]
|
|
9269
|
+
* @param {RdfFormat} [format] Value indicating whether to list folder contents recursively, including subfolders.
|
|
9221
9270
|
* @param {number} [pageNumber]
|
|
9222
|
-
* @param {number} [pageSize]
|
|
9271
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9223
9272
|
* @param {string} [orderBy]
|
|
9224
9273
|
* @param {*} [options] Override http request option.
|
|
9225
9274
|
* @throws {RequiredError}
|
|
@@ -9346,7 +9395,7 @@ export declare const VisibilityApiAxiosParamCreator: (configuration?: Configurat
|
|
|
9346
9395
|
*
|
|
9347
9396
|
* @summary Retrieves all visibilities.
|
|
9348
9397
|
* @param {number} [pageNumber]
|
|
9349
|
-
* @param {number} [pageSize]
|
|
9398
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9350
9399
|
* @param {string} [orderBy]
|
|
9351
9400
|
* @param {*} [options] Override http request option.
|
|
9352
9401
|
* @throws {RequiredError}
|
|
@@ -9377,7 +9426,7 @@ export declare const VisibilityApiFp: (configuration?: Configuration) => {
|
|
|
9377
9426
|
*
|
|
9378
9427
|
* @summary Retrieves all visibilities.
|
|
9379
9428
|
* @param {number} [pageNumber]
|
|
9380
|
-
* @param {number} [pageSize]
|
|
9429
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9381
9430
|
* @param {string} [orderBy]
|
|
9382
9431
|
* @param {*} [options] Override http request option.
|
|
9383
9432
|
* @throws {RequiredError}
|
|
@@ -9408,7 +9457,7 @@ export declare const VisibilityApiFactory: (configuration?: Configuration, baseP
|
|
|
9408
9457
|
*
|
|
9409
9458
|
* @summary Retrieves all visibilities.
|
|
9410
9459
|
* @param {number} [pageNumber]
|
|
9411
|
-
* @param {number} [pageSize]
|
|
9460
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9412
9461
|
* @param {string} [orderBy]
|
|
9413
9462
|
* @param {*} [options] Override http request option.
|
|
9414
9463
|
* @throws {RequiredError}
|
|
@@ -9442,7 +9491,7 @@ export declare class VisibilityApi extends BaseAPI {
|
|
|
9442
9491
|
*
|
|
9443
9492
|
* @summary Retrieves all visibilities.
|
|
9444
9493
|
* @param {number} [pageNumber]
|
|
9445
|
-
* @param {number} [pageSize]
|
|
9494
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9446
9495
|
* @param {string} [orderBy]
|
|
9447
9496
|
* @param {*} [options] Override http request option.
|
|
9448
9497
|
* @throws {RequiredError}
|
|
@@ -9477,7 +9526,7 @@ export declare const VocabularyApiAxiosParamCreator: (configuration?: Configurat
|
|
|
9477
9526
|
* @param {string} [searchTerm]
|
|
9478
9527
|
* @param {AcceptedLanguage} [language]
|
|
9479
9528
|
* @param {number} [pageNumber]
|
|
9480
|
-
* @param {number} [pageSize]
|
|
9529
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9481
9530
|
* @param {string} [orderBy]
|
|
9482
9531
|
* @param {*} [options] Override http request option.
|
|
9483
9532
|
* @throws {RequiredError}
|
|
@@ -9498,13 +9547,13 @@ export declare const VocabularyApiAxiosParamCreator: (configuration?: Configurat
|
|
|
9498
9547
|
* @param {string} _class
|
|
9499
9548
|
* @param {string} [searchTerm]
|
|
9500
9549
|
* @param {AcceptedLanguage} [language]
|
|
9550
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `150`.
|
|
9501
9551
|
* @param {number} [pageNumber]
|
|
9502
|
-
* @param {number} [pageSize]
|
|
9503
9552
|
* @param {string} [orderBy]
|
|
9504
9553
|
* @param {*} [options] Override http request option.
|
|
9505
9554
|
* @throws {RequiredError}
|
|
9506
9555
|
*/
|
|
9507
|
-
getVocabularyInstances: (_class: string, searchTerm?: string, language?: AcceptedLanguage,
|
|
9556
|
+
getVocabularyInstances: (_class: string, searchTerm?: string, language?: AcceptedLanguage, pageSize?: number, pageNumber?: number, orderBy?: string, options?: any) => Promise<RequestArgs>;
|
|
9508
9557
|
};
|
|
9509
9558
|
/**
|
|
9510
9559
|
* VocabularyApi - functional programming interface
|
|
@@ -9524,7 +9573,7 @@ export declare const VocabularyApiFp: (configuration?: Configuration) => {
|
|
|
9524
9573
|
* @param {string} [searchTerm]
|
|
9525
9574
|
* @param {AcceptedLanguage} [language]
|
|
9526
9575
|
* @param {number} [pageNumber]
|
|
9527
|
-
* @param {number} [pageSize]
|
|
9576
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9528
9577
|
* @param {string} [orderBy]
|
|
9529
9578
|
* @param {*} [options] Override http request option.
|
|
9530
9579
|
* @throws {RequiredError}
|
|
@@ -9545,13 +9594,13 @@ export declare const VocabularyApiFp: (configuration?: Configuration) => {
|
|
|
9545
9594
|
* @param {string} _class
|
|
9546
9595
|
* @param {string} [searchTerm]
|
|
9547
9596
|
* @param {AcceptedLanguage} [language]
|
|
9597
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `150`.
|
|
9548
9598
|
* @param {number} [pageNumber]
|
|
9549
|
-
* @param {number} [pageSize]
|
|
9550
9599
|
* @param {string} [orderBy]
|
|
9551
9600
|
* @param {*} [options] Override http request option.
|
|
9552
9601
|
* @throws {RequiredError}
|
|
9553
9602
|
*/
|
|
9554
|
-
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage,
|
|
9603
|
+
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageSize?: number, pageNumber?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VocabularyInstanceDtoPagedResponse>>;
|
|
9555
9604
|
};
|
|
9556
9605
|
/**
|
|
9557
9606
|
* VocabularyApi - factory interface
|
|
@@ -9571,7 +9620,7 @@ export declare const VocabularyApiFactory: (configuration?: Configuration, baseP
|
|
|
9571
9620
|
* @param {string} [searchTerm]
|
|
9572
9621
|
* @param {AcceptedLanguage} [language]
|
|
9573
9622
|
* @param {number} [pageNumber]
|
|
9574
|
-
* @param {number} [pageSize]
|
|
9623
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9575
9624
|
* @param {string} [orderBy]
|
|
9576
9625
|
* @param {*} [options] Override http request option.
|
|
9577
9626
|
* @throws {RequiredError}
|
|
@@ -9592,13 +9641,13 @@ export declare const VocabularyApiFactory: (configuration?: Configuration, baseP
|
|
|
9592
9641
|
* @param {string} _class
|
|
9593
9642
|
* @param {string} [searchTerm]
|
|
9594
9643
|
* @param {AcceptedLanguage} [language]
|
|
9644
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `150`.
|
|
9595
9645
|
* @param {number} [pageNumber]
|
|
9596
|
-
* @param {number} [pageSize]
|
|
9597
9646
|
* @param {string} [orderBy]
|
|
9598
9647
|
* @param {*} [options] Override http request option.
|
|
9599
9648
|
* @throws {RequiredError}
|
|
9600
9649
|
*/
|
|
9601
|
-
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage,
|
|
9650
|
+
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageSize?: number, pageNumber?: number, orderBy?: string, options?: any): AxiosPromise<VocabularyInstanceDtoPagedResponse>;
|
|
9602
9651
|
};
|
|
9603
9652
|
/**
|
|
9604
9653
|
* VocabularyApi - object-oriented interface
|
|
@@ -9621,7 +9670,7 @@ export declare class VocabularyApi extends BaseAPI {
|
|
|
9621
9670
|
* @param {string} [searchTerm]
|
|
9622
9671
|
* @param {AcceptedLanguage} [language]
|
|
9623
9672
|
* @param {number} [pageNumber]
|
|
9624
|
-
* @param {number} [pageSize]
|
|
9673
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `50`.
|
|
9625
9674
|
* @param {string} [orderBy]
|
|
9626
9675
|
* @param {*} [options] Override http request option.
|
|
9627
9676
|
* @throws {RequiredError}
|
|
@@ -9644,12 +9693,12 @@ export declare class VocabularyApi extends BaseAPI {
|
|
|
9644
9693
|
* @param {string} _class
|
|
9645
9694
|
* @param {string} [searchTerm]
|
|
9646
9695
|
* @param {AcceptedLanguage} [language]
|
|
9696
|
+
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `150`.
|
|
9647
9697
|
* @param {number} [pageNumber]
|
|
9648
|
-
* @param {number} [pageSize]
|
|
9649
9698
|
* @param {string} [orderBy]
|
|
9650
9699
|
* @param {*} [options] Override http request option.
|
|
9651
9700
|
* @throws {RequiredError}
|
|
9652
9701
|
* @memberof VocabularyApi
|
|
9653
9702
|
*/
|
|
9654
|
-
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage,
|
|
9703
|
+
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageSize?: number, pageNumber?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<VocabularyInstanceDtoPagedResponse>>;
|
|
9655
9704
|
}
|