@coscine/api-client 3.12.0 → 3.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -170,7 +170,6 @@ export * from './user-dto-paged-response';
170
170
  export * from './user-dto-response';
171
171
  export * from './user-email-dto';
172
172
  export * from './user-for-update-dto';
173
- export * from './user-institute-dto';
174
173
  export * from './user-merge-dto';
175
174
  export * from './user-merge-dto-response';
176
175
  export * from './user-minimal-dto';
@@ -14,7 +14,6 @@ import type { IdentityProviderDto } from './identity-provider-dto';
14
14
  import type { LanguageDto } from './language-dto';
15
15
  import type { TitleDto } from './title-dto';
16
16
  import type { UserEmailDto } from './user-email-dto';
17
- import type { UserInstituteDto } from './user-institute-dto';
18
17
  import type { UserOrganizationDto } from './user-organization-dto';
19
18
  /**
20
19
  * Represents a Data Transfer Object (DTO) for user-related information.
@@ -88,12 +87,6 @@ export interface UserDto {
88
87
  * @memberof UserDto
89
88
  */
90
89
  'organizations'?: Array<UserOrganizationDto>;
91
- /**
92
- * The institutes associated with the user.
93
- * @type {Array<UserInstituteDto>}
94
- * @memberof UserDto
95
- */
96
- 'institutes'?: Array<UserInstituteDto>;
97
90
  /**
98
91
  * The identity providers associated with the user.
99
92
  * @type {Array<IdentityProviderDto>}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@coscine/api-client",
3
3
  "type": "module",
4
- "version": "3.12.0",
4
+ "version": "3.13.0",
5
5
  "description": "This project contains the generated api client classes.",
6
6
  "keywords": [
7
7
  "coscine",
@@ -1,49 +0,0 @@
1
- /**
2
- * Coscine Web API
3
- * Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
4
- *
5
- * The version of the OpenAPI document: 2.0
6
- * Contact: servicedesk@itc.rwth-aachen.de
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import type { PublicationAdvisoryServiceDto } from './publication-advisory-service-dto';
13
- /**
14
- * Represents a Data Transfer Object (DTO) for user institute information, extending the OrganizationDto.
15
- * @export
16
- * @interface UserInstituteDto
17
- */
18
- export interface UserInstituteDto {
19
- /**
20
- * The ROR (Research Organization Registry) ID of the organization.
21
- * @type {string}
22
- * @memberof UserInstituteDto
23
- */
24
- 'uri'?: string;
25
- /**
26
- * The display name of the organization.
27
- * @type {string}
28
- * @memberof UserInstituteDto
29
- */
30
- 'displayName'?: string;
31
- /**
32
- * The email address of the organization.
33
- * @type {string}
34
- * @memberof UserInstituteDto
35
- */
36
- 'email'?: string | null;
37
- /**
38
- *
39
- * @type {PublicationAdvisoryServiceDto}
40
- * @memberof UserInstituteDto
41
- */
42
- 'publicationAdvisoryService'?: PublicationAdvisoryServiceDto;
43
- /**
44
- * Determines if the organization\'s details can be modified. Defaults to `true`; manually set to `false`.
45
- * @type {boolean}
46
- * @memberof UserInstituteDto
47
- */
48
- 'readOnly'?: boolean;
49
- }