@emilgroup/tenant-sdk 1.24.0 → 1.25.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 +5 -7
- package/README.md +2 -2
- package/api/invite-organizations-api.ts +15 -15
- package/api/invite-users-api.ts +34 -34
- package/api/roles-api.ts +4 -0
- package/api/users-api.ts +124 -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 +22 -22
- package/dist/api/invite-users-api.js +27 -27
- package/dist/api/roles-api.d.ts +4 -0
- package/dist/api/roles-api.js +4 -0
- package/dist/api/users-api.d.ts +70 -4
- package/dist/api/users-api.js +102 -3
- package/dist/models/{invite-users-request-dto.d.ts → assign-user-roles-request-dto.d.ts} +8 -14
- package/dist/models/assign-user-roles-response-class.d.ts +25 -0
- package/dist/models/index.d.ts +5 -7
- package/dist/models/index.js +5 -7
- package/dist/models/{invite-org-request-dto.d.ts → invite-org-request-dto-rest.d.ts} +27 -14
- package/dist/models/invite-user-request-dto-rest.d.ts +49 -0
- package/dist/models/invite-users-request-dto-rest.d.ts +49 -0
- package/models/{invite-users-request-dto.ts → assign-user-roles-request-dto.ts} +8 -14
- package/models/assign-user-roles-response-class.ts +31 -0
- package/models/index.ts +5 -7
- package/models/{invite-org-request-dto.ts → invite-org-request-dto-rest.ts} +27 -14
- package/models/invite-user-request-dto-rest.ts +55 -0
- package/models/invite-users-request-dto-rest.ts +55 -0
- package/package.json +1 -1
- package/dist/models/create-permission-request-dto.d.ts +0 -42
- package/dist/models/create-role-request-dto.d.ts +0 -36
- package/dist/models/invite-user-request-dto.d.ts +0 -43
- package/dist/models/partner-invitation-data-dto.d.ts +0 -36
- package/dist/models/partner-invitation-data-dto.js +0 -15
- package/dist/models/update-role-request-dto.d.ts +0 -42
- package/dist/models/update-role-request-dto.js +0 -15
- package/models/create-permission-request-dto.ts +0 -48
- package/models/create-role-request-dto.ts +0 -42
- package/models/invite-user-request-dto.ts +0 -49
- package/models/partner-invitation-data-dto.ts +0 -42
- package/models/update-role-request-dto.ts +0 -48
- /package/dist/models/{create-permission-request-dto.js → assign-user-roles-request-dto.js} +0 -0
- /package/dist/models/{create-role-request-dto.js → assign-user-roles-response-class.js} +0 -0
- /package/dist/models/{invite-org-request-dto.js → invite-org-request-dto-rest.js} +0 -0
- /package/dist/models/{invite-user-request-dto.js → invite-user-request-dto-rest.js} +0 -0
- /package/dist/models/{invite-users-request-dto.js → invite-users-request-dto-rest.js} +0 -0
|
@@ -17,26 +17,20 @@
|
|
|
17
17
|
/**
|
|
18
18
|
*
|
|
19
19
|
* @export
|
|
20
|
-
* @interface
|
|
20
|
+
* @interface AssignUserRolesRequestDto
|
|
21
21
|
*/
|
|
22
|
-
export interface
|
|
22
|
+
export interface AssignUserRolesRequestDto {
|
|
23
23
|
/**
|
|
24
|
-
* User
|
|
25
|
-
* @type {
|
|
26
|
-
* @memberof
|
|
24
|
+
* User id
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof AssignUserRolesRequestDto
|
|
27
27
|
*/
|
|
28
|
-
'
|
|
28
|
+
'userId': number;
|
|
29
29
|
/**
|
|
30
|
-
* Role ids to be assigned
|
|
30
|
+
* Role ids to be assigned
|
|
31
31
|
* @type {Array<number>}
|
|
32
|
-
* @memberof
|
|
32
|
+
* @memberof AssignUserRolesRequestDto
|
|
33
33
|
*/
|
|
34
34
|
'roleIds': Array<number>;
|
|
35
|
-
/**
|
|
36
|
-
* Organization associated with the users.
|
|
37
|
-
* @type {number}
|
|
38
|
-
* @memberof InviteUsersRequestDto
|
|
39
|
-
*/
|
|
40
|
-
'organizationId'?: number;
|
|
41
35
|
}
|
|
42
36
|
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { UserClass } from './user-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface AssignUserRolesResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface AssignUserRolesResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* user
|
|
26
|
+
* @type {UserClass}
|
|
27
|
+
* @memberof AssignUserRolesResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'user': UserClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export * from './assign-user-roles-request-dto';
|
|
2
|
+
export * from './assign-user-roles-response-class';
|
|
1
3
|
export * from './batch-delete-request-dto';
|
|
2
4
|
export * from './batch-delete-response-class';
|
|
3
5
|
export * from './create-custom-schema-request-dto';
|
|
@@ -8,8 +10,6 @@ export * from './create-dashboard-request-dto';
|
|
|
8
10
|
export * from './create-dashboard-response-class';
|
|
9
11
|
export * from './create-data-report-request-dto';
|
|
10
12
|
export * from './create-data-report-response-class';
|
|
11
|
-
export * from './create-permission-request-dto';
|
|
12
|
-
export * from './create-role-request-dto';
|
|
13
13
|
export * from './create-tenant-request-dto';
|
|
14
14
|
export * from './custom-field-dto';
|
|
15
15
|
export * from './custom-schema-class';
|
|
@@ -39,10 +39,10 @@ export * from './initial-tenant-config-class';
|
|
|
39
39
|
export * from './inline-response200';
|
|
40
40
|
export * from './inline-response503';
|
|
41
41
|
export * from './invite-class';
|
|
42
|
-
export * from './invite-org-request-dto';
|
|
43
|
-
export * from './invite-user-request-dto';
|
|
42
|
+
export * from './invite-org-request-dto-rest';
|
|
43
|
+
export * from './invite-user-request-dto-rest';
|
|
44
44
|
export * from './invite-user-response-class';
|
|
45
|
-
export * from './invite-users-request-dto';
|
|
45
|
+
export * from './invite-users-request-dto-rest';
|
|
46
46
|
export * from './invite-users-response-class';
|
|
47
47
|
export * from './link-user-with-partner-request-dto-rest';
|
|
48
48
|
export * from './link-user-with-partner-response-class';
|
|
@@ -58,7 +58,6 @@ export * from './list-users-response-class';
|
|
|
58
58
|
export * from './org-invitation-class';
|
|
59
59
|
export * from './org-invitation-response-class';
|
|
60
60
|
export * from './organization-class';
|
|
61
|
-
export * from './partner-invitation-data-dto';
|
|
62
61
|
export * from './permission-class';
|
|
63
62
|
export * from './re-invite-org-request-dto';
|
|
64
63
|
export * from './role-class';
|
|
@@ -78,5 +77,4 @@ export * from './update-data-report-request-dto';
|
|
|
78
77
|
export * from './update-data-report-response-class';
|
|
79
78
|
export * from './update-organization-request-dto-rest';
|
|
80
79
|
export * from './update-organization-response-class';
|
|
81
|
-
export * from './update-role-request-dto';
|
|
82
80
|
export * from './user-class';
|
|
@@ -17,73 +17,86 @@
|
|
|
17
17
|
/**
|
|
18
18
|
*
|
|
19
19
|
* @export
|
|
20
|
-
* @interface
|
|
20
|
+
* @interface InviteOrgRequestDtoRest
|
|
21
21
|
*/
|
|
22
|
-
export interface
|
|
22
|
+
export interface InviteOrgRequestDtoRest {
|
|
23
23
|
/**
|
|
24
24
|
* Organization\'s contact person email address.
|
|
25
25
|
* @type {string}
|
|
26
|
-
* @memberof
|
|
26
|
+
* @memberof InviteOrgRequestDtoRest
|
|
27
27
|
*/
|
|
28
28
|
'email': string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Codes associated with the roles to be assigned.
|
|
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.
|
|
31
43
|
* @type {Array<number>}
|
|
32
|
-
* @memberof
|
|
44
|
+
* @memberof InviteOrgRequestDtoRest
|
|
45
|
+
* @deprecated
|
|
33
46
|
*/
|
|
34
47
|
'roleIds': Array<number>;
|
|
35
48
|
/**
|
|
36
49
|
* Name of the invited organization.
|
|
37
50
|
* @type {string}
|
|
38
|
-
* @memberof
|
|
51
|
+
* @memberof InviteOrgRequestDtoRest
|
|
39
52
|
*/
|
|
40
53
|
'name': string;
|
|
41
54
|
/**
|
|
42
55
|
* 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.
|
|
43
56
|
* @type {string}
|
|
44
|
-
* @memberof
|
|
57
|
+
* @memberof InviteOrgRequestDtoRest
|
|
45
58
|
*/
|
|
46
59
|
'slug': string;
|
|
47
60
|
/**
|
|
48
61
|
* Inviting organization.
|
|
49
62
|
* @type {number}
|
|
50
|
-
* @memberof
|
|
63
|
+
* @memberof InviteOrgRequestDtoRest
|
|
51
64
|
*/
|
|
52
65
|
'parentOrganizationId': number;
|
|
53
66
|
/**
|
|
54
67
|
* Organization\'s street name.
|
|
55
68
|
* @type {string}
|
|
56
|
-
* @memberof
|
|
69
|
+
* @memberof InviteOrgRequestDtoRest
|
|
57
70
|
*/
|
|
58
71
|
'street': string;
|
|
59
72
|
/**
|
|
60
73
|
* Organization\'s house number.
|
|
61
74
|
* @type {string}
|
|
62
|
-
* @memberof
|
|
75
|
+
* @memberof InviteOrgRequestDtoRest
|
|
63
76
|
*/
|
|
64
77
|
'houseNumber': string;
|
|
65
78
|
/**
|
|
66
79
|
* Zip code of the organization.
|
|
67
80
|
* @type {string}
|
|
68
|
-
* @memberof
|
|
81
|
+
* @memberof InviteOrgRequestDtoRest
|
|
69
82
|
*/
|
|
70
83
|
'zipCode': string;
|
|
71
84
|
/**
|
|
72
85
|
* City of the organization.
|
|
73
86
|
* @type {string}
|
|
74
|
-
* @memberof
|
|
87
|
+
* @memberof InviteOrgRequestDtoRest
|
|
75
88
|
*/
|
|
76
89
|
'city': string;
|
|
77
90
|
/**
|
|
78
91
|
* Country of the organization.
|
|
79
92
|
* @type {string}
|
|
80
|
-
* @memberof
|
|
93
|
+
* @memberof InviteOrgRequestDtoRest
|
|
81
94
|
*/
|
|
82
95
|
'country': string;
|
|
83
96
|
/**
|
|
84
97
|
* Custom fields of the organization
|
|
85
98
|
* @type {object}
|
|
86
|
-
* @memberof
|
|
99
|
+
* @memberof InviteOrgRequestDtoRest
|
|
87
100
|
*/
|
|
88
101
|
'customFields': object;
|
|
89
102
|
}
|
|
@@ -0,0 +1,55 @@
|
|
|
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
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
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/package.json
CHANGED
|
@@ -1,42 +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 CreatePermissionRequestDto
|
|
16
|
-
*/
|
|
17
|
-
export interface CreatePermissionRequestDto {
|
|
18
|
-
/**
|
|
19
|
-
* Permission\'s module
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CreatePermissionRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'module': string;
|
|
24
|
-
/**
|
|
25
|
-
* Permission\'s entity or target
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CreatePermissionRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'entity': string;
|
|
30
|
-
/**
|
|
31
|
-
* permission\'s action [read, write, delete etc]
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof CreatePermissionRequestDto
|
|
34
|
-
*/
|
|
35
|
-
'action': string;
|
|
36
|
-
/**
|
|
37
|
-
* permission\'s category or header
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof CreatePermissionRequestDto
|
|
40
|
-
*/
|
|
41
|
-
'category'?: string;
|
|
42
|
-
}
|
|
@@ -1,36 +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 CreateRoleRequestDto
|
|
16
|
-
*/
|
|
17
|
-
export interface CreateRoleRequestDto {
|
|
18
|
-
/**
|
|
19
|
-
* Role\'s label.
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CreateRoleRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'label': string;
|
|
24
|
-
/**
|
|
25
|
-
* Short description of the role
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CreateRoleRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'description': string;
|
|
30
|
-
/**
|
|
31
|
-
* Permission ids for the role
|
|
32
|
-
* @type {Array<number>}
|
|
33
|
-
* @memberof CreateRoleRequestDto
|
|
34
|
-
*/
|
|
35
|
-
'permissionIds': Array<number>;
|
|
36
|
-
}
|
|
@@ -1,43 +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
|
-
import { PartnerInvitationDataDto } from './partner-invitation-data-dto';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface InviteUserRequestDto
|
|
17
|
-
*/
|
|
18
|
-
export interface InviteUserRequestDto {
|
|
19
|
-
/**
|
|
20
|
-
* User\'s email address.
|
|
21
|
-
* @type {string}
|
|
22
|
-
* @memberof InviteUserRequestDto
|
|
23
|
-
*/
|
|
24
|
-
'email': string;
|
|
25
|
-
/**
|
|
26
|
-
* Organization associated with the user.
|
|
27
|
-
* @type {number}
|
|
28
|
-
* @memberof InviteUserRequestDto
|
|
29
|
-
*/
|
|
30
|
-
'organizationId'?: number;
|
|
31
|
-
/**
|
|
32
|
-
* Role ids to be assigned.
|
|
33
|
-
* @type {Array<number>}
|
|
34
|
-
* @memberof InviteUserRequestDto
|
|
35
|
-
*/
|
|
36
|
-
'roleIds': Array<number>;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {PartnerInvitationDataDto}
|
|
40
|
-
* @memberof InviteUserRequestDto
|
|
41
|
-
*/
|
|
42
|
-
'partnerInvitationData'?: PartnerInvitationDataDto;
|
|
43
|
-
}
|
|
@@ -1,36 +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 PartnerInvitationDataDto
|
|
16
|
-
*/
|
|
17
|
-
export interface PartnerInvitationDataDto {
|
|
18
|
-
/**
|
|
19
|
-
* Indicates if a new partner should be created if the partner code does not exist
|
|
20
|
-
* @type {boolean}
|
|
21
|
-
* @memberof PartnerInvitationDataDto
|
|
22
|
-
*/
|
|
23
|
-
'shouldCreateNewPartner': boolean;
|
|
24
|
-
/**
|
|
25
|
-
* In case we do not want to create a new partner, we can provide the code of an existing partner
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof PartnerInvitationDataDto
|
|
28
|
-
*/
|
|
29
|
-
'partnerCode'?: string;
|
|
30
|
-
/**
|
|
31
|
-
* Optional metadata to be stored with the invitation
|
|
32
|
-
* @type {object}
|
|
33
|
-
* @memberof PartnerInvitationDataDto
|
|
34
|
-
*/
|
|
35
|
-
'metadata'?: object;
|
|
36
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* EMIL Tenant Service
|
|
6
|
-
* The EMIL TenantService API description
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact: kontakt@emil.de
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,42 +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 UpdateRoleRequestDto
|
|
16
|
-
*/
|
|
17
|
-
export interface UpdateRoleRequestDto {
|
|
18
|
-
/**
|
|
19
|
-
* Role\'s id.
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof UpdateRoleRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'id': number;
|
|
24
|
-
/**
|
|
25
|
-
* Role\'s label.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof UpdateRoleRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'label': string;
|
|
30
|
-
/**
|
|
31
|
-
* Short description of the role.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof UpdateRoleRequestDto
|
|
34
|
-
*/
|
|
35
|
-
'description': string;
|
|
36
|
-
/**
|
|
37
|
-
* Permission ids for the role
|
|
38
|
-
* @type {Array<number>}
|
|
39
|
-
* @memberof UpdateRoleRequestDto
|
|
40
|
-
*/
|
|
41
|
-
'permissionIds': Array<number>;
|
|
42
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* EMIL Tenant Service
|
|
6
|
-
* The EMIL TenantService API description
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact: kontakt@emil.de
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,48 +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 CreatePermissionRequestDto
|
|
21
|
-
*/
|
|
22
|
-
export interface CreatePermissionRequestDto {
|
|
23
|
-
/**
|
|
24
|
-
* Permission\'s module
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof CreatePermissionRequestDto
|
|
27
|
-
*/
|
|
28
|
-
'module': string;
|
|
29
|
-
/**
|
|
30
|
-
* Permission\'s entity or target
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof CreatePermissionRequestDto
|
|
33
|
-
*/
|
|
34
|
-
'entity': string;
|
|
35
|
-
/**
|
|
36
|
-
* permission\'s action [read, write, delete etc]
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof CreatePermissionRequestDto
|
|
39
|
-
*/
|
|
40
|
-
'action': string;
|
|
41
|
-
/**
|
|
42
|
-
* permission\'s category or header
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof CreatePermissionRequestDto
|
|
45
|
-
*/
|
|
46
|
-
'category'?: string;
|
|
47
|
-
}
|
|
48
|
-
|
|
@@ -1,42 +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 CreateRoleRequestDto
|
|
21
|
-
*/
|
|
22
|
-
export interface CreateRoleRequestDto {
|
|
23
|
-
/**
|
|
24
|
-
* Role\'s label.
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof CreateRoleRequestDto
|
|
27
|
-
*/
|
|
28
|
-
'label': string;
|
|
29
|
-
/**
|
|
30
|
-
* Short description of the role
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof CreateRoleRequestDto
|
|
33
|
-
*/
|
|
34
|
-
'description': string;
|
|
35
|
-
/**
|
|
36
|
-
* Permission ids for the role
|
|
37
|
-
* @type {Array<number>}
|
|
38
|
-
* @memberof CreateRoleRequestDto
|
|
39
|
-
*/
|
|
40
|
-
'permissionIds': Array<number>;
|
|
41
|
-
}
|
|
42
|
-
|