Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • coscine/frontend/libraries/api-client
1 result
Select Git revision
Loading items
Show changes
Commits on Source (4)
{
"name": "@coscine/api-client",
"type": "module",
"version": "3.12.0",
"version": "3.13.0",
"description": "This project contains the generated api client classes.",
"keywords": [
"coscine",
......
......@@ -170,7 +170,6 @@ export * from './user-dto-paged-response';
export * from './user-dto-response';
export * from './user-email-dto';
export * from './user-for-update-dto';
export * from './user-institute-dto';
export * from './user-merge-dto';
export * from './user-merge-dto-response';
export * from './user-minimal-dto';
......
......@@ -30,9 +30,6 @@ import type { TitleDto } from './title-dto';
import type { UserEmailDto } from './user-email-dto';
// May contain unused imports in some cases
// @ts-ignore
import type { UserInstituteDto } from './user-institute-dto';
// May contain unused imports in some cases
// @ts-ignore
import type { UserOrganizationDto } from './user-organization-dto';
/**
......@@ -107,12 +104,6 @@ export interface UserDto {
* @memberof UserDto
*/
'organizations'?: Array<UserOrganizationDto>;
/**
* The institutes associated with the user.
* @type {Array<UserInstituteDto>}
* @memberof UserDto
*/
'institutes'?: Array<UserInstituteDto>;
/**
* The identity providers associated with the user.
* @type {Array<IdentityProviderDto>}
......
/* 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@itc.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 { PublicationAdvisoryServiceDto } from './publication-advisory-service-dto';
/**
* Represents a Data Transfer Object (DTO) for user institute information, extending the OrganizationDto.
* @export
* @interface UserInstituteDto
*/
export interface UserInstituteDto {
/**
* The ROR (Research Organization Registry) ID of the organization.
* @type {string}
* @memberof UserInstituteDto
*/
'uri'?: string;
/**
* The display name of the organization.
* @type {string}
* @memberof UserInstituteDto
*/
'displayName'?: string;
/**
* The email address of the organization.
* @type {string}
* @memberof UserInstituteDto
*/
'email'?: string | null;
/**
*
* @type {PublicationAdvisoryServiceDto}
* @memberof UserInstituteDto
*/
'publicationAdvisoryService'?: PublicationAdvisoryServiceDto;
/**
* Determines if the organization\'s details can be modified. Defaults to `true`; manually set to `false`.
* @type {boolean}
* @memberof UserInstituteDto
*/
'readOnly'?: boolean;
}