@coscine/api-client 3.20.0 → 3.21.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 +3251 -2611
- package/dist/types/Coscine.Api/@coscine/api/admin-api.d.ts +10 -2
- package/dist/types/Coscine.Api/@coscine/api/self-api.d.ts +29 -0
- package/dist/types/Coscine.Api/@coscine/model/user-dto.d.ts +7 -1
- package/dist/types/apis.d.ts +20 -0
- package/dist/types/index.d.ts +40 -0
- package/package.json +1 -1
|
@@ -91,12 +91,13 @@ export declare const AdminApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
91
91
|
* @summary Retrieves all users.
|
|
92
92
|
* @param {boolean} [tosAccepted] Gets or sets a value indicating whether the terms of service have been accepted by the user.
|
|
93
93
|
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `250`.
|
|
94
|
+
* @param {boolean} [dataProcessingConsentGranted] Gets or sets a value indicating whether the personal data processing consent have been granted by the user.
|
|
94
95
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
95
96
|
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
96
97
|
* @param {*} [options] Override http request option.
|
|
97
98
|
* @throws {RequiredError}
|
|
98
99
|
*/
|
|
99
|
-
getAllUsers: (tosAccepted?: boolean, pageSize?: number, pageNumber?: number, orderBy?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
100
|
+
getAllUsers: (tosAccepted?: boolean, pageSize?: number, dataProcessingConsentGranted?: boolean, pageNumber?: number, orderBy?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
100
101
|
/**
|
|
101
102
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
102
103
|
* @summary Gets all deployed graphs.
|
|
@@ -213,12 +214,13 @@ export declare const AdminApiFp: (configuration?: Configuration) => {
|
|
|
213
214
|
* @summary Retrieves all users.
|
|
214
215
|
* @param {boolean} [tosAccepted] Gets or sets a value indicating whether the terms of service have been accepted by the user.
|
|
215
216
|
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is `250`.
|
|
217
|
+
* @param {boolean} [dataProcessingConsentGranted] Gets or sets a value indicating whether the personal data processing consent have been granted by the user.
|
|
216
218
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
217
219
|
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
218
220
|
* @param {*} [options] Override http request option.
|
|
219
221
|
* @throws {RequiredError}
|
|
220
222
|
*/
|
|
221
|
-
getAllUsers(tosAccepted?: boolean, pageSize?: number, pageNumber?: number, orderBy?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDtoPagedResponse>>;
|
|
223
|
+
getAllUsers(tosAccepted?: boolean, pageSize?: number, dataProcessingConsentGranted?: boolean, pageNumber?: number, orderBy?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDtoPagedResponse>>;
|
|
222
224
|
/**
|
|
223
225
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
224
226
|
* @summary Gets all deployed graphs.
|
|
@@ -487,6 +489,12 @@ export interface AdminApiGetAllUsersRequest {
|
|
|
487
489
|
* Number of items per page. The maximum number of items per page is `250`.
|
|
488
490
|
*/
|
|
489
491
|
readonly pageSize?: number;
|
|
492
|
+
/**
|
|
493
|
+
* Gets or sets a value indicating whether the personal data processing consent have been granted by the user.
|
|
494
|
+
* @type {boolean}
|
|
495
|
+
* @memberof AdminApiGetAllUsers
|
|
496
|
+
*/
|
|
497
|
+
readonly dataProcessingConsentGranted?: boolean;
|
|
490
498
|
/**
|
|
491
499
|
* The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
492
500
|
*/
|
|
@@ -52,6 +52,13 @@ export declare const SelfApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
52
52
|
* @throws {RequiredError}
|
|
53
53
|
*/
|
|
54
54
|
getCurrentUser: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @summary Gives the consent for data processing for the current authenticated user.
|
|
58
|
+
* @param {*} [options] Override http request option.
|
|
59
|
+
* @throws {RequiredError}
|
|
60
|
+
*/
|
|
61
|
+
giveDataProcessingConsent: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
62
|
/**
|
|
56
63
|
*
|
|
57
64
|
* @summary Initiates user merging for the current user.
|
|
@@ -111,6 +118,13 @@ export declare const SelfApiFp: (configuration?: Configuration) => {
|
|
|
111
118
|
* @throws {RequiredError}
|
|
112
119
|
*/
|
|
113
120
|
getCurrentUser(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDtoResponse>>;
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @summary Gives the consent for data processing for the current authenticated user.
|
|
124
|
+
* @param {*} [options] Override http request option.
|
|
125
|
+
* @throws {RequiredError}
|
|
126
|
+
*/
|
|
127
|
+
giveDataProcessingConsent(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
114
128
|
/**
|
|
115
129
|
*
|
|
116
130
|
* @summary Initiates user merging for the current user.
|
|
@@ -170,6 +184,13 @@ export declare const SelfApiFactory: (configuration?: Configuration, basePath?:
|
|
|
170
184
|
* @throws {RequiredError}
|
|
171
185
|
*/
|
|
172
186
|
getCurrentUser(options?: RawAxiosRequestConfig): AxiosPromise<UserDtoResponse>;
|
|
187
|
+
/**
|
|
188
|
+
*
|
|
189
|
+
* @summary Gives the consent for data processing for the current authenticated user.
|
|
190
|
+
* @param {*} [options] Override http request option.
|
|
191
|
+
* @throws {RequiredError}
|
|
192
|
+
*/
|
|
193
|
+
giveDataProcessingConsent(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
173
194
|
/**
|
|
174
195
|
*
|
|
175
196
|
* @summary Initiates user merging for the current user.
|
|
@@ -271,6 +292,14 @@ export declare class SelfApi extends BaseAPI {
|
|
|
271
292
|
* @throws {RequiredError}
|
|
272
293
|
*/
|
|
273
294
|
getCurrentUser(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserDtoResponse, any>>;
|
|
295
|
+
/**
|
|
296
|
+
*
|
|
297
|
+
* @summary Gives the consent for data processing for the current authenticated user.
|
|
298
|
+
* @param {*} [options] Override http request option.
|
|
299
|
+
* @throws {RequiredError}
|
|
300
|
+
* @memberof SelfApi
|
|
301
|
+
*/
|
|
302
|
+
giveDataProcessingConsent(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
274
303
|
/**
|
|
275
304
|
*
|
|
276
305
|
* @summary Initiates user merging for the current user.
|
|
@@ -63,7 +63,13 @@ export interface UserDto {
|
|
|
63
63
|
*/
|
|
64
64
|
'identities': Array<IdentityProviderDto>;
|
|
65
65
|
/**
|
|
66
|
-
|
|
66
|
+
/** The coscine roles associated with the user.
|
|
67
67
|
*/
|
|
68
68
|
'roles'?: Array<CoscineRoleDto>;
|
|
69
|
+
/**
|
|
70
|
+
* The date and time when the user give consent to the proccessing of data.
|
|
71
|
+
* @type {string}
|
|
72
|
+
* @memberof UserDto
|
|
73
|
+
*/
|
|
74
|
+
'dataProcessingConsentAt'?: string | null;
|
|
69
75
|
}
|
package/dist/types/apis.d.ts
CHANGED
|
@@ -31,6 +31,15 @@ declare function implementations(axios?: AxiosInstance): {
|
|
|
31
31
|
getBlob(requestParameters: import("./Coscine.Api/api").BlobApiGetBlobRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<File>;
|
|
32
32
|
updateBlob(requestParameters: import("./Coscine.Api/api").BlobApiUpdateBlobRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
33
33
|
};
|
|
34
|
+
DataHamsterReportApi: {
|
|
35
|
+
apiV2ReportsDataHamsterOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
36
|
+
getNumberOfArchivedResourcesKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoResponse>;
|
|
37
|
+
getNumberOfCreatedProjectsKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoResponse>;
|
|
38
|
+
getNumberOfCreatedResourcesKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoResponse>;
|
|
39
|
+
getNumberOfUsersPerDayKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoResponse>;
|
|
40
|
+
getStorageByResourceTypeKpi(requestParameters: import("./Coscine.Api/api").DataHamsterReportApiGetStorageByResourceTypeKpiRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").StorageDataHamsterKpiDtoResponse>;
|
|
41
|
+
getUsersPerRorKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoIEnumerableResponse>;
|
|
42
|
+
};
|
|
34
43
|
DisciplineApi: {
|
|
35
44
|
apiV2DisciplinesOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
36
45
|
getDiscipline(requestParameters: import("./Coscine.Api/api").DisciplineApiGetDisciplineRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DisciplineDtoResponse>;
|
|
@@ -136,6 +145,16 @@ declare function implementations(axios?: AxiosInstance): {
|
|
|
136
145
|
apiV2ProjectsProjectIdSubprojectsOptions(requestParameters: import("./Coscine.Api/api").ProjectSubProjectsApiApiV2ProjectsProjectIdSubprojectsOptionsRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
137
146
|
getSubProjectsForProject(requestParameters: import("./Coscine.Api/api").ProjectSubProjectsApiGetSubProjectsForProjectRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").ProjectDtoPagedResponse>;
|
|
138
147
|
};
|
|
148
|
+
ReportApi: {
|
|
149
|
+
apiV2ReportsOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
150
|
+
getApplicationProfileReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
151
|
+
getMaintenanceReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
152
|
+
getProjectQuotaReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
153
|
+
getProjectReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
154
|
+
getResourceQuotaReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
155
|
+
getResourceReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
156
|
+
getUserReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
157
|
+
};
|
|
139
158
|
ResourceApi: {
|
|
140
159
|
apiV2ResourcesOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
141
160
|
getResource(requestParameters: import("./Coscine.Api/api").ResourceApiGetResourceRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").ResourceDtoResponse>;
|
|
@@ -165,6 +184,7 @@ declare function implementations(axios?: AxiosInstance): {
|
|
|
165
184
|
apiV2SelfOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
166
185
|
confirmUserEmail(requestParameters: import("./Coscine.Api/api").SelfApiConfirmUserEmailRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
167
186
|
getCurrentUser(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").UserDtoResponse>;
|
|
187
|
+
giveDataProcessingConsent(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
168
188
|
initiateUserMerge(requestParameters: import("./Coscine.Api/api").SelfApiInitiateUserMergeRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").UserMergeDtoResponse>;
|
|
169
189
|
resolveProjectInvitation(requestParameters?: import("./Coscine.Api/api").SelfApiResolveProjectInvitationRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
170
190
|
updateCurrentUser(requestParameters?: import("./Coscine.Api/api").SelfApiUpdateCurrentUserRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -30,6 +30,15 @@ declare const apis: {
|
|
|
30
30
|
getBlob(requestParameters: import("./Coscine.Api").BlobApiGetBlobRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<File>;
|
|
31
31
|
updateBlob(requestParameters: import("./Coscine.Api").BlobApiUpdateBlobRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
32
32
|
};
|
|
33
|
+
DataHamsterReportApi: {
|
|
34
|
+
apiV2ReportsDataHamsterOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
35
|
+
getNumberOfArchivedResourcesKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoResponse>;
|
|
36
|
+
getNumberOfCreatedProjectsKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoResponse>;
|
|
37
|
+
getNumberOfCreatedResourcesKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoResponse>;
|
|
38
|
+
getNumberOfUsersPerDayKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoResponse>;
|
|
39
|
+
getStorageByResourceTypeKpi(requestParameters: import("./Coscine.Api").DataHamsterReportApiGetStorageByResourceTypeKpiRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").StorageDataHamsterKpiDtoResponse>;
|
|
40
|
+
getUsersPerRorKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoIEnumerableResponse>;
|
|
41
|
+
};
|
|
33
42
|
DisciplineApi: {
|
|
34
43
|
apiV2DisciplinesOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
35
44
|
getDiscipline(requestParameters: import("./Coscine.Api").DisciplineApiGetDisciplineRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DisciplineDtoResponse>;
|
|
@@ -135,6 +144,16 @@ declare const apis: {
|
|
|
135
144
|
apiV2ProjectsProjectIdSubprojectsOptions(requestParameters: import("./Coscine.Api").ProjectSubProjectsApiApiV2ProjectsProjectIdSubprojectsOptionsRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
136
145
|
getSubProjectsForProject(requestParameters: import("./Coscine.Api").ProjectSubProjectsApiGetSubProjectsForProjectRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").ProjectDtoPagedResponse>;
|
|
137
146
|
};
|
|
147
|
+
ReportApi: {
|
|
148
|
+
apiV2ReportsOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
149
|
+
getApplicationProfileReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
150
|
+
getMaintenanceReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
151
|
+
getProjectQuotaReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
152
|
+
getProjectReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
153
|
+
getResourceQuotaReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
154
|
+
getResourceReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
155
|
+
getUserReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
156
|
+
};
|
|
138
157
|
ResourceApi: {
|
|
139
158
|
apiV2ResourcesOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
140
159
|
getResource(requestParameters: import("./Coscine.Api").ResourceApiGetResourceRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").ResourceDtoResponse>;
|
|
@@ -164,6 +183,7 @@ declare const apis: {
|
|
|
164
183
|
apiV2SelfOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
165
184
|
confirmUserEmail(requestParameters: import("./Coscine.Api").SelfApiConfirmUserEmailRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
166
185
|
getCurrentUser(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").UserDtoResponse>;
|
|
186
|
+
giveDataProcessingConsent(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
167
187
|
initiateUserMerge(requestParameters: import("./Coscine.Api").SelfApiInitiateUserMergeRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").UserMergeDtoResponse>;
|
|
168
188
|
resolveProjectInvitation(requestParameters?: import("./Coscine.Api").SelfApiResolveProjectInvitationRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
169
189
|
updateCurrentUser(requestParameters?: import("./Coscine.Api").SelfApiUpdateCurrentUserRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
@@ -265,6 +285,15 @@ export declare const BlobApi: {
|
|
|
265
285
|
getBlob(requestParameters: import("./Coscine.Api").BlobApiGetBlobRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<File>;
|
|
266
286
|
updateBlob(requestParameters: import("./Coscine.Api").BlobApiUpdateBlobRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
267
287
|
};
|
|
288
|
+
export declare const DataHamsterReportApi: {
|
|
289
|
+
apiV2ReportsDataHamsterOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
290
|
+
getNumberOfArchivedResourcesKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoResponse>;
|
|
291
|
+
getNumberOfCreatedProjectsKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoResponse>;
|
|
292
|
+
getNumberOfCreatedResourcesKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoResponse>;
|
|
293
|
+
getNumberOfUsersPerDayKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoResponse>;
|
|
294
|
+
getStorageByResourceTypeKpi(requestParameters: import("./Coscine.Api").DataHamsterReportApiGetStorageByResourceTypeKpiRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").StorageDataHamsterKpiDtoResponse>;
|
|
295
|
+
getUsersPerRorKpi(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DataHamsterKpiDtoIEnumerableResponse>;
|
|
296
|
+
};
|
|
268
297
|
export declare const DisciplineApi: {
|
|
269
298
|
apiV2DisciplinesOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
270
299
|
getDiscipline(requestParameters: import("./Coscine.Api").DisciplineApiGetDisciplineRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").DisciplineDtoResponse>;
|
|
@@ -370,6 +399,16 @@ export declare const ProjectSubProjectsApi: {
|
|
|
370
399
|
apiV2ProjectsProjectIdSubprojectsOptions(requestParameters: import("./Coscine.Api").ProjectSubProjectsApiApiV2ProjectsProjectIdSubprojectsOptionsRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
371
400
|
getSubProjectsForProject(requestParameters: import("./Coscine.Api").ProjectSubProjectsApiGetSubProjectsForProjectRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").ProjectDtoPagedResponse>;
|
|
372
401
|
};
|
|
402
|
+
export declare const ReportApi: {
|
|
403
|
+
apiV2ReportsOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
404
|
+
getApplicationProfileReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
405
|
+
getMaintenanceReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
406
|
+
getProjectQuotaReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
407
|
+
getProjectReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
408
|
+
getResourceQuotaReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
409
|
+
getResourceReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
410
|
+
getUserReport(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
411
|
+
};
|
|
373
412
|
export declare const ResourceApi: {
|
|
374
413
|
apiV2ResourcesOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
375
414
|
getResource(requestParameters: import("./Coscine.Api").ResourceApiGetResourceRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").ResourceDtoResponse>;
|
|
@@ -399,6 +438,7 @@ export declare const SelfApi: {
|
|
|
399
438
|
apiV2SelfOptions(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
400
439
|
confirmUserEmail(requestParameters: import("./Coscine.Api").SelfApiConfirmUserEmailRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
401
440
|
getCurrentUser(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").UserDtoResponse>;
|
|
441
|
+
giveDataProcessingConsent(options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
402
442
|
initiateUserMerge(requestParameters: import("./Coscine.Api").SelfApiInitiateUserMergeRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<import("./Coscine.Api").UserMergeDtoResponse>;
|
|
403
443
|
resolveProjectInvitation(requestParameters?: import("./Coscine.Api").SelfApiResolveProjectInvitationRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|
|
404
444
|
updateCurrentUser(requestParameters?: import("./Coscine.Api").SelfApiUpdateCurrentUserRequest, options?: import("axios").RawAxiosRequestConfig | undefined): import("axios").AxiosPromise<void>;
|