diff --git a/README.md b/README.md index b292391e7455053cbbcc95c9624a1eef7997105e..c94510478f6812260a191e862dae2711f6bbdf3c 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,12 @@ The API Client library for JavaScript clients contains generated API connection ## 📖 Usage +### How to generate a new API Client library version +* Start the API on the branch with the changes you want to see in the API Client library +* Open the API Client library with SSH (not in a Container) +* Run the shell script generate-api-client.sh (e.g. in bash: `bash generate-api-client.sh`) +* Commit the changes to the API Client library and use the new generated version in the ui + ### Build * `yarn install` * `yarn build` diff --git a/generate-api-client.sh b/generate-api-client.sh index a3920d29a911e35f98cc1e35b6f9211a97345b1b..ab14a8f49451e891adcdd4d572a46c68472a4344 100644 --- a/generate-api-client.sh +++ b/generate-api-client.sh @@ -14,7 +14,7 @@ # Defined variables: OUTPUT_DIR="temp" # The temporary directory for generated files PACKAGE_NAME="Coscine.Api" # The package name for the API client -API_SPEC_URL="https://coscine-dorsch.web.vulcanus.otc.coscine.dev/coscine/api/swagger/v2/swagger.json" # URL to the OpenAPI spec file +API_SPEC_URL="https://coscine-hristov.web.vulcanus.otc.coscine.dev/coscine/api/swagger/v2/swagger.json" # URL to the OpenAPI spec file # -------------------------------------------------------------------------------------------------------------------------------------------------------------------- # ANSI color codes for styling @@ -47,4 +47,6 @@ cp -r "$OUTPUT_DIR/" "src/$PACKAGE_NAME" echo -e "${YELLOW}Cleaning up...${NC}" rm -rf "$OUTPUT_DIR" -echo -e "${GREEN}Finished.${NC}" \ No newline at end of file +echo -e "${GREEN}Finished.${NC}" + +echo -e "${YELLOW}Don't forget to add newly generated apis to apis.ts and index.ts!!${NC}" \ No newline at end of file diff --git a/src/Coscine.Api/@coscine/api/admin-api.ts b/src/Coscine.Api/@coscine/api/admin-api.ts index 6a11f343345a19f0f0337e5ee06f336bf0d2c0d6..7f206c0fcb46c2502d7ce6b2ceb0383592d16920 100644 --- a/src/Coscine.Api/@coscine/api/admin-api.ts +++ b/src/Coscine.Api/@coscine/api/admin-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -26,8 +26,12 @@ import type { ActivityLogDtoPagedResponse } from '../../@coscine/model'; // @ts-ignore import type { CoscineHttpMethod } from '../../@coscine/model'; // @ts-ignore +import type { CreateDatasourceDtoResponse } from '../../@coscine/model'; +// @ts-ignore import type { DeployedGraphDtoPagedResponse } from '../../@coscine/model'; // @ts-ignore +import type { DsNrwReplicationGroupDto } from '../../@coscine/model'; +// @ts-ignore import type { MetadataUpdateAdminParameters } from '../../@coscine/model'; // @ts-ignore import type { ProjectAdminDtoPagedResponse } from '../../@coscine/model'; @@ -71,6 +75,57 @@ export const AdminApiAxiosParamCreator = function (configuration?: Configuration + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p> + * @summary Creates a new datasource for a specified resource and type. + * @param {string} resourceId The unique identifier of the resource. + * @param {string} typeId The unique identifier of the datasource type. + * @param {number} [quota] The allocated quota for the datasource. + * @param {DsNrwReplicationGroupDto} [replicationGroup] The replication group for the bucket. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createDatasource: async (resourceId: string, typeId: string, quota?: number, replicationGroup?: DsNrwReplicationGroupDto, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => { + // verify required parameter 'resourceId' is not null or undefined + assertParamExists('createDatasource', 'resourceId', resourceId) + // verify required parameter 'typeId' is not null or undefined + assertParamExists('createDatasource', 'typeId', typeId) + const localVarPath = `/api/v2/admin/resource/{resourceId}/type/{typeId}` + .replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId))) + .replace(`{${"typeId"}}`, encodeURIComponent(String(typeId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication Bearer required + await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration) + + if (quota !== undefined) { + localVarQueryParameter['quota'] = quota; + } + + if (replicationGroup !== undefined) { + localVarQueryParameter['replicationGroup'] = replicationGroup; + } + + + setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; @@ -508,6 +563,52 @@ export const AdminApiAxiosParamCreator = function (configuration?: Configuration localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; localVarRequestOptions.data = serializeDataIfNeeded(metadataUpdateAdminParameters, localVarRequestOptions, configuration) + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p> + * @summary Updates the type and option ID of a specified resource. + * @param {string} resourceId The unique identifier of the resource to be updated. + * @param {string} typeId The unique identifier of the new resource type. + * @param {string} [optionId] The unique identifier of the new resource type option. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + updateResourceType: async (resourceId: string, typeId: string, optionId?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => { + // verify required parameter 'resourceId' is not null or undefined + assertParamExists('updateResourceType', 'resourceId', resourceId) + // verify required parameter 'typeId' is not null or undefined + assertParamExists('updateResourceType', 'typeId', typeId) + const localVarPath = `/api/v2/admin/resource/{resourceId}/type/{typeId}` + .replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId))) + .replace(`{${"typeId"}}`, encodeURIComponent(String(typeId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication Bearer required + await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration) + + if (optionId !== undefined) { + localVarQueryParameter['optionId'] = optionId; + } + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + return { url: toPathString(localVarUrlObj), options: localVarRequestOptions, @@ -535,6 +636,22 @@ export const AdminApiFp = function(configuration?: Configuration) { const localVarOperationServerBasePath = operationServerMap['AdminApi.apiV2AdminOptions']?.[localVarOperationServerIndex]?.url; return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }, + /** + * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p> + * @summary Creates a new datasource for a specified resource and type. + * @param {string} resourceId The unique identifier of the resource. + * @param {string} typeId The unique identifier of the datasource type. + * @param {number} [quota] The allocated quota for the datasource. + * @param {DsNrwReplicationGroupDto} [replicationGroup] The replication group for the bucket. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async createDatasource(resourceId: string, typeId: string, quota?: number, replicationGroup?: DsNrwReplicationGroupDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateDatasourceDtoResponse>> { + const localVarAxiosArgs = await localVarAxiosParamCreator.createDatasource(resourceId, typeId, quota, replicationGroup, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['AdminApi.createDatasource']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, /** * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p> * @summary Retrieves all activity logs. @@ -665,6 +782,21 @@ export const AdminApiFp = function(configuration?: Configuration) { const localVarOperationServerBasePath = operationServerMap['AdminApi.updateMetadataGraph']?.[localVarOperationServerIndex]?.url; return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }, + /** + * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p> + * @summary Updates the type and option ID of a specified resource. + * @param {string} resourceId The unique identifier of the resource to be updated. + * @param {string} typeId The unique identifier of the new resource type. + * @param {string} [optionId] The unique identifier of the new resource type option. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async updateResourceType(resourceId: string, typeId: string, optionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> { + const localVarAxiosArgs = await localVarAxiosParamCreator.updateResourceType(resourceId, typeId, optionId, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['AdminApi.updateResourceType']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, } }; @@ -684,6 +816,16 @@ export const AdminApiFactory = function (configuration?: Configuration, basePath apiV2AdminOptions(options?: RawAxiosRequestConfig): AxiosPromise<void> { return localVarFp.apiV2AdminOptions(options).then((request) => request(axios, basePath)); }, + /** + * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p> + * @summary Creates a new datasource for a specified resource and type. + * @param {AdminApiCreateDatasourceRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createDatasource(requestParameters: AdminApiCreateDatasourceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateDatasourceDtoResponse> { + return localVarFp.createDatasource(requestParameters.resourceId, requestParameters.typeId, requestParameters.quota, requestParameters.replicationGroup, options).then((request) => request(axios, basePath)); + }, /** * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p> * @summary Retrieves all activity logs. @@ -764,9 +906,54 @@ export const AdminApiFactory = function (configuration?: Configuration, basePath updateMetadataGraph(requestParameters: AdminApiUpdateMetadataGraphRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> { return localVarFp.updateMetadataGraph(requestParameters.graph, requestParameters.metadataUpdateAdminParameters, options).then((request) => request(axios, basePath)); }, + /** + * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p> + * @summary Updates the type and option ID of a specified resource. + * @param {AdminApiUpdateResourceTypeRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + updateResourceType(requestParameters: AdminApiUpdateResourceTypeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> { + return localVarFp.updateResourceType(requestParameters.resourceId, requestParameters.typeId, requestParameters.optionId, options).then((request) => request(axios, basePath)); + }, }; }; +/** + * Request parameters for createDatasource operation in AdminApi. + * @export + * @interface AdminApiCreateDatasourceRequest + */ +export interface AdminApiCreateDatasourceRequest { + /** + * The unique identifier of the resource. + * @type {string} + * @memberof AdminApiCreateDatasource + */ + readonly resourceId: string + + /** + * The unique identifier of the datasource type. + * @type {string} + * @memberof AdminApiCreateDatasource + */ + readonly typeId: string + + /** + * The allocated quota for the datasource. + * @type {number} + * @memberof AdminApiCreateDatasource + */ + readonly quota?: number + + /** + * The replication group for the bucket. + * @type {DsNrwReplicationGroupDto} + * @memberof AdminApiCreateDatasource + */ + readonly replicationGroup?: DsNrwReplicationGroupDto +} + /** * Request parameters for getAllActivityLogs operation in AdminApi. * @export @@ -1061,6 +1248,34 @@ export interface AdminApiUpdateMetadataGraphRequest { readonly metadataUpdateAdminParameters?: MetadataUpdateAdminParameters } +/** + * Request parameters for updateResourceType operation in AdminApi. + * @export + * @interface AdminApiUpdateResourceTypeRequest + */ +export interface AdminApiUpdateResourceTypeRequest { + /** + * The unique identifier of the resource to be updated. + * @type {string} + * @memberof AdminApiUpdateResourceType + */ + readonly resourceId: string + + /** + * The unique identifier of the new resource type. + * @type {string} + * @memberof AdminApiUpdateResourceType + */ + readonly typeId: string + + /** + * The unique identifier of the new resource type option. + * @type {string} + * @memberof AdminApiUpdateResourceType + */ + readonly optionId?: string +} + /** * AdminApi - object-oriented interface * @export @@ -1079,6 +1294,18 @@ export class AdminApi extends BaseAPI { return AdminApiFp(this.configuration).apiV2AdminOptions(options).then((request) => request(this.axios, this.basePath)); } + /** + * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p> + * @summary Creates a new datasource for a specified resource and type. + * @param {AdminApiCreateDatasourceRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof AdminApi + */ + public createDatasource(requestParameters: AdminApiCreateDatasourceRequest, options?: RawAxiosRequestConfig) { + return AdminApiFp(this.configuration).createDatasource(requestParameters.resourceId, requestParameters.typeId, requestParameters.quota, requestParameters.replicationGroup, options).then((request) => request(this.axios, this.basePath)); + } + /** * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p> * @summary Retrieves all activity logs. @@ -1174,5 +1401,17 @@ export class AdminApi extends BaseAPI { public updateMetadataGraph(requestParameters: AdminApiUpdateMetadataGraphRequest, options?: RawAxiosRequestConfig) { return AdminApiFp(this.configuration).updateMetadataGraph(requestParameters.graph, requestParameters.metadataUpdateAdminParameters, options).then((request) => request(this.axios, this.basePath)); } + + /** + * <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p> + * @summary Updates the type and option ID of a specified resource. + * @param {AdminApiUpdateResourceTypeRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof AdminApi + */ + public updateResourceType(requestParameters: AdminApiUpdateResourceTypeRequest, options?: RawAxiosRequestConfig) { + return AdminApiFp(this.configuration).updateResourceType(requestParameters.resourceId, requestParameters.typeId, requestParameters.optionId, options).then((request) => request(this.axios, this.basePath)); + } } diff --git a/src/Coscine.Api/@coscine/api/application-profile-api.ts b/src/Coscine.Api/@coscine/api/application-profile-api.ts index eb70c75ea488c064bd20f1514bad09889b36b919..6c9296324949d9aeb5cced3b654c2339869ae267 100644 --- a/src/Coscine.Api/@coscine/api/application-profile-api.ts +++ b/src/Coscine.Api/@coscine/api/application-profile-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/blob-api.ts b/src/Coscine.Api/@coscine/api/blob-api.ts index 786a86014b508967ab39f2c10e77ab86da9827c4..3face8950a99dfb3e68ddbf31cc7db599294f794 100644 --- a/src/Coscine.Api/@coscine/api/blob-api.ts +++ b/src/Coscine.Api/@coscine/api/blob-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/discipline-api.ts b/src/Coscine.Api/@coscine/api/discipline-api.ts index e9996b24ac41a3811c8b4aa1e96a2f3ab46d77b9..d20f7742f606c7139c914b5f327c948e201b3430 100644 --- a/src/Coscine.Api/@coscine/api/discipline-api.ts +++ b/src/Coscine.Api/@coscine/api/discipline-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/handle-api.ts b/src/Coscine.Api/@coscine/api/handle-api.ts index f44789657f949a2c250015b47bd8f3f33b8106fe..cd918c276f13d6bed04f75a58edb2e733085115d 100644 --- a/src/Coscine.Api/@coscine/api/handle-api.ts +++ b/src/Coscine.Api/@coscine/api/handle-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/language-api.ts b/src/Coscine.Api/@coscine/api/language-api.ts index ceb674bd31bc27396ccb7a46924cfa14a214d71a..20620911df97d32dc8f5dcbfd7c94393e10424e3 100644 --- a/src/Coscine.Api/@coscine/api/language-api.ts +++ b/src/Coscine.Api/@coscine/api/language-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/license-api.ts b/src/Coscine.Api/@coscine/api/license-api.ts index 9011d72cc9435ff7431742edce492a969bcd3871..ec01d97a736ab22a81fbd0ec114d441363508d1d 100644 --- a/src/Coscine.Api/@coscine/api/license-api.ts +++ b/src/Coscine.Api/@coscine/api/license-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/maintenance-api.ts b/src/Coscine.Api/@coscine/api/maintenance-api.ts index fd59206591ec527dcd525e6634b65345eaae3c44..5228be936c15fa055f5ad8ba82406bb6f4b8d47c 100644 --- a/src/Coscine.Api/@coscine/api/maintenance-api.ts +++ b/src/Coscine.Api/@coscine/api/maintenance-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/notification-api.ts b/src/Coscine.Api/@coscine/api/notification-api.ts new file mode 100644 index 0000000000000000000000000000000000000000..5998cb2811e6041ec1d35376eb2055029108dd16 --- /dev/null +++ b/src/Coscine.Api/@coscine/api/notification-api.ts @@ -0,0 +1,328 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Coscine Web API + * 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. + * + * The version of the OpenAPI document: 2.0 + * Contact: servicedesk@rwth-aachen.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +import type { Configuration } from '../../configuration'; +import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; +import globalAxios from 'axios'; +// Some imports not used depending on template conditions +// @ts-ignore +import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../../common'; +// @ts-ignore +import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../../base'; +// @ts-ignore +import type { NotificationDtoPagedResponse } from '../../@coscine/model'; +// @ts-ignore +import type { NotificationDtoResponse } from '../../@coscine/model'; +/** + * NotificationApi - axios parameter creator + * @export + */ +export const NotificationApiAxiosParamCreator = function (configuration?: Configuration) { + return { + /** + * + * @summary Responds with the HTTP methods allowed for the endpoint. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + apiV2NotificationsOptions: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => { + const localVarPath = `/api/v2/notifications`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'OPTIONS', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication Bearer required + await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration) + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Retrieves a notification. + * @param {string} notificationId The ID of the notification. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getNotification: async (notificationId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => { + // verify required parameter 'notificationId' is not null or undefined + assertParamExists('getNotification', 'notificationId', notificationId) + const localVarPath = `/api/v2/notifications/{notificationId}` + .replace(`{${"notificationId"}}`, encodeURIComponent(String(notificationId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication Bearer required + await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration) + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Retrieves all notifications. + * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1. + * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10. + * @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. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getNotifications: async (pageNumber?: number, pageSize?: number, orderBy?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => { + const localVarPath = `/api/v2/notifications`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication Bearer required + await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration) + + if (pageNumber !== undefined) { + localVarQueryParameter['PageNumber'] = pageNumber; + } + + if (pageSize !== undefined) { + localVarQueryParameter['PageSize'] = pageSize; + } + + if (orderBy !== undefined) { + localVarQueryParameter['OrderBy'] = orderBy; + } + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + } +}; + +/** + * NotificationApi - functional programming interface + * @export + */ +export const NotificationApiFp = function(configuration?: Configuration) { + const localVarAxiosParamCreator = NotificationApiAxiosParamCreator(configuration) + return { + /** + * + * @summary Responds with the HTTP methods allowed for the endpoint. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async apiV2NotificationsOptions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> { + const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2NotificationsOptions(options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['NotificationApi.apiV2NotificationsOptions']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, + /** + * + * @summary Retrieves a notification. + * @param {string} notificationId The ID of the notification. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async getNotification(notificationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NotificationDtoResponse>> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getNotification(notificationId, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['NotificationApi.getNotification']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, + /** + * + * @summary Retrieves all notifications. + * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1. + * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10. + * @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. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async getNotifications(pageNumber?: number, pageSize?: number, orderBy?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NotificationDtoPagedResponse>> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getNotifications(pageNumber, pageSize, orderBy, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['NotificationApi.getNotifications']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, + } +}; + +/** + * NotificationApi - factory interface + * @export + */ +export const NotificationApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { + const localVarFp = NotificationApiFp(configuration) + return { + /** + * + * @summary Responds with the HTTP methods allowed for the endpoint. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + apiV2NotificationsOptions(options?: RawAxiosRequestConfig): AxiosPromise<void> { + return localVarFp.apiV2NotificationsOptions(options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Retrieves a notification. + * @param {NotificationApiGetNotificationRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getNotification(requestParameters: NotificationApiGetNotificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<NotificationDtoResponse> { + return localVarFp.getNotification(requestParameters.notificationId, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Retrieves all notifications. + * @param {NotificationApiGetNotificationsRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getNotifications(requestParameters: NotificationApiGetNotificationsRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<NotificationDtoPagedResponse> { + return localVarFp.getNotifications(requestParameters.pageNumber, requestParameters.pageSize, requestParameters.orderBy, options).then((request) => request(axios, basePath)); + }, + }; +}; + +/** + * Request parameters for getNotification operation in NotificationApi. + * @export + * @interface NotificationApiGetNotificationRequest + */ +export interface NotificationApiGetNotificationRequest { + /** + * The ID of the notification. + * @type {string} + * @memberof NotificationApiGetNotification + */ + readonly notificationId: string +} + +/** + * Request parameters for getNotifications operation in NotificationApi. + * @export + * @interface NotificationApiGetNotificationsRequest + */ +export interface NotificationApiGetNotificationsRequest { + /** + * The desired page number. Should be greater than or equal to 1. Default is 1. + * @type {number} + * @memberof NotificationApiGetNotifications + */ + readonly pageNumber?: number + + /** + * The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10. + * @type {number} + * @memberof NotificationApiGetNotifications + */ + readonly pageSize?: number + + /** + * 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. + * @type {string} + * @memberof NotificationApiGetNotifications + */ + readonly orderBy?: string +} + +/** + * NotificationApi - object-oriented interface + * @export + * @class NotificationApi + * @extends {BaseAPI} + */ +export class NotificationApi extends BaseAPI { + /** + * + * @summary Responds with the HTTP methods allowed for the endpoint. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof NotificationApi + */ + public apiV2NotificationsOptions(options?: RawAxiosRequestConfig) { + return NotificationApiFp(this.configuration).apiV2NotificationsOptions(options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Retrieves a notification. + * @param {NotificationApiGetNotificationRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof NotificationApi + */ + public getNotification(requestParameters: NotificationApiGetNotificationRequest, options?: RawAxiosRequestConfig) { + return NotificationApiFp(this.configuration).getNotification(requestParameters.notificationId, options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Retrieves all notifications. + * @param {NotificationApiGetNotificationsRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof NotificationApi + */ + public getNotifications(requestParameters: NotificationApiGetNotificationsRequest = {}, options?: RawAxiosRequestConfig) { + return NotificationApiFp(this.configuration).getNotifications(requestParameters.pageNumber, requestParameters.pageSize, requestParameters.orderBy, options).then((request) => request(this.axios, this.basePath)); + } +} + diff --git a/src/Coscine.Api/@coscine/api/organization-api.ts b/src/Coscine.Api/@coscine/api/organization-api.ts index d968a163f4050e5e7d9f4ea1ff5ad31ce99f4de8..1ba0c0618baacf4ef4eb4d5c9847cb27e29a0eac 100644 --- a/src/Coscine.Api/@coscine/api/organization-api.ts +++ b/src/Coscine.Api/@coscine/api/organization-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/pid-api.ts b/src/Coscine.Api/@coscine/api/pid-api.ts index 8ff432d84e07b4a958a49fc8321532e466d2e1c1..6af2ef9a83ef3c0087bc4dabc7e0c91b97d9b6be 100644 --- a/src/Coscine.Api/@coscine/api/pid-api.ts +++ b/src/Coscine.Api/@coscine/api/pid-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/project-api.ts b/src/Coscine.Api/@coscine/api/project-api.ts index 527d01c2de79a04b9ef7897476229159b0ae034c..a208d0e433af9b0f503e06897a1c9d9efe507a55 100644 --- a/src/Coscine.Api/@coscine/api/project-api.ts +++ b/src/Coscine.Api/@coscine/api/project-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/project-invitation-api.ts b/src/Coscine.Api/@coscine/api/project-invitation-api.ts index fc9d32193543ed328ae997eb7f0e82419d0b0eea..25297109fa211f7b899c8e6549da6cc56852790b 100644 --- a/src/Coscine.Api/@coscine/api/project-invitation-api.ts +++ b/src/Coscine.Api/@coscine/api/project-invitation-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/project-member-api.ts b/src/Coscine.Api/@coscine/api/project-member-api.ts index c87a661098cccf0468c6c5417110dabec397e7ae..ef39e6bf5e928c7cbf8320ef794bbd74e4543c99 100644 --- a/src/Coscine.Api/@coscine/api/project-member-api.ts +++ b/src/Coscine.Api/@coscine/api/project-member-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/project-publication-request-api.ts b/src/Coscine.Api/@coscine/api/project-publication-request-api.ts index 0ff70d51246a07e8daf4fd72d8d9aba75f73091e..dff450af5aadb7a9c8d8fe0f6572f3b95567a595 100644 --- a/src/Coscine.Api/@coscine/api/project-publication-request-api.ts +++ b/src/Coscine.Api/@coscine/api/project-publication-request-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/project-quota-api.ts b/src/Coscine.Api/@coscine/api/project-quota-api.ts index 2f594e7c257ee2a1a5291be911b4eb3526192542..12c4dce8f0ff8ff12e76f695a36cf1cb08ac9b8d 100644 --- a/src/Coscine.Api/@coscine/api/project-quota-api.ts +++ b/src/Coscine.Api/@coscine/api/project-quota-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/project-resource-api.ts b/src/Coscine.Api/@coscine/api/project-resource-api.ts index 9b0b6c8087d6e03adf94da969cb4c703e2884aba..190716cc5fb1bfc7c861d7c01b35a096227f0c69 100644 --- a/src/Coscine.Api/@coscine/api/project-resource-api.ts +++ b/src/Coscine.Api/@coscine/api/project-resource-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/project-resource-quota-api.ts b/src/Coscine.Api/@coscine/api/project-resource-quota-api.ts index 680bfbdb0dcaf593beae7ded1f5809c03ec18934..838d1f29a94393759678e60e1fef647d2b7fd3d1 100644 --- a/src/Coscine.Api/@coscine/api/project-resource-quota-api.ts +++ b/src/Coscine.Api/@coscine/api/project-resource-quota-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/project-resource-type-api.ts b/src/Coscine.Api/@coscine/api/project-resource-type-api.ts index 62f82be45ad2c3dca6313194c62b1e3f1566c821..bc3c89f39c739fba565bfdf9fa3a083d5f4989d5 100644 --- a/src/Coscine.Api/@coscine/api/project-resource-type-api.ts +++ b/src/Coscine.Api/@coscine/api/project-resource-type-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/provenance-api.ts b/src/Coscine.Api/@coscine/api/provenance-api.ts index e6756e777d191ef24557d1c50c8f3678f74732ea..915d54c5f7dcda2637b8805ffac902aa7881a023 100644 --- a/src/Coscine.Api/@coscine/api/provenance-api.ts +++ b/src/Coscine.Api/@coscine/api/provenance-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/resource-api.ts b/src/Coscine.Api/@coscine/api/resource-api.ts index accf6a3d1a3b088f7c2411ac9517d5aa109213b0..335e65f8e058af7bbee7da48ee36821dc24bd097 100644 --- a/src/Coscine.Api/@coscine/api/resource-api.ts +++ b/src/Coscine.Api/@coscine/api/resource-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/resource-type-api.ts b/src/Coscine.Api/@coscine/api/resource-type-api.ts index 25cf456ea701294438d4b739c3c89f233fcd57fd..c1788c0e9beb1528c60569bb8aa5172eda39a5ea 100644 --- a/src/Coscine.Api/@coscine/api/resource-type-api.ts +++ b/src/Coscine.Api/@coscine/api/resource-type-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/resource-type-git-lab-api.ts b/src/Coscine.Api/@coscine/api/resource-type-git-lab-api.ts index 17904c1a8944bac9102c81ad90a111e140379ee6..a3ad891218bf800ae6dea8b727e3ed7293555773 100644 --- a/src/Coscine.Api/@coscine/api/resource-type-git-lab-api.ts +++ b/src/Coscine.Api/@coscine/api/resource-type-git-lab-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/role-api.ts b/src/Coscine.Api/@coscine/api/role-api.ts index 8027f64c081312d81e739d524d94f8f540c3e087..c636445905ccf433497285f17bd91b0bf65c7901 100644 --- a/src/Coscine.Api/@coscine/api/role-api.ts +++ b/src/Coscine.Api/@coscine/api/role-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/search-api.ts b/src/Coscine.Api/@coscine/api/search-api.ts index a0677243d9133ee036f60114a93c5157983f23eb..735109c5295d8eff195d6c60e92643152eb794f2 100644 --- a/src/Coscine.Api/@coscine/api/search-api.ts +++ b/src/Coscine.Api/@coscine/api/search-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/self-api-token-api.ts b/src/Coscine.Api/@coscine/api/self-api-token-api.ts index 63aebc569b1e56cc8b68571b83014cce18aebddd..7f13e8bff1bd61c4cde25ffcdaab45c6a4ed877b 100644 --- a/src/Coscine.Api/@coscine/api/self-api-token-api.ts +++ b/src/Coscine.Api/@coscine/api/self-api-token-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/self-api.ts b/src/Coscine.Api/@coscine/api/self-api.ts index 37ae1c0f67248c28b9f067de883c651a8fa57ce5..22a797608231d84f062d85e5a9f841ed8fa6e517 100644 --- a/src/Coscine.Api/@coscine/api/self-api.ts +++ b/src/Coscine.Api/@coscine/api/self-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/self-session-api.ts b/src/Coscine.Api/@coscine/api/self-session-api.ts index b05c70944ebe220cf27c1df2b92cf8789d1c8478..4d42aa22566f5597b8cb0fa447c4bbfc70f2114f 100644 --- a/src/Coscine.Api/@coscine/api/self-session-api.ts +++ b/src/Coscine.Api/@coscine/api/self-session-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/system-status-api.ts b/src/Coscine.Api/@coscine/api/system-status-api.ts index 1be6ee6a59f02c5a2aee098b92c12905de202b50..de9e5b025710d177468a08b57065d61bd01ea27c 100644 --- a/src/Coscine.Api/@coscine/api/system-status-api.ts +++ b/src/Coscine.Api/@coscine/api/system-status-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/title-api.ts b/src/Coscine.Api/@coscine/api/title-api.ts index cd0a4f414f53906f92675e9d01b2cb30c03206a9..7116b193f03df46d8097813171ba0b563c3d7faa 100644 --- a/src/Coscine.Api/@coscine/api/title-api.ts +++ b/src/Coscine.Api/@coscine/api/title-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/tos-api.ts b/src/Coscine.Api/@coscine/api/tos-api.ts index d710c69d8e3026e459b5251ffce026a9c3088063..591ac1ee4bf72df220e68f1053e08960a8eb11a7 100644 --- a/src/Coscine.Api/@coscine/api/tos-api.ts +++ b/src/Coscine.Api/@coscine/api/tos-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/tree-api.ts b/src/Coscine.Api/@coscine/api/tree-api.ts index 1b133f876b2caa7208918816d8b4a7c4788e981b..65abf794be51323d61be8feabd76ef96a15f00c6 100644 --- a/src/Coscine.Api/@coscine/api/tree-api.ts +++ b/src/Coscine.Api/@coscine/api/tree-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/user-api.ts b/src/Coscine.Api/@coscine/api/user-api.ts index 3436d7e63178a67915a16f9a0979c6a0a6c5cc64..84fddd2480e38abbf2f92f0c5764dc3aab342f07 100644 --- a/src/Coscine.Api/@coscine/api/user-api.ts +++ b/src/Coscine.Api/@coscine/api/user-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/user-notification-opt-out-api.ts b/src/Coscine.Api/@coscine/api/user-notification-opt-out-api.ts new file mode 100644 index 0000000000000000000000000000000000000000..19e804075ddff1b2a3086f1ff820ea402d787adb --- /dev/null +++ b/src/Coscine.Api/@coscine/api/user-notification-opt-out-api.ts @@ -0,0 +1,502 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Coscine Web API + * 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. + * + * The version of the OpenAPI document: 2.0 + * Contact: servicedesk@rwth-aachen.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +import type { Configuration } from '../../configuration'; +import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; +import globalAxios from 'axios'; +// Some imports not used depending on template conditions +// @ts-ignore +import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../../common'; +// @ts-ignore +import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../../base'; +// @ts-ignore +import type { UserNotificationForCreationDto } from '../../@coscine/model'; +// @ts-ignore +import type { UserNotificationOptOutDtoPagedResponse } from '../../@coscine/model'; +// @ts-ignore +import type { UserNotificationOptOutDtoResponse } from '../../@coscine/model'; +/** + * UserNotificationOptOutApi - axios parameter creator + * @export + */ +export const UserNotificationOptOutApiAxiosParamCreator = function (configuration?: Configuration) { + return { + /** + * + * @summary Responds with the HTTP methods allowed for the endpoint. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + apiV2UserNotificationsOptions: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => { + const localVarPath = `/api/v2/user-notifications`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'OPTIONS', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication Bearer required + await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration) + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Creates a user notification opt out for a specified user. + * @param {UserNotificationForCreationDto} [userNotificationForCreationDto] The user notification opt out data for creation. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createUserNotification: async (userNotificationForCreationDto?: UserNotificationForCreationDto, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => { + const localVarPath = `/api/v2/user-notifications`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication Bearer required + await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration) + + + + localVarHeaderParameter['Content-Type'] = 'application/json'; + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.data = serializeDataIfNeeded(userNotificationForCreationDto, localVarRequestOptions, configuration) + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Deletes a user notification opt out for a specified user. + * @param {string} id The Id of the user notification opt out. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + deleteUserNotification: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => { + // verify required parameter 'id' is not null or undefined + assertParamExists('deleteUserNotification', 'id', id) + const localVarPath = `/api/v2/user-notifications/{id}` + .replace(`{${"id"}}`, encodeURIComponent(String(id))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication Bearer required + await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration) + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Retrieves a user notification opt out for a specified notification. + * @param {string} notificationId The Id of the notification. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getUserNotification: async (notificationId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => { + // verify required parameter 'notificationId' is not null or undefined + assertParamExists('getUserNotification', 'notificationId', notificationId) + const localVarPath = `/api/v2/user-notifications/{notificationId}` + .replace(`{${"notificationId"}}`, encodeURIComponent(String(notificationId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication Bearer required + await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration) + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Retrieves all user notification opt outs of the current user. + * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1. + * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10. + * @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. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getUserNotifications: async (pageNumber?: number, pageSize?: number, orderBy?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => { + const localVarPath = `/api/v2/user-notifications`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication Bearer required + await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration) + + if (pageNumber !== undefined) { + localVarQueryParameter['PageNumber'] = pageNumber; + } + + if (pageSize !== undefined) { + localVarQueryParameter['PageSize'] = pageSize; + } + + if (orderBy !== undefined) { + localVarQueryParameter['OrderBy'] = orderBy; + } + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + } +}; + +/** + * UserNotificationOptOutApi - functional programming interface + * @export + */ +export const UserNotificationOptOutApiFp = function(configuration?: Configuration) { + const localVarAxiosParamCreator = UserNotificationOptOutApiAxiosParamCreator(configuration) + return { + /** + * + * @summary Responds with the HTTP methods allowed for the endpoint. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async apiV2UserNotificationsOptions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> { + const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2UserNotificationsOptions(options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['UserNotificationOptOutApi.apiV2UserNotificationsOptions']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, + /** + * + * @summary Creates a user notification opt out for a specified user. + * @param {UserNotificationForCreationDto} [userNotificationForCreationDto] The user notification opt out data for creation. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async createUserNotification(userNotificationForCreationDto?: UserNotificationForCreationDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserNotificationOptOutDtoResponse>> { + const localVarAxiosArgs = await localVarAxiosParamCreator.createUserNotification(userNotificationForCreationDto, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['UserNotificationOptOutApi.createUserNotification']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, + /** + * + * @summary Deletes a user notification opt out for a specified user. + * @param {string} id The Id of the user notification opt out. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async deleteUserNotification(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> { + const localVarAxiosArgs = await localVarAxiosParamCreator.deleteUserNotification(id, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['UserNotificationOptOutApi.deleteUserNotification']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, + /** + * + * @summary Retrieves a user notification opt out for a specified notification. + * @param {string} notificationId The Id of the notification. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async getUserNotification(notificationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserNotificationOptOutDtoResponse>> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getUserNotification(notificationId, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['UserNotificationOptOutApi.getUserNotification']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, + /** + * + * @summary Retrieves all user notification opt outs of the current user. + * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1. + * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10. + * @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. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async getUserNotifications(pageNumber?: number, pageSize?: number, orderBy?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserNotificationOptOutDtoPagedResponse>> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getUserNotifications(pageNumber, pageSize, orderBy, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['UserNotificationOptOutApi.getUserNotifications']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, + } +}; + +/** + * UserNotificationOptOutApi - factory interface + * @export + */ +export const UserNotificationOptOutApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { + const localVarFp = UserNotificationOptOutApiFp(configuration) + return { + /** + * + * @summary Responds with the HTTP methods allowed for the endpoint. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + apiV2UserNotificationsOptions(options?: RawAxiosRequestConfig): AxiosPromise<void> { + return localVarFp.apiV2UserNotificationsOptions(options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Creates a user notification opt out for a specified user. + * @param {UserNotificationOptOutApiCreateUserNotificationRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createUserNotification(requestParameters: UserNotificationOptOutApiCreateUserNotificationRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<UserNotificationOptOutDtoResponse> { + return localVarFp.createUserNotification(requestParameters.userNotificationForCreationDto, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Deletes a user notification opt out for a specified user. + * @param {UserNotificationOptOutApiDeleteUserNotificationRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + deleteUserNotification(requestParameters: UserNotificationOptOutApiDeleteUserNotificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> { + return localVarFp.deleteUserNotification(requestParameters.id, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Retrieves a user notification opt out for a specified notification. + * @param {UserNotificationOptOutApiGetUserNotificationRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getUserNotification(requestParameters: UserNotificationOptOutApiGetUserNotificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserNotificationOptOutDtoResponse> { + return localVarFp.getUserNotification(requestParameters.notificationId, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Retrieves all user notification opt outs of the current user. + * @param {UserNotificationOptOutApiGetUserNotificationsRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getUserNotifications(requestParameters: UserNotificationOptOutApiGetUserNotificationsRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<UserNotificationOptOutDtoPagedResponse> { + return localVarFp.getUserNotifications(requestParameters.pageNumber, requestParameters.pageSize, requestParameters.orderBy, options).then((request) => request(axios, basePath)); + }, + }; +}; + +/** + * Request parameters for createUserNotification operation in UserNotificationOptOutApi. + * @export + * @interface UserNotificationOptOutApiCreateUserNotificationRequest + */ +export interface UserNotificationOptOutApiCreateUserNotificationRequest { + /** + * The user notification opt out data for creation. + * @type {UserNotificationForCreationDto} + * @memberof UserNotificationOptOutApiCreateUserNotification + */ + readonly userNotificationForCreationDto?: UserNotificationForCreationDto +} + +/** + * Request parameters for deleteUserNotification operation in UserNotificationOptOutApi. + * @export + * @interface UserNotificationOptOutApiDeleteUserNotificationRequest + */ +export interface UserNotificationOptOutApiDeleteUserNotificationRequest { + /** + * The Id of the user notification opt out. + * @type {string} + * @memberof UserNotificationOptOutApiDeleteUserNotification + */ + readonly id: string +} + +/** + * Request parameters for getUserNotification operation in UserNotificationOptOutApi. + * @export + * @interface UserNotificationOptOutApiGetUserNotificationRequest + */ +export interface UserNotificationOptOutApiGetUserNotificationRequest { + /** + * The Id of the notification. + * @type {string} + * @memberof UserNotificationOptOutApiGetUserNotification + */ + readonly notificationId: string +} + +/** + * Request parameters for getUserNotifications operation in UserNotificationOptOutApi. + * @export + * @interface UserNotificationOptOutApiGetUserNotificationsRequest + */ +export interface UserNotificationOptOutApiGetUserNotificationsRequest { + /** + * The desired page number. Should be greater than or equal to 1. Default is 1. + * @type {number} + * @memberof UserNotificationOptOutApiGetUserNotifications + */ + readonly pageNumber?: number + + /** + * The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10. + * @type {number} + * @memberof UserNotificationOptOutApiGetUserNotifications + */ + readonly pageSize?: number + + /** + * 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. + * @type {string} + * @memberof UserNotificationOptOutApiGetUserNotifications + */ + readonly orderBy?: string +} + +/** + * UserNotificationOptOutApi - object-oriented interface + * @export + * @class UserNotificationOptOutApi + * @extends {BaseAPI} + */ +export class UserNotificationOptOutApi extends BaseAPI { + /** + * + * @summary Responds with the HTTP methods allowed for the endpoint. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof UserNotificationOptOutApi + */ + public apiV2UserNotificationsOptions(options?: RawAxiosRequestConfig) { + return UserNotificationOptOutApiFp(this.configuration).apiV2UserNotificationsOptions(options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Creates a user notification opt out for a specified user. + * @param {UserNotificationOptOutApiCreateUserNotificationRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof UserNotificationOptOutApi + */ + public createUserNotification(requestParameters: UserNotificationOptOutApiCreateUserNotificationRequest = {}, options?: RawAxiosRequestConfig) { + return UserNotificationOptOutApiFp(this.configuration).createUserNotification(requestParameters.userNotificationForCreationDto, options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Deletes a user notification opt out for a specified user. + * @param {UserNotificationOptOutApiDeleteUserNotificationRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof UserNotificationOptOutApi + */ + public deleteUserNotification(requestParameters: UserNotificationOptOutApiDeleteUserNotificationRequest, options?: RawAxiosRequestConfig) { + return UserNotificationOptOutApiFp(this.configuration).deleteUserNotification(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Retrieves a user notification opt out for a specified notification. + * @param {UserNotificationOptOutApiGetUserNotificationRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof UserNotificationOptOutApi + */ + public getUserNotification(requestParameters: UserNotificationOptOutApiGetUserNotificationRequest, options?: RawAxiosRequestConfig) { + return UserNotificationOptOutApiFp(this.configuration).getUserNotification(requestParameters.notificationId, options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Retrieves all user notification opt outs of the current user. + * @param {UserNotificationOptOutApiGetUserNotificationsRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof UserNotificationOptOutApi + */ + public getUserNotifications(requestParameters: UserNotificationOptOutApiGetUserNotificationsRequest = {}, options?: RawAxiosRequestConfig) { + return UserNotificationOptOutApiFp(this.configuration).getUserNotifications(requestParameters.pageNumber, requestParameters.pageSize, requestParameters.orderBy, options).then((request) => request(this.axios, this.basePath)); + } +} + diff --git a/src/Coscine.Api/@coscine/api/visibility-api.ts b/src/Coscine.Api/@coscine/api/visibility-api.ts index f0cf7b2ef330f8652728cea25718526f9ee10eea..4cccbeae6caa11cad97b3f92bd700fa6785224e7 100644 --- a/src/Coscine.Api/@coscine/api/visibility-api.ts +++ b/src/Coscine.Api/@coscine/api/visibility-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/api/vocabulary-api.ts b/src/Coscine.Api/@coscine/api/vocabulary-api.ts index 32535e8366f0eaf0ef0c10d10258920040f56dfe..b0f33b57643a2d1d5b06d79256931435503d4856 100644 --- a/src/Coscine.Api/@coscine/api/vocabulary-api.ts +++ b/src/Coscine.Api/@coscine/api/vocabulary-api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/accepted-language.ts b/src/Coscine.Api/@coscine/model/accepted-language.ts index 9564f253204fc51a348896a5313f925f9595b44c..ab863dbf3bf5f47f15dcd3c6197fc78e5e23deeb 100644 --- a/src/Coscine.Api/@coscine/model/accepted-language.ts +++ b/src/Coscine.Api/@coscine/model/accepted-language.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/activity-log-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/activity-log-dto-paged-response.ts index 7edc8d226d880596b28e30a560ca846b52bfbfbf..3a7628dbef3be01547ce7acb38422a34c246600f 100644 --- a/src/Coscine.Api/@coscine/model/activity-log-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/activity-log-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/activity-log-dto.ts b/src/Coscine.Api/@coscine/model/activity-log-dto.ts index c3fac2f472b9527d7f0744cc3bb84d8846504b78..bc70d73b913f759b8cd2ad80950123d3db0dfc4c 100644 --- a/src/Coscine.Api/@coscine/model/activity-log-dto.ts +++ b/src/Coscine.Api/@coscine/model/activity-log-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/api-token-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/api-token-dto-paged-response.ts index 0edd88fe858da04419e1e04d091af4c929ff68c3..95b1d5c9254e2b9553b5acb224d61f8355440465 100644 --- a/src/Coscine.Api/@coscine/model/api-token-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/api-token-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/api-token-dto-response.ts b/src/Coscine.Api/@coscine/model/api-token-dto-response.ts index 90dae33db37d6e65809957f9b6b1760c59f84e6f..da86f104d20f9c141898d20d72bae5bc2edaa1a2 100644 --- a/src/Coscine.Api/@coscine/model/api-token-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/api-token-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/api-token-dto.ts b/src/Coscine.Api/@coscine/model/api-token-dto.ts index b4f1835eeb94af5449e7b5ed23a163dafd7b1791..6b573f1cf783d99ea47d213b2682aca8d5a29166 100644 --- a/src/Coscine.Api/@coscine/model/api-token-dto.ts +++ b/src/Coscine.Api/@coscine/model/api-token-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/api-token-for-creation-dto.ts b/src/Coscine.Api/@coscine/model/api-token-for-creation-dto.ts index f4e0f89b8030d1b14f0e7123a403950a756c079d..eaa4eddf2c7531f4dfe56c9d6b0ddb28bf723aec 100644 --- a/src/Coscine.Api/@coscine/model/api-token-for-creation-dto.ts +++ b/src/Coscine.Api/@coscine/model/api-token-for-creation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/application-profile-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/application-profile-dto-paged-response.ts index 0fb4e0b0f39e7a1b445d47875676e40bc6e57693..5675c6f36a25af438f47fae596cbc474e624ef17 100644 --- a/src/Coscine.Api/@coscine/model/application-profile-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/application-profile-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/application-profile-dto-response.ts b/src/Coscine.Api/@coscine/model/application-profile-dto-response.ts index 413e38209ba28f080a61118b73b19007b8d6e597..b31d2d80a9b87c0f4a636ea5fe35b57482987328 100644 --- a/src/Coscine.Api/@coscine/model/application-profile-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/application-profile-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/application-profile-dto.ts b/src/Coscine.Api/@coscine/model/application-profile-dto.ts index b766f01fd2fb7e65d82f0b7eb0c10a4239e95e73..175036c0bbe1a8dcb4b5cc775bb452c1e130edc2 100644 --- a/src/Coscine.Api/@coscine/model/application-profile-dto.ts +++ b/src/Coscine.Api/@coscine/model/application-profile-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/application-profile-for-creation-dto-response.ts b/src/Coscine.Api/@coscine/model/application-profile-for-creation-dto-response.ts index c3ef9267e402f49ba4896e1f61544971d81fe701..933b2931698306114cc32fb44ecbb18080a35cbd 100644 --- a/src/Coscine.Api/@coscine/model/application-profile-for-creation-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/application-profile-for-creation-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/application-profile-for-creation-dto.ts b/src/Coscine.Api/@coscine/model/application-profile-for-creation-dto.ts index 02d1e2ca2e9a522841ff286ab84e9490ec39da96..b3274716fe2e07ee8218b3785177d67b9567b7b2 100644 --- a/src/Coscine.Api/@coscine/model/application-profile-for-creation-dto.ts +++ b/src/Coscine.Api/@coscine/model/application-profile-for-creation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/application-profile-for-resource-creation-dto.ts b/src/Coscine.Api/@coscine/model/application-profile-for-resource-creation-dto.ts index 23cfaea828e458dcc430c1ba3f5a2d8c6ee77579..d32182f71cb53a1602388eaa2493b796199aadfc 100644 --- a/src/Coscine.Api/@coscine/model/application-profile-for-resource-creation-dto.ts +++ b/src/Coscine.Api/@coscine/model/application-profile-for-resource-creation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/application-profile-minimal-dto.ts b/src/Coscine.Api/@coscine/model/application-profile-minimal-dto.ts index 845208509737b386299b47bb99f24914921907e7..6e311f6a4aa86d1a4933352e791cf56bcd59ea5f 100644 --- a/src/Coscine.Api/@coscine/model/application-profile-minimal-dto.ts +++ b/src/Coscine.Api/@coscine/model/application-profile-minimal-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/coscine-http-method.ts b/src/Coscine.Api/@coscine/model/coscine-http-method.ts index 0defad1a22eba6df17bc0bb09b3367f3bf00368a..4489371a3a03cc98ce9ea2164de7dd0387741e76 100644 --- a/src/Coscine.Api/@coscine/model/coscine-http-method.ts +++ b/src/Coscine.Api/@coscine/model/coscine-http-method.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/create-datasource-dto-response.ts b/src/Coscine.Api/@coscine/model/create-datasource-dto-response.ts new file mode 100644 index 0000000000000000000000000000000000000000..379c467ad84ac5cebf6a7ed3377b1948d11d2365 --- /dev/null +++ b/src/Coscine.Api/@coscine/model/create-datasource-dto-response.ts @@ -0,0 +1,51 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Coscine Web API + * 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. + * + * The version of the OpenAPI document: 2.0 + * Contact: servicedesk@rwth-aachen.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +// May contain unused imports in some cases +// @ts-ignore +import type { CreateDatasourceDto } from './create-datasource-dto'; + +/** + * + * @export + * @interface CreateDatasourceDtoResponse + */ +export interface CreateDatasourceDtoResponse { + /** + * + * @type {CreateDatasourceDto} + * @memberof CreateDatasourceDtoResponse + */ + 'data'?: CreateDatasourceDto; + /** + * + * @type {boolean} + * @memberof CreateDatasourceDtoResponse + */ + 'isSuccess'?: boolean; + /** + * + * @type {number} + * @memberof CreateDatasourceDtoResponse + */ + 'statusCode'?: number | null; + /** + * + * @type {string} + * @memberof CreateDatasourceDtoResponse + */ + 'traceId'?: string | null; +} + diff --git a/src/Coscine.Api/@coscine/model/create-datasource-dto.ts b/src/Coscine.Api/@coscine/model/create-datasource-dto.ts new file mode 100644 index 0000000000000000000000000000000000000000..a7167aac37b35b225daba35af4de156281cdedd7 --- /dev/null +++ b/src/Coscine.Api/@coscine/model/create-datasource-dto.ts @@ -0,0 +1,30 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Coscine Web API + * 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. + * + * The version of the OpenAPI document: 2.0 + * Contact: servicedesk@rwth-aachen.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** + * Represents the data transfer object for creating a datasource. + * @export + * @interface CreateDatasourceDto + */ +export interface CreateDatasourceDto { + /** + * Gets or initializes the unique identifier of the resource type option. + * @type {string} + * @memberof CreateDatasourceDto + */ + 'resourceTypeOptionId'?: string | null; +} + diff --git a/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-options-dto.ts b/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-options-dto.ts index acdd14bf36ac1d032ee94674a50f18e7b82f2bab..820d844169f6895956f1be0b9b62359dbb2dd890 100644 --- a/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-options-dto.ts +++ b/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-options-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-resource-type-options-for-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-resource-type-options-for-manipulation-dto.ts index 030933c21bf95f9e7a54529829030a816fe46073..491dc31356c5a65d2c8c4de517f538979fd83944 100644 --- a/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-resource-type-options-for-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-resource-type-options-for-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -13,6 +13,9 @@ */ +// May contain unused imports in some cases +// @ts-ignore +import type { DsNrwReplicationGroupDto } from './ds-nrw-replication-group-dto'; // May contain unused imports in some cases // @ts-ignore import type { QuotaForManipulationDto } from './quota-for-manipulation-dto'; @@ -29,5 +32,13 @@ export interface DataStorageNrwS3ResourceTypeOptionsForManipulationDto { * @memberof DataStorageNrwS3ResourceTypeOptionsForManipulationDto */ 'quota': QuotaForManipulationDto; + /** + * + * @type {DsNrwReplicationGroupDto} + * @memberof DataStorageNrwS3ResourceTypeOptionsForManipulationDto + */ + 'replicationGroup'?: DsNrwReplicationGroupDto; } + + diff --git a/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-options-dto.ts b/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-options-dto.ts index 038df5f46ae7c7df986d981be8e40fe628fc613e..e3d51695261e7428ecc0faff2f4124cbb71396ac 100644 --- a/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-options-dto.ts +++ b/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-options-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-resource-type-options-for-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-resource-type-options-for-manipulation-dto.ts index d32c9632504c5a976176f0d731d4fa29bd708449..62883079605c32fd1b459e8e1e3e25dd6faa1db1 100644 --- a/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-resource-type-options-for-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-resource-type-options-for-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -13,6 +13,9 @@ */ +// May contain unused imports in some cases +// @ts-ignore +import type { DsNrwReplicationGroupDto } from './ds-nrw-replication-group-dto'; // May contain unused imports in some cases // @ts-ignore import type { QuotaForManipulationDto } from './quota-for-manipulation-dto'; @@ -29,5 +32,13 @@ export interface DataStorageNrwS3WormResourceTypeOptionsForManipulationDto { * @memberof DataStorageNrwS3WormResourceTypeOptionsForManipulationDto */ 'quota': QuotaForManipulationDto; + /** + * + * @type {DsNrwReplicationGroupDto} + * @memberof DataStorageNrwS3WormResourceTypeOptionsForManipulationDto + */ + 'replicationGroup'?: DsNrwReplicationGroupDto; } + + diff --git a/src/Coscine.Api/@coscine/model/data-storage-nrw-web-options-dto.ts b/src/Coscine.Api/@coscine/model/data-storage-nrw-web-options-dto.ts index ed65f49d5cd9f790c952ce7002d1db3a8d429fd2..2da56e1cdd6a3bd483fa9f487e45c05307f90ca6 100644 --- a/src/Coscine.Api/@coscine/model/data-storage-nrw-web-options-dto.ts +++ b/src/Coscine.Api/@coscine/model/data-storage-nrw-web-options-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/data-storage-nrw-web-resource-type-options-for-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/data-storage-nrw-web-resource-type-options-for-manipulation-dto.ts index 6969f7a03917617684643ae453cd1e209e1dbdd2..58e8330f49956df0d1fae871e86ff74b197cf0a4 100644 --- a/src/Coscine.Api/@coscine/model/data-storage-nrw-web-resource-type-options-for-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/data-storage-nrw-web-resource-type-options-for-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -13,6 +13,9 @@ */ +// May contain unused imports in some cases +// @ts-ignore +import type { DsNrwReplicationGroupDto } from './ds-nrw-replication-group-dto'; // May contain unused imports in some cases // @ts-ignore import type { QuotaForManipulationDto } from './quota-for-manipulation-dto'; @@ -29,5 +32,13 @@ export interface DataStorageNrwWebResourceTypeOptionsForManipulationDto { * @memberof DataStorageNrwWebResourceTypeOptionsForManipulationDto */ 'quota': QuotaForManipulationDto; + /** + * + * @type {DsNrwReplicationGroupDto} + * @memberof DataStorageNrwWebResourceTypeOptionsForManipulationDto + */ + 'replicationGroup'?: DsNrwReplicationGroupDto; } + + diff --git a/src/Coscine.Api/@coscine/model/deployed-graph-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/deployed-graph-dto-paged-response.ts index eed3e328bc4c4be4d63798373f76068b0ff3cf71..1e3bbfd40126a69285d7039e18e022490f3e5e72 100644 --- a/src/Coscine.Api/@coscine/model/deployed-graph-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/deployed-graph-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/deployed-graph-dto.ts b/src/Coscine.Api/@coscine/model/deployed-graph-dto.ts index f4ea8dff8b984729363a1b03245fbb008d9629d9..b552a25dcc05aca1a0df78c791ffe6bd4fc6e0d5 100644 --- a/src/Coscine.Api/@coscine/model/deployed-graph-dto.ts +++ b/src/Coscine.Api/@coscine/model/deployed-graph-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/discipline-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/discipline-dto-paged-response.ts index ef0bdcc5e21d87bb799945e256d911d0a3dd5260..5af046adfc093dfa49e9b2cb2a107e837d674c9b 100644 --- a/src/Coscine.Api/@coscine/model/discipline-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/discipline-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/discipline-dto-response.ts b/src/Coscine.Api/@coscine/model/discipline-dto-response.ts index 3238ccf83e94dc4e1ceb0a6b4aca0b4cddda6725..5645db29e34a205c03bd96cb0f440064a99f5487 100644 --- a/src/Coscine.Api/@coscine/model/discipline-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/discipline-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/discipline-dto.ts b/src/Coscine.Api/@coscine/model/discipline-dto.ts index 6298523254c17da72b18f6b1bc60fcb36999b593..b00713f5a5dae0d88f22b6caca8844380f7bcb72 100644 --- a/src/Coscine.Api/@coscine/model/discipline-dto.ts +++ b/src/Coscine.Api/@coscine/model/discipline-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/discipline-for-project-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/discipline-for-project-manipulation-dto.ts index 578e8f6d4a05603c5d7543f81703873dfd7ffdbd..1445e7af08722675296c0b332fc15c1875b353bd 100644 --- a/src/Coscine.Api/@coscine/model/discipline-for-project-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/discipline-for-project-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/discipline-for-resource-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/discipline-for-resource-manipulation-dto.ts index 0172f66ca128ed5379487d2945d69ce43bb3e985..e12272014b32dbc55f7315577afd2de1c131d01b 100644 --- a/src/Coscine.Api/@coscine/model/discipline-for-resource-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/discipline-for-resource-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/discipline-for-user-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/discipline-for-user-manipulation-dto.ts index d813dcabcc9a443b1888d15d57f26296b7193084..cae7610343b83a9147e67cabe8733fc167dcff5b 100644 --- a/src/Coscine.Api/@coscine/model/discipline-for-user-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/discipline-for-user-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/ds-nrw-replication-group-dto.ts b/src/Coscine.Api/@coscine/model/ds-nrw-replication-group-dto.ts new file mode 100644 index 0000000000000000000000000000000000000000..21d6134e2832eb33f3622c93ecf1b0780cff177a --- /dev/null +++ b/src/Coscine.Api/@coscine/model/ds-nrw-replication-group-dto.ts @@ -0,0 +1,31 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Coscine Web API + * 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. + * + * The version of the OpenAPI document: 2.0 + * Contact: servicedesk@rwth-aachen.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** + * Possible replication groups for the DS NRW. + * @export + * @enum {string} + */ + +export const DsNrwReplicationGroupDto = { + RWTH_UDE: 'RWTH-UDE', + UZK_UPB: 'UZK-UPB' +} as const; + +export type DsNrwReplicationGroupDto = typeof DsNrwReplicationGroupDto[keyof typeof DsNrwReplicationGroupDto]; + + + diff --git a/src/Coscine.Api/@coscine/model/extracted-metadata-tree-for-creation-dto.ts b/src/Coscine.Api/@coscine/model/extracted-metadata-tree-for-creation-dto.ts index fafb338061680aa67c2c039bb89e296faabe228c..4ad28e42152104760c6d1ef6ca014cc7ae9118dc 100644 --- a/src/Coscine.Api/@coscine/model/extracted-metadata-tree-for-creation-dto.ts +++ b/src/Coscine.Api/@coscine/model/extracted-metadata-tree-for-creation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/extracted-metadata-tree-for-update-dto.ts b/src/Coscine.Api/@coscine/model/extracted-metadata-tree-for-update-dto.ts index 5e76ee564b75c41e7ca8bdc33471b904da8d9a6e..a401b0bf9b65329a151f40266a8244307edfc620 100644 --- a/src/Coscine.Api/@coscine/model/extracted-metadata-tree-for-update-dto.ts +++ b/src/Coscine.Api/@coscine/model/extracted-metadata-tree-for-update-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/file-action-dto.ts b/src/Coscine.Api/@coscine/model/file-action-dto.ts index f872f0c418db01d9bd853e83abc28b83a9c3f17e..4a742914b30523466ca09c244e60d333056003e9 100644 --- a/src/Coscine.Api/@coscine/model/file-action-dto.ts +++ b/src/Coscine.Api/@coscine/model/file-action-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/file-action-http-method.ts b/src/Coscine.Api/@coscine/model/file-action-http-method.ts index 6397a4348a7d1e2f1d84970fb4f1614a914e8933..532a9f0d19c8dd7d5d1f38266401d5c6634aca7b 100644 --- a/src/Coscine.Api/@coscine/model/file-action-http-method.ts +++ b/src/Coscine.Api/@coscine/model/file-action-http-method.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/file-actions-dto.ts b/src/Coscine.Api/@coscine/model/file-actions-dto.ts index dd0732faf9357c160c414dc6e5dc15ccfad880df..d29ab8a99940c5de764e06fea9c3d33d85508b6f 100644 --- a/src/Coscine.Api/@coscine/model/file-actions-dto.ts +++ b/src/Coscine.Api/@coscine/model/file-actions-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/file-system-storage-options-dto.ts b/src/Coscine.Api/@coscine/model/file-system-storage-options-dto.ts index 5531ed23b2872cde2aecc454bc213abb2420fbde..194f8e5d02cc80037cf191941d4f0fcc6b710403 100644 --- a/src/Coscine.Api/@coscine/model/file-system-storage-options-dto.ts +++ b/src/Coscine.Api/@coscine/model/file-system-storage-options-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/file-tree-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/file-tree-dto-paged-response.ts index 16c1d749963f7463d273e09bd7f930b6dea00a8a..3a68ad011043f3864cc45e5dfd0ce68fc7fbe109 100644 --- a/src/Coscine.Api/@coscine/model/file-tree-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/file-tree-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/file-tree-dto.ts b/src/Coscine.Api/@coscine/model/file-tree-dto.ts index 471e1407a4a9fdfb30c4e353a2398cca9e006d37..f942058c6c5949589d8709d09f25ba87d28ba966 100644 --- a/src/Coscine.Api/@coscine/model/file-tree-dto.ts +++ b/src/Coscine.Api/@coscine/model/file-tree-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/fixed-value-for-resource-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/fixed-value-for-resource-manipulation-dto.ts index 0b7da288fecb8c252ce6ac9f81cdf0cd61fdfc30..287b279c1f8450dce7e6ddea21d743288f8f6110 100644 --- a/src/Coscine.Api/@coscine/model/fixed-value-for-resource-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/fixed-value-for-resource-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/git-lab-options-dto.ts b/src/Coscine.Api/@coscine/model/git-lab-options-dto.ts index c652b2bf31a493b24d9626de481a5df05a356587..d0894b4949b22ad413a1d6d8fc40c9b06c906e10 100644 --- a/src/Coscine.Api/@coscine/model/git-lab-options-dto.ts +++ b/src/Coscine.Api/@coscine/model/git-lab-options-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/gitlab-branch-dto-ienumerable-response.ts b/src/Coscine.Api/@coscine/model/gitlab-branch-dto-ienumerable-response.ts index ac9cbf7782351c0bab3f28ea413ab476c1b8f022..fa72c7179ebbe68df765dffc0e82b5bcdc7e10ec 100644 --- a/src/Coscine.Api/@coscine/model/gitlab-branch-dto-ienumerable-response.ts +++ b/src/Coscine.Api/@coscine/model/gitlab-branch-dto-ienumerable-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/gitlab-branch-dto.ts b/src/Coscine.Api/@coscine/model/gitlab-branch-dto.ts index 036b04a2c98b6d7427afb1f253bd8b29aa0549fc..1c5a3e80e7109d47b49bae5640a0bc7a93494c78 100644 --- a/src/Coscine.Api/@coscine/model/gitlab-branch-dto.ts +++ b/src/Coscine.Api/@coscine/model/gitlab-branch-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/gitlab-project-dto-ienumerable-response.ts b/src/Coscine.Api/@coscine/model/gitlab-project-dto-ienumerable-response.ts index a79feea4c6472d75864fccab408861bceff0e426..8b6357d6530ccbd5db621da3528509e7938ace59 100644 --- a/src/Coscine.Api/@coscine/model/gitlab-project-dto-ienumerable-response.ts +++ b/src/Coscine.Api/@coscine/model/gitlab-project-dto-ienumerable-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/gitlab-project-dto-response.ts b/src/Coscine.Api/@coscine/model/gitlab-project-dto-response.ts index b41b97defd5a4584b46820601ae013f887fab9a6..1824badab74499aafeaa78140af1a2c4fe101214 100644 --- a/src/Coscine.Api/@coscine/model/gitlab-project-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/gitlab-project-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/gitlab-project-dto.ts b/src/Coscine.Api/@coscine/model/gitlab-project-dto.ts index 6a92665593de18e0e4d9295b7e420586d55e7b03..a39eb02d1fc841519826ef6ff31ccfea562a1bdc 100644 --- a/src/Coscine.Api/@coscine/model/gitlab-project-dto.ts +++ b/src/Coscine.Api/@coscine/model/gitlab-project-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/gitlab-resource-type-options-for-creation-dto.ts b/src/Coscine.Api/@coscine/model/gitlab-resource-type-options-for-creation-dto.ts index 7d08f56f3d5f3b39f341260799c5304e108445ab..f143e391c9077b813fb33b8198e23047205229d9 100644 --- a/src/Coscine.Api/@coscine/model/gitlab-resource-type-options-for-creation-dto.ts +++ b/src/Coscine.Api/@coscine/model/gitlab-resource-type-options-for-creation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/gitlab-resource-type-options-for-update-dto.ts b/src/Coscine.Api/@coscine/model/gitlab-resource-type-options-for-update-dto.ts index 578fad545023b6d8033dda32bdaede16d4a8fb48..35800854302c3553f06388de7ab15bcd29418046 100644 --- a/src/Coscine.Api/@coscine/model/gitlab-resource-type-options-for-update-dto.ts +++ b/src/Coscine.Api/@coscine/model/gitlab-resource-type-options-for-update-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/handle-dto-response.ts b/src/Coscine.Api/@coscine/model/handle-dto-response.ts index bdabb76d8173e1c70c8fc09600d92f6533f8a5b6..b61bc78fd1f24c7917725c1febd19791c6654de4 100644 --- a/src/Coscine.Api/@coscine/model/handle-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/handle-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/handle-dto.ts b/src/Coscine.Api/@coscine/model/handle-dto.ts index f39eb70a672908f7b975dc406c28e6580b9b701f..178a2edd8171b6f7b65117cc53b2de2d8a1964de 100644 --- a/src/Coscine.Api/@coscine/model/handle-dto.ts +++ b/src/Coscine.Api/@coscine/model/handle-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/handle-for-update-dto.ts b/src/Coscine.Api/@coscine/model/handle-for-update-dto.ts index 9c4e26b3a1f661ca174175554e52cd5e8c2cc06c..f3c843c2755a062ed142e23cf0038439a58aa924 100644 --- a/src/Coscine.Api/@coscine/model/handle-for-update-dto.ts +++ b/src/Coscine.Api/@coscine/model/handle-for-update-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/handle-value-dto.ts b/src/Coscine.Api/@coscine/model/handle-value-dto.ts index fd3e34f9e22a83121d4a483c0e620999904fc729..d097c3d22950b75cbef0c08df747e39cbdfe555e 100644 --- a/src/Coscine.Api/@coscine/model/handle-value-dto.ts +++ b/src/Coscine.Api/@coscine/model/handle-value-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/handle-value-for-update-dto.ts b/src/Coscine.Api/@coscine/model/handle-value-for-update-dto.ts index 8296a8a69229bfc2ff2398038956fb18a9c546b3..d2af47815d7ab642a12aeec7d7574c088ce01c1b 100644 --- a/src/Coscine.Api/@coscine/model/handle-value-for-update-dto.ts +++ b/src/Coscine.Api/@coscine/model/handle-value-for-update-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/hash-parameters-dto.ts b/src/Coscine.Api/@coscine/model/hash-parameters-dto.ts index 998ff888da601f1dd3cb42145fba73bb71774749..6684c5cef9be45d3a45ecdd239b3856e658190b3 100644 --- a/src/Coscine.Api/@coscine/model/hash-parameters-dto.ts +++ b/src/Coscine.Api/@coscine/model/hash-parameters-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/identity-provider-dto.ts b/src/Coscine.Api/@coscine/model/identity-provider-dto.ts index 82e792b527018296e4cdf2e782e705d26767e6f7..dda84310db1fda7f8ad2771ca06b8091446d0d77 100644 --- a/src/Coscine.Api/@coscine/model/identity-provider-dto.ts +++ b/src/Coscine.Api/@coscine/model/identity-provider-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/identity-providers.ts b/src/Coscine.Api/@coscine/model/identity-providers.ts index 5e1be58b04575823af219e1cb4b0e779fcbf87c2..19538134de2a2eab7b34239865a928f84c1c0bb0 100644 --- a/src/Coscine.Api/@coscine/model/identity-providers.ts +++ b/src/Coscine.Api/@coscine/model/identity-providers.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/index.ts b/src/Coscine.Api/@coscine/model/index.ts index 69e381a77a22e4ef9a331639df9400d2e0e1054f..217075e0272c424c0cd5be14a843b67b492ab7ed 100644 --- a/src/Coscine.Api/@coscine/model/index.ts +++ b/src/Coscine.Api/@coscine/model/index.ts @@ -13,6 +13,8 @@ export * from './application-profile-for-creation-dto-response'; export * from './application-profile-for-resource-creation-dto'; export * from './application-profile-minimal-dto'; export * from './coscine-http-method'; +export * from './create-datasource-dto'; +export * from './create-datasource-dto-response'; export * from './data-storage-nrw-s3-options-dto'; export * from './data-storage-nrw-s3-resource-type-options-for-manipulation-dto'; export * from './data-storage-nrw-s3-worm-options-dto'; @@ -27,6 +29,7 @@ export * from './discipline-dto-response'; export * from './discipline-for-project-manipulation-dto'; export * from './discipline-for-resource-manipulation-dto'; export * from './discipline-for-user-manipulation-dto'; +export * from './ds-nrw-replication-group-dto'; export * from './extracted-metadata-tree-for-creation-dto'; export * from './extracted-metadata-tree-for-update-dto'; export * from './file-action-dto'; @@ -73,6 +76,9 @@ export * from './metadata-tree-for-creation-dto'; export * from './metadata-tree-for-deletion-dto'; export * from './metadata-tree-for-update-dto'; export * from './metadata-update-admin-parameters'; +export * from './notification-dto'; +export * from './notification-dto-paged-response'; +export * from './notification-dto-response'; export * from './organization-dto'; export * from './organization-dto-paged-response'; export * from './organization-dto-response'; @@ -181,6 +187,10 @@ export * from './user-for-update-dto'; export * from './user-merge-dto'; export * from './user-merge-dto-response'; export * from './user-minimal-dto'; +export * from './user-notification-for-creation-dto'; +export * from './user-notification-opt-out-dto'; +export * from './user-notification-opt-out-dto-paged-response'; +export * from './user-notification-opt-out-dto-response'; export * from './user-organization-dto'; export * from './user-terms-of-service-accept-dto'; export * from './variant-dto'; diff --git a/src/Coscine.Api/@coscine/model/language-dto-ienumerable-response.ts b/src/Coscine.Api/@coscine/model/language-dto-ienumerable-response.ts index 6eb23bc231edae244a35c9bc3ba2a6c9832c4cc5..db7a00e599a99df6bc10ca0f3ea5a21426c10ea3 100644 --- a/src/Coscine.Api/@coscine/model/language-dto-ienumerable-response.ts +++ b/src/Coscine.Api/@coscine/model/language-dto-ienumerable-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/language-dto-response.ts b/src/Coscine.Api/@coscine/model/language-dto-response.ts index 5a15eeee37240229dee39dfaad037de9d8dd978f..7ac45da36aec93df05655b3007a3b37dfcffc483 100644 --- a/src/Coscine.Api/@coscine/model/language-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/language-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/language-dto.ts b/src/Coscine.Api/@coscine/model/language-dto.ts index bed8e8e26ed9c5d4ff0c600111905566e9eafdfb..2702fa543a4a55e3c29aa1c9e6801fef5b8e2d28 100644 --- a/src/Coscine.Api/@coscine/model/language-dto.ts +++ b/src/Coscine.Api/@coscine/model/language-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/language-for-user-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/language-for-user-manipulation-dto.ts index a9c710fd782523080f9dd4e62935028b8c93c6ef..74b0076d0805d8818454fb3cb482143ee3c20066 100644 --- a/src/Coscine.Api/@coscine/model/language-for-user-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/language-for-user-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/license-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/license-dto-paged-response.ts index cbc995b46efd9d14fb754b71846ebf4c54c9ed77..e300d0906b727d1f8efb59022038caf4d85749fe 100644 --- a/src/Coscine.Api/@coscine/model/license-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/license-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/license-dto-response.ts b/src/Coscine.Api/@coscine/model/license-dto-response.ts index 029c8302034e42e854b45113591681b87cd806d8..4bb0733d49ca0c5faea329ca0f70f1fc6e308332 100644 --- a/src/Coscine.Api/@coscine/model/license-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/license-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/license-dto.ts b/src/Coscine.Api/@coscine/model/license-dto.ts index 54a1fc395550ca0850898d6dab9e4c6f7ba7c579..d71e0275609f17220b6bad2aed0f7b28075785c7 100644 --- a/src/Coscine.Api/@coscine/model/license-dto.ts +++ b/src/Coscine.Api/@coscine/model/license-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/license-for-resource-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/license-for-resource-manipulation-dto.ts index fec5474ce23aa9354085697298b630bab4c5fd93..772a939656a1bb246c4a90afb6f9ca9646780e16 100644 --- a/src/Coscine.Api/@coscine/model/license-for-resource-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/license-for-resource-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/maintenance-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/maintenance-dto-paged-response.ts index a4e364f8a44914d89a71de8d4950980b15fda132..89ccaef05b53cf0b9799630d8aff0116e7633ffa 100644 --- a/src/Coscine.Api/@coscine/model/maintenance-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/maintenance-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/maintenance-dto.ts b/src/Coscine.Api/@coscine/model/maintenance-dto.ts index f4fe8b9f10489a14217cbebcd080eeac75b9f032..c0ea3beb65d7c6e62e62a9ed8fb309b80a2c6c6f 100644 --- a/src/Coscine.Api/@coscine/model/maintenance-dto.ts +++ b/src/Coscine.Api/@coscine/model/maintenance-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/message-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/message-dto-paged-response.ts index 82313a1be6ad4ed3ba03af41f29ec89cb565ee7c..ae054017cac6f7f56d4fc5728ab025e26635078f 100644 --- a/src/Coscine.Api/@coscine/model/message-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/message-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/message-dto.ts b/src/Coscine.Api/@coscine/model/message-dto.ts index 371d070bad0fc5f56f08c1db8204479e325aa1e8..a7d3844e612a8677250e1a18efe14d241cf27074 100644 --- a/src/Coscine.Api/@coscine/model/message-dto.ts +++ b/src/Coscine.Api/@coscine/model/message-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/message-type.ts b/src/Coscine.Api/@coscine/model/message-type.ts index a87e381a08a729d0a0b8955bd4b9e9c3dca24c25..09bcfacbdb22f51097dc936dfc57411ace8809e3 100644 --- a/src/Coscine.Api/@coscine/model/message-type.ts +++ b/src/Coscine.Api/@coscine/model/message-type.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/metadata-tree-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/metadata-tree-dto-paged-response.ts index 05c018c58a755bd40021ed211ce429599933c822..d5566cb403b30d1673734c1b23871ccd000db4b2 100644 --- a/src/Coscine.Api/@coscine/model/metadata-tree-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/metadata-tree-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/metadata-tree-dto-response.ts b/src/Coscine.Api/@coscine/model/metadata-tree-dto-response.ts index 794759aa12045b5b403e15b371b663a979d366ea..9802b8af707de9a1144f059d98a8a46fc4fefc76 100644 --- a/src/Coscine.Api/@coscine/model/metadata-tree-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/metadata-tree-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/metadata-tree-dto.ts b/src/Coscine.Api/@coscine/model/metadata-tree-dto.ts index f6d22f40afc619d602f0da4fb757fedb794da70b..85ed5f04e3a73d47a5d0f2050925564c7614da32 100644 --- a/src/Coscine.Api/@coscine/model/metadata-tree-dto.ts +++ b/src/Coscine.Api/@coscine/model/metadata-tree-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/metadata-tree-extracted-dto.ts b/src/Coscine.Api/@coscine/model/metadata-tree-extracted-dto.ts index cfcf28ec527408758e63668d43b8efb95bf33078..364eb5adaddbdbdbdc14bc374a7af037eb4090bf 100644 --- a/src/Coscine.Api/@coscine/model/metadata-tree-extracted-dto.ts +++ b/src/Coscine.Api/@coscine/model/metadata-tree-extracted-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/metadata-tree-for-creation-dto.ts b/src/Coscine.Api/@coscine/model/metadata-tree-for-creation-dto.ts index 76ecfc8e8a2b0a43b742e1e853218810bd3e1a34..de93460a76e236da33376fcb05bb25afa30ccc3e 100644 --- a/src/Coscine.Api/@coscine/model/metadata-tree-for-creation-dto.ts +++ b/src/Coscine.Api/@coscine/model/metadata-tree-for-creation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/metadata-tree-for-deletion-dto.ts b/src/Coscine.Api/@coscine/model/metadata-tree-for-deletion-dto.ts index e479079f67a9c695273374db12a7e61150d7235f..829c265f279a04b9c1f184a3297ac5b5e3fb9cb0 100644 --- a/src/Coscine.Api/@coscine/model/metadata-tree-for-deletion-dto.ts +++ b/src/Coscine.Api/@coscine/model/metadata-tree-for-deletion-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/metadata-tree-for-update-dto.ts b/src/Coscine.Api/@coscine/model/metadata-tree-for-update-dto.ts index 0a3f7aa4b256a724acc68a466fdb161bdf380882..e8fdd99fa565fdfb00114d04afe459f7c2b37113 100644 --- a/src/Coscine.Api/@coscine/model/metadata-tree-for-update-dto.ts +++ b/src/Coscine.Api/@coscine/model/metadata-tree-for-update-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/metadata-update-admin-parameters.ts b/src/Coscine.Api/@coscine/model/metadata-update-admin-parameters.ts index 46f0d8911519c01830a1aac09ee85751ac05d54b..e0600e021e681aeff6e5f433909067154e2b4205 100644 --- a/src/Coscine.Api/@coscine/model/metadata-update-admin-parameters.ts +++ b/src/Coscine.Api/@coscine/model/metadata-update-admin-parameters.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/notification-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/notification-dto-paged-response.ts new file mode 100644 index 0000000000000000000000000000000000000000..f75c9c4edcdabe77f259ca251c9181c3d1fb4cb4 --- /dev/null +++ b/src/Coscine.Api/@coscine/model/notification-dto-paged-response.ts @@ -0,0 +1,60 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Coscine Web API + * 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. + * + * The version of the OpenAPI document: 2.0 + * Contact: servicedesk@rwth-aachen.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +// May contain unused imports in some cases +// @ts-ignore +import type { NotificationDto } from './notification-dto'; +// May contain unused imports in some cases +// @ts-ignore +import type { Pagination } from './pagination'; + +/** + * + * @export + * @interface NotificationDtoPagedResponse + */ +export interface NotificationDtoPagedResponse { + /** + * + * @type {Array<NotificationDto>} + * @memberof NotificationDtoPagedResponse + */ + 'data'?: Array<NotificationDto> | null; + /** + * + * @type {boolean} + * @memberof NotificationDtoPagedResponse + */ + 'isSuccess'?: boolean; + /** + * + * @type {number} + * @memberof NotificationDtoPagedResponse + */ + 'statusCode'?: number | null; + /** + * + * @type {string} + * @memberof NotificationDtoPagedResponse + */ + 'traceId'?: string | null; + /** + * + * @type {Pagination} + * @memberof NotificationDtoPagedResponse + */ + 'pagination'?: Pagination; +} + diff --git a/src/Coscine.Api/@coscine/model/notification-dto-response.ts b/src/Coscine.Api/@coscine/model/notification-dto-response.ts new file mode 100644 index 0000000000000000000000000000000000000000..4b2714e597a7da62cb41b7d9220d5b7f31f70190 --- /dev/null +++ b/src/Coscine.Api/@coscine/model/notification-dto-response.ts @@ -0,0 +1,51 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Coscine Web API + * 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. + * + * The version of the OpenAPI document: 2.0 + * Contact: servicedesk@rwth-aachen.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +// May contain unused imports in some cases +// @ts-ignore +import type { NotificationDto } from './notification-dto'; + +/** + * + * @export + * @interface NotificationDtoResponse + */ +export interface NotificationDtoResponse { + /** + * + * @type {NotificationDto} + * @memberof NotificationDtoResponse + */ + 'data'?: NotificationDto; + /** + * + * @type {boolean} + * @memberof NotificationDtoResponse + */ + 'isSuccess'?: boolean; + /** + * + * @type {number} + * @memberof NotificationDtoResponse + */ + 'statusCode'?: number | null; + /** + * + * @type {string} + * @memberof NotificationDtoResponse + */ + 'traceId'?: string | null; +} + diff --git a/src/Coscine.Api/@coscine/model/notification-dto.ts b/src/Coscine.Api/@coscine/model/notification-dto.ts new file mode 100644 index 0000000000000000000000000000000000000000..da50d432a54b2b604e3a72f4767067125b0180f2 --- /dev/null +++ b/src/Coscine.Api/@coscine/model/notification-dto.ts @@ -0,0 +1,42 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Coscine Web API + * 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. + * + * The version of the OpenAPI document: 2.0 + * Contact: servicedesk@rwth-aachen.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** + * Represents a minimal data transfer object (DTO) for a notification. + * @export + * @interface NotificationDto + */ +export interface NotificationDto { + /** + * Unique identifier for the project notification. + * @type {string} + * @memberof NotificationDto + */ + 'id': string; + /** + * Category of the notification. + * @type {string} + * @memberof NotificationDto + */ + 'category': string; + /** + * Field which clarifies if the notification is optional or not. + * @type {boolean} + * @memberof NotificationDto + */ + 'isOptional': boolean; +} + diff --git a/src/Coscine.Api/@coscine/model/organization-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/organization-dto-paged-response.ts index 46ff3c10c475398a73d449e8a669d76bd4344297..53d1463f07db597265c02772f7e2edfdb2b6a810 100644 --- a/src/Coscine.Api/@coscine/model/organization-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/organization-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/organization-dto-response.ts b/src/Coscine.Api/@coscine/model/organization-dto-response.ts index 81709c30f6d93d6f183803c92c1e7f212954882d..1b4ec79181460c1f49fde8bad681eb8b658fe74c 100644 --- a/src/Coscine.Api/@coscine/model/organization-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/organization-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/organization-dto.ts b/src/Coscine.Api/@coscine/model/organization-dto.ts index c43d976685c9c7e34a549c31ca8f231e022c308e..00d8adfdea3e0c5aeb7399b710571045116a1e19 100644 --- a/src/Coscine.Api/@coscine/model/organization-dto.ts +++ b/src/Coscine.Api/@coscine/model/organization-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/organization-for-project-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/organization-for-project-manipulation-dto.ts index d542fdda868c5679473c34ca67a147035263dae5..ec7c1c6b6d6d8542a8d71634e51d98329d3a3c17 100644 --- a/src/Coscine.Api/@coscine/model/organization-for-project-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/organization-for-project-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/pagination.ts b/src/Coscine.Api/@coscine/model/pagination.ts index d8bb8c2f24d8a2c388ea081ff96e3d47b7df251b..be46e08c1efdf37836f4a068cf64b958bb20fdbc 100644 --- a/src/Coscine.Api/@coscine/model/pagination.ts +++ b/src/Coscine.Api/@coscine/model/pagination.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/pid-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/pid-dto-paged-response.ts index 33086f4801a005c6c86cc12bcdda3c2082a041cc..30b72fd179cef2b9850ecca51ec77c35cad00c44 100644 --- a/src/Coscine.Api/@coscine/model/pid-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/pid-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/pid-dto-response.ts b/src/Coscine.Api/@coscine/model/pid-dto-response.ts index b04b1d438f868740ed3c3343754d0e874e720db0..9ab51e5183ac77989c6cfda5221f041db97d0ad2 100644 --- a/src/Coscine.Api/@coscine/model/pid-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/pid-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/pid-dto.ts b/src/Coscine.Api/@coscine/model/pid-dto.ts index c010f280cb0aa7eb95740574ba40aa6fcc7410ab..40ca21d896b0f91cc5fc5de2a4390ec2b3f0b0b8 100644 --- a/src/Coscine.Api/@coscine/model/pid-dto.ts +++ b/src/Coscine.Api/@coscine/model/pid-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/pid-request-dto.ts b/src/Coscine.Api/@coscine/model/pid-request-dto.ts index e56c0cbc1d6805e30be355720645ed1fcf37ed16..07151bf6d82f569c4cdf995c8924a8a281f50f88 100644 --- a/src/Coscine.Api/@coscine/model/pid-request-dto.ts +++ b/src/Coscine.Api/@coscine/model/pid-request-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/pid-type.ts b/src/Coscine.Api/@coscine/model/pid-type.ts index 254477232a5ae946495ff324ea8b4765e0239919..ed95df2aec2361e83267daf7f6a2d4bffb3fe966 100644 --- a/src/Coscine.Api/@coscine/model/pid-type.ts +++ b/src/Coscine.Api/@coscine/model/pid-type.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-admin-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/project-admin-dto-paged-response.ts index 9b9c922c094d1b0730ae467b14595dd335986efc..cdfa5252c09d2f9a6d1ee98acce13a9b90f2ddfe 100644 --- a/src/Coscine.Api/@coscine/model/project-admin-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/project-admin-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-admin-dto.ts b/src/Coscine.Api/@coscine/model/project-admin-dto.ts index 2fe6c7c4c48aba3ed8543a958c5c9508b17632e4..d448e080e48d7b0eb351429899a6ff975e6bc979 100644 --- a/src/Coscine.Api/@coscine/model/project-admin-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-admin-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/project-dto-paged-response.ts index 8b117032eb8ad2510ce7b4172d2f01f20571e5b8..9354aa275b303f9dc20eca220309a7f4ef084812 100644 --- a/src/Coscine.Api/@coscine/model/project-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/project-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-dto-response.ts b/src/Coscine.Api/@coscine/model/project-dto-response.ts index 627112feb2dc55471d472e7ba91e046589dda3f0..7ca2359a3a525ea799c705fbaa455262b635ddc0 100644 --- a/src/Coscine.Api/@coscine/model/project-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/project-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-dto.ts b/src/Coscine.Api/@coscine/model/project-dto.ts index 9a7899ed81b760a5ddd2878ec0ccad55da2ae83f..fd2edb28cf05c61c1bc8a51ebe897ee5b8b52f26 100644 --- a/src/Coscine.Api/@coscine/model/project-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-for-creation-dto.ts b/src/Coscine.Api/@coscine/model/project-for-creation-dto.ts index 7e6937f14762daf7d12ba17056ddcea8bc3c922f..301d6e9ceec3597324a975faabcd351ed60778e1 100644 --- a/src/Coscine.Api/@coscine/model/project-for-creation-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-for-creation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-for-update-dto.ts b/src/Coscine.Api/@coscine/model/project-for-update-dto.ts index d99c9705acd943f01af2e95e400e822c200bcfe1..e8220f7d8c2f8a0b5260aff0e4b56ba3e85891ba 100644 --- a/src/Coscine.Api/@coscine/model/project-for-update-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-for-update-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-invitation-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/project-invitation-dto-paged-response.ts index c3f966ed2202f8b1c4b44df738211f4b94dee7d7..7941c32edf778198a26e17c917ffd0fdeb83133f 100644 --- a/src/Coscine.Api/@coscine/model/project-invitation-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/project-invitation-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-invitation-dto-response.ts b/src/Coscine.Api/@coscine/model/project-invitation-dto-response.ts index 891b1081def533741b6ff2e84ea208a69ca8e4b7..651a9b3d24f42c9ca44b652aac6dda00a282e433 100644 --- a/src/Coscine.Api/@coscine/model/project-invitation-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/project-invitation-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-invitation-dto.ts b/src/Coscine.Api/@coscine/model/project-invitation-dto.ts index 0198253619464cf55b30c8f832230444390f74d9..e6522e3531aa6754ad3ccd5fa5848953b3d927b9 100644 --- a/src/Coscine.Api/@coscine/model/project-invitation-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-invitation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-invitation-for-project-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/project-invitation-for-project-manipulation-dto.ts index bcd7b6da1740a7b47798872065e1e3fbe98e9191..6fc81d81f59aafdbc0231183372aafee4a6d584a 100644 --- a/src/Coscine.Api/@coscine/model/project-invitation-for-project-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-invitation-for-project-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-invitation-resolve-dto.ts b/src/Coscine.Api/@coscine/model/project-invitation-resolve-dto.ts index 545b0286e1e444e83ca6b26d64d89e02fc184771..1905bf93a0c1c3ff34133cb0ad6dda798e430834 100644 --- a/src/Coscine.Api/@coscine/model/project-invitation-resolve-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-invitation-resolve-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-minimal-dto.ts b/src/Coscine.Api/@coscine/model/project-minimal-dto.ts index d324bf7220fb566a4b8219174032c760ad9b1ac9..e2be46ce24f4f926b57aeb39e83356a391f52a88 100644 --- a/src/Coscine.Api/@coscine/model/project-minimal-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-minimal-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-organization-dto.ts b/src/Coscine.Api/@coscine/model/project-organization-dto.ts index 113d5f50799eea6b71a53b8af418df1405f461d7..fdc06c96f845cbe63c36fdea329cc3efed3c63e2 100644 --- a/src/Coscine.Api/@coscine/model/project-organization-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-organization-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-publication-request-dto-response.ts b/src/Coscine.Api/@coscine/model/project-publication-request-dto-response.ts index f17db1042a80e768605833be624473ccd284c759..ee65ef80c8d4210c877480625251f7d0a9011c24 100644 --- a/src/Coscine.Api/@coscine/model/project-publication-request-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/project-publication-request-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-publication-request-dto.ts b/src/Coscine.Api/@coscine/model/project-publication-request-dto.ts index dfda699942a4af56e7faf58e57630beee19dfb4d..066e52a53b197c26df6bc6b08f1ed94e5aa0e6c2 100644 --- a/src/Coscine.Api/@coscine/model/project-publication-request-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-publication-request-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-quota-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/project-quota-dto-paged-response.ts index a163f9fb4be71c6a6949e7445a516c3c8cbb778c..7b71480b53ee958d190821eb70e7d503b371a102 100644 --- a/src/Coscine.Api/@coscine/model/project-quota-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/project-quota-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-quota-dto-response.ts b/src/Coscine.Api/@coscine/model/project-quota-dto-response.ts index cc29f31db1b134c2a9c866b1d67df755181e740f..c2166bf6e10fb173a615f962badaa51864a29801 100644 --- a/src/Coscine.Api/@coscine/model/project-quota-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/project-quota-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-quota-dto.ts b/src/Coscine.Api/@coscine/model/project-quota-dto.ts index 44932a1a64ef7c6b485e8e93b7ac12621fa10dfa..421f952a66326790e013951877f3dc5542705d8d 100644 --- a/src/Coscine.Api/@coscine/model/project-quota-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-quota-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-quota-for-update-dto.ts b/src/Coscine.Api/@coscine/model/project-quota-for-update-dto.ts index 18767103397037d8345ca8b8bfee5f24edf0a862..8d6f84ea72c86c45e9fb03d46b80da82f00381c2 100644 --- a/src/Coscine.Api/@coscine/model/project-quota-for-update-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-quota-for-update-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-resource-minimal-dto.ts b/src/Coscine.Api/@coscine/model/project-resource-minimal-dto.ts index 6aa811388dff65c877d859710cd58429933ab2ff..70ffa541e5e3ec2ca5eab6438197482659382a67 100644 --- a/src/Coscine.Api/@coscine/model/project-resource-minimal-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-resource-minimal-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-role-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/project-role-dto-paged-response.ts index 45ed5186712132fa574c9da0bb8498fd0c7d1c9d..406bfe011ce4c84c9393cf62bc2c9df7615af422 100644 --- a/src/Coscine.Api/@coscine/model/project-role-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/project-role-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-role-dto-response.ts b/src/Coscine.Api/@coscine/model/project-role-dto-response.ts index f3e59a46268302f493e4bd9a07a9de9caffb3a4c..f34a604524e091803243c4c723e3ca9ee759527f 100644 --- a/src/Coscine.Api/@coscine/model/project-role-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/project-role-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-role-dto.ts b/src/Coscine.Api/@coscine/model/project-role-dto.ts index 0088f58508b90b8a629d83caae1be195d4e38488..65436b08a0d544e312051c4b4889ad80b16301c1 100644 --- a/src/Coscine.Api/@coscine/model/project-role-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-role-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-role-for-project-creation-dto.ts b/src/Coscine.Api/@coscine/model/project-role-for-project-creation-dto.ts index d2d44083eb892dfe0d9304daba488d524c7fe86e..27a333fb90f8383c170cddfb22cea617bced7f2a 100644 --- a/src/Coscine.Api/@coscine/model/project-role-for-project-creation-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-role-for-project-creation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-role-for-project-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/project-role-for-project-manipulation-dto.ts index 16abcd8dc6f5d8769d15aba5e8571c1becc2bfbd..9e86378155ce24fed90ffe1eb976be18e74e0b7c 100644 --- a/src/Coscine.Api/@coscine/model/project-role-for-project-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-role-for-project-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/project-role-minimal-dto.ts b/src/Coscine.Api/@coscine/model/project-role-minimal-dto.ts index 15417b825f3957df15c6108600092d2ab7c0edff..7d48f9bfff8ae9b35cba940d907c5f152e77e249 100644 --- a/src/Coscine.Api/@coscine/model/project-role-minimal-dto.ts +++ b/src/Coscine.Api/@coscine/model/project-role-minimal-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/provenance-dto-response.ts b/src/Coscine.Api/@coscine/model/provenance-dto-response.ts index 781818abe58ee90c6d8be5675d77f0baad5affb9..8123a4e87281372be4005685cdb159419bc7b975 100644 --- a/src/Coscine.Api/@coscine/model/provenance-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/provenance-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/provenance-dto.ts b/src/Coscine.Api/@coscine/model/provenance-dto.ts index 8ad489ee70c82aa9a77bc6ee51dd288a3ac342e0..61e1ba119be2ae957b2606fbb5690b8e8178b7b4 100644 --- a/src/Coscine.Api/@coscine/model/provenance-dto.ts +++ b/src/Coscine.Api/@coscine/model/provenance-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/provenance-for-update-dto.ts b/src/Coscine.Api/@coscine/model/provenance-for-update-dto.ts index 9d0fef068d91ff7af9d80c4c3a20f602d6f79c53..d4b570f55f45b3e57e7f47b5b15e49457b2944ee 100644 --- a/src/Coscine.Api/@coscine/model/provenance-for-update-dto.ts +++ b/src/Coscine.Api/@coscine/model/provenance-for-update-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/provenance-parameters-dto.ts b/src/Coscine.Api/@coscine/model/provenance-parameters-dto.ts index 54a7357c11fb8cd52eab2aa7909c1f5d8a55b13e..89962124cd70f582acea65ca737daa8473139611 100644 --- a/src/Coscine.Api/@coscine/model/provenance-parameters-dto.ts +++ b/src/Coscine.Api/@coscine/model/provenance-parameters-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/public-user-dto-ienumerable-response.ts b/src/Coscine.Api/@coscine/model/public-user-dto-ienumerable-response.ts index 9c30d44d61df7043c8413dfbcec8d3dc82306ac9..7f56ff100d51bfcfe4ea70b4624bdbd46a0c8b1f 100644 --- a/src/Coscine.Api/@coscine/model/public-user-dto-ienumerable-response.ts +++ b/src/Coscine.Api/@coscine/model/public-user-dto-ienumerable-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/public-user-dto.ts b/src/Coscine.Api/@coscine/model/public-user-dto.ts index a754c403fbcd461abbc39cfa396ab68c996df14d..899462f0160005748796c6d7661659644b80ca58 100644 --- a/src/Coscine.Api/@coscine/model/public-user-dto.ts +++ b/src/Coscine.Api/@coscine/model/public-user-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/publication-advisory-service-dto.ts b/src/Coscine.Api/@coscine/model/publication-advisory-service-dto.ts index e7e80891b3fcca9d3dbca215315fd8477e479478..07d0b0590d96f893da85e555855437fa9f225235 100644 --- a/src/Coscine.Api/@coscine/model/publication-advisory-service-dto.ts +++ b/src/Coscine.Api/@coscine/model/publication-advisory-service-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/publication-request-for-creation-dto.ts b/src/Coscine.Api/@coscine/model/publication-request-for-creation-dto.ts index 758eac57827a9590bb2be5ce20240bec45414be7..e9d42309b082e2374b48d9213225c3a9b0dcd785 100644 --- a/src/Coscine.Api/@coscine/model/publication-request-for-creation-dto.ts +++ b/src/Coscine.Api/@coscine/model/publication-request-for-creation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/quota-dto.ts b/src/Coscine.Api/@coscine/model/quota-dto.ts index 923792d8cc3d8c824791da6b1d10f83b17009ada..8e5285533993f5472525482d7ee59c25abb7ac5a 100644 --- a/src/Coscine.Api/@coscine/model/quota-dto.ts +++ b/src/Coscine.Api/@coscine/model/quota-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/quota-for-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/quota-for-manipulation-dto.ts index edf9c0f0f0c9c23c429a69c346711e582e5c6fa7..ae9a84ec963f4f4b40e71b38dd33c2950d4dc418 100644 --- a/src/Coscine.Api/@coscine/model/quota-for-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/quota-for-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/quota-unit.ts b/src/Coscine.Api/@coscine/model/quota-unit.ts index f8e27b1e019039e0cc70762e006c25ed7460ea48..d28221d65c2c85a88e29430dce32937d783244ad 100644 --- a/src/Coscine.Api/@coscine/model/quota-unit.ts +++ b/src/Coscine.Api/@coscine/model/quota-unit.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/rdf-definition-dto-response.ts b/src/Coscine.Api/@coscine/model/rdf-definition-dto-response.ts index 285d08cbd96af82e42dff005783c4bf0cd2ae4e7..3dc311afea00e5299f03fda77618beb5e61a65c9 100644 --- a/src/Coscine.Api/@coscine/model/rdf-definition-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/rdf-definition-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/rdf-definition-dto.ts b/src/Coscine.Api/@coscine/model/rdf-definition-dto.ts index 9a7d734ae65ead310d80384f302bd0f055c4e7ef..e8cf0e3e299a6acae21960bc93a9043187d40043 100644 --- a/src/Coscine.Api/@coscine/model/rdf-definition-dto.ts +++ b/src/Coscine.Api/@coscine/model/rdf-definition-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/rdf-definition-for-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/rdf-definition-for-manipulation-dto.ts index 87980c476adf1093b6c4dcb3782209bd3db38f33..424b9bbc4a23b81dcd04dd2a97b341cf9ef5f1fd 100644 --- a/src/Coscine.Api/@coscine/model/rdf-definition-for-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/rdf-definition-for-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/rdf-format.ts b/src/Coscine.Api/@coscine/model/rdf-format.ts index b1accd89c8dffd87d8db71bfa2270a3378970196..f654c030091002f42390a34b92bc88f49af5e390 100644 --- a/src/Coscine.Api/@coscine/model/rdf-format.ts +++ b/src/Coscine.Api/@coscine/model/rdf-format.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/rdf-patch-document-dto.ts b/src/Coscine.Api/@coscine/model/rdf-patch-document-dto.ts index 816d611c6a780e4491024d11e646a7cc22d772b3..a62b5d04478fae9b7144b2b04765f2fa4bf79ec5 100644 --- a/src/Coscine.Api/@coscine/model/rdf-patch-document-dto.ts +++ b/src/Coscine.Api/@coscine/model/rdf-patch-document-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/rdf-patch-operation-dto.ts b/src/Coscine.Api/@coscine/model/rdf-patch-operation-dto.ts index 83c49b909a7920a93d04a16daf4f0c74454c2c8e..44e073ebe9f702b69f48cedf42e80646894ce12a 100644 --- a/src/Coscine.Api/@coscine/model/rdf-patch-operation-dto.ts +++ b/src/Coscine.Api/@coscine/model/rdf-patch-operation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/rdf-patch-operation-type.ts b/src/Coscine.Api/@coscine/model/rdf-patch-operation-type.ts index 9a11cfc90058633d003f81a71a386e760da4dabd..d7ad53132eab9ea409133d6434184efe93331131 100644 --- a/src/Coscine.Api/@coscine/model/rdf-patch-operation-type.ts +++ b/src/Coscine.Api/@coscine/model/rdf-patch-operation-type.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/rds-options-dto.ts b/src/Coscine.Api/@coscine/model/rds-options-dto.ts index 76fb7ad5ce05e719b51806d0ba19c92c2a119af7..a952bd33f99c05d8e508b70e8d9bf4781f4a8416 100644 --- a/src/Coscine.Api/@coscine/model/rds-options-dto.ts +++ b/src/Coscine.Api/@coscine/model/rds-options-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/rds-resource-type-options-for-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/rds-resource-type-options-for-manipulation-dto.ts index 207d08e959cc3fa93e8c6fa81bcae14ce9725fd9..166244c9babe17c2635538b523397ece024e47a3 100644 --- a/src/Coscine.Api/@coscine/model/rds-resource-type-options-for-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/rds-resource-type-options-for-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/rds-s3-options-dto.ts b/src/Coscine.Api/@coscine/model/rds-s3-options-dto.ts index 1eefa7b14f3a61f70734d36f58382a4855c68b3c..3488f9cd20a7ccbffef1363eced84d8915f76596 100644 --- a/src/Coscine.Api/@coscine/model/rds-s3-options-dto.ts +++ b/src/Coscine.Api/@coscine/model/rds-s3-options-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/rds-s3-resource-type-options-for-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/rds-s3-resource-type-options-for-manipulation-dto.ts index 6375bbdab220a6c54923041967000a52a528de23..8742317f535511bb0dd7301105a4197b5aeb5a2a 100644 --- a/src/Coscine.Api/@coscine/model/rds-s3-resource-type-options-for-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/rds-s3-resource-type-options-for-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/rds-s3-worm-options-dto.ts b/src/Coscine.Api/@coscine/model/rds-s3-worm-options-dto.ts index 5ac70eba5fba87433a62ff70cc5d7290d7632b06..a29f3683e2019b0e6a1c1b33d551051163847090 100644 --- a/src/Coscine.Api/@coscine/model/rds-s3-worm-options-dto.ts +++ b/src/Coscine.Api/@coscine/model/rds-s3-worm-options-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/rds-s3-worm-resource-type-options-for-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/rds-s3-worm-resource-type-options-for-manipulation-dto.ts index d53f6ed08155c7136d1c4565b0d9b60f2de7d74e..c9dffa4a9c9efc514cd1dc1225a1db87e06a795a 100644 --- a/src/Coscine.Api/@coscine/model/rds-s3-worm-resource-type-options-for-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/rds-s3-worm-resource-type-options-for-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-admin-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/resource-admin-dto-paged-response.ts index 08b45cf5d66461a209d4bcf6dec571018c2919b0..07652c31bb5a59ced3ff64561d55667c23bf1278 100644 --- a/src/Coscine.Api/@coscine/model/resource-admin-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/resource-admin-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-admin-dto.ts b/src/Coscine.Api/@coscine/model/resource-admin-dto.ts index d6e0cd397e94c32545be738285012a599bc6ed62..d52cafb9ad42a5a03047d26eb93ec54f3a870040 100644 --- a/src/Coscine.Api/@coscine/model/resource-admin-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-admin-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-content-page-columns-dto.ts b/src/Coscine.Api/@coscine/model/resource-content-page-columns-dto.ts index 7dedb70042c0d74d7b2c8ed9698a0d6aedbf79c5..6cc3eab3d38aa4dddc76216cac15ed4b1f464e21 100644 --- a/src/Coscine.Api/@coscine/model/resource-content-page-columns-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-content-page-columns-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-content-page-dto.ts b/src/Coscine.Api/@coscine/model/resource-content-page-dto.ts index dc24f66125caff6c7d86d1bd334b6714aef9491f..9f90c0afab7952a0ca850b83e5660d2cda17848f 100644 --- a/src/Coscine.Api/@coscine/model/resource-content-page-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-content-page-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-content-page-entries-view-dto.ts b/src/Coscine.Api/@coscine/model/resource-content-page-entries-view-dto.ts index 7f3a776ffe81280bc24c93af217d740f1333b002..3b3e4b82e09798c5e3405e0fb96d25c7888ef29c 100644 --- a/src/Coscine.Api/@coscine/model/resource-content-page-entries-view-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-content-page-entries-view-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-content-page-metadata-view-dto.ts b/src/Coscine.Api/@coscine/model/resource-content-page-metadata-view-dto.ts index 346e9848515e87e2b8edebfef23ce21db0d9c61b..b5d63283dbd9bcb0f4288f6d2094c9a34361d77f 100644 --- a/src/Coscine.Api/@coscine/model/resource-content-page-metadata-view-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-content-page-metadata-view-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-creation-page-dto.ts b/src/Coscine.Api/@coscine/model/resource-creation-page-dto.ts index c215405336ac487f25ee76398d9909584d56d824..2d2e14a6a4bc7568a1ce5e5fc4e526a7a03eae80 100644 --- a/src/Coscine.Api/@coscine/model/resource-creation-page-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-creation-page-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/resource-dto-paged-response.ts index f917374d74a3cff4c6faa0a8d00131ee17ea9b7e..b8955d172fe08f9c7166c8919dac69b97898ddb6 100644 --- a/src/Coscine.Api/@coscine/model/resource-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/resource-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-dto-response.ts b/src/Coscine.Api/@coscine/model/resource-dto-response.ts index f9dbbc3579b3d261d0545f76b3a2d974241087de..a34e29e76a82958839650bcbbe8eb89142de9d8b 100644 --- a/src/Coscine.Api/@coscine/model/resource-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/resource-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-dto.ts b/src/Coscine.Api/@coscine/model/resource-dto.ts index e54fd1969448cf665410a2775c51056bb703b539..9222d20fd2af67b87ef7d72b0603aee10a70d72e 100644 --- a/src/Coscine.Api/@coscine/model/resource-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-for-creation-dto.ts b/src/Coscine.Api/@coscine/model/resource-for-creation-dto.ts index c71c0f373286bbb844b9abfbf5fae920603ce13e..4e47cf746fe643eb29777f4b40e692871cb56439 100644 --- a/src/Coscine.Api/@coscine/model/resource-for-creation-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-for-creation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-for-update-dto.ts b/src/Coscine.Api/@coscine/model/resource-for-update-dto.ts index fd5deae07502cd23f16262b4ddde05f32418f1df..2b4578714f4773411e2731c50c2c6f8f981ce969 100644 --- a/src/Coscine.Api/@coscine/model/resource-for-update-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-for-update-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-minimal-dto.ts b/src/Coscine.Api/@coscine/model/resource-minimal-dto.ts index e5981e38c0f212fa6e0fc4de9c1ba50dc6af1b3f..c01ec2fafa54b84415930ed7bbae91cc1dae7a47 100644 --- a/src/Coscine.Api/@coscine/model/resource-minimal-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-minimal-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-quota-dto-response.ts b/src/Coscine.Api/@coscine/model/resource-quota-dto-response.ts index b17f01699887e332ce17faf15e7a67143bc4e3fc..6847020c33b9bcb3339d467f5792043fde369509 100644 --- a/src/Coscine.Api/@coscine/model/resource-quota-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/resource-quota-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-quota-dto.ts b/src/Coscine.Api/@coscine/model/resource-quota-dto.ts index cdbf6a9cf7e0770665ae11c05925c57c77888baf..dcb5bbac0826554861e1fa2e92b5752354f2b5c5 100644 --- a/src/Coscine.Api/@coscine/model/resource-quota-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-quota-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-type-dto.ts b/src/Coscine.Api/@coscine/model/resource-type-dto.ts index 693574c76c6feadc7a9ee2856a0ee49d35628846..7e52f694454cb6c273c21c9b09121e6f19e41284 100644 --- a/src/Coscine.Api/@coscine/model/resource-type-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-type-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-type-information-dto-ienumerable-response.ts b/src/Coscine.Api/@coscine/model/resource-type-information-dto-ienumerable-response.ts index b95e7998ccd4f4765e2740e92d2940a5788031e3..45422895beebf80f017f05c7f1a952b4889594b3 100644 --- a/src/Coscine.Api/@coscine/model/resource-type-information-dto-ienumerable-response.ts +++ b/src/Coscine.Api/@coscine/model/resource-type-information-dto-ienumerable-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-type-information-dto-response.ts b/src/Coscine.Api/@coscine/model/resource-type-information-dto-response.ts index aaf12b5693398aeed3906bf3c20f1ea47d11608a..823aa9908eca63f80ac2560212a3e3d05d67490c 100644 --- a/src/Coscine.Api/@coscine/model/resource-type-information-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/resource-type-information-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-type-information-dto.ts b/src/Coscine.Api/@coscine/model/resource-type-information-dto.ts index c67797cf69c412fb307d8be64ef7159a2af30f3c..6275530d966bf5420f72dbb212ac142df424a014 100644 --- a/src/Coscine.Api/@coscine/model/resource-type-information-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-type-information-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-type-minimal-dto.ts b/src/Coscine.Api/@coscine/model/resource-type-minimal-dto.ts index 0743ea754a13f4eb0b96d121fdee277296b65934..fa2ba38b06debf233cfa734c704a743ee8a6db5c 100644 --- a/src/Coscine.Api/@coscine/model/resource-type-minimal-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-type-minimal-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-type-options-dto.ts b/src/Coscine.Api/@coscine/model/resource-type-options-dto.ts index 5e8331c4dc46ab3ae4c18f68f0b3a823917bf181..76dc32a142e7152c75b864f09654415b05fd7451 100644 --- a/src/Coscine.Api/@coscine/model/resource-type-options-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-type-options-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-type-options-for-creation-dto.ts b/src/Coscine.Api/@coscine/model/resource-type-options-for-creation-dto.ts index 48899f07a9c5c9503acafd608cc674aa4cd5b619..195904cd8b3a581437285ee9da08bff2598142b0 100644 --- a/src/Coscine.Api/@coscine/model/resource-type-options-for-creation-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-type-options-for-creation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-type-options-for-update-dto.ts b/src/Coscine.Api/@coscine/model/resource-type-options-for-update-dto.ts index 32e62b4979f78075cd82ecd9240942e84b72062e..cbf9ceeaf16317ee631b060172460ec405bebad5 100644 --- a/src/Coscine.Api/@coscine/model/resource-type-options-for-update-dto.ts +++ b/src/Coscine.Api/@coscine/model/resource-type-options-for-update-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/resource-type-status.ts b/src/Coscine.Api/@coscine/model/resource-type-status.ts index ab2566c65731fa80581d79fe26b57936b706a4ba..48037b29572f43da57419d0b2041843fc16026f1 100644 --- a/src/Coscine.Api/@coscine/model/resource-type-status.ts +++ b/src/Coscine.Api/@coscine/model/resource-type-status.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/role-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/role-dto-paged-response.ts index 85b8775d0f1d29fae4f6b63a13e44f77fb10143a..708732d099c489ecab3b2e29b3534a990ac2f400 100644 --- a/src/Coscine.Api/@coscine/model/role-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/role-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/role-dto-response.ts b/src/Coscine.Api/@coscine/model/role-dto-response.ts index 670bffad3d63537a0b8b32a1f59b5bcaa9b58122..ed7d9d9a0280cbf4941d7f6156d5f71251486426 100644 --- a/src/Coscine.Api/@coscine/model/role-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/role-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/role-dto.ts b/src/Coscine.Api/@coscine/model/role-dto.ts index 755733ac50a6c4aa8d6481e0c24e0da2f8fd37a9..3c90b7e61915966f44d85307b823eafcf49c0cb9 100644 --- a/src/Coscine.Api/@coscine/model/role-dto.ts +++ b/src/Coscine.Api/@coscine/model/role-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/role-minimal-dto.ts b/src/Coscine.Api/@coscine/model/role-minimal-dto.ts index 232d8afce9e581ae2bff4c4e42565872803809c0..f38f0c87b59bcfb49429789a38891321df228b68 100644 --- a/src/Coscine.Api/@coscine/model/role-minimal-dto.ts +++ b/src/Coscine.Api/@coscine/model/role-minimal-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/search-category-type.ts b/src/Coscine.Api/@coscine/model/search-category-type.ts index 4444d0c4cf57737acf58e18ad3fd71b8848a4c50..9528ddd1c7ffca487988dbfe553bbf4cb7fcd01b 100644 --- a/src/Coscine.Api/@coscine/model/search-category-type.ts +++ b/src/Coscine.Api/@coscine/model/search-category-type.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/search-category.ts b/src/Coscine.Api/@coscine/model/search-category.ts index 976c392081d312edfc07dd43b43dd6e2c4203d4e..f108f4db715f43c79e4761812e5704404865d956 100644 --- a/src/Coscine.Api/@coscine/model/search-category.ts +++ b/src/Coscine.Api/@coscine/model/search-category.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/search-result-dto-paged-search-response.ts b/src/Coscine.Api/@coscine/model/search-result-dto-paged-search-response.ts index 2ed83da031223aa6a77567bb7a2070175df24d9e..908517032d18228820900d8e85c6f18b7fa5e966 100644 --- a/src/Coscine.Api/@coscine/model/search-result-dto-paged-search-response.ts +++ b/src/Coscine.Api/@coscine/model/search-result-dto-paged-search-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/search-result-dto.ts b/src/Coscine.Api/@coscine/model/search-result-dto.ts index 900f536c1b190fd89d26a63809d45c55ca05015a..3a3d524c86ca68c4a61c748ab79ffa359c28acbd 100644 --- a/src/Coscine.Api/@coscine/model/search-result-dto.ts +++ b/src/Coscine.Api/@coscine/model/search-result-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/terms-of-service-dto-response.ts b/src/Coscine.Api/@coscine/model/terms-of-service-dto-response.ts index 7cf4eac9a35bb9874efab4d1ca94dfd52096b5d1..ad8988c82ff42e374f7bbe896db8ed9f19fd15e9 100644 --- a/src/Coscine.Api/@coscine/model/terms-of-service-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/terms-of-service-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/terms-of-service-dto.ts b/src/Coscine.Api/@coscine/model/terms-of-service-dto.ts index ea68186de583a3cc12a09d1a8572c18aa7ad94c7..3198c528a660b91b2b46769ad9d17274f016fdf1 100644 --- a/src/Coscine.Api/@coscine/model/terms-of-service-dto.ts +++ b/src/Coscine.Api/@coscine/model/terms-of-service-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/title-dto-ienumerable-response.ts b/src/Coscine.Api/@coscine/model/title-dto-ienumerable-response.ts index d570aeff7cf2799472335bc2df5ebdea90cf91d3..27ae02931192dde7fe307b9923f9cd888039c5bf 100644 --- a/src/Coscine.Api/@coscine/model/title-dto-ienumerable-response.ts +++ b/src/Coscine.Api/@coscine/model/title-dto-ienumerable-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/title-dto-response.ts b/src/Coscine.Api/@coscine/model/title-dto-response.ts index 7ec28c569b188759b82684febb5fb7fbb62664b5..a19d6586432230f7d98ebdbacd875f7aaa322c01 100644 --- a/src/Coscine.Api/@coscine/model/title-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/title-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/title-dto.ts b/src/Coscine.Api/@coscine/model/title-dto.ts index d1ac1bb1513d5af1384f549c845a1738e2bf5e79..05c985bb11b4c5ccbb028b494642ef1d798b62a7 100644 --- a/src/Coscine.Api/@coscine/model/title-dto.ts +++ b/src/Coscine.Api/@coscine/model/title-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/title-for-user-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/title-for-user-manipulation-dto.ts index 9ca9567b3f015e17300cea003025353be6670c93..683a9ef48f0d76e439f7cbd54f60cd36ae167582 100644 --- a/src/Coscine.Api/@coscine/model/title-for-user-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/title-for-user-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/tree-data-type.ts b/src/Coscine.Api/@coscine/model/tree-data-type.ts index bab533eadcab175985375d54f347c9ba06eee2c6..62a46fe6205b7d49f0515c380d6cbf329e42cd77 100644 --- a/src/Coscine.Api/@coscine/model/tree-data-type.ts +++ b/src/Coscine.Api/@coscine/model/tree-data-type.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/user-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/user-dto-paged-response.ts index 3f9c107f543c37fde10bbdcecbfa2afedc5d5c80..c9eca627888d6beeb1a8040c8316bb1a1df5ffbc 100644 --- a/src/Coscine.Api/@coscine/model/user-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/user-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/user-dto-response.ts b/src/Coscine.Api/@coscine/model/user-dto-response.ts index 0a27b6109254188d991e5819b326e2701b36077d..4e6dd7a8457ec76667eb85d41625af369a122b63 100644 --- a/src/Coscine.Api/@coscine/model/user-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/user-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/user-dto.ts b/src/Coscine.Api/@coscine/model/user-dto.ts index 67d98a5bda7520d34c4f57625def9d3245f5ccd7..0e568da19611615df3dc63be58d21fea8f40435a 100644 --- a/src/Coscine.Api/@coscine/model/user-dto.ts +++ b/src/Coscine.Api/@coscine/model/user-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -55,13 +55,13 @@ export interface UserDto { * @type {string} * @memberof UserDto */ - 'givenName': string; + 'givenName'?: string | null; /** * The family name of the user. * @type {string} * @memberof UserDto */ - 'familyName': string; + 'familyName'?: string | null; /** * The email addresses associated with the user. * @type {Array<UserEmailDto>} @@ -79,7 +79,7 @@ export interface UserDto { * @type {LanguageDto} * @memberof UserDto */ - 'language': LanguageDto; + 'language'?: LanguageDto; /** * Indicates if the terms of service are accepted by the user. * @type {boolean} diff --git a/src/Coscine.Api/@coscine/model/user-email-dto.ts b/src/Coscine.Api/@coscine/model/user-email-dto.ts index ad1fc750b5f2291f00066db6fd73f121f52e7b30..c90c0d33414d381760139c0f02406d1bbb4a2670 100644 --- a/src/Coscine.Api/@coscine/model/user-email-dto.ts +++ b/src/Coscine.Api/@coscine/model/user-email-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/user-for-update-dto.ts b/src/Coscine.Api/@coscine/model/user-for-update-dto.ts index e49769994641090ceca2e166801b0a50c067629e..cc4a30a8d71c4f0f469bcc6ad25133e2a15bf1ef 100644 --- a/src/Coscine.Api/@coscine/model/user-for-update-dto.ts +++ b/src/Coscine.Api/@coscine/model/user-for-update-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/user-merge-dto-response.ts b/src/Coscine.Api/@coscine/model/user-merge-dto-response.ts index 0c417db7e289f8528e02478065ce9c23c33280b1..a77ebaf1b5e3bd99763fd646cb6dcac3bed81cde 100644 --- a/src/Coscine.Api/@coscine/model/user-merge-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/user-merge-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/user-merge-dto.ts b/src/Coscine.Api/@coscine/model/user-merge-dto.ts index 1755afee6c8ebe7090661f714397c739f26b6890..cc4f92eb5435069b752810150690deb73a90bdee 100644 --- a/src/Coscine.Api/@coscine/model/user-merge-dto.ts +++ b/src/Coscine.Api/@coscine/model/user-merge-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/user-minimal-dto.ts b/src/Coscine.Api/@coscine/model/user-minimal-dto.ts index 30c7e020fe20ff18e5055aecd47de2a7cc67aad1..ea356806c41a27efd56240a6cdb4ce91450ae43c 100644 --- a/src/Coscine.Api/@coscine/model/user-minimal-dto.ts +++ b/src/Coscine.Api/@coscine/model/user-minimal-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/user-notification-for-creation-dto.ts b/src/Coscine.Api/@coscine/model/user-notification-for-creation-dto.ts new file mode 100644 index 0000000000000000000000000000000000000000..127c0f4c9de98f5dbb40f1431b12e67ec5a42685 --- /dev/null +++ b/src/Coscine.Api/@coscine/model/user-notification-for-creation-dto.ts @@ -0,0 +1,30 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Coscine Web API + * 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. + * + * The version of the OpenAPI document: 2.0 + * Contact: servicedesk@rwth-aachen.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** + * Data transfer object (DTO) representing the creation of a user notification. + * @export + * @interface UserNotificationForCreationDto + */ +export interface UserNotificationForCreationDto { + /** + * The id of the notification. + * @type {string} + * @memberof UserNotificationForCreationDto + */ + 'notificationId': string; +} + diff --git a/src/Coscine.Api/@coscine/model/user-notification-opt-out-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/user-notification-opt-out-dto-paged-response.ts new file mode 100644 index 0000000000000000000000000000000000000000..0605f935c96cf04223c04ecd8700f729c92202ea --- /dev/null +++ b/src/Coscine.Api/@coscine/model/user-notification-opt-out-dto-paged-response.ts @@ -0,0 +1,60 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Coscine Web API + * 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. + * + * The version of the OpenAPI document: 2.0 + * Contact: servicedesk@rwth-aachen.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +// May contain unused imports in some cases +// @ts-ignore +import type { Pagination } from './pagination'; +// May contain unused imports in some cases +// @ts-ignore +import type { UserNotificationOptOutDto } from './user-notification-opt-out-dto'; + +/** + * + * @export + * @interface UserNotificationOptOutDtoPagedResponse + */ +export interface UserNotificationOptOutDtoPagedResponse { + /** + * + * @type {Array<UserNotificationOptOutDto>} + * @memberof UserNotificationOptOutDtoPagedResponse + */ + 'data'?: Array<UserNotificationOptOutDto> | null; + /** + * + * @type {boolean} + * @memberof UserNotificationOptOutDtoPagedResponse + */ + 'isSuccess'?: boolean; + /** + * + * @type {number} + * @memberof UserNotificationOptOutDtoPagedResponse + */ + 'statusCode'?: number | null; + /** + * + * @type {string} + * @memberof UserNotificationOptOutDtoPagedResponse + */ + 'traceId'?: string | null; + /** + * + * @type {Pagination} + * @memberof UserNotificationOptOutDtoPagedResponse + */ + 'pagination'?: Pagination; +} + diff --git a/src/Coscine.Api/@coscine/model/user-notification-opt-out-dto-response.ts b/src/Coscine.Api/@coscine/model/user-notification-opt-out-dto-response.ts new file mode 100644 index 0000000000000000000000000000000000000000..f78d0a175e1539a0785d497fc2b5278f96c0eded --- /dev/null +++ b/src/Coscine.Api/@coscine/model/user-notification-opt-out-dto-response.ts @@ -0,0 +1,51 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Coscine Web API + * 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. + * + * The version of the OpenAPI document: 2.0 + * Contact: servicedesk@rwth-aachen.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +// May contain unused imports in some cases +// @ts-ignore +import type { UserNotificationOptOutDto } from './user-notification-opt-out-dto'; + +/** + * + * @export + * @interface UserNotificationOptOutDtoResponse + */ +export interface UserNotificationOptOutDtoResponse { + /** + * + * @type {UserNotificationOptOutDto} + * @memberof UserNotificationOptOutDtoResponse + */ + 'data'?: UserNotificationOptOutDto; + /** + * + * @type {boolean} + * @memberof UserNotificationOptOutDtoResponse + */ + 'isSuccess'?: boolean; + /** + * + * @type {number} + * @memberof UserNotificationOptOutDtoResponse + */ + 'statusCode'?: number | null; + /** + * + * @type {string} + * @memberof UserNotificationOptOutDtoResponse + */ + 'traceId'?: string | null; +} + diff --git a/src/Coscine.Api/@coscine/model/user-notification-opt-out-dto.ts b/src/Coscine.Api/@coscine/model/user-notification-opt-out-dto.ts new file mode 100644 index 0000000000000000000000000000000000000000..a108ec5831c244fe8456e767fcf36a82b2c37260 --- /dev/null +++ b/src/Coscine.Api/@coscine/model/user-notification-opt-out-dto.ts @@ -0,0 +1,42 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Coscine Web API + * 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. + * + * The version of the OpenAPI document: 2.0 + * Contact: servicedesk@rwth-aachen.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** + * Represents a minimal data transfer object (DTO) for a user notification. + * @export + * @interface UserNotificationOptOutDto + */ +export interface UserNotificationOptOutDto { + /** + * Unique identifier for the user notification. + * @type {string} + * @memberof UserNotificationOptOutDto + */ + 'id': string; + /** + * Unique identifier of the user. + * @type {string} + * @memberof UserNotificationOptOutDto + */ + 'userId': string; + /** + * Unique identifier of the notification. + * @type {string} + * @memberof UserNotificationOptOutDto + */ + 'notificationId': string; +} + diff --git a/src/Coscine.Api/@coscine/model/user-organization-dto.ts b/src/Coscine.Api/@coscine/model/user-organization-dto.ts index 232b76a75f7fa1a3035cc40b1b1f74118bf3428d..f38a45a5f150aa7028a2c7c554542d989ad386c4 100644 --- a/src/Coscine.Api/@coscine/model/user-organization-dto.ts +++ b/src/Coscine.Api/@coscine/model/user-organization-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -13,9 +13,6 @@ */ -// May contain unused imports in some cases -// @ts-ignore -import type { PublicationAdvisoryServiceDto } from './publication-advisory-service-dto'; /** * Represents a Data Transfer Object (DTO) for user-related organization information, inheriting from OrganizationDto. @@ -28,25 +25,13 @@ export interface UserOrganizationDto { * @type {string} * @memberof UserOrganizationDto */ - 'uri': string; + 'uri'?: string | null; /** * The display name of the organization. * @type {string} * @memberof UserOrganizationDto */ 'displayName': string; - /** - * The email address of the organization. - * @type {string} - * @memberof UserOrganizationDto - */ - 'email'?: string | null; - /** - * - * @type {PublicationAdvisoryServiceDto} - * @memberof UserOrganizationDto - */ - 'publicationAdvisoryService'?: PublicationAdvisoryServiceDto; /** * Determines if the organization\'s details can be modified. * @type {boolean} diff --git a/src/Coscine.Api/@coscine/model/user-terms-of-service-accept-dto.ts b/src/Coscine.Api/@coscine/model/user-terms-of-service-accept-dto.ts index 745601e6ff3549fec3b4f28995faa102594460e5..389ad14597726da898e2f3a85b6b5c4652bbeb93 100644 --- a/src/Coscine.Api/@coscine/model/user-terms-of-service-accept-dto.ts +++ b/src/Coscine.Api/@coscine/model/user-terms-of-service-accept-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/variant-dto.ts b/src/Coscine.Api/@coscine/model/variant-dto.ts index 239f24f930792206accd5bcc9a84921fda361945..d8d8831103689d14e5f6e77bb6907493b87c1efc 100644 --- a/src/Coscine.Api/@coscine/model/variant-dto.ts +++ b/src/Coscine.Api/@coscine/model/variant-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/visibility-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/visibility-dto-paged-response.ts index 0f255605ac6f56364547cecb84de198be96383ed..ddf38783d7014017ac7be66be0606501929b376a 100644 --- a/src/Coscine.Api/@coscine/model/visibility-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/visibility-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/visibility-dto-response.ts b/src/Coscine.Api/@coscine/model/visibility-dto-response.ts index 6574cd0de4adb06eea32d18b815442c132e29583..0ebcc1cac1d63460cbcad85c73c73b39345c5113 100644 --- a/src/Coscine.Api/@coscine/model/visibility-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/visibility-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/visibility-dto.ts b/src/Coscine.Api/@coscine/model/visibility-dto.ts index 7787e71e110bcefdb7ddc48e16a70dd2d1d879fe..e3350c97b10666e248f9c64d6a7fab4a06f8f99f 100644 --- a/src/Coscine.Api/@coscine/model/visibility-dto.ts +++ b/src/Coscine.Api/@coscine/model/visibility-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/visibility-for-project-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/visibility-for-project-manipulation-dto.ts index 5524a8432866224ce185faecf26d10390176141c..c57c32599231f1769fc77fcfdb37cf87e374333c 100644 --- a/src/Coscine.Api/@coscine/model/visibility-for-project-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/visibility-for-project-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/visibility-for-resource-manipulation-dto.ts b/src/Coscine.Api/@coscine/model/visibility-for-resource-manipulation-dto.ts index 5697707faa7b363690a4a6fd8a689ff61ef52431..5ba5f7787d14e49b745cf5b8f120ace07f21c3e4 100644 --- a/src/Coscine.Api/@coscine/model/visibility-for-resource-manipulation-dto.ts +++ b/src/Coscine.Api/@coscine/model/visibility-for-resource-manipulation-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/vocabulary-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/vocabulary-dto-paged-response.ts index ad81de92a72ad3b4a1509350d46bcb4d1cf00ced..c288dc006bed83423ecd6f9f94b33ffadc7ae273 100644 --- a/src/Coscine.Api/@coscine/model/vocabulary-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/vocabulary-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/vocabulary-dto.ts b/src/Coscine.Api/@coscine/model/vocabulary-dto.ts index 7eec9b91c1712d0efd24de4fbba88d8303ade631..23227e7b41e21baa6eccd149bce40f649668f03c 100644 --- a/src/Coscine.Api/@coscine/model/vocabulary-dto.ts +++ b/src/Coscine.Api/@coscine/model/vocabulary-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/vocabulary-instance-dto-paged-response.ts b/src/Coscine.Api/@coscine/model/vocabulary-instance-dto-paged-response.ts index dc47c8f3793bb3242b0f350fad658ddd82ce311c..c6ade9eb4adb71515fe9af725c7e3dba9c33fd0f 100644 --- a/src/Coscine.Api/@coscine/model/vocabulary-instance-dto-paged-response.ts +++ b/src/Coscine.Api/@coscine/model/vocabulary-instance-dto-paged-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/vocabulary-instance-dto-response.ts b/src/Coscine.Api/@coscine/model/vocabulary-instance-dto-response.ts index b0c24fa21a9fc029fcb7881802b11b3845b4703b..d8921cb5305f78d74390d4e72e239eee799faa52 100644 --- a/src/Coscine.Api/@coscine/model/vocabulary-instance-dto-response.ts +++ b/src/Coscine.Api/@coscine/model/vocabulary-instance-dto-response.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/@coscine/model/vocabulary-instance-dto.ts b/src/Coscine.Api/@coscine/model/vocabulary-instance-dto.ts index 1d119694c1edcc7530f60709342c1c8aa3f7c191..25a227728fa13d1896dbbbfb4f2376c4e9892ef5 100644 --- a/src/Coscine.Api/@coscine/model/vocabulary-instance-dto.ts +++ b/src/Coscine.Api/@coscine/model/vocabulary-instance-dto.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/api.ts b/src/Coscine.Api/api.ts index 0c6f2912edf7e505190d2222d15659b112382301..fc297c0762aae45ecadbe8246b9ebd3ef4964cec 100644 --- a/src/Coscine.Api/api.ts +++ b/src/Coscine.Api/api.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -22,6 +22,7 @@ export * from './@coscine/api/handle-api'; export * from './@coscine/api/language-api'; export * from './@coscine/api/license-api'; export * from './@coscine/api/maintenance-api'; +export * from './@coscine/api/notification-api'; export * from './@coscine/api/organization-api'; export * from './@coscine/api/pid-api'; export * from './@coscine/api/project-api'; @@ -46,6 +47,7 @@ export * from './@coscine/api/title-api'; export * from './@coscine/api/tos-api'; export * from './@coscine/api/tree-api'; export * from './@coscine/api/user-api'; +export * from './@coscine/api/user-notification-opt-out-api'; export * from './@coscine/api/visibility-api'; export * from './@coscine/api/vocabulary-api'; diff --git a/src/Coscine.Api/base.ts b/src/Coscine.Api/base.ts index 3648583157ca4a6fc5cf49091017476ae72a5242..aa4a710fc66587a655f8ba375160578577aef791 100644 --- a/src/Coscine.Api/base.ts +++ b/src/Coscine.Api/base.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -19,7 +19,7 @@ import type { Configuration } from './configuration'; import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; import globalAxios from 'axios'; -export const BASE_PATH = "https://coscine-dorsch.web.vulcanus.otc.coscine.dev/coscine".replace(/\/+$/, ""); +export const BASE_PATH = "https://coscine-hristov.web.vulcanus.otc.coscine.dev/coscine".replace(/\/+$/, ""); /** * diff --git a/src/Coscine.Api/common.ts b/src/Coscine.Api/common.ts index 1cc3460687c742b8ff3f26c783d5a12d81e3cf0b..97ae12aa86358a1bef14ba2da68a1b27cd8f608c 100644 --- a/src/Coscine.Api/common.ts +++ b/src/Coscine.Api/common.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/configuration.ts b/src/Coscine.Api/configuration.ts index 9a81f471c3e917d01bb409232998fba6fdfd046a..b9a9f3f5a5b67f95ac72ec87c1aae216be81f0b3 100644 --- a/src/Coscine.Api/configuration.ts +++ b/src/Coscine.Api/configuration.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/Coscine.Api/index.ts b/src/Coscine.Api/index.ts index c27c19cbfec48af9ddcf245fdf1b7f62e285ea23..3189766d05672f22353601c14203d320e3eaca80 100644 --- a/src/Coscine.Api/index.ts +++ b/src/Coscine.Api/index.ts @@ -5,7 +5,7 @@ * 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. * * The version of the OpenAPI document: 2.0 - * Contact: servicedesk@itc.rwth-aachen.de + * Contact: servicedesk@rwth-aachen.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/apis.ts b/src/apis.ts index 82dd09817f38aab1c5adbb57de054e62c1f96725..d14538f2de36ec3635ee4487d4a0123fa59c5471 100644 --- a/src/apis.ts +++ b/src/apis.ts @@ -12,6 +12,7 @@ import { LanguageApiFactory, LicenseApiFactory, MaintenanceApiFactory, + NotificationApiFactory, OrganizationApiFactory, PidApiFactory, ProjectApiFactory, @@ -35,6 +36,7 @@ import { TosApiFactory, TreeApiFactory, UserApiFactory, + UserNotificationOptOutApiFactory, VisibilityApiFactory, VocabularyApiFactory } from './Coscine.Api/api'; @@ -86,6 +88,7 @@ function implementations(axios?: AxiosInstance) { LicenseApi: LicenseApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine', axios), MaintenanceApi: MaintenanceApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine', axios), MergeApi: MergeApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.STS', axios), + NotificationApi: NotificationApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine', axios), ORCiDApi: ORCiDApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine/api/Coscine.Api.STS', axios), OrganizationApi: OrganizationApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine', axios), PidApi: PidApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine', axios), @@ -111,6 +114,7 @@ function implementations(axios?: AxiosInstance) { TosApi: TosApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine', axios), TreeApi: TreeApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine', axios), UserApi: UserApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine', axios), + UserNotificationOptOutApi: UserNotificationOptOutApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine', axios), VisibilityApi: VisibilityApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine', axios), VocabularyApi: VocabularyApiFactory(new Configuration({ 'accessToken': accessToken }), 'https://' + getHostName() + '/coscine', axios) }; diff --git a/src/index.ts b/src/index.ts index 8c1c4b60f4dbb1a84377d878cb2f1ecb361ecd7d..4b84e2d94c393d5df155fa5bed789b485a24f83c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -15,6 +15,7 @@ export const LanguageApi = apis.LanguageApi; export const LicenseApi = apis.LicenseApi; export const MaintenanceApi = apis.MaintenanceApi; export const MergeApi = apis.MergeApi; +export const NotificationApi = apis.NotificationApi; export const ORCiDApi = apis.ORCiDApi; export const OrganizationApi = apis.OrganizationApi; export const PidApi = apis.PidApi; @@ -39,6 +40,7 @@ export const TitleApi = apis.TitleApi; export const TosApi = apis.TosApi; export const TreeApi = apis.TreeApi; export const UserApi = apis.UserApi; +export const UserNotificationOptOutApi = apis.UserNotificationOptOutApi; export const VisibilityApi = apis.VisibilityApi; export const VocabularyApi = apis.VocabularyApi;