@coscine/api-client 3.18.0 → 3.19.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 CHANGED
@@ -1572,21 +1572,20 @@ const I = function(e, ...s) {
1572
1572
  * @param {string} resourceId The unique identifier of the resource.
1573
1573
  * @param {string} typeId The unique identifier of the datasource type.
1574
1574
  * @param {number} [quota] The allocated quota for the datasource.
1575
- * @param {DsNrwReplicationGroupDto} [replicationGroup] The replication group for the bucket.
1576
1575
  * @param {*} [options] Override http request option.
1577
1576
  * @throws {RequiredError}
1578
1577
  */
1579
- createDatasource: async (s, o, n, t, r = {}) => {
1578
+ createDatasource: async (s, o, n, t = {}) => {
1580
1579
  j("createDatasource", "resourceId", s), j("createDatasource", "typeId", o);
1581
- const a = "/api/v2/admin/resource/{resourceId}/type/{typeId}".replace("{resourceId}", encodeURIComponent(String(s))).replace("{typeId}", encodeURIComponent(String(o))), l = new URL(a, P);
1582
- let c;
1583
- e && (c = e.baseOptions);
1584
- const i = { method: "POST", ...c, ...r }, p = {}, d = {};
1585
- await m(p, "Authorization", e), n !== void 0 && (d.quota = n), t !== void 0 && (d.replicationGroup = t), I(l, d);
1586
- let h = c && c.headers ? c.headers : {};
1587
- return i.headers = { ...p, ...h, ...r.headers }, {
1588
- url: y(l),
1589
- options: i
1580
+ const r = "/api/v2/admin/resource/{resourceId}/type/{typeId}".replace("{resourceId}", encodeURIComponent(String(s))).replace("{typeId}", encodeURIComponent(String(o))), a = new URL(r, P);
1581
+ let l;
1582
+ e && (l = e.baseOptions);
1583
+ const c = { method: "POST", ...l, ...t }, i = {}, p = {};
1584
+ await m(i, "Authorization", e), n !== void 0 && (p.quota = n), I(a, p);
1585
+ let d = l && l.headers ? l.headers : {};
1586
+ return c.headers = { ...i, ...d, ...t.headers }, {
1587
+ url: y(a),
1588
+ options: c
1590
1589
  };
1591
1590
  },
1592
1591
  /**
@@ -1813,14 +1812,13 @@ const I = function(e, ...s) {
1813
1812
  * @param {string} resourceId The unique identifier of the resource.
1814
1813
  * @param {string} typeId The unique identifier of the datasource type.
1815
1814
  * @param {number} [quota] The allocated quota for the datasource.
1816
- * @param {DsNrwReplicationGroupDto} [replicationGroup] The replication group for the bucket.
1817
1815
  * @param {*} [options] Override http request option.
1818
1816
  * @throws {RequiredError}
1819
1817
  */
1820
- async createDatasource(o, n, t, r, a) {
1821
- var p, d;
1822
- const l = await s.createDatasource(o, n, t, r, a), c = (e == null ? void 0 : e.serverIndex) ?? 0, i = (d = (p = A["AdminApi.createDatasource"]) == null ? void 0 : p[c]) == null ? void 0 : d.url;
1823
- return (h, V) => b(l, O, u, e)(h, i || V);
1818
+ async createDatasource(o, n, t, r) {
1819
+ var i, p;
1820
+ const a = await s.createDatasource(o, n, t, r), l = (e == null ? void 0 : e.serverIndex) ?? 0, c = (p = (i = A["AdminApi.createDatasource"]) == null ? void 0 : i[l]) == null ? void 0 : p.url;
1821
+ return (d, h) => b(a, O, u, e)(d, c || h);
1824
1822
  },
1825
1823
  /**
1826
1824
  * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
@@ -1979,7 +1977,7 @@ const I = function(e, ...s) {
1979
1977
  * @throws {RequiredError}
1980
1978
  */
1981
1979
  createDatasource(t, r) {
1982
- return n.createDatasource(t.resourceId, t.typeId, t.quota, t.replicationGroup, r).then((a) => a(o, s));
1980
+ return n.createDatasource(t.resourceId, t.typeId, t.quota, r).then((a) => a(o, s));
1983
1981
  },
1984
1982
  /**
1985
1983
  * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
@@ -16,7 +16,6 @@ import type { ActivityLogDtoPagedResponse } from '../../@coscine/model';
16
16
  import type { CoscineHttpMethod } from '../../@coscine/model';
17
17
  import type { CreateDatasourceDtoResponse } from '../../@coscine/model';
18
18
  import type { DeployedGraphDtoPagedResponse } from '../../@coscine/model';
19
- import type { DsNrwReplicationGroupDto } from '../../@coscine/model';
20
19
  import type { MetadataUpdateAdminParameters } from '../../@coscine/model';
21
20
  import type { ProjectAdminDtoPagedResponse } from '../../@coscine/model';
22
21
  import type { RdfDefinitionDtoResponse } from '../../@coscine/model';
@@ -42,11 +41,10 @@ export declare const AdminApiAxiosParamCreator: (configuration?: Configuration)
42
41
  * @param {string} resourceId The unique identifier of the resource.
43
42
  * @param {string} typeId The unique identifier of the datasource type.
44
43
  * @param {number} [quota] The allocated quota for the datasource.
45
- * @param {DsNrwReplicationGroupDto} [replicationGroup] The replication group for the bucket.
46
44
  * @param {*} [options] Override http request option.
47
45
  * @throws {RequiredError}
48
46
  */
49
- createDatasource: (resourceId: string, typeId: string, quota?: number, replicationGroup?: DsNrwReplicationGroupDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
47
+ createDatasource: (resourceId: string, typeId: string, quota?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
50
48
  /**
51
49
  * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
52
50
  * @summary Retrieves all activity logs.
@@ -166,11 +164,10 @@ export declare const AdminApiFp: (configuration?: Configuration) => {
166
164
  * @param {string} resourceId The unique identifier of the resource.
167
165
  * @param {string} typeId The unique identifier of the datasource type.
168
166
  * @param {number} [quota] The allocated quota for the datasource.
169
- * @param {DsNrwReplicationGroupDto} [replicationGroup] The replication group for the bucket.
170
167
  * @param {*} [options] Override http request option.
171
168
  * @throws {RequiredError}
172
169
  */
173
- createDatasource(resourceId: string, typeId: string, quota?: number, replicationGroup?: DsNrwReplicationGroupDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateDatasourceDtoResponse>>;
170
+ createDatasource(resourceId: string, typeId: string, quota?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateDatasourceDtoResponse>>;
174
171
  /**
175
172
  * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
176
173
  * @summary Retrieves all activity logs.
@@ -389,12 +386,6 @@ export interface AdminApiCreateDatasourceRequest {
389
386
  * @memberof AdminApiCreateDatasource
390
387
  */
391
388
  readonly quota?: number;
392
- /**
393
- * The replication group for the bucket.
394
- * @type {DsNrwReplicationGroupDto}
395
- * @memberof AdminApiCreateDatasource
396
- */
397
- readonly replicationGroup?: DsNrwReplicationGroupDto;
398
389
  }
399
390
  /**
400
391
  * Request parameters for getAllActivityLogs operation in AdminApi.
@@ -0,0 +1,263 @@
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@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 { Configuration } from '../../configuration';
13
+ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
+ import { type RequestArgs, BaseAPI } from '../../base';
15
+ import type { DataHamsterKpiDtoIEnumerableResponse } from '../../@coscine/model';
16
+ import type { DataHamsterKpiDtoResponse } from '../../@coscine/model';
17
+ import type { StorageDataHamsterKpiDtoResponse } from '../../@coscine/model';
18
+ /**
19
+ * DataHamsterReportApi - axios parameter creator
20
+ * @export
21
+ */
22
+ export declare const DataHamsterReportApiAxiosParamCreator: (configuration?: Configuration) => {
23
+ /**
24
+ *
25
+ * @summary Responds with the HTTP methods allowed for the endpoint.
26
+ * @param {*} [options] Override http request option.
27
+ * @throws {RequiredError}
28
+ */
29
+ apiV2ReportsDataHamsterOptions: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30
+ /**
31
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
32
+ * @summary Get the number of archived resources KPI report.
33
+ * @param {*} [options] Override http request option.
34
+ * @throws {RequiredError}
35
+ */
36
+ getNumberOfArchivedResourcesKpi: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
37
+ /**
38
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
39
+ * @summary Get the number of created projects KPI report.
40
+ * @param {*} [options] Override http request option.
41
+ * @throws {RequiredError}
42
+ */
43
+ getNumberOfCreatedProjectsKpi: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44
+ /**
45
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
46
+ * @summary Get the number of created resources KPI report.
47
+ * @param {*} [options] Override http request option.
48
+ * @throws {RequiredError}
49
+ */
50
+ getNumberOfCreatedResourcesKpi: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
51
+ /**
52
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
53
+ * @summary Get the number of users per day KPI report.
54
+ * @param {*} [options] Override http request option.
55
+ * @throws {RequiredError}
56
+ */
57
+ getNumberOfUsersPerDayKpi: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58
+ /**
59
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
60
+ * @summary Get the storage usage per resource type report.
61
+ * @param {string} typeId The id of the resource type.
62
+ * @param {*} [options] Override http request option.
63
+ * @throws {RequiredError}
64
+ */
65
+ getStorageByResourceTypeKpi: (typeId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
66
+ /**
67
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
68
+ * @summary Get the number of users per ror report.
69
+ * @param {*} [options] Override http request option.
70
+ * @throws {RequiredError}
71
+ */
72
+ getUsersPerRorKpi: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
73
+ };
74
+ /**
75
+ * DataHamsterReportApi - functional programming interface
76
+ * @export
77
+ */
78
+ export declare const DataHamsterReportApiFp: (configuration?: Configuration) => {
79
+ /**
80
+ *
81
+ * @summary Responds with the HTTP methods allowed for the endpoint.
82
+ * @param {*} [options] Override http request option.
83
+ * @throws {RequiredError}
84
+ */
85
+ apiV2ReportsDataHamsterOptions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
86
+ /**
87
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
88
+ * @summary Get the number of archived resources KPI report.
89
+ * @param {*} [options] Override http request option.
90
+ * @throws {RequiredError}
91
+ */
92
+ getNumberOfArchivedResourcesKpi(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataHamsterKpiDtoResponse>>;
93
+ /**
94
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
95
+ * @summary Get the number of created projects KPI report.
96
+ * @param {*} [options] Override http request option.
97
+ * @throws {RequiredError}
98
+ */
99
+ getNumberOfCreatedProjectsKpi(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataHamsterKpiDtoResponse>>;
100
+ /**
101
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
102
+ * @summary Get the number of created resources KPI report.
103
+ * @param {*} [options] Override http request option.
104
+ * @throws {RequiredError}
105
+ */
106
+ getNumberOfCreatedResourcesKpi(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataHamsterKpiDtoResponse>>;
107
+ /**
108
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
109
+ * @summary Get the number of users per day KPI report.
110
+ * @param {*} [options] Override http request option.
111
+ * @throws {RequiredError}
112
+ */
113
+ getNumberOfUsersPerDayKpi(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataHamsterKpiDtoResponse>>;
114
+ /**
115
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
116
+ * @summary Get the storage usage per resource type report.
117
+ * @param {string} typeId The id of the resource type.
118
+ * @param {*} [options] Override http request option.
119
+ * @throws {RequiredError}
120
+ */
121
+ getStorageByResourceTypeKpi(typeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorageDataHamsterKpiDtoResponse>>;
122
+ /**
123
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
124
+ * @summary Get the number of users per ror report.
125
+ * @param {*} [options] Override http request option.
126
+ * @throws {RequiredError}
127
+ */
128
+ getUsersPerRorKpi(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataHamsterKpiDtoIEnumerableResponse>>;
129
+ };
130
+ /**
131
+ * DataHamsterReportApi - factory interface
132
+ * @export
133
+ */
134
+ export declare const DataHamsterReportApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
135
+ /**
136
+ *
137
+ * @summary Responds with the HTTP methods allowed for the endpoint.
138
+ * @param {*} [options] Override http request option.
139
+ * @throws {RequiredError}
140
+ */
141
+ apiV2ReportsDataHamsterOptions(options?: RawAxiosRequestConfig): AxiosPromise<void>;
142
+ /**
143
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
144
+ * @summary Get the number of archived resources KPI report.
145
+ * @param {*} [options] Override http request option.
146
+ * @throws {RequiredError}
147
+ */
148
+ getNumberOfArchivedResourcesKpi(options?: RawAxiosRequestConfig): AxiosPromise<DataHamsterKpiDtoResponse>;
149
+ /**
150
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
151
+ * @summary Get the number of created projects KPI report.
152
+ * @param {*} [options] Override http request option.
153
+ * @throws {RequiredError}
154
+ */
155
+ getNumberOfCreatedProjectsKpi(options?: RawAxiosRequestConfig): AxiosPromise<DataHamsterKpiDtoResponse>;
156
+ /**
157
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
158
+ * @summary Get the number of created resources KPI report.
159
+ * @param {*} [options] Override http request option.
160
+ * @throws {RequiredError}
161
+ */
162
+ getNumberOfCreatedResourcesKpi(options?: RawAxiosRequestConfig): AxiosPromise<DataHamsterKpiDtoResponse>;
163
+ /**
164
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
165
+ * @summary Get the number of users per day KPI report.
166
+ * @param {*} [options] Override http request option.
167
+ * @throws {RequiredError}
168
+ */
169
+ getNumberOfUsersPerDayKpi(options?: RawAxiosRequestConfig): AxiosPromise<DataHamsterKpiDtoResponse>;
170
+ /**
171
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
172
+ * @summary Get the storage usage per resource type report.
173
+ * @param {DataHamsterReportApiGetStorageByResourceTypeKpiRequest} requestParameters Request parameters.
174
+ * @param {*} [options] Override http request option.
175
+ * @throws {RequiredError}
176
+ */
177
+ getStorageByResourceTypeKpi(requestParameters: DataHamsterReportApiGetStorageByResourceTypeKpiRequest, options?: RawAxiosRequestConfig): AxiosPromise<StorageDataHamsterKpiDtoResponse>;
178
+ /**
179
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
180
+ * @summary Get the number of users per ror report.
181
+ * @param {*} [options] Override http request option.
182
+ * @throws {RequiredError}
183
+ */
184
+ getUsersPerRorKpi(options?: RawAxiosRequestConfig): AxiosPromise<DataHamsterKpiDtoIEnumerableResponse>;
185
+ };
186
+ /**
187
+ * Request parameters for getStorageByResourceTypeKpi operation in DataHamsterReportApi.
188
+ * @export
189
+ * @interface DataHamsterReportApiGetStorageByResourceTypeKpiRequest
190
+ */
191
+ export interface DataHamsterReportApiGetStorageByResourceTypeKpiRequest {
192
+ /**
193
+ * The id of the resource type.
194
+ * @type {string}
195
+ * @memberof DataHamsterReportApiGetStorageByResourceTypeKpi
196
+ */
197
+ readonly typeId: string;
198
+ }
199
+ /**
200
+ * DataHamsterReportApi - object-oriented interface
201
+ * @export
202
+ * @class DataHamsterReportApi
203
+ * @extends {BaseAPI}
204
+ */
205
+ export declare class DataHamsterReportApi extends BaseAPI {
206
+ /**
207
+ *
208
+ * @summary Responds with the HTTP methods allowed for the endpoint.
209
+ * @param {*} [options] Override http request option.
210
+ * @throws {RequiredError}
211
+ * @memberof DataHamsterReportApi
212
+ */
213
+ apiV2ReportsDataHamsterOptions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
214
+ /**
215
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
216
+ * @summary Get the number of archived resources KPI report.
217
+ * @param {*} [options] Override http request option.
218
+ * @throws {RequiredError}
219
+ * @memberof DataHamsterReportApi
220
+ */
221
+ getNumberOfArchivedResourcesKpi(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataHamsterKpiDtoResponse, any>>;
222
+ /**
223
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
224
+ * @summary Get the number of created projects KPI report.
225
+ * @param {*} [options] Override http request option.
226
+ * @throws {RequiredError}
227
+ * @memberof DataHamsterReportApi
228
+ */
229
+ getNumberOfCreatedProjectsKpi(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataHamsterKpiDtoResponse, any>>;
230
+ /**
231
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
232
+ * @summary Get the number of created resources KPI report.
233
+ * @param {*} [options] Override http request option.
234
+ * @throws {RequiredError}
235
+ * @memberof DataHamsterReportApi
236
+ */
237
+ getNumberOfCreatedResourcesKpi(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataHamsterKpiDtoResponse, any>>;
238
+ /**
239
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
240
+ * @summary Get the number of users per day KPI report.
241
+ * @param {*} [options] Override http request option.
242
+ * @throws {RequiredError}
243
+ * @memberof DataHamsterReportApi
244
+ */
245
+ getNumberOfUsersPerDayKpi(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataHamsterKpiDtoResponse, any>>;
246
+ /**
247
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
248
+ * @summary Get the storage usage per resource type report.
249
+ * @param {DataHamsterReportApiGetStorageByResourceTypeKpiRequest} requestParameters Request parameters.
250
+ * @param {*} [options] Override http request option.
251
+ * @throws {RequiredError}
252
+ * @memberof DataHamsterReportApi
253
+ */
254
+ getStorageByResourceTypeKpi(requestParameters: DataHamsterReportApiGetStorageByResourceTypeKpiRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageDataHamsterKpiDtoResponse, any>>;
255
+ /**
256
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
257
+ * @summary Get the number of users per ror report.
258
+ * @param {*} [options] Override http request option.
259
+ * @throws {RequiredError}
260
+ * @memberof DataHamsterReportApi
261
+ */
262
+ getUsersPerRorKpi(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataHamsterKpiDtoIEnumerableResponse, any>>;
263
+ }
@@ -0,0 +1,272 @@
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@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 { Configuration } from '../../configuration';
13
+ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
+ import { type RequestArgs, BaseAPI } from '../../base';
15
+ /**
16
+ * ReportApi - axios parameter creator
17
+ * @export
18
+ */
19
+ export declare const ReportApiAxiosParamCreator: (configuration?: Configuration) => {
20
+ /**
21
+ *
22
+ * @summary Responds with the HTTP methods allowed for the endpoint.
23
+ * @param {*} [options] Override http request option.
24
+ * @throws {RequiredError}
25
+ */
26
+ apiV2ReportsOptions: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27
+ /**
28
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
29
+ * @summary Download for the applicationprofile report.
30
+ * @param {*} [options] Override http request option.
31
+ * @throws {RequiredError}
32
+ */
33
+ getApplicationProfileReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
34
+ /**
35
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
36
+ * @summary Download for the maintenance report.
37
+ * @param {*} [options] Override http request option.
38
+ * @throws {RequiredError}
39
+ */
40
+ getMaintenanceReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41
+ /**
42
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
43
+ * @summary Download for the project quota report.
44
+ * @param {*} [options] Override http request option.
45
+ * @throws {RequiredError}
46
+ */
47
+ getProjectQuotaReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
48
+ /**
49
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
50
+ * @summary Download for the project report.
51
+ * @param {*} [options] Override http request option.
52
+ * @throws {RequiredError}
53
+ */
54
+ getProjectReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
55
+ /**
56
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
57
+ * @summary Download for the resource quota report.
58
+ * @param {*} [options] Override http request option.
59
+ * @throws {RequiredError}
60
+ */
61
+ getResourceQuotaReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
62
+ /**
63
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
64
+ * @summary Download for the resource report.
65
+ * @param {*} [options] Override http request option.
66
+ * @throws {RequiredError}
67
+ */
68
+ getResourceReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
69
+ /**
70
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
71
+ * @summary Download for the user report.
72
+ * @param {*} [options] Override http request option.
73
+ * @throws {RequiredError}
74
+ */
75
+ getUserReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
76
+ };
77
+ /**
78
+ * ReportApi - functional programming interface
79
+ * @export
80
+ */
81
+ export declare const ReportApiFp: (configuration?: Configuration) => {
82
+ /**
83
+ *
84
+ * @summary Responds with the HTTP methods allowed for the endpoint.
85
+ * @param {*} [options] Override http request option.
86
+ * @throws {RequiredError}
87
+ */
88
+ apiV2ReportsOptions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
89
+ /**
90
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
91
+ * @summary Download for the applicationprofile report.
92
+ * @param {*} [options] Override http request option.
93
+ * @throws {RequiredError}
94
+ */
95
+ getApplicationProfileReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
96
+ /**
97
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
98
+ * @summary Download for the maintenance report.
99
+ * @param {*} [options] Override http request option.
100
+ * @throws {RequiredError}
101
+ */
102
+ getMaintenanceReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
103
+ /**
104
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
105
+ * @summary Download for the project quota report.
106
+ * @param {*} [options] Override http request option.
107
+ * @throws {RequiredError}
108
+ */
109
+ getProjectQuotaReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
110
+ /**
111
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
112
+ * @summary Download for the project report.
113
+ * @param {*} [options] Override http request option.
114
+ * @throws {RequiredError}
115
+ */
116
+ getProjectReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
117
+ /**
118
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
119
+ * @summary Download for the resource quota report.
120
+ * @param {*} [options] Override http request option.
121
+ * @throws {RequiredError}
122
+ */
123
+ getResourceQuotaReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
124
+ /**
125
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
126
+ * @summary Download for the resource report.
127
+ * @param {*} [options] Override http request option.
128
+ * @throws {RequiredError}
129
+ */
130
+ getResourceReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
131
+ /**
132
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
133
+ * @summary Download for the user report.
134
+ * @param {*} [options] Override http request option.
135
+ * @throws {RequiredError}
136
+ */
137
+ getUserReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
138
+ };
139
+ /**
140
+ * ReportApi - factory interface
141
+ * @export
142
+ */
143
+ export declare const ReportApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
144
+ /**
145
+ *
146
+ * @summary Responds with the HTTP methods allowed for the endpoint.
147
+ * @param {*} [options] Override http request option.
148
+ * @throws {RequiredError}
149
+ */
150
+ apiV2ReportsOptions(options?: RawAxiosRequestConfig): AxiosPromise<void>;
151
+ /**
152
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
153
+ * @summary Download for the applicationprofile report.
154
+ * @param {*} [options] Override http request option.
155
+ * @throws {RequiredError}
156
+ */
157
+ getApplicationProfileReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
158
+ /**
159
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
160
+ * @summary Download for the maintenance report.
161
+ * @param {*} [options] Override http request option.
162
+ * @throws {RequiredError}
163
+ */
164
+ getMaintenanceReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
165
+ /**
166
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
167
+ * @summary Download for the project quota report.
168
+ * @param {*} [options] Override http request option.
169
+ * @throws {RequiredError}
170
+ */
171
+ getProjectQuotaReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
172
+ /**
173
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
174
+ * @summary Download for the project report.
175
+ * @param {*} [options] Override http request option.
176
+ * @throws {RequiredError}
177
+ */
178
+ getProjectReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
179
+ /**
180
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
181
+ * @summary Download for the resource quota report.
182
+ * @param {*} [options] Override http request option.
183
+ * @throws {RequiredError}
184
+ */
185
+ getResourceQuotaReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
186
+ /**
187
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
188
+ * @summary Download for the resource report.
189
+ * @param {*} [options] Override http request option.
190
+ * @throws {RequiredError}
191
+ */
192
+ getResourceReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
193
+ /**
194
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
195
+ * @summary Download for the user report.
196
+ * @param {*} [options] Override http request option.
197
+ * @throws {RequiredError}
198
+ */
199
+ getUserReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
200
+ };
201
+ /**
202
+ * ReportApi - object-oriented interface
203
+ * @export
204
+ * @class ReportApi
205
+ * @extends {BaseAPI}
206
+ */
207
+ export declare class ReportApi extends BaseAPI {
208
+ /**
209
+ *
210
+ * @summary Responds with the HTTP methods allowed for the endpoint.
211
+ * @param {*} [options] Override http request option.
212
+ * @throws {RequiredError}
213
+ * @memberof ReportApi
214
+ */
215
+ apiV2ReportsOptions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
216
+ /**
217
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
218
+ * @summary Download for the applicationprofile report.
219
+ * @param {*} [options] Override http request option.
220
+ * @throws {RequiredError}
221
+ * @memberof ReportApi
222
+ */
223
+ getApplicationProfileReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
224
+ /**
225
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
226
+ * @summary Download for the maintenance report.
227
+ * @param {*} [options] Override http request option.
228
+ * @throws {RequiredError}
229
+ * @memberof ReportApi
230
+ */
231
+ getMaintenanceReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
232
+ /**
233
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
234
+ * @summary Download for the project quota report.
235
+ * @param {*} [options] Override http request option.
236
+ * @throws {RequiredError}
237
+ * @memberof ReportApi
238
+ */
239
+ getProjectQuotaReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
240
+ /**
241
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
242
+ * @summary Download for the project report.
243
+ * @param {*} [options] Override http request option.
244
+ * @throws {RequiredError}
245
+ * @memberof ReportApi
246
+ */
247
+ getProjectReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
248
+ /**
249
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
250
+ * @summary Download for the resource quota report.
251
+ * @param {*} [options] Override http request option.
252
+ * @throws {RequiredError}
253
+ * @memberof ReportApi
254
+ */
255
+ getResourceQuotaReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
256
+ /**
257
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
258
+ * @summary Download for the resource report.
259
+ * @param {*} [options] Override http request option.
260
+ * @throws {RequiredError}
261
+ * @memberof ReportApi
262
+ */
263
+ getResourceReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
264
+ /**
265
+ * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
266
+ * @summary Download for the user report.
267
+ * @param {*} [options] Override http request option.
268
+ * @throws {RequiredError}
269
+ * @memberof ReportApi
270
+ */
271
+ getUserReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
272
+ }
@@ -0,0 +1,43 @@
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@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 { DataHamsterKpiDto } from './data-hamster-kpi-dto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface DataHamsterKpiDtoIEnumerableResponse
17
+ */
18
+ export interface DataHamsterKpiDtoIEnumerableResponse {
19
+ /**
20
+ *
21
+ * @type {Array<DataHamsterKpiDto>}
22
+ * @memberof DataHamsterKpiDtoIEnumerableResponse
23
+ */
24
+ 'data'?: Array<DataHamsterKpiDto> | null;
25
+ /**
26
+ *
27
+ * @type {boolean}
28
+ * @memberof DataHamsterKpiDtoIEnumerableResponse
29
+ */
30
+ 'isSuccess'?: boolean;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof DataHamsterKpiDtoIEnumerableResponse
35
+ */
36
+ 'statusCode'?: number | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof DataHamsterKpiDtoIEnumerableResponse
41
+ */
42
+ 'traceId'?: string | null;
43
+ }
@@ -0,0 +1,43 @@
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@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 { DataHamsterKpiDto } from './data-hamster-kpi-dto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface DataHamsterKpiDtoResponse
17
+ */
18
+ export interface DataHamsterKpiDtoResponse {
19
+ /**
20
+ *
21
+ * @type {DataHamsterKpiDto}
22
+ * @memberof DataHamsterKpiDtoResponse
23
+ */
24
+ 'data'?: DataHamsterKpiDto;
25
+ /**
26
+ *
27
+ * @type {boolean}
28
+ * @memberof DataHamsterKpiDtoResponse
29
+ */
30
+ 'isSuccess'?: boolean;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof DataHamsterKpiDtoResponse
35
+ */
36
+ 'statusCode'?: number | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof DataHamsterKpiDtoResponse
41
+ */
42
+ 'traceId'?: string | null;
43
+ }
@@ -0,0 +1,56 @@
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@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
+ /**
13
+ *
14
+ * @export
15
+ * @interface DataHamsterKpiDto
16
+ */
17
+ export interface DataHamsterKpiDto {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof DataHamsterKpiDto
22
+ */
23
+ 'measurementId'?: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof DataHamsterKpiDto
28
+ */
29
+ 'value'?: number | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof DataHamsterKpiDto
34
+ */
35
+ 'start'?: string | null;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof DataHamsterKpiDto
40
+ */
41
+ 'end'?: string | null;
42
+ /**
43
+ *
44
+ * @type {{ [key: string]: string; }}
45
+ * @memberof DataHamsterKpiDto
46
+ */
47
+ 'additionalInfo'?: {
48
+ [key: string]: string;
49
+ };
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof DataHamsterKpiDto
54
+ */
55
+ 'query'?: string;
56
+ }
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { DsNrwReplicationGroupDto } from './ds-nrw-replication-group-dto';
13
+ import type { LifecycleOptionsForManipulationDto } from './lifecycle-options-for-manipulation-dto';
13
14
  import type { QuotaForManipulationDto } from './quota-for-manipulation-dto';
14
15
  /**
15
16
  * Represents the data transfer object (DTO) for manipulating DataStorage.nrw S3 resource type options.
@@ -23,6 +24,12 @@ export interface DataStorageNrwS3ResourceTypeOptionsForManipulationDto {
23
24
  * @memberof DataStorageNrwS3ResourceTypeOptionsForManipulationDto
24
25
  */
25
26
  'quota': QuotaForManipulationDto;
27
+ /**
28
+ *
29
+ * @type {LifecycleOptionsForManipulationDto}
30
+ * @memberof DataStorageNrwS3ResourceTypeOptionsForManipulationDto
31
+ */
32
+ 'lifecycleOptions'?: LifecycleOptionsForManipulationDto;
26
33
  /**
27
34
  *
28
35
  * @type {DsNrwReplicationGroupDto}
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { DsNrwReplicationGroupDto } from './ds-nrw-replication-group-dto';
13
+ import type { LifecycleOptionsForManipulationDto } from './lifecycle-options-for-manipulation-dto';
13
14
  import type { QuotaForManipulationDto } from './quota-for-manipulation-dto';
14
15
  /**
15
16
  * Represents the data transfer object (DTO) for manipulating DataStorage.nrw S3 WORM resource type options.
@@ -23,6 +24,12 @@ export interface DataStorageNrwS3WormResourceTypeOptionsForManipulationDto {
23
24
  * @memberof DataStorageNrwS3WormResourceTypeOptionsForManipulationDto
24
25
  */
25
26
  'quota': QuotaForManipulationDto;
27
+ /**
28
+ *
29
+ * @type {LifecycleOptionsForManipulationDto}
30
+ * @memberof DataStorageNrwS3WormResourceTypeOptionsForManipulationDto
31
+ */
32
+ 'lifecycleOptions'?: LifecycleOptionsForManipulationDto;
26
33
  /**
27
34
  *
28
35
  * @type {DsNrwReplicationGroupDto}
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { DsNrwReplicationGroupDto } from './ds-nrw-replication-group-dto';
13
+ import type { LifecycleOptionsForManipulationDto } from './lifecycle-options-for-manipulation-dto';
13
14
  import type { QuotaForManipulationDto } from './quota-for-manipulation-dto';
14
15
  /**
15
16
  * Represents the data transfer object (DTO) for manipulating DataStorage.nrw Web resource type options.
@@ -23,6 +24,12 @@ export interface DataStorageNrwWebResourceTypeOptionsForManipulationDto {
23
24
  * @memberof DataStorageNrwWebResourceTypeOptionsForManipulationDto
24
25
  */
25
26
  'quota': QuotaForManipulationDto;
27
+ /**
28
+ *
29
+ * @type {LifecycleOptionsForManipulationDto}
30
+ * @memberof DataStorageNrwWebResourceTypeOptionsForManipulationDto
31
+ */
32
+ 'lifecycleOptions'?: LifecycleOptionsForManipulationDto;
26
33
  /**
27
34
  *
28
35
  * @type {DsNrwReplicationGroupDto}
@@ -15,6 +15,9 @@ export * from './application-profile-minimal-dto';
15
15
  export * from './coscine-http-method';
16
16
  export * from './create-datasource-dto';
17
17
  export * from './create-datasource-dto-response';
18
+ export * from './data-hamster-kpi-dto';
19
+ export * from './data-hamster-kpi-dto-ienumerable-response';
20
+ export * from './data-hamster-kpi-dto-response';
18
21
  export * from './data-storage-nrw-s3-options-dto';
19
22
  export * from './data-storage-nrw-s3-resource-type-options-for-manipulation-dto';
20
23
  export * from './data-storage-nrw-s3-worm-options-dto';
@@ -63,6 +66,7 @@ export * from './license-dto';
63
66
  export * from './license-dto-paged-response';
64
67
  export * from './license-dto-response';
65
68
  export * from './license-for-resource-manipulation-dto';
69
+ export * from './lifecycle-options-for-manipulation-dto';
66
70
  export * from './maintenance-dto';
67
71
  export * from './maintenance-dto-paged-response';
68
72
  export * from './message-dto';
@@ -172,6 +176,8 @@ export * from './search-category';
172
176
  export * from './search-category-type';
173
177
  export * from './search-result-dto';
174
178
  export * from './search-result-dto-paged-search-response';
179
+ export * from './storage-data-hamster-kpi-dto';
180
+ export * from './storage-data-hamster-kpi-dto-response';
175
181
  export * from './terms-of-service-dto';
176
182
  export * from './terms-of-service-dto-response';
177
183
  export * from './title-dto';
@@ -0,0 +1,30 @@
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@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
+ /**
13
+ * Represents the data transfer object (DTO) for manipulating lifecycle options on an S3 bucket.
14
+ * @export
15
+ * @interface LifecycleOptionsForManipulationDto
16
+ */
17
+ export interface LifecycleOptionsForManipulationDto {
18
+ /**
19
+ * Gets the number of days after which incomplete multipart uploads are automatically aborted. A value of `null` means no rule is applied.
20
+ * @type {number}
21
+ * @memberof LifecycleOptionsForManipulationDto
22
+ */
23
+ 'abortIncompleteMultipartAfterDays'?: number | null;
24
+ /**
25
+ * Gets the number of days after which noncurrent (previous) object versions expire. A value of `null` means no rule is applied.
26
+ * @type {number}
27
+ * @memberof LifecycleOptionsForManipulationDto
28
+ */
29
+ 'noncurrentVersionExpireAfterDays'?: number | null;
30
+ }
@@ -17,35 +17,35 @@ import type { TitleDto } from './title-dto';
17
17
  */
18
18
  export interface PublicUserDto {
19
19
  /**
20
- * Unique identifier of the user.
20
+ * Gets the unique identifier of the user.
21
21
  * @type {string}
22
22
  * @memberof PublicUserDto
23
23
  */
24
24
  'id': string;
25
25
  /**
26
- * Display name of the user.
26
+ * Gets the display name of the user.
27
27
  * @type {string}
28
28
  * @memberof PublicUserDto
29
29
  */
30
30
  'displayName': string;
31
31
  /**
32
- * Given name of the user.
32
+ * Gets the given name of the user.
33
33
  * @type {string}
34
34
  * @memberof PublicUserDto
35
35
  */
36
- 'givenName': string;
36
+ 'givenName'?: string | null;
37
37
  /**
38
- * Family name of the user.
38
+ * Gets the family name of the user.
39
39
  * @type {string}
40
40
  * @memberof PublicUserDto
41
41
  */
42
- 'familyName': string;
42
+ 'familyName'?: string | null;
43
43
  /**
44
- * Email address of the user.
44
+ * Gets the email address of the user.
45
45
  * @type {string}
46
46
  * @memberof PublicUserDto
47
47
  */
48
- 'email': string;
48
+ 'email'?: string | null;
49
49
  /**
50
50
  *
51
51
  * @type {TitleDto}
@@ -0,0 +1,43 @@
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@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 { StorageDataHamsterKpiDto } from './storage-data-hamster-kpi-dto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface StorageDataHamsterKpiDtoResponse
17
+ */
18
+ export interface StorageDataHamsterKpiDtoResponse {
19
+ /**
20
+ *
21
+ * @type {StorageDataHamsterKpiDto}
22
+ * @memberof StorageDataHamsterKpiDtoResponse
23
+ */
24
+ 'data'?: StorageDataHamsterKpiDto;
25
+ /**
26
+ *
27
+ * @type {boolean}
28
+ * @memberof StorageDataHamsterKpiDtoResponse
29
+ */
30
+ 'isSuccess'?: boolean;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof StorageDataHamsterKpiDtoResponse
35
+ */
36
+ 'statusCode'?: number | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof StorageDataHamsterKpiDtoResponse
41
+ */
42
+ 'traceId'?: string | null;
43
+ }
@@ -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@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 { DataHamsterKpiDto } from './data-hamster-kpi-dto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface StorageDataHamsterKpiDto
17
+ */
18
+ export interface StorageDataHamsterKpiDto {
19
+ /**
20
+ *
21
+ * @type {DataHamsterKpiDto}
22
+ * @memberof StorageDataHamsterKpiDto
23
+ */
24
+ 'reserved'?: DataHamsterKpiDto;
25
+ /**
26
+ *
27
+ * @type {DataHamsterKpiDto}
28
+ * @memberof StorageDataHamsterKpiDto
29
+ */
30
+ 'used'?: DataHamsterKpiDto;
31
+ }
@@ -27,6 +27,12 @@ export interface UserOrganizationDto {
27
27
  * @memberof UserOrganizationDto
28
28
  */
29
29
  'displayName': string;
30
+ /**
31
+ * The email address of the organization.
32
+ * @type {string}
33
+ * @memberof UserOrganizationDto
34
+ */
35
+ 'email'?: string | null;
30
36
  /**
31
37
  * Determines if the organization\'s details can be modified.
32
38
  * @type {boolean}
@@ -12,6 +12,7 @@
12
12
  export * from './@coscine/api/admin-api';
13
13
  export * from './@coscine/api/application-profile-api';
14
14
  export * from './@coscine/api/blob-api';
15
+ export * from './@coscine/api/data-hamster-report-api';
15
16
  export * from './@coscine/api/discipline-api';
16
17
  export * from './@coscine/api/handle-api';
17
18
  export * from './@coscine/api/language-api';
@@ -30,6 +31,7 @@ export * from './@coscine/api/project-resource-quota-api';
30
31
  export * from './@coscine/api/project-resource-type-api';
31
32
  export * from './@coscine/api/project-sub-projects-api';
32
33
  export * from './@coscine/api/provenance-api';
34
+ export * from './@coscine/api/report-api';
33
35
  export * from './@coscine/api/resource-api';
34
36
  export * from './@coscine/api/resource-type-api';
35
37
  export * from './@coscine/api/resource-type-git-lab-api';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@coscine/api-client",
3
3
  "type": "module",
4
- "version": "3.18.0",
4
+ "version": "3.19.0",
5
5
  "description": "This project contains the generated api client classes.",
6
6
  "keywords": [
7
7
  "coscine",