@emilgroup/tenant-sdk-node 1.22.1-beta.0 → 1.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +7 -4
- package/README.md +2 -2
- package/api/invite-organizations-api.ts +15 -15
- package/api/invite-users-api.ts +42 -42
- package/api/roles-api.ts +0 -4
- package/api/users-api.ts +4 -4
- package/dist/api/invite-organizations-api.d.ts +9 -9
- package/dist/api/invite-organizations-api.js +12 -12
- package/dist/api/invite-users-api.d.ts +30 -30
- package/dist/api/invite-users-api.js +33 -33
- package/dist/api/roles-api.d.ts +0 -4
- package/dist/api/roles-api.js +0 -4
- package/dist/api/users-api.d.ts +4 -4
- package/dist/api/users-api.js +3 -3
- package/dist/models/create-permission-request-dto.d.ts +42 -0
- package/dist/models/create-role-request-dto.d.ts +36 -0
- package/dist/models/index.d.ts +7 -4
- package/dist/models/index.js +7 -4
- package/dist/models/invite-class.d.ts +12 -12
- package/dist/models/{invite-org-request-dto-rest.d.ts → invite-org-request-dto.d.ts} +14 -27
- package/dist/models/invite-user-request-dto.d.ts +43 -0
- package/dist/models/invite-users-request-dto.d.ts +36 -0
- package/dist/models/invite-users-request-dto.js +15 -0
- package/dist/models/partner-invitation-data-dto.d.ts +36 -0
- package/dist/models/partner-invitation-data-dto.js +15 -0
- package/dist/models/update-role-request-dto.d.ts +42 -0
- package/dist/models/update-role-request-dto.js +15 -0
- package/dist/models/user-class.d.ts +8 -8
- package/models/create-permission-request-dto.ts +48 -0
- package/models/{create-tenant-db-config-request-dto.ts → create-role-request-dto.ts} +15 -9
- package/models/index.ts +7 -4
- package/models/invite-class.ts +12 -12
- package/models/{invite-org-request-dto-rest.ts → invite-org-request-dto.ts} +14 -27
- package/models/invite-user-request-dto.ts +49 -0
- package/models/invite-users-request-dto.ts +42 -0
- package/models/partner-invitation-data-dto.ts +42 -0
- package/models/update-role-request-dto.ts +48 -0
- package/models/user-class.ts +8 -8
- package/package.json +1 -1
- package/dist/models/create-tenant-db-config-request-dto.d.ts +0 -30
- package/dist/models/invite-user-request-dto-rest.d.ts +0 -49
- package/dist/models/invite-users-request-dto-rest.d.ts +0 -49
- package/models/invite-user-request-dto-rest.ts +0 -55
- package/models/invite-users-request-dto-rest.ts +0 -55
- /package/dist/models/{create-tenant-db-config-request-dto.js → create-permission-request-dto.js} +0 -0
- /package/dist/models/{invite-org-request-dto-rest.js → create-role-request-dto.js} +0 -0
- /package/dist/models/{invite-user-request-dto-rest.js → invite-org-request-dto.js} +0 -0
- /package/dist/models/{invite-users-request-dto-rest.js → invite-user-request-dto.js} +0 -0
package/models/index.ts
CHANGED
|
@@ -8,7 +8,8 @@ export * from './create-dashboard-request-dto';
|
|
|
8
8
|
export * from './create-dashboard-response-class';
|
|
9
9
|
export * from './create-data-report-request-dto';
|
|
10
10
|
export * from './create-data-report-response-class';
|
|
11
|
-
export * from './create-
|
|
11
|
+
export * from './create-permission-request-dto';
|
|
12
|
+
export * from './create-role-request-dto';
|
|
12
13
|
export * from './create-tenant-request-dto';
|
|
13
14
|
export * from './custom-field-dto';
|
|
14
15
|
export * from './custom-schema-class';
|
|
@@ -38,10 +39,10 @@ export * from './initial-tenant-config-class';
|
|
|
38
39
|
export * from './inline-response200';
|
|
39
40
|
export * from './inline-response503';
|
|
40
41
|
export * from './invite-class';
|
|
41
|
-
export * from './invite-org-request-dto
|
|
42
|
-
export * from './invite-user-request-dto
|
|
42
|
+
export * from './invite-org-request-dto';
|
|
43
|
+
export * from './invite-user-request-dto';
|
|
43
44
|
export * from './invite-user-response-class';
|
|
44
|
-
export * from './invite-users-request-dto
|
|
45
|
+
export * from './invite-users-request-dto';
|
|
45
46
|
export * from './invite-users-response-class';
|
|
46
47
|
export * from './link-user-with-partner-request-dto-rest';
|
|
47
48
|
export * from './link-user-with-partner-response-class';
|
|
@@ -57,6 +58,7 @@ export * from './list-users-response-class';
|
|
|
57
58
|
export * from './org-invitation-class';
|
|
58
59
|
export * from './org-invitation-response-class';
|
|
59
60
|
export * from './organization-class';
|
|
61
|
+
export * from './partner-invitation-data-dto';
|
|
60
62
|
export * from './permission-class';
|
|
61
63
|
export * from './re-invite-org-request-dto';
|
|
62
64
|
export * from './role-class';
|
|
@@ -76,4 +78,5 @@ export * from './update-data-report-request-dto';
|
|
|
76
78
|
export * from './update-data-report-response-class';
|
|
77
79
|
export * from './update-organization-request-dto-rest';
|
|
78
80
|
export * from './update-organization-response-class';
|
|
81
|
+
export * from './update-role-request-dto';
|
|
79
82
|
export * from './user-class';
|
package/models/invite-class.ts
CHANGED
|
@@ -58,18 +58,6 @@ export interface InviteClass {
|
|
|
58
58
|
* @memberof InviteClass
|
|
59
59
|
*/
|
|
60
60
|
'updatedAt': string;
|
|
61
|
-
/**
|
|
62
|
-
* Identifier of the user who created the record.
|
|
63
|
-
* @type {string}
|
|
64
|
-
* @memberof InviteClass
|
|
65
|
-
*/
|
|
66
|
-
'createdBy': string;
|
|
67
|
-
/**
|
|
68
|
-
* Identifier of the user who last updated the record.
|
|
69
|
-
* @type {string}
|
|
70
|
-
* @memberof InviteClass
|
|
71
|
-
*/
|
|
72
|
-
'updatedBy': string;
|
|
73
61
|
/**
|
|
74
62
|
* Emil Resources Names (ERN) identifies the most specific owner of a resource.
|
|
75
63
|
* @type {string}
|
|
@@ -94,6 +82,18 @@ export interface InviteClass {
|
|
|
94
82
|
* @memberof InviteClass
|
|
95
83
|
*/
|
|
96
84
|
'organizationId'?: number;
|
|
85
|
+
/**
|
|
86
|
+
* Identifier of the user who created the record.
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof InviteClass
|
|
89
|
+
*/
|
|
90
|
+
'createdBy': string;
|
|
91
|
+
/**
|
|
92
|
+
* Identifier of the user who last updated the record.
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof InviteClass
|
|
95
|
+
*/
|
|
96
|
+
'updatedBy': string;
|
|
97
97
|
/**
|
|
98
98
|
* Organization associated with the user
|
|
99
99
|
* @type {OrganizationClass}
|
|
@@ -17,86 +17,73 @@
|
|
|
17
17
|
/**
|
|
18
18
|
*
|
|
19
19
|
* @export
|
|
20
|
-
* @interface
|
|
20
|
+
* @interface InviteOrgRequestDto
|
|
21
21
|
*/
|
|
22
|
-
export interface
|
|
22
|
+
export interface InviteOrgRequestDto {
|
|
23
23
|
/**
|
|
24
24
|
* Organization\'s contact person email address.
|
|
25
25
|
* @type {string}
|
|
26
|
-
* @memberof
|
|
26
|
+
* @memberof InviteOrgRequestDto
|
|
27
27
|
*/
|
|
28
28
|
'email': string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {Array<string>}
|
|
32
|
-
* @memberof InviteOrgRequestDtoRest
|
|
33
|
-
*/
|
|
34
|
-
'roleCodes': Array<string>;
|
|
35
|
-
/**
|
|
36
|
-
* Names of the roles to be assigned.
|
|
37
|
-
* @type {Array<string>}
|
|
38
|
-
* @memberof InviteOrgRequestDtoRest
|
|
39
|
-
*/
|
|
40
|
-
'roleNames': Array<string>;
|
|
41
|
-
/**
|
|
42
|
-
* Role ids to be assigned. Deprecated: please use roleNames or roleCodes. RoleIds will be removed in a future release.
|
|
30
|
+
* Role ids to be assigned.
|
|
43
31
|
* @type {Array<number>}
|
|
44
|
-
* @memberof
|
|
45
|
-
* @deprecated
|
|
32
|
+
* @memberof InviteOrgRequestDto
|
|
46
33
|
*/
|
|
47
34
|
'roleIds': Array<number>;
|
|
48
35
|
/**
|
|
49
36
|
* Name of the invited organization.
|
|
50
37
|
* @type {string}
|
|
51
|
-
* @memberof
|
|
38
|
+
* @memberof InviteOrgRequestDto
|
|
52
39
|
*/
|
|
53
40
|
'name': string;
|
|
54
41
|
/**
|
|
55
42
|
* Identifier for the organization. Restrictions: should have at least 3 characters; should not exceed 63 characters; must be unique within the hierarchy scope; only lowercase letters (a-z), digits (0-9), and underscores (_) are allowed; will be part of the organization\'s ERN; the ERN length must not exceed 63 characters, including the slug.
|
|
56
43
|
* @type {string}
|
|
57
|
-
* @memberof
|
|
44
|
+
* @memberof InviteOrgRequestDto
|
|
58
45
|
*/
|
|
59
46
|
'slug': string;
|
|
60
47
|
/**
|
|
61
48
|
* Inviting organization.
|
|
62
49
|
* @type {number}
|
|
63
|
-
* @memberof
|
|
50
|
+
* @memberof InviteOrgRequestDto
|
|
64
51
|
*/
|
|
65
52
|
'parentOrganizationId': number;
|
|
66
53
|
/**
|
|
67
54
|
* Organization\'s street name.
|
|
68
55
|
* @type {string}
|
|
69
|
-
* @memberof
|
|
56
|
+
* @memberof InviteOrgRequestDto
|
|
70
57
|
*/
|
|
71
58
|
'street': string;
|
|
72
59
|
/**
|
|
73
60
|
* Organization\'s house number.
|
|
74
61
|
* @type {string}
|
|
75
|
-
* @memberof
|
|
62
|
+
* @memberof InviteOrgRequestDto
|
|
76
63
|
*/
|
|
77
64
|
'houseNumber': string;
|
|
78
65
|
/**
|
|
79
66
|
* Zip code of the organization.
|
|
80
67
|
* @type {string}
|
|
81
|
-
* @memberof
|
|
68
|
+
* @memberof InviteOrgRequestDto
|
|
82
69
|
*/
|
|
83
70
|
'zipCode': string;
|
|
84
71
|
/**
|
|
85
72
|
* City of the organization.
|
|
86
73
|
* @type {string}
|
|
87
|
-
* @memberof
|
|
74
|
+
* @memberof InviteOrgRequestDto
|
|
88
75
|
*/
|
|
89
76
|
'city': string;
|
|
90
77
|
/**
|
|
91
78
|
* Country of the organization.
|
|
92
79
|
* @type {string}
|
|
93
|
-
* @memberof
|
|
80
|
+
* @memberof InviteOrgRequestDto
|
|
94
81
|
*/
|
|
95
82
|
'country': string;
|
|
96
83
|
/**
|
|
97
84
|
* Custom fields of the organization
|
|
98
85
|
* @type {object}
|
|
99
|
-
* @memberof
|
|
86
|
+
* @memberof InviteOrgRequestDto
|
|
100
87
|
*/
|
|
101
88
|
'customFields': object;
|
|
102
89
|
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL Tenant Service
|
|
5
|
+
* The EMIL TenantService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { PartnerInvitationDataDto } from './partner-invitation-data-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface InviteUserRequestDto
|
|
22
|
+
*/
|
|
23
|
+
export interface InviteUserRequestDto {
|
|
24
|
+
/**
|
|
25
|
+
* User\'s email address.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof InviteUserRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'email': string;
|
|
30
|
+
/**
|
|
31
|
+
* Organization associated with the user.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof InviteUserRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'organizationId'?: number;
|
|
36
|
+
/**
|
|
37
|
+
* Role ids to be assigned.
|
|
38
|
+
* @type {Array<number>}
|
|
39
|
+
* @memberof InviteUserRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'roleIds': Array<number>;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {PartnerInvitationDataDto}
|
|
45
|
+
* @memberof InviteUserRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'partnerInvitationData'?: PartnerInvitationDataDto;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL Tenant Service
|
|
5
|
+
* The EMIL TenantService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface InviteUsersRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface InviteUsersRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* User\'s email address.
|
|
25
|
+
* @type {Array<string>}
|
|
26
|
+
* @memberof InviteUsersRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'emails': Array<string>;
|
|
29
|
+
/**
|
|
30
|
+
* Role ids to be assigned.
|
|
31
|
+
* @type {Array<number>}
|
|
32
|
+
* @memberof InviteUsersRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'roleIds': Array<number>;
|
|
35
|
+
/**
|
|
36
|
+
* Organization associated with the users.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof InviteUsersRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'organizationId'?: number;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL Tenant Service
|
|
5
|
+
* The EMIL TenantService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface PartnerInvitationDataDto
|
|
21
|
+
*/
|
|
22
|
+
export interface PartnerInvitationDataDto {
|
|
23
|
+
/**
|
|
24
|
+
* Indicates if a new partner should be created if the partner code does not exist
|
|
25
|
+
* @type {boolean}
|
|
26
|
+
* @memberof PartnerInvitationDataDto
|
|
27
|
+
*/
|
|
28
|
+
'shouldCreateNewPartner': boolean;
|
|
29
|
+
/**
|
|
30
|
+
* In case we do not want to create a new partner, we can provide the code of an existing partner
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PartnerInvitationDataDto
|
|
33
|
+
*/
|
|
34
|
+
'partnerCode'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Optional metadata to be stored with the invitation
|
|
37
|
+
* @type {object}
|
|
38
|
+
* @memberof PartnerInvitationDataDto
|
|
39
|
+
*/
|
|
40
|
+
'metadata'?: object;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL Tenant Service
|
|
5
|
+
* The EMIL TenantService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface UpdateRoleRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateRoleRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Role\'s id.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof UpdateRoleRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Role\'s label.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateRoleRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'label': string;
|
|
35
|
+
/**
|
|
36
|
+
* Short description of the role.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateRoleRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'description': string;
|
|
41
|
+
/**
|
|
42
|
+
* Permission ids for the role
|
|
43
|
+
* @type {Array<number>}
|
|
44
|
+
* @memberof UpdateRoleRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'permissionIds': Array<number>;
|
|
47
|
+
}
|
|
48
|
+
|
package/models/user-class.ts
CHANGED
|
@@ -96,29 +96,29 @@ export interface UserClass {
|
|
|
96
96
|
*/
|
|
97
97
|
'updatedAt': string;
|
|
98
98
|
/**
|
|
99
|
-
*
|
|
99
|
+
* Emil Resources Names (ERN) identifies the most specific owner of a resource.
|
|
100
100
|
* @type {string}
|
|
101
101
|
* @memberof UserClass
|
|
102
102
|
*/
|
|
103
|
-
'
|
|
103
|
+
'ern': string;
|
|
104
104
|
/**
|
|
105
|
-
*
|
|
105
|
+
* Associated partner code - only available if the partner has been invited and registered in EIS platform
|
|
106
106
|
* @type {string}
|
|
107
107
|
* @memberof UserClass
|
|
108
108
|
*/
|
|
109
|
-
'
|
|
109
|
+
'partnerCode'?: string;
|
|
110
110
|
/**
|
|
111
|
-
*
|
|
111
|
+
* Identifier of the user who created the record.
|
|
112
112
|
* @type {string}
|
|
113
113
|
* @memberof UserClass
|
|
114
114
|
*/
|
|
115
|
-
'
|
|
115
|
+
'createdBy': string;
|
|
116
116
|
/**
|
|
117
|
-
*
|
|
117
|
+
* Identifier of the user who last updated the record.
|
|
118
118
|
* @type {string}
|
|
119
119
|
* @memberof UserClass
|
|
120
120
|
*/
|
|
121
|
-
'
|
|
121
|
+
'updatedBy': string;
|
|
122
122
|
/**
|
|
123
123
|
* Organization associated with the user
|
|
124
124
|
* @type {OrganizationClass}
|
package/package.json
CHANGED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* EMIL Tenant Service
|
|
3
|
-
* The EMIL TenantService API description
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact: kontakt@emil.de
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface CreateTenantDbConfigRequestDto
|
|
16
|
-
*/
|
|
17
|
-
export interface CreateTenantDbConfigRequestDto {
|
|
18
|
-
/**
|
|
19
|
-
* Tenant Slug
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CreateTenantDbConfigRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'tenantSlug': string;
|
|
24
|
-
/**
|
|
25
|
-
* Tenant DB Config
|
|
26
|
-
* @type {object}
|
|
27
|
-
* @memberof CreateTenantDbConfigRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'config': object;
|
|
30
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* EMIL Tenant Service
|
|
3
|
-
* The EMIL TenantService API description
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact: kontakt@emil.de
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface InviteUserRequestDtoRest
|
|
16
|
-
*/
|
|
17
|
-
export interface InviteUserRequestDtoRest {
|
|
18
|
-
/**
|
|
19
|
-
* User\'s email address.
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof InviteUserRequestDtoRest
|
|
22
|
-
*/
|
|
23
|
-
'email': string;
|
|
24
|
-
/**
|
|
25
|
-
* Organization associated with the user.
|
|
26
|
-
* @type {number}
|
|
27
|
-
* @memberof InviteUserRequestDtoRest
|
|
28
|
-
*/
|
|
29
|
-
'organizationId': number;
|
|
30
|
-
/**
|
|
31
|
-
* Codes associated with the roles to be assigned.
|
|
32
|
-
* @type {Array<string>}
|
|
33
|
-
* @memberof InviteUserRequestDtoRest
|
|
34
|
-
*/
|
|
35
|
-
'roleCodes': Array<string>;
|
|
36
|
-
/**
|
|
37
|
-
* Names of the roles to be assigned.
|
|
38
|
-
* @type {Array<string>}
|
|
39
|
-
* @memberof InviteUserRequestDtoRest
|
|
40
|
-
*/
|
|
41
|
-
'roleNames': Array<string>;
|
|
42
|
-
/**
|
|
43
|
-
* Role ids to be assigned. Deprecated: please use roleNames or roleCodes. RoleIds will be removed in a future release.
|
|
44
|
-
* @type {Array<number>}
|
|
45
|
-
* @memberof InviteUserRequestDtoRest
|
|
46
|
-
* @deprecated
|
|
47
|
-
*/
|
|
48
|
-
'roleIds': Array<number>;
|
|
49
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* EMIL Tenant Service
|
|
3
|
-
* The EMIL TenantService API description
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact: kontakt@emil.de
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface InviteUsersRequestDtoRest
|
|
16
|
-
*/
|
|
17
|
-
export interface InviteUsersRequestDtoRest {
|
|
18
|
-
/**
|
|
19
|
-
* User\'s email address.
|
|
20
|
-
* @type {Array<string>}
|
|
21
|
-
* @memberof InviteUsersRequestDtoRest
|
|
22
|
-
*/
|
|
23
|
-
'emails': Array<string>;
|
|
24
|
-
/**
|
|
25
|
-
* Codes associated with the roles to be assigned.
|
|
26
|
-
* @type {Array<string>}
|
|
27
|
-
* @memberof InviteUsersRequestDtoRest
|
|
28
|
-
*/
|
|
29
|
-
'roleCodes': Array<string>;
|
|
30
|
-
/**
|
|
31
|
-
* Names of the roles to be assigned.
|
|
32
|
-
* @type {Array<string>}
|
|
33
|
-
* @memberof InviteUsersRequestDtoRest
|
|
34
|
-
*/
|
|
35
|
-
'roleNames': Array<string>;
|
|
36
|
-
/**
|
|
37
|
-
* Role ids to be assigned. Deprecated: please use roleNames or roleCodes. RoleIds will be removed in a future release.
|
|
38
|
-
* @type {Array<number>}
|
|
39
|
-
* @memberof InviteUsersRequestDtoRest
|
|
40
|
-
* @deprecated
|
|
41
|
-
*/
|
|
42
|
-
'roleIds': Array<number>;
|
|
43
|
-
/**
|
|
44
|
-
* Organization associated with the users.
|
|
45
|
-
* @type {number}
|
|
46
|
-
* @memberof InviteUsersRequestDtoRest
|
|
47
|
-
*/
|
|
48
|
-
'organizationId': number;
|
|
49
|
-
}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* EMIL Tenant Service
|
|
5
|
-
* The EMIL TenantService API description
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0
|
|
8
|
-
* Contact: kontakt@emil.de
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @export
|
|
20
|
-
* @interface InviteUserRequestDtoRest
|
|
21
|
-
*/
|
|
22
|
-
export interface InviteUserRequestDtoRest {
|
|
23
|
-
/**
|
|
24
|
-
* User\'s email address.
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof InviteUserRequestDtoRest
|
|
27
|
-
*/
|
|
28
|
-
'email': string;
|
|
29
|
-
/**
|
|
30
|
-
* Organization associated with the user.
|
|
31
|
-
* @type {number}
|
|
32
|
-
* @memberof InviteUserRequestDtoRest
|
|
33
|
-
*/
|
|
34
|
-
'organizationId': number;
|
|
35
|
-
/**
|
|
36
|
-
* Codes associated with the roles to be assigned.
|
|
37
|
-
* @type {Array<string>}
|
|
38
|
-
* @memberof InviteUserRequestDtoRest
|
|
39
|
-
*/
|
|
40
|
-
'roleCodes': Array<string>;
|
|
41
|
-
/**
|
|
42
|
-
* Names of the roles to be assigned.
|
|
43
|
-
* @type {Array<string>}
|
|
44
|
-
* @memberof InviteUserRequestDtoRest
|
|
45
|
-
*/
|
|
46
|
-
'roleNames': Array<string>;
|
|
47
|
-
/**
|
|
48
|
-
* Role ids to be assigned. Deprecated: please use roleNames or roleCodes. RoleIds will be removed in a future release.
|
|
49
|
-
* @type {Array<number>}
|
|
50
|
-
* @memberof InviteUserRequestDtoRest
|
|
51
|
-
* @deprecated
|
|
52
|
-
*/
|
|
53
|
-
'roleIds': Array<number>;
|
|
54
|
-
}
|
|
55
|
-
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* EMIL Tenant Service
|
|
5
|
-
* The EMIL TenantService API description
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0
|
|
8
|
-
* Contact: kontakt@emil.de
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @export
|
|
20
|
-
* @interface InviteUsersRequestDtoRest
|
|
21
|
-
*/
|
|
22
|
-
export interface InviteUsersRequestDtoRest {
|
|
23
|
-
/**
|
|
24
|
-
* User\'s email address.
|
|
25
|
-
* @type {Array<string>}
|
|
26
|
-
* @memberof InviteUsersRequestDtoRest
|
|
27
|
-
*/
|
|
28
|
-
'emails': Array<string>;
|
|
29
|
-
/**
|
|
30
|
-
* Codes associated with the roles to be assigned.
|
|
31
|
-
* @type {Array<string>}
|
|
32
|
-
* @memberof InviteUsersRequestDtoRest
|
|
33
|
-
*/
|
|
34
|
-
'roleCodes': Array<string>;
|
|
35
|
-
/**
|
|
36
|
-
* Names of the roles to be assigned.
|
|
37
|
-
* @type {Array<string>}
|
|
38
|
-
* @memberof InviteUsersRequestDtoRest
|
|
39
|
-
*/
|
|
40
|
-
'roleNames': Array<string>;
|
|
41
|
-
/**
|
|
42
|
-
* Role ids to be assigned. Deprecated: please use roleNames or roleCodes. RoleIds will be removed in a future release.
|
|
43
|
-
* @type {Array<number>}
|
|
44
|
-
* @memberof InviteUsersRequestDtoRest
|
|
45
|
-
* @deprecated
|
|
46
|
-
*/
|
|
47
|
-
'roleIds': Array<number>;
|
|
48
|
-
/**
|
|
49
|
-
* Organization associated with the users.
|
|
50
|
-
* @type {number}
|
|
51
|
-
* @memberof InviteUsersRequestDtoRest
|
|
52
|
-
*/
|
|
53
|
-
'organizationId': number;
|
|
54
|
-
}
|
|
55
|
-
|
/package/dist/models/{create-tenant-db-config-request-dto.js → create-permission-request-dto.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|