@coscine/api-client 3.0.0 → 3.1.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.
Files changed (42) hide show
  1. package/dist/index.js +1803 -1614
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.umd.js +1803 -1614
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/lib/Coscine.Api/api.js +1069 -179
  6. package/dist/lib/Coscine.Api/api.js.map +1 -1
  7. package/dist/lib/apis.js +37 -37
  8. package/dist/lib/apis.js.map +1 -1
  9. package/dist/types/Coscine.Api/api.d.ts +801 -89
  10. package/dist/types/apis.d.ts +11 -6
  11. package/dist/types/index.d.ts +22 -12
  12. package/package.json +1 -1
  13. package/dist/lib/Coscine.Api.Blob/api.js +0 -301
  14. package/dist/lib/Coscine.Api.Blob/api.js.map +0 -1
  15. package/dist/lib/Coscine.Api.Blob/base.js +0 -65
  16. package/dist/lib/Coscine.Api.Blob/base.js.map +0 -1
  17. package/dist/lib/Coscine.Api.Blob/common.js +0 -153
  18. package/dist/lib/Coscine.Api.Blob/common.js.map +0 -1
  19. package/dist/lib/Coscine.Api.Blob/configuration.js +0 -43
  20. package/dist/lib/Coscine.Api.Blob/configuration.js.map +0 -1
  21. package/dist/lib/Coscine.Api.Blob/index.js +0 -32
  22. package/dist/lib/Coscine.Api.Blob/index.js.map +0 -1
  23. package/dist/lib/Coscine.Api.Tree/api.js +0 -231
  24. package/dist/lib/Coscine.Api.Tree/api.js.map +0 -1
  25. package/dist/lib/Coscine.Api.Tree/base.js +0 -65
  26. package/dist/lib/Coscine.Api.Tree/base.js.map +0 -1
  27. package/dist/lib/Coscine.Api.Tree/common.js +0 -153
  28. package/dist/lib/Coscine.Api.Tree/common.js.map +0 -1
  29. package/dist/lib/Coscine.Api.Tree/configuration.js +0 -43
  30. package/dist/lib/Coscine.Api.Tree/configuration.js.map +0 -1
  31. package/dist/lib/Coscine.Api.Tree/index.js +0 -32
  32. package/dist/lib/Coscine.Api.Tree/index.js.map +0 -1
  33. package/dist/types/Coscine.Api.Blob/api.d.ts +0 -155
  34. package/dist/types/Coscine.Api.Blob/base.d.ts +0 -55
  35. package/dist/types/Coscine.Api.Blob/common.d.ts +0 -65
  36. package/dist/types/Coscine.Api.Blob/configuration.d.ts +0 -83
  37. package/dist/types/Coscine.Api.Blob/index.d.ts +0 -13
  38. package/dist/types/Coscine.Api.Tree/api.d.ts +0 -122
  39. package/dist/types/Coscine.Api.Tree/base.d.ts +0 -55
  40. package/dist/types/Coscine.Api.Tree/common.d.ts +0 -65
  41. package/dist/types/Coscine.Api.Tree/configuration.d.ts +0 -83
  42. package/dist/types/Coscine.Api.Tree/index.d.ts +0 -13
@@ -165,10 +165,10 @@ export interface ApplicationProfileDto {
165
165
  description?: string | null;
166
166
  /**
167
167
  *
168
- * @type {RdfFormat}
168
+ * @type {string}
169
169
  * @memberof ApplicationProfileDto
170
170
  */
171
- format?: RdfFormat;
171
+ format?: string | null;
172
172
  /**
173
173
  *
174
174
  * @type {string}
@@ -442,6 +442,92 @@ export declare enum ExternalAuthenticators {
442
442
  Shibboleth = "Shibboleth",
443
443
  OrciD = "ORCiD"
444
444
  }
445
+ /**
446
+ *
447
+ * @export
448
+ * @interface FileDto
449
+ */
450
+ export interface FileDto {
451
+ /**
452
+ *
453
+ * @type {string}
454
+ * @memberof FileDto
455
+ */
456
+ path?: string | null;
457
+ /**
458
+ *
459
+ * @type {TreeDataType}
460
+ * @memberof FileDto
461
+ */
462
+ type?: TreeDataType;
463
+ /**
464
+ *
465
+ * @type {string}
466
+ * @memberof FileDto
467
+ */
468
+ parentDirectory?: string | null;
469
+ /**
470
+ *
471
+ * @type {string}
472
+ * @memberof FileDto
473
+ */
474
+ name?: string | null;
475
+ /**
476
+ *
477
+ * @type {string}
478
+ * @memberof FileDto
479
+ */
480
+ extension?: string | null;
481
+ /**
482
+ *
483
+ * @type {number}
484
+ * @memberof FileDto
485
+ */
486
+ size?: number;
487
+ /**
488
+ *
489
+ * @type {string}
490
+ * @memberof FileDto
491
+ */
492
+ creationDate?: string | null;
493
+ /**
494
+ *
495
+ * @type {string}
496
+ * @memberof FileDto
497
+ */
498
+ changeDate?: string | null;
499
+ }
500
+ /**
501
+ *
502
+ * @export
503
+ * @interface FileDtoIEnumerablePagedResponse
504
+ */
505
+ export interface FileDtoIEnumerablePagedResponse {
506
+ /**
507
+ *
508
+ * @type {Array<FileDto>}
509
+ * @memberof FileDtoIEnumerablePagedResponse
510
+ */
511
+ data?: Array<FileDto> | null;
512
+ /**
513
+ *
514
+ * @type {number}
515
+ * @memberof FileDtoIEnumerablePagedResponse
516
+ */
517
+ statusCode?: number | null;
518
+ /**
519
+ *
520
+ * @type {boolean}
521
+ * @memberof FileDtoIEnumerablePagedResponse
522
+ */
523
+ isSuccess?: boolean;
524
+ /**
525
+ *
526
+ * @type {Pagination}
527
+ * @memberof FileDtoIEnumerablePagedResponse
528
+ */
529
+ pagination?: Pagination;
530
+ }
445
531
  /**
446
532
  *
447
533
  * @export
@@ -1013,6 +1099,155 @@ export interface MaintenanceDtoResponse {
1013
1099
  */
1014
1100
  isSuccess?: boolean;
1015
1101
  }
1102
+ /**
1103
+ *
1104
+ * @export
1105
+ * @interface MetadataDto
1106
+ */
1107
+ export interface MetadataDto {
1108
+ /**
1109
+ *
1110
+ * @type {string}
1111
+ * @memberof MetadataDto
1112
+ */
1113
+ path?: string | null;
1114
+ /**
1115
+ *
1116
+ * @type {TreeDataType}
1117
+ * @memberof MetadataDto
1118
+ */
1119
+ type?: TreeDataType;
1120
+ /**
1121
+ *
1122
+ * @type {string}
1123
+ * @memberof MetadataDto
1124
+ */
1125
+ version?: string | null;
1126
+ /**
1127
+ *
1128
+ * @type {Array<string>}
1129
+ * @memberof MetadataDto
1130
+ */
1131
+ availableVersions?: Array<string> | null;
1132
+ /**
1133
+ *
1134
+ * @type {string}
1135
+ * @memberof MetadataDto
1136
+ */
1137
+ definition?: string | null;
1138
+ /**
1139
+ *
1140
+ * @type {string}
1141
+ * @memberof MetadataDto
1142
+ */
1143
+ format?: string | null;
1144
+ }
1145
+ /**
1146
+ *
1147
+ * @export
1148
+ * @interface MetadataDtoIEnumerablePagedResponse
1149
+ */
1150
+ export interface MetadataDtoIEnumerablePagedResponse {
1151
+ /**
1152
+ *
1153
+ * @type {Array<MetadataDto>}
1154
+ * @memberof MetadataDtoIEnumerablePagedResponse
1155
+ */
1156
+ data?: Array<MetadataDto> | null;
1157
+ /**
1158
+ *
1159
+ * @type {number}
1160
+ * @memberof MetadataDtoIEnumerablePagedResponse
1161
+ */
1162
+ statusCode?: number | null;
1163
+ /**
1164
+ *
1165
+ * @type {boolean}
1166
+ * @memberof MetadataDtoIEnumerablePagedResponse
1167
+ */
1168
+ isSuccess?: boolean;
1169
+ /**
1170
+ *
1171
+ * @type {Pagination}
1172
+ * @memberof MetadataDtoIEnumerablePagedResponse
1173
+ */
1174
+ pagination?: Pagination;
1175
+ }
1176
+ /**
1177
+ *
1178
+ * @export
1179
+ * @interface MetadataDtoResponse
1180
+ */
1181
+ export interface MetadataDtoResponse {
1182
+ /**
1183
+ *
1184
+ * @type {MetadataDto}
1185
+ * @memberof MetadataDtoResponse
1186
+ */
1187
+ data?: MetadataDto;
1188
+ /**
1189
+ *
1190
+ * @type {number}
1191
+ * @memberof MetadataDtoResponse
1192
+ */
1193
+ statusCode?: number | null;
1194
+ /**
1195
+ *
1196
+ * @type {boolean}
1197
+ * @memberof MetadataDtoResponse
1198
+ */
1199
+ isSuccess?: boolean;
1200
+ }
1201
+ /**
1202
+ *
1203
+ * @export
1204
+ * @interface MetadataTreeForCreationDto
1205
+ */
1206
+ export interface MetadataTreeForCreationDto {
1207
+ /**
1208
+ *
1209
+ * @type {string}
1210
+ * @memberof MetadataTreeForCreationDto
1211
+ */
1212
+ path: string;
1213
+ /**
1214
+ *
1215
+ * @type {string}
1216
+ * @memberof MetadataTreeForCreationDto
1217
+ */
1218
+ definition: string;
1219
+ /**
1220
+ *
1221
+ * @type {RdfFormat}
1222
+ * @memberof MetadataTreeForCreationDto
1223
+ */
1224
+ format: RdfFormat;
1225
+ }
1226
+ /**
1227
+ *
1228
+ * @export
1229
+ * @interface MetadataTreeForUpdateDto
1230
+ */
1231
+ export interface MetadataTreeForUpdateDto {
1232
+ /**
1233
+ *
1234
+ * @type {string}
1235
+ * @memberof MetadataTreeForUpdateDto
1236
+ */
1237
+ path: string;
1238
+ /**
1239
+ *
1240
+ * @type {string}
1241
+ * @memberof MetadataTreeForUpdateDto
1242
+ */
1243
+ definition: string;
1244
+ /**
1245
+ *
1246
+ * @type {RdfFormat}
1247
+ * @memberof MetadataTreeForUpdateDto
1248
+ */
1249
+ format: RdfFormat;
1250
+ }
1016
1251
  /**
1017
1252
  *
1018
1253
  * @export
@@ -1243,6 +1478,12 @@ export interface ProjectDto {
1243
1478
  * @memberof ProjectDto
1244
1479
  */
1245
1480
  id?: string;
1481
+ /**
1482
+ *
1483
+ * @type {string}
1484
+ * @memberof ProjectDto
1485
+ */
1486
+ pid?: string | null;
1246
1487
  /**
1247
1488
  *
1248
1489
  * @type {string}
@@ -1315,12 +1556,6 @@ export interface ProjectDto {
1315
1556
  * @memberof ProjectDto
1316
1557
  */
1317
1558
  slug?: string | null;
1318
- /**
1319
- *
1320
- * @type {string}
1321
- * @memberof ProjectDto
1322
- */
1323
- pid?: string | null;
1324
1559
  /**
1325
1560
  *
1326
1561
  * @type {string}
@@ -2204,13 +2439,25 @@ export interface RdsS3WormOptionsDto {
2204
2439
  * @type {string}
2205
2440
  * @memberof RdsS3WormOptionsDto
2206
2441
  */
2207
- accessKey?: string | null;
2442
+ accessKeyRead?: string | null;
2443
+ /**
2444
+ *
2445
+ * @type {string}
2446
+ * @memberof RdsS3WormOptionsDto
2447
+ */
2448
+ secretKeyRead?: string | null;
2449
+ /**
2450
+ *
2451
+ * @type {string}
2452
+ * @memberof RdsS3WormOptionsDto
2453
+ */
2454
+ accessKeyWrite?: string | null;
2208
2455
  /**
2209
2456
  *
2210
2457
  * @type {string}
2211
2458
  * @memberof RdsS3WormOptionsDto
2212
2459
  */
2213
- secretKey?: string | null;
2460
+ secretKeyWrite?: string | null;
2214
2461
  /**
2215
2462
  *
2216
2463
  * @type {string}
@@ -2332,6 +2579,12 @@ export interface ResourceDto {
2332
2579
  * @memberof ResourceDto
2333
2580
  */
2334
2581
  id?: string;
2582
+ /**
2583
+ *
2584
+ * @type {string}
2585
+ * @memberof ResourceDto
2586
+ */
2587
+ pid?: string | null;
2335
2588
  /**
2336
2589
  *
2337
2590
  * @type {ResourceTypeDto}
@@ -2356,12 +2609,6 @@ export interface ResourceDto {
2356
2609
  * @memberof ResourceDto
2357
2610
  */
2358
2611
  description?: string | null;
2359
- /**
2360
- *
2361
- * @type {string}
2362
- * @memberof ResourceDto
2363
- */
2364
- pid?: string | null;
2365
2612
  /**
2366
2613
  *
2367
2614
  * @type {Array<string>}
@@ -3234,6 +3481,15 @@ export interface TitleForUserManipulationDto {
3234
3481
  */
3235
3482
  id: string;
3236
3483
  }
3484
+ /**
3485
+ *
3486
+ * @export
3487
+ * @enum {string}
3488
+ */
3489
+ export declare enum TreeDataType {
3490
+ Tree = "Tree",
3491
+ Leaf = "Leaf"
3492
+ }
3237
3493
  /**
3238
3494
  *
3239
3495
  * @export
@@ -3611,13 +3867,13 @@ export interface VocabularyDto {
3611
3867
  * @type {string}
3612
3868
  * @memberof VocabularyDto
3613
3869
  */
3614
- classUri?: string | null;
3870
+ graphUri?: string | null;
3615
3871
  /**
3616
3872
  *
3617
3873
  * @type {string}
3618
3874
  * @memberof VocabularyDto
3619
3875
  */
3620
- graphUri?: string | null;
3876
+ classUri?: string | null;
3621
3877
  /**
3622
3878
  *
3623
3879
  * @type {string}
@@ -3662,31 +3918,6 @@ export interface VocabularyDtoIEnumerablePagedResponse {
3662
3918
  */
3663
3919
  pagination?: Pagination;
3664
3920
  }
3665
- /**
3666
- *
3667
- * @export
3668
- * @interface VocabularyDtoResponse
3669
- */
3670
- export interface VocabularyDtoResponse {
3671
- /**
3672
- *
3673
- * @type {VocabularyDto}
3674
- * @memberof VocabularyDtoResponse
3675
- */
3676
- data?: VocabularyDto;
3677
- /**
3678
- *
3679
- * @type {number}
3680
- * @memberof VocabularyDtoResponse
3681
- */
3682
- statusCode?: number | null;
3683
- /**
3684
- *
3685
- * @type {boolean}
3686
- * @memberof VocabularyDtoResponse
3687
- */
3688
- isSuccess?: boolean;
3689
- }
3690
3921
  /**
3691
3922
  *
3692
3923
  * @export
@@ -3699,6 +3930,12 @@ export interface VocabularyInstanceDto {
3699
3930
  * @memberof VocabularyInstanceDto
3700
3931
  */
3701
3932
  graphUri?: string | null;
3933
+ /**
3934
+ *
3935
+ * @type {string}
3936
+ * @memberof VocabularyInstanceDto
3937
+ */
3938
+ instanceUri?: string | null;
3702
3939
  /**
3703
3940
  *
3704
3941
  * @type {string}
@@ -3756,29 +3993,54 @@ export interface VocabularyInstanceDtoIEnumerablePagedResponse {
3756
3993
  pagination?: Pagination;
3757
3994
  }
3758
3995
  /**
3759
- * ApplicationProfileApi - axios parameter creator
3996
+ *
3760
3997
  * @export
3998
+ * @interface VocabularyInstanceDtoResponse
3761
3999
  */
3762
- export declare const ApplicationProfileApiAxiosParamCreator: (configuration?: Configuration) => {
4000
+ export interface VocabularyInstanceDtoResponse {
3763
4001
  /**
3764
4002
  *
3765
- * @param {*} [options] Override http request option.
3766
- * @throws {RequiredError}
4003
+ * @type {VocabularyInstanceDto}
4004
+ * @memberof VocabularyInstanceDtoResponse
3767
4005
  */
3768
- apiV2ApplicationProfilesOptions: (options?: any) => Promise<RequestArgs>;
4006
+ data?: VocabularyInstanceDto;
3769
4007
  /**
3770
4008
  *
3771
- * @param {ApplicationProfileForCreationDto} [applicationProfileForCreationDto]
3772
- * @param {*} [options] Override http request option.
3773
- * @throws {RequiredError}
4009
+ * @type {number}
4010
+ * @memberof VocabularyInstanceDtoResponse
3774
4011
  */
3775
- createApplicationProfileRequest: (applicationProfileForCreationDto?: ApplicationProfileForCreationDto, options?: any) => Promise<RequestArgs>;
4012
+ statusCode?: number | null;
3776
4013
  /**
3777
4014
  *
3778
- * @param {string} profile
3779
- * @param {RdfFormat} [format]
3780
- * @param {AcceptedLanguage} [acceptLanguage]
3781
- * @param {*} [options] Override http request option.
4015
+ * @type {boolean}
4016
+ * @memberof VocabularyInstanceDtoResponse
4017
+ */
4018
+ isSuccess?: boolean;
4019
+ }
4020
+ /**
4021
+ * ApplicationProfileApi - axios parameter creator
4022
+ * @export
4023
+ */
4024
+ export declare const ApplicationProfileApiAxiosParamCreator: (configuration?: Configuration) => {
4025
+ /**
4026
+ *
4027
+ * @param {*} [options] Override http request option.
4028
+ * @throws {RequiredError}
4029
+ */
4030
+ apiV2ApplicationProfilesOptions: (options?: any) => Promise<RequestArgs>;
4031
+ /**
4032
+ *
4033
+ * @param {ApplicationProfileForCreationDto} [applicationProfileForCreationDto]
4034
+ * @param {*} [options] Override http request option.
4035
+ * @throws {RequiredError}
4036
+ */
4037
+ createApplicationProfileRequest: (applicationProfileForCreationDto?: ApplicationProfileForCreationDto, options?: any) => Promise<RequestArgs>;
4038
+ /**
4039
+ *
4040
+ * @param {string} profile
4041
+ * @param {RdfFormat} [format]
4042
+ * @param {AcceptedLanguage} [acceptLanguage]
4043
+ * @param {*} [options] Override http request option.
3782
4044
  * @throws {RequiredError}
3783
4045
  */
3784
4046
  getApplicationProfile: (profile: string, format?: RdfFormat, acceptLanguage?: AcceptedLanguage, options?: any) => Promise<RequestArgs>;
@@ -3946,6 +4208,221 @@ export declare class ApplicationProfileApi extends BaseAPI {
3946
4208
  */
3947
4209
  getRawApplicationProfile(profile: string, options?: any): Promise<import("axios").AxiosResponse<string>>;
3948
4210
  }
4211
+ /**
4212
+ * BlobApi - axios parameter creator
4213
+ * @export
4214
+ */
4215
+ export declare const BlobApiAxiosParamCreator: (configuration?: Configuration) => {
4216
+ /**
4217
+ *
4218
+ * @param {string} projectId
4219
+ * @param {string} resourceId
4220
+ * @param {*} [options] Override http request option.
4221
+ * @throws {RequiredError}
4222
+ */
4223
+ apiV2ProjectsProjectIdResourcesResourceIdBlobsOptions: (projectId: string, resourceId: string, options?: any) => Promise<RequestArgs>;
4224
+ /**
4225
+ *
4226
+ * @param {string} projectId
4227
+ * @param {string} resourceId
4228
+ * @param {string} key
4229
+ * @param {any} [file]
4230
+ * @param {*} [options] Override http request option.
4231
+ * @throws {RequiredError}
4232
+ */
4233
+ createBlob: (projectId: string, resourceId: string, key: string, file?: any, options?: any) => Promise<RequestArgs>;
4234
+ /**
4235
+ *
4236
+ * @param {string} projectId
4237
+ * @param {string} resourceId
4238
+ * @param {string} key
4239
+ * @param {*} [options] Override http request option.
4240
+ * @throws {RequiredError}
4241
+ */
4242
+ deleteBlob: (projectId: string, resourceId: string, key: string, options?: any) => Promise<RequestArgs>;
4243
+ /**
4244
+ *
4245
+ * @param {string} projectId
4246
+ * @param {string} resourceId
4247
+ * @param {string} key
4248
+ * @param {*} [options] Override http request option.
4249
+ * @throws {RequiredError}
4250
+ */
4251
+ getBlob: (projectId: string, resourceId: string, key: string, options?: any) => Promise<RequestArgs>;
4252
+ /**
4253
+ *
4254
+ * @param {string} projectId
4255
+ * @param {string} resourceId
4256
+ * @param {string} key
4257
+ * @param {any} [file]
4258
+ * @param {*} [options] Override http request option.
4259
+ * @throws {RequiredError}
4260
+ */
4261
+ updateBlob: (projectId: string, resourceId: string, key: string, file?: any, options?: any) => Promise<RequestArgs>;
4262
+ };
4263
+ /**
4264
+ * BlobApi - functional programming interface
4265
+ * @export
4266
+ */
4267
+ export declare const BlobApiFp: (configuration?: Configuration) => {
4268
+ /**
4269
+ *
4270
+ * @param {string} projectId
4271
+ * @param {string} resourceId
4272
+ * @param {*} [options] Override http request option.
4273
+ * @throws {RequiredError}
4274
+ */
4275
+ apiV2ProjectsProjectIdResourcesResourceIdBlobsOptions(projectId: string, resourceId: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4276
+ /**
4277
+ *
4278
+ * @param {string} projectId
4279
+ * @param {string} resourceId
4280
+ * @param {string} key
4281
+ * @param {any} [file]
4282
+ * @param {*} [options] Override http request option.
4283
+ * @throws {RequiredError}
4284
+ */
4285
+ createBlob(projectId: string, resourceId: string, key: string, file?: any, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4286
+ /**
4287
+ *
4288
+ * @param {string} projectId
4289
+ * @param {string} resourceId
4290
+ * @param {string} key
4291
+ * @param {*} [options] Override http request option.
4292
+ * @throws {RequiredError}
4293
+ */
4294
+ deleteBlob(projectId: string, resourceId: string, key: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4295
+ /**
4296
+ *
4297
+ * @param {string} projectId
4298
+ * @param {string} resourceId
4299
+ * @param {string} key
4300
+ * @param {*} [options] Override http request option.
4301
+ * @throws {RequiredError}
4302
+ */
4303
+ getBlob(projectId: string, resourceId: string, key: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
4304
+ /**
4305
+ *
4306
+ * @param {string} projectId
4307
+ * @param {string} resourceId
4308
+ * @param {string} key
4309
+ * @param {any} [file]
4310
+ * @param {*} [options] Override http request option.
4311
+ * @throws {RequiredError}
4312
+ */
4313
+ updateBlob(projectId: string, resourceId: string, key: string, file?: any, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4314
+ };
4315
+ /**
4316
+ * BlobApi - factory interface
4317
+ * @export
4318
+ */
4319
+ export declare const BlobApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4320
+ /**
4321
+ *
4322
+ * @param {string} projectId
4323
+ * @param {string} resourceId
4324
+ * @param {*} [options] Override http request option.
4325
+ * @throws {RequiredError}
4326
+ */
4327
+ apiV2ProjectsProjectIdResourcesResourceIdBlobsOptions(projectId: string, resourceId: string, options?: any): AxiosPromise<void>;
4328
+ /**
4329
+ *
4330
+ * @param {string} projectId
4331
+ * @param {string} resourceId
4332
+ * @param {string} key
4333
+ * @param {any} [file]
4334
+ * @param {*} [options] Override http request option.
4335
+ * @throws {RequiredError}
4336
+ */
4337
+ createBlob(projectId: string, resourceId: string, key: string, file?: any, options?: any): AxiosPromise<void>;
4338
+ /**
4339
+ *
4340
+ * @param {string} projectId
4341
+ * @param {string} resourceId
4342
+ * @param {string} key
4343
+ * @param {*} [options] Override http request option.
4344
+ * @throws {RequiredError}
4345
+ */
4346
+ deleteBlob(projectId: string, resourceId: string, key: string, options?: any): AxiosPromise<void>;
4347
+ /**
4348
+ *
4349
+ * @param {string} projectId
4350
+ * @param {string} resourceId
4351
+ * @param {string} key
4352
+ * @param {*} [options] Override http request option.
4353
+ * @throws {RequiredError}
4354
+ */
4355
+ getBlob(projectId: string, resourceId: string, key: string, options?: any): AxiosPromise<any>;
4356
+ /**
4357
+ *
4358
+ * @param {string} projectId
4359
+ * @param {string} resourceId
4360
+ * @param {string} key
4361
+ * @param {any} [file]
4362
+ * @param {*} [options] Override http request option.
4363
+ * @throws {RequiredError}
4364
+ */
4365
+ updateBlob(projectId: string, resourceId: string, key: string, file?: any, options?: any): AxiosPromise<void>;
4366
+ };
4367
+ /**
4368
+ * BlobApi - object-oriented interface
4369
+ * @export
4370
+ * @class BlobApi
4371
+ * @extends {BaseAPI}
4372
+ */
4373
+ export declare class BlobApi extends BaseAPI {
4374
+ /**
4375
+ *
4376
+ * @param {string} projectId
4377
+ * @param {string} resourceId
4378
+ * @param {*} [options] Override http request option.
4379
+ * @throws {RequiredError}
4380
+ * @memberof BlobApi
4381
+ */
4382
+ apiV2ProjectsProjectIdResourcesResourceIdBlobsOptions(projectId: string, resourceId: string, options?: any): Promise<import("axios").AxiosResponse<void>>;
4383
+ /**
4384
+ *
4385
+ * @param {string} projectId
4386
+ * @param {string} resourceId
4387
+ * @param {string} key
4388
+ * @param {any} [file]
4389
+ * @param {*} [options] Override http request option.
4390
+ * @throws {RequiredError}
4391
+ * @memberof BlobApi
4392
+ */
4393
+ createBlob(projectId: string, resourceId: string, key: string, file?: any, options?: any): Promise<import("axios").AxiosResponse<void>>;
4394
+ /**
4395
+ *
4396
+ * @param {string} projectId
4397
+ * @param {string} resourceId
4398
+ * @param {string} key
4399
+ * @param {*} [options] Override http request option.
4400
+ * @throws {RequiredError}
4401
+ * @memberof BlobApi
4402
+ */
4403
+ deleteBlob(projectId: string, resourceId: string, key: string, options?: any): Promise<import("axios").AxiosResponse<void>>;
4404
+ /**
4405
+ *
4406
+ * @param {string} projectId
4407
+ * @param {string} resourceId
4408
+ * @param {string} key
4409
+ * @param {*} [options] Override http request option.
4410
+ * @throws {RequiredError}
4411
+ * @memberof BlobApi
4412
+ */
4413
+ getBlob(projectId: string, resourceId: string, key: string, options?: any): Promise<import("axios").AxiosResponse<any>>;
4414
+ /**
4415
+ *
4416
+ * @param {string} projectId
4417
+ * @param {string} resourceId
4418
+ * @param {string} key
4419
+ * @param {any} [file]
4420
+ * @param {*} [options] Override http request option.
4421
+ * @throws {RequiredError}
4422
+ * @memberof BlobApi
4423
+ */
4424
+ updateBlob(projectId: string, resourceId: string, key: string, file?: any, options?: any): Promise<import("axios").AxiosResponse<void>>;
4425
+ }
3949
4426
  /**
3950
4427
  * DisciplineApi - axios parameter creator
3951
4428
  * @export
@@ -6467,6 +6944,241 @@ export declare class ToSApi extends BaseAPI {
6467
6944
  */
6468
6945
  getToS(options?: any): Promise<import("axios").AxiosResponse<TermsOfServiceDtoResponse>>;
6469
6946
  }
6947
+ /**
6948
+ * TreeApi - axios parameter creator
6949
+ * @export
6950
+ */
6951
+ export declare const TreeApiAxiosParamCreator: (configuration?: Configuration) => {
6952
+ /**
6953
+ *
6954
+ * @param {string} projectId
6955
+ * @param {string} resourceId
6956
+ * @param {*} [options] Override http request option.
6957
+ * @throws {RequiredError}
6958
+ */
6959
+ apiV2ProjectsProjectIdResourcesResourceIdTreesOptions: (projectId: string, resourceId: string, options?: any) => Promise<RequestArgs>;
6960
+ /**
6961
+ *
6962
+ * @param {string} projectId
6963
+ * @param {string} resourceId
6964
+ * @param {MetadataTreeForCreationDto} [metadataTreeForCreationDto]
6965
+ * @param {*} [options] Override http request option.
6966
+ * @throws {RequiredError}
6967
+ */
6968
+ createMetadataTree: (projectId: string, resourceId: string, metadataTreeForCreationDto?: MetadataTreeForCreationDto, options?: any) => Promise<RequestArgs>;
6969
+ /**
6970
+ *
6971
+ * @param {string} projectId
6972
+ * @param {string} resourceId
6973
+ * @param {string} [path]
6974
+ * @param {number} [pageNumber]
6975
+ * @param {number} [pageSize]
6976
+ * @param {string} [orderBy]
6977
+ * @param {*} [options] Override http request option.
6978
+ * @throws {RequiredError}
6979
+ */
6980
+ getFileTree: (projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any) => Promise<RequestArgs>;
6981
+ /**
6982
+ *
6983
+ * @param {string} projectId
6984
+ * @param {string} resourceId
6985
+ * @param {string} [path]
6986
+ * @param {RdfFormat} [format]
6987
+ * @param {number} [pageNumber]
6988
+ * @param {number} [pageSize]
6989
+ * @param {string} [orderBy]
6990
+ * @param {*} [options] Override http request option.
6991
+ * @throws {RequiredError}
6992
+ */
6993
+ getMetadataTree: (projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any) => Promise<RequestArgs>;
6994
+ /**
6995
+ *
6996
+ * @param {string} projectId
6997
+ * @param {string} resourceId
6998
+ * @param {MetadataTreeForUpdateDto} [metadataTreeForUpdateDto]
6999
+ * @param {*} [options] Override http request option.
7000
+ * @throws {RequiredError}
7001
+ */
7002
+ updateMetadataTree: (projectId: string, resourceId: string, metadataTreeForUpdateDto?: MetadataTreeForUpdateDto, options?: any) => Promise<RequestArgs>;
7003
+ };
7004
+ /**
7005
+ * TreeApi - functional programming interface
7006
+ * @export
7007
+ */
7008
+ export declare const TreeApiFp: (configuration?: Configuration) => {
7009
+ /**
7010
+ *
7011
+ * @param {string} projectId
7012
+ * @param {string} resourceId
7013
+ * @param {*} [options] Override http request option.
7014
+ * @throws {RequiredError}
7015
+ */
7016
+ apiV2ProjectsProjectIdResourcesResourceIdTreesOptions(projectId: string, resourceId: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7017
+ /**
7018
+ *
7019
+ * @param {string} projectId
7020
+ * @param {string} resourceId
7021
+ * @param {MetadataTreeForCreationDto} [metadataTreeForCreationDto]
7022
+ * @param {*} [options] Override http request option.
7023
+ * @throws {RequiredError}
7024
+ */
7025
+ createMetadataTree(projectId: string, resourceId: string, metadataTreeForCreationDto?: MetadataTreeForCreationDto, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MetadataDtoResponse>>;
7026
+ /**
7027
+ *
7028
+ * @param {string} projectId
7029
+ * @param {string} resourceId
7030
+ * @param {string} [path]
7031
+ * @param {number} [pageNumber]
7032
+ * @param {number} [pageSize]
7033
+ * @param {string} [orderBy]
7034
+ * @param {*} [options] Override http request option.
7035
+ * @throws {RequiredError}
7036
+ */
7037
+ getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileDtoIEnumerablePagedResponse>>;
7038
+ /**
7039
+ *
7040
+ * @param {string} projectId
7041
+ * @param {string} resourceId
7042
+ * @param {string} [path]
7043
+ * @param {RdfFormat} [format]
7044
+ * @param {number} [pageNumber]
7045
+ * @param {number} [pageSize]
7046
+ * @param {string} [orderBy]
7047
+ * @param {*} [options] Override http request option.
7048
+ * @throws {RequiredError}
7049
+ */
7050
+ getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MetadataDtoIEnumerablePagedResponse>>;
7051
+ /**
7052
+ *
7053
+ * @param {string} projectId
7054
+ * @param {string} resourceId
7055
+ * @param {MetadataTreeForUpdateDto} [metadataTreeForUpdateDto]
7056
+ * @param {*} [options] Override http request option.
7057
+ * @throws {RequiredError}
7058
+ */
7059
+ updateMetadataTree(projectId: string, resourceId: string, metadataTreeForUpdateDto?: MetadataTreeForUpdateDto, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7060
+ };
7061
+ /**
7062
+ * TreeApi - factory interface
7063
+ * @export
7064
+ */
7065
+ export declare const TreeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7066
+ /**
7067
+ *
7068
+ * @param {string} projectId
7069
+ * @param {string} resourceId
7070
+ * @param {*} [options] Override http request option.
7071
+ * @throws {RequiredError}
7072
+ */
7073
+ apiV2ProjectsProjectIdResourcesResourceIdTreesOptions(projectId: string, resourceId: string, options?: any): AxiosPromise<void>;
7074
+ /**
7075
+ *
7076
+ * @param {string} projectId
7077
+ * @param {string} resourceId
7078
+ * @param {MetadataTreeForCreationDto} [metadataTreeForCreationDto]
7079
+ * @param {*} [options] Override http request option.
7080
+ * @throws {RequiredError}
7081
+ */
7082
+ createMetadataTree(projectId: string, resourceId: string, metadataTreeForCreationDto?: MetadataTreeForCreationDto, options?: any): AxiosPromise<MetadataDtoResponse>;
7083
+ /**
7084
+ *
7085
+ * @param {string} projectId
7086
+ * @param {string} resourceId
7087
+ * @param {string} [path]
7088
+ * @param {number} [pageNumber]
7089
+ * @param {number} [pageSize]
7090
+ * @param {string} [orderBy]
7091
+ * @param {*} [options] Override http request option.
7092
+ * @throws {RequiredError}
7093
+ */
7094
+ getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<FileDtoIEnumerablePagedResponse>;
7095
+ /**
7096
+ *
7097
+ * @param {string} projectId
7098
+ * @param {string} resourceId
7099
+ * @param {string} [path]
7100
+ * @param {RdfFormat} [format]
7101
+ * @param {number} [pageNumber]
7102
+ * @param {number} [pageSize]
7103
+ * @param {string} [orderBy]
7104
+ * @param {*} [options] Override http request option.
7105
+ * @throws {RequiredError}
7106
+ */
7107
+ getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<MetadataDtoIEnumerablePagedResponse>;
7108
+ /**
7109
+ *
7110
+ * @param {string} projectId
7111
+ * @param {string} resourceId
7112
+ * @param {MetadataTreeForUpdateDto} [metadataTreeForUpdateDto]
7113
+ * @param {*} [options] Override http request option.
7114
+ * @throws {RequiredError}
7115
+ */
7116
+ updateMetadataTree(projectId: string, resourceId: string, metadataTreeForUpdateDto?: MetadataTreeForUpdateDto, options?: any): AxiosPromise<void>;
7117
+ };
7118
+ /**
7119
+ * TreeApi - object-oriented interface
7120
+ * @export
7121
+ * @class TreeApi
7122
+ * @extends {BaseAPI}
7123
+ */
7124
+ export declare class TreeApi extends BaseAPI {
7125
+ /**
7126
+ *
7127
+ * @param {string} projectId
7128
+ * @param {string} resourceId
7129
+ * @param {*} [options] Override http request option.
7130
+ * @throws {RequiredError}
7131
+ * @memberof TreeApi
7132
+ */
7133
+ apiV2ProjectsProjectIdResourcesResourceIdTreesOptions(projectId: string, resourceId: string, options?: any): Promise<import("axios").AxiosResponse<void>>;
7134
+ /**
7135
+ *
7136
+ * @param {string} projectId
7137
+ * @param {string} resourceId
7138
+ * @param {MetadataTreeForCreationDto} [metadataTreeForCreationDto]
7139
+ * @param {*} [options] Override http request option.
7140
+ * @throws {RequiredError}
7141
+ * @memberof TreeApi
7142
+ */
7143
+ createMetadataTree(projectId: string, resourceId: string, metadataTreeForCreationDto?: MetadataTreeForCreationDto, options?: any): Promise<import("axios").AxiosResponse<MetadataDtoResponse>>;
7144
+ /**
7145
+ *
7146
+ * @param {string} projectId
7147
+ * @param {string} resourceId
7148
+ * @param {string} [path]
7149
+ * @param {number} [pageNumber]
7150
+ * @param {number} [pageSize]
7151
+ * @param {string} [orderBy]
7152
+ * @param {*} [options] Override http request option.
7153
+ * @throws {RequiredError}
7154
+ * @memberof TreeApi
7155
+ */
7156
+ getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<FileDtoIEnumerablePagedResponse>>;
7157
+ /**
7158
+ *
7159
+ * @param {string} projectId
7160
+ * @param {string} resourceId
7161
+ * @param {string} [path]
7162
+ * @param {RdfFormat} [format]
7163
+ * @param {number} [pageNumber]
7164
+ * @param {number} [pageSize]
7165
+ * @param {string} [orderBy]
7166
+ * @param {*} [options] Override http request option.
7167
+ * @throws {RequiredError}
7168
+ * @memberof TreeApi
7169
+ */
7170
+ getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<MetadataDtoIEnumerablePagedResponse>>;
7171
+ /**
7172
+ *
7173
+ * @param {string} projectId
7174
+ * @param {string} resourceId
7175
+ * @param {MetadataTreeForUpdateDto} [metadataTreeForUpdateDto]
7176
+ * @param {*} [options] Override http request option.
7177
+ * @throws {RequiredError}
7178
+ * @memberof TreeApi
7179
+ */
7180
+ updateMetadataTree(projectId: string, resourceId: string, metadataTreeForUpdateDto?: MetadataTreeForUpdateDto, options?: any): Promise<import("axios").AxiosResponse<void>>;
7181
+ }
6470
7182
  /**
6471
7183
  * UserApi - axios parameter creator
6472
7184
  * @export
@@ -6991,14 +7703,6 @@ export declare const VocabularyApiAxiosParamCreator: (configuration?: Configurat
6991
7703
  * @throws {RequiredError}
6992
7704
  */
6993
7705
  apiV2VocabulariesOptions: (options?: any) => Promise<RequestArgs>;
6994
- /**
6995
- *
6996
- * @param {string} instance
6997
- * @param {AcceptedLanguage} [acceptLanguage]
6998
- * @param {*} [options] Override http request option.
6999
- * @throws {RequiredError}
7000
- */
7001
- getInstance: (instance: string, acceptLanguage?: AcceptedLanguage, options?: any) => Promise<RequestArgs>;
7002
7706
  /**
7003
7707
  *
7004
7708
  * @param {string} [searchTerm]
@@ -7010,6 +7714,14 @@ export declare const VocabularyApiAxiosParamCreator: (configuration?: Configurat
7010
7714
  * @throws {RequiredError}
7011
7715
  */
7012
7716
  getVocabularies: (searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any) => Promise<RequestArgs>;
7717
+ /**
7718
+ *
7719
+ * @param {string} instance
7720
+ * @param {AcceptedLanguage} [acceptLanguage]
7721
+ * @param {*} [options] Override http request option.
7722
+ * @throws {RequiredError}
7723
+ */
7724
+ getVocabularyInstance: (instance: string, acceptLanguage?: AcceptedLanguage, options?: any) => Promise<RequestArgs>;
7013
7725
  /**
7014
7726
  *
7015
7727
  * @param {string} _class
@@ -7034,14 +7746,6 @@ export declare const VocabularyApiFp: (configuration?: Configuration) => {
7034
7746
  * @throws {RequiredError}
7035
7747
  */
7036
7748
  apiV2VocabulariesOptions(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7037
- /**
7038
- *
7039
- * @param {string} instance
7040
- * @param {AcceptedLanguage} [acceptLanguage]
7041
- * @param {*} [options] Override http request option.
7042
- * @throws {RequiredError}
7043
- */
7044
- getInstance(instance: string, acceptLanguage?: AcceptedLanguage, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VocabularyDtoResponse>>;
7045
7749
  /**
7046
7750
  *
7047
7751
  * @param {string} [searchTerm]
@@ -7053,6 +7757,14 @@ export declare const VocabularyApiFp: (configuration?: Configuration) => {
7053
7757
  * @throws {RequiredError}
7054
7758
  */
7055
7759
  getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VocabularyDtoIEnumerablePagedResponse>>;
7760
+ /**
7761
+ *
7762
+ * @param {string} instance
7763
+ * @param {AcceptedLanguage} [acceptLanguage]
7764
+ * @param {*} [options] Override http request option.
7765
+ * @throws {RequiredError}
7766
+ */
7767
+ getVocabularyInstance(instance: string, acceptLanguage?: AcceptedLanguage, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VocabularyInstanceDtoResponse>>;
7056
7768
  /**
7057
7769
  *
7058
7770
  * @param {string} _class
@@ -7077,14 +7789,6 @@ export declare const VocabularyApiFactory: (configuration?: Configuration, baseP
7077
7789
  * @throws {RequiredError}
7078
7790
  */
7079
7791
  apiV2VocabulariesOptions(options?: any): AxiosPromise<void>;
7080
- /**
7081
- *
7082
- * @param {string} instance
7083
- * @param {AcceptedLanguage} [acceptLanguage]
7084
- * @param {*} [options] Override http request option.
7085
- * @throws {RequiredError}
7086
- */
7087
- getInstance(instance: string, acceptLanguage?: AcceptedLanguage, options?: any): AxiosPromise<VocabularyDtoResponse>;
7088
7792
  /**
7089
7793
  *
7090
7794
  * @param {string} [searchTerm]
@@ -7096,6 +7800,14 @@ export declare const VocabularyApiFactory: (configuration?: Configuration, baseP
7096
7800
  * @throws {RequiredError}
7097
7801
  */
7098
7802
  getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<VocabularyDtoIEnumerablePagedResponse>;
7803
+ /**
7804
+ *
7805
+ * @param {string} instance
7806
+ * @param {AcceptedLanguage} [acceptLanguage]
7807
+ * @param {*} [options] Override http request option.
7808
+ * @throws {RequiredError}
7809
+ */
7810
+ getVocabularyInstance(instance: string, acceptLanguage?: AcceptedLanguage, options?: any): AxiosPromise<VocabularyInstanceDtoResponse>;
7099
7811
  /**
7100
7812
  *
7101
7813
  * @param {string} _class
@@ -7123,15 +7835,6 @@ export declare class VocabularyApi extends BaseAPI {
7123
7835
  * @memberof VocabularyApi
7124
7836
  */
7125
7837
  apiV2VocabulariesOptions(options?: any): Promise<import("axios").AxiosResponse<void>>;
7126
- /**
7127
- *
7128
- * @param {string} instance
7129
- * @param {AcceptedLanguage} [acceptLanguage]
7130
- * @param {*} [options] Override http request option.
7131
- * @throws {RequiredError}
7132
- * @memberof VocabularyApi
7133
- */
7134
- getInstance(instance: string, acceptLanguage?: AcceptedLanguage, options?: any): Promise<import("axios").AxiosResponse<VocabularyDtoResponse>>;
7135
7838
  /**
7136
7839
  *
7137
7840
  * @param {string} [searchTerm]
@@ -7144,6 +7847,15 @@ export declare class VocabularyApi extends BaseAPI {
7144
7847
  * @memberof VocabularyApi
7145
7848
  */
7146
7849
  getVocabularies(searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<import("axios").AxiosResponse<VocabularyDtoIEnumerablePagedResponse>>;
7850
+ /**
7851
+ *
7852
+ * @param {string} instance
7853
+ * @param {AcceptedLanguage} [acceptLanguage]
7854
+ * @param {*} [options] Override http request option.
7855
+ * @throws {RequiredError}
7856
+ * @memberof VocabularyApi
7857
+ */
7858
+ getVocabularyInstance(instance: string, acceptLanguage?: AcceptedLanguage, options?: any): Promise<import("axios").AxiosResponse<VocabularyInstanceDtoResponse>>;
7147
7859
  /**
7148
7860
  *
7149
7861
  * @param {string} _class