@coscine/api-client 3.15.0 → 3.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1350 -1164
- package/dist/types/Coscine.Api/@coscine/model/accepted-language.d.ts +2 -2
- package/dist/types/Coscine.Api/@coscine/model/coscine-http-method.d.ts +5 -5
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-options-dto.d.ts +61 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-resource-type-options-for-manipulation-dto.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-options-dto.d.ts +61 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-resource-type-options-for-manipulation-dto.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-web-options-dto.d.ts +31 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-web-resource-type-options-for-manipulation-dto.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/file-action-http-method.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/model/identity-providers.d.ts +1 -1
- package/dist/types/Coscine.Api/@coscine/model/index.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/pid-type.d.ts +2 -2
- package/dist/types/Coscine.Api/@coscine/model/quota-unit.d.ts +6 -6
- package/dist/types/Coscine.Api/@coscine/model/rdf-format.d.ts +3 -3
- package/dist/types/Coscine.Api/@coscine/model/resource-type-options-dto.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-options-for-creation-dto.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-options-for-update-dto.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-status.d.ts +2 -2
- package/dist/types/Coscine.Api/@coscine/model/search-category-type.d.ts +3 -3
- package/dist/types/apis.d.ts +6 -0
- package/dist/types/index.d.ts +12 -0
- package/package.json +1 -1
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
* @enum {string}
|
|
16
16
|
*/
|
|
17
17
|
export declare const CoscineHttpMethod: {
|
|
18
|
-
readonly
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
21
|
-
readonly
|
|
22
|
-
readonly
|
|
18
|
+
readonly GET: "GET";
|
|
19
|
+
readonly HEAD: "HEAD";
|
|
20
|
+
readonly POST: "POST";
|
|
21
|
+
readonly PUT: "PUT";
|
|
22
|
+
readonly DELETE: "DELETE";
|
|
23
23
|
};
|
|
24
24
|
export type CoscineHttpMethod = typeof CoscineHttpMethod[keyof typeof CoscineHttpMethod];
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Coscine Web API
|
|
3
|
+
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0
|
|
6
|
+
* Contact: servicedesk@itc.rwth-aachen.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { QuotaDto } from './quota-dto';
|
|
13
|
+
/**
|
|
14
|
+
* Represents the data transfer object (DTO) for DataStorage.nrw S3 options.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DataStorageNrwS3OptionsDto
|
|
17
|
+
*/
|
|
18
|
+
export interface DataStorageNrwS3OptionsDto {
|
|
19
|
+
/**
|
|
20
|
+
* The name of the bucket associated with DataStorage.nrw S3.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof DataStorageNrwS3OptionsDto
|
|
23
|
+
*/
|
|
24
|
+
'bucketName': string;
|
|
25
|
+
/**
|
|
26
|
+
* The access key for reading from the DataStorage.nrw S3 bucket.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof DataStorageNrwS3OptionsDto
|
|
29
|
+
*/
|
|
30
|
+
'accessKeyRead': string;
|
|
31
|
+
/**
|
|
32
|
+
* The secret key for reading from the DataStorage.nrw S3 bucket.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof DataStorageNrwS3OptionsDto
|
|
35
|
+
*/
|
|
36
|
+
'secretKeyRead': string;
|
|
37
|
+
/**
|
|
38
|
+
* The access key for writing to the DataStorage.nrw S3 bucket.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof DataStorageNrwS3OptionsDto
|
|
41
|
+
*/
|
|
42
|
+
'accessKeyWrite': string;
|
|
43
|
+
/**
|
|
44
|
+
* The secret key for writing to the DataStorage.nrw S3 bucket.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof DataStorageNrwS3OptionsDto
|
|
47
|
+
*/
|
|
48
|
+
'secretKeyWrite': string;
|
|
49
|
+
/**
|
|
50
|
+
* The endpoint for the DataStorage.nrw S3 bucket.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof DataStorageNrwS3OptionsDto
|
|
53
|
+
*/
|
|
54
|
+
'endpoint': string;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {QuotaDto}
|
|
58
|
+
* @memberof DataStorageNrwS3OptionsDto
|
|
59
|
+
*/
|
|
60
|
+
'size'?: QuotaDto;
|
|
61
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Coscine Web API
|
|
3
|
+
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0
|
|
6
|
+
* Contact: servicedesk@itc.rwth-aachen.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { QuotaForManipulationDto } from './quota-for-manipulation-dto';
|
|
13
|
+
/**
|
|
14
|
+
* Represents the data transfer object (DTO) for manipulating DataStorage.nrw S3 resource type options.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DataStorageNrwS3ResourceTypeOptionsForManipulationDto
|
|
17
|
+
*/
|
|
18
|
+
export interface DataStorageNrwS3ResourceTypeOptionsForManipulationDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {QuotaForManipulationDto}
|
|
22
|
+
* @memberof DataStorageNrwS3ResourceTypeOptionsForManipulationDto
|
|
23
|
+
*/
|
|
24
|
+
'quota': QuotaForManipulationDto;
|
|
25
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Coscine Web API
|
|
3
|
+
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0
|
|
6
|
+
* Contact: servicedesk@itc.rwth-aachen.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { QuotaDto } from './quota-dto';
|
|
13
|
+
/**
|
|
14
|
+
* Represents the data transfer object (DTO) for DataStorage.nrw S3 WORM options.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DataStorageNrwS3WormOptionsDto
|
|
17
|
+
*/
|
|
18
|
+
export interface DataStorageNrwS3WormOptionsDto {
|
|
19
|
+
/**
|
|
20
|
+
* The name of the bucket associated with DataStorage.nrw S3 WORM.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof DataStorageNrwS3WormOptionsDto
|
|
23
|
+
*/
|
|
24
|
+
'bucketName': string;
|
|
25
|
+
/**
|
|
26
|
+
* The access key for reading from the DataStorage.nrw S3 WORM bucket.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof DataStorageNrwS3WormOptionsDto
|
|
29
|
+
*/
|
|
30
|
+
'accessKeyRead': string;
|
|
31
|
+
/**
|
|
32
|
+
* The secret key for reading from the DataStorage.nrw S3 WORM bucket.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof DataStorageNrwS3WormOptionsDto
|
|
35
|
+
*/
|
|
36
|
+
'secretKeyRead': string;
|
|
37
|
+
/**
|
|
38
|
+
* The access key for writing to the DataStorage.nrw S3 WORM bucket.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof DataStorageNrwS3WormOptionsDto
|
|
41
|
+
*/
|
|
42
|
+
'accessKeyWrite': string;
|
|
43
|
+
/**
|
|
44
|
+
* The secret key for writing to the DataStorage.nrw S3 WORM bucket.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof DataStorageNrwS3WormOptionsDto
|
|
47
|
+
*/
|
|
48
|
+
'secretKeyWrite': string;
|
|
49
|
+
/**
|
|
50
|
+
* The endpoint for the RDS DataStorage.nrw WORM bucket.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof DataStorageNrwS3WormOptionsDto
|
|
53
|
+
*/
|
|
54
|
+
'endpoint': string;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {QuotaDto}
|
|
58
|
+
* @memberof DataStorageNrwS3WormOptionsDto
|
|
59
|
+
*/
|
|
60
|
+
'size'?: QuotaDto;
|
|
61
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Coscine Web API
|
|
3
|
+
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0
|
|
6
|
+
* Contact: servicedesk@itc.rwth-aachen.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { QuotaForManipulationDto } from './quota-for-manipulation-dto';
|
|
13
|
+
/**
|
|
14
|
+
* Represents the data transfer object (DTO) for manipulating DataStorage.nrw S3 WORM resource type options.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DataStorageNrwS3WormResourceTypeOptionsForManipulationDto
|
|
17
|
+
*/
|
|
18
|
+
export interface DataStorageNrwS3WormResourceTypeOptionsForManipulationDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {QuotaForManipulationDto}
|
|
22
|
+
* @memberof DataStorageNrwS3WormResourceTypeOptionsForManipulationDto
|
|
23
|
+
*/
|
|
24
|
+
'quota': QuotaForManipulationDto;
|
|
25
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Coscine Web API
|
|
3
|
+
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0
|
|
6
|
+
* Contact: servicedesk@itc.rwth-aachen.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { QuotaDto } from './quota-dto';
|
|
13
|
+
/**
|
|
14
|
+
* Represents the data transfer object (DTO) for DataStorage.nrw Web options.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DataStorageNrwWebOptionsDto
|
|
17
|
+
*/
|
|
18
|
+
export interface DataStorageNrwWebOptionsDto {
|
|
19
|
+
/**
|
|
20
|
+
* The name of the bucket associated with DataStorage.nrw Web.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof DataStorageNrwWebOptionsDto
|
|
23
|
+
*/
|
|
24
|
+
'bucketName': string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {QuotaDto}
|
|
28
|
+
* @memberof DataStorageNrwWebOptionsDto
|
|
29
|
+
*/
|
|
30
|
+
'size'?: QuotaDto;
|
|
31
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Coscine Web API
|
|
3
|
+
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0
|
|
6
|
+
* Contact: servicedesk@itc.rwth-aachen.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { QuotaForManipulationDto } from './quota-for-manipulation-dto';
|
|
13
|
+
/**
|
|
14
|
+
* Represents the data transfer object (DTO) for manipulating DataStorage.nrw Web resource type options.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DataStorageNrwWebResourceTypeOptionsForManipulationDto
|
|
17
|
+
*/
|
|
18
|
+
export interface DataStorageNrwWebResourceTypeOptionsForManipulationDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {QuotaForManipulationDto}
|
|
22
|
+
* @memberof DataStorageNrwWebResourceTypeOptionsForManipulationDto
|
|
23
|
+
*/
|
|
24
|
+
'quota': QuotaForManipulationDto;
|
|
25
|
+
}
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
* @enum {string}
|
|
16
16
|
*/
|
|
17
17
|
export declare const FileActionHttpMethod: {
|
|
18
|
-
readonly
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
21
|
-
readonly
|
|
18
|
+
readonly GET: "GET";
|
|
19
|
+
readonly POST: "POST";
|
|
20
|
+
readonly PUT: "PUT";
|
|
21
|
+
readonly DELETE: "DELETE";
|
|
22
22
|
};
|
|
23
23
|
export type FileActionHttpMethod = typeof FileActionHttpMethod[keyof typeof FileActionHttpMethod];
|
|
@@ -13,6 +13,12 @@ export * from './application-profile-for-creation-dto-response';
|
|
|
13
13
|
export * from './application-profile-for-resource-creation-dto';
|
|
14
14
|
export * from './application-profile-minimal-dto';
|
|
15
15
|
export * from './coscine-http-method';
|
|
16
|
+
export * from './data-storage-nrw-s3-options-dto';
|
|
17
|
+
export * from './data-storage-nrw-s3-resource-type-options-for-manipulation-dto';
|
|
18
|
+
export * from './data-storage-nrw-s3-worm-options-dto';
|
|
19
|
+
export * from './data-storage-nrw-s3-worm-resource-type-options-for-manipulation-dto';
|
|
20
|
+
export * from './data-storage-nrw-web-options-dto';
|
|
21
|
+
export * from './data-storage-nrw-web-resource-type-options-for-manipulation-dto';
|
|
16
22
|
export * from './deployed-graph-dto';
|
|
17
23
|
export * from './deployed-graph-dto-paged-response';
|
|
18
24
|
export * from './discipline-dto';
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
* @enum {string}
|
|
16
16
|
*/
|
|
17
17
|
export declare const PidType: {
|
|
18
|
-
readonly
|
|
19
|
-
readonly
|
|
18
|
+
readonly project: "project";
|
|
19
|
+
readonly resource: "resource";
|
|
20
20
|
};
|
|
21
21
|
export type PidType = typeof PidType[keyof typeof PidType];
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
* @enum {string}
|
|
16
16
|
*/
|
|
17
17
|
export declare const QuotaUnit: {
|
|
18
|
-
readonly
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
21
|
-
readonly
|
|
22
|
-
readonly
|
|
23
|
-
readonly
|
|
18
|
+
readonly https___qudt_org_vocab_unit_BYTE: "https://qudt.org/vocab/unit/BYTE";
|
|
19
|
+
readonly https___qudt_org_vocab_unit_KibiBYTE: "https://qudt.org/vocab/unit/KibiBYTE";
|
|
20
|
+
readonly https___qudt_org_vocab_unit_MebiBYTE: "https://qudt.org/vocab/unit/MebiBYTE";
|
|
21
|
+
readonly https___qudt_org_vocab_unit_GibiBYTE: "https://qudt.org/vocab/unit/GibiBYTE";
|
|
22
|
+
readonly https___qudt_org_vocab_unit_TebiBYTE: "https://qudt.org/vocab/unit/TebiBYTE";
|
|
23
|
+
readonly https___qudt_org_vocab_unit_PebiBYTE: "https://qudt.org/vocab/unit/PebiBYTE";
|
|
24
24
|
};
|
|
25
25
|
export type QuotaUnit = typeof QuotaUnit[keyof typeof QuotaUnit];
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
* @enum {string}
|
|
16
16
|
*/
|
|
17
17
|
export declare const RdfFormat: {
|
|
18
|
-
readonly
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
18
|
+
readonly text_turtle: "text/turtle";
|
|
19
|
+
readonly application_ldjson: "application/ld+json";
|
|
20
|
+
readonly application_x_trig: "application/x-trig";
|
|
21
21
|
};
|
|
22
22
|
export type RdfFormat = typeof RdfFormat[keyof typeof RdfFormat];
|
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { DataStorageNrwS3OptionsDto } from './data-storage-nrw-s3-options-dto';
|
|
13
|
+
import type { DataStorageNrwS3WormOptionsDto } from './data-storage-nrw-s3-worm-options-dto';
|
|
14
|
+
import type { DataStorageNrwWebOptionsDto } from './data-storage-nrw-web-options-dto';
|
|
12
15
|
import type { FileSystemStorageOptionsDto } from './file-system-storage-options-dto';
|
|
13
16
|
import type { GitLabOptionsDto } from './git-lab-options-dto';
|
|
14
17
|
import type { RdsOptionsDto } from './rds-options-dto';
|
|
@@ -56,4 +59,22 @@ export interface ResourceTypeOptionsDto {
|
|
|
56
59
|
* @memberof ResourceTypeOptionsDto
|
|
57
60
|
*/
|
|
58
61
|
'fileSystemStorage'?: FileSystemStorageOptionsDto;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {DataStorageNrwWebOptionsDto}
|
|
65
|
+
* @memberof ResourceTypeOptionsDto
|
|
66
|
+
*/
|
|
67
|
+
'dataStorageNrwWeb'?: DataStorageNrwWebOptionsDto;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {DataStorageNrwS3OptionsDto}
|
|
71
|
+
* @memberof ResourceTypeOptionsDto
|
|
72
|
+
*/
|
|
73
|
+
'dataStorageNrwS3'?: DataStorageNrwS3OptionsDto;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {DataStorageNrwS3WormOptionsDto}
|
|
77
|
+
* @memberof ResourceTypeOptionsDto
|
|
78
|
+
*/
|
|
79
|
+
'dataStorageNrwS3Worm'?: DataStorageNrwS3WormOptionsDto;
|
|
59
80
|
}
|
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { DataStorageNrwS3ResourceTypeOptionsForManipulationDto } from './data-storage-nrw-s3-resource-type-options-for-manipulation-dto';
|
|
13
|
+
import type { DataStorageNrwS3WormResourceTypeOptionsForManipulationDto } from './data-storage-nrw-s3-worm-resource-type-options-for-manipulation-dto';
|
|
14
|
+
import type { DataStorageNrwWebResourceTypeOptionsForManipulationDto } from './data-storage-nrw-web-resource-type-options-for-manipulation-dto';
|
|
12
15
|
import type { GitlabResourceTypeOptionsForCreationDto } from './gitlab-resource-type-options-for-creation-dto';
|
|
13
16
|
import type { RdsResourceTypeOptionsForManipulationDto } from './rds-resource-type-options-for-manipulation-dto';
|
|
14
17
|
import type { RdsS3ResourceTypeOptionsForManipulationDto } from './rds-s3-resource-type-options-for-manipulation-dto';
|
|
@@ -49,4 +52,22 @@ export interface ResourceTypeOptionsForCreationDto {
|
|
|
49
52
|
* @memberof ResourceTypeOptionsForCreationDto
|
|
50
53
|
*/
|
|
51
54
|
'rdsS3WormResourceTypeOptions'?: RdsS3WormResourceTypeOptionsForManipulationDto;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {DataStorageNrwWebResourceTypeOptionsForManipulationDto}
|
|
58
|
+
* @memberof ResourceTypeOptionsForCreationDto
|
|
59
|
+
*/
|
|
60
|
+
'dataStorageNrwWebResourceTypeOptions'?: DataStorageNrwWebResourceTypeOptionsForManipulationDto;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {DataStorageNrwS3ResourceTypeOptionsForManipulationDto}
|
|
64
|
+
* @memberof ResourceTypeOptionsForCreationDto
|
|
65
|
+
*/
|
|
66
|
+
'dataStorageNrwS3ResourceTypeOptions'?: DataStorageNrwS3ResourceTypeOptionsForManipulationDto;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {DataStorageNrwS3WormResourceTypeOptionsForManipulationDto}
|
|
70
|
+
* @memberof ResourceTypeOptionsForCreationDto
|
|
71
|
+
*/
|
|
72
|
+
'dataStorageNrwS3WormResourceTypeOptions'?: DataStorageNrwS3WormResourceTypeOptionsForManipulationDto;
|
|
52
73
|
}
|
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { DataStorageNrwS3ResourceTypeOptionsForManipulationDto } from './data-storage-nrw-s3-resource-type-options-for-manipulation-dto';
|
|
13
|
+
import type { DataStorageNrwS3WormResourceTypeOptionsForManipulationDto } from './data-storage-nrw-s3-worm-resource-type-options-for-manipulation-dto';
|
|
14
|
+
import type { DataStorageNrwWebResourceTypeOptionsForManipulationDto } from './data-storage-nrw-web-resource-type-options-for-manipulation-dto';
|
|
12
15
|
import type { GitlabResourceTypeOptionsForUpdateDto } from './gitlab-resource-type-options-for-update-dto';
|
|
13
16
|
import type { RdsResourceTypeOptionsForManipulationDto } from './rds-resource-type-options-for-manipulation-dto';
|
|
14
17
|
import type { RdsS3ResourceTypeOptionsForManipulationDto } from './rds-s3-resource-type-options-for-manipulation-dto';
|
|
@@ -49,4 +52,22 @@ export interface ResourceTypeOptionsForUpdateDto {
|
|
|
49
52
|
* @memberof ResourceTypeOptionsForUpdateDto
|
|
50
53
|
*/
|
|
51
54
|
'rdsS3WormResourceTypeOptions'?: RdsS3WormResourceTypeOptionsForManipulationDto;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {DataStorageNrwWebResourceTypeOptionsForManipulationDto}
|
|
58
|
+
* @memberof ResourceTypeOptionsForUpdateDto
|
|
59
|
+
*/
|
|
60
|
+
'dataStorageNrwWebResourceTypeOptions'?: DataStorageNrwWebResourceTypeOptionsForManipulationDto;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {DataStorageNrwS3ResourceTypeOptionsForManipulationDto}
|
|
64
|
+
* @memberof ResourceTypeOptionsForUpdateDto
|
|
65
|
+
*/
|
|
66
|
+
'dataStorageNrwS3ResourceTypeOptions'?: DataStorageNrwS3ResourceTypeOptionsForManipulationDto;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {DataStorageNrwS3WormResourceTypeOptionsForManipulationDto}
|
|
70
|
+
* @memberof ResourceTypeOptionsForUpdateDto
|
|
71
|
+
*/
|
|
72
|
+
'dataStorageNrwS3WormResourceTypeOptions'?: DataStorageNrwS3WormResourceTypeOptionsForManipulationDto;
|
|
52
73
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
* @enum {string}
|
|
16
16
|
*/
|
|
17
17
|
export declare const ResourceTypeStatus: {
|
|
18
|
-
readonly
|
|
19
|
-
readonly
|
|
18
|
+
readonly hidden: "hidden";
|
|
19
|
+
readonly active: "active";
|
|
20
20
|
};
|
|
21
21
|
export type ResourceTypeStatus = typeof ResourceTypeStatus[keyof typeof ResourceTypeStatus];
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export declare const SearchCategoryType: {
|
|
18
18
|
readonly None: "None";
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
21
|
-
readonly
|
|
19
|
+
readonly https___purl_org_coscine_terms_structureMetadata: "https://purl.org/coscine/terms/structure#Metadata";
|
|
20
|
+
readonly https___purl_org_coscine_terms_structureProject: "https://purl.org/coscine/terms/structure#Project";
|
|
21
|
+
readonly https___purl_org_coscine_terms_structureResource: "https://purl.org/coscine/terms/structure#Resource";
|
|
22
22
|
};
|
|
23
23
|
export type SearchCategoryType = typeof SearchCategoryType[keyof typeof SearchCategoryType];
|
package/dist/types/apis.d.ts
CHANGED
|
@@ -134,6 +134,12 @@ declare function implementations(axios?: AxiosInstance): {
|
|
|
134
134
|
getAllResourceTypesInformation(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").ResourceTypeInformationDtoIEnumerableResponse>;
|
|
135
135
|
getResourceTypeInformation(requestParameters: import("./Coscine.Api/api").ResourceTypeApiGetResourceTypeInformationRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").ResourceTypeInformationDtoResponse>;
|
|
136
136
|
};
|
|
137
|
+
ResourceTypeGitLabApi: {
|
|
138
|
+
apiV2ResourceTypesGitlabOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
139
|
+
getAllGitlabBranchesForProject(requestParameters: import("./Coscine.Api/api").ResourceTypeGitLabApiGetAllGitlabBranchesForProjectRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").GitlabBranchDtoIEnumerableResponse>;
|
|
140
|
+
getAllGitlabProjects(requestParameters: import("./Coscine.Api/api").ResourceTypeGitLabApiGetAllGitlabProjectsRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").GitlabProjectDtoIEnumerableResponse>;
|
|
141
|
+
getGitlabProject(requestParameters: import("./Coscine.Api/api").ResourceTypeGitLabApiGetGitlabProjectRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").GitlabProjectDtoResponse>;
|
|
142
|
+
};
|
|
137
143
|
RoleApi: {
|
|
138
144
|
apiV2RolesOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
139
145
|
getRole(requestParameters: import("./Coscine.Api/api").RoleApiGetRoleRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").RoleDtoResponse>;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -133,6 +133,12 @@ declare const apis: {
|
|
|
133
133
|
getAllResourceTypesInformation(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").ResourceTypeInformationDtoIEnumerableResponse>;
|
|
134
134
|
getResourceTypeInformation(requestParameters: import("./Coscine.Api").ResourceTypeApiGetResourceTypeInformationRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").ResourceTypeInformationDtoResponse>;
|
|
135
135
|
};
|
|
136
|
+
ResourceTypeGitLabApi: {
|
|
137
|
+
apiV2ResourceTypesGitlabOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
138
|
+
getAllGitlabBranchesForProject(requestParameters: import("./Coscine.Api").ResourceTypeGitLabApiGetAllGitlabBranchesForProjectRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").GitlabBranchDtoIEnumerableResponse>;
|
|
139
|
+
getAllGitlabProjects(requestParameters: import("./Coscine.Api").ResourceTypeGitLabApiGetAllGitlabProjectsRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").GitlabProjectDtoIEnumerableResponse>;
|
|
140
|
+
getGitlabProject(requestParameters: import("./Coscine.Api").ResourceTypeGitLabApiGetGitlabProjectRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").GitlabProjectDtoResponse>;
|
|
141
|
+
};
|
|
136
142
|
RoleApi: {
|
|
137
143
|
apiV2RolesOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
138
144
|
getRole(requestParameters: import("./Coscine.Api").RoleApiGetRoleRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").RoleDtoResponse>;
|
|
@@ -344,6 +350,12 @@ export declare const ResourceTypeApi: {
|
|
|
344
350
|
getAllResourceTypesInformation(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").ResourceTypeInformationDtoIEnumerableResponse>;
|
|
345
351
|
getResourceTypeInformation(requestParameters: import("./Coscine.Api").ResourceTypeApiGetResourceTypeInformationRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").ResourceTypeInformationDtoResponse>;
|
|
346
352
|
};
|
|
353
|
+
export declare const ResourceTypeGitLabApi: {
|
|
354
|
+
apiV2ResourceTypesGitlabOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
355
|
+
getAllGitlabBranchesForProject(requestParameters: import("./Coscine.Api").ResourceTypeGitLabApiGetAllGitlabBranchesForProjectRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").GitlabBranchDtoIEnumerableResponse>;
|
|
356
|
+
getAllGitlabProjects(requestParameters: import("./Coscine.Api").ResourceTypeGitLabApiGetAllGitlabProjectsRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").GitlabProjectDtoIEnumerableResponse>;
|
|
357
|
+
getGitlabProject(requestParameters: import("./Coscine.Api").ResourceTypeGitLabApiGetGitlabProjectRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").GitlabProjectDtoResponse>;
|
|
358
|
+
};
|
|
347
359
|
export declare const RoleApi: {
|
|
348
360
|
apiV2RolesOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
349
361
|
getRole(requestParameters: import("./Coscine.Api").RoleApiGetRoleRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").RoleDtoResponse>;
|