@emilgroup/tenant-sdk-node 1.21.0 → 1.22.1-beta.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 +6 -12
- package/README.md +2 -2
- package/api/dashboard-api.ts +99 -0
- package/api/data-report-api.ts +0 -97
- package/api/{default-api.ts → health-check-api.ts} +21 -17
- package/api/invite-organizations-api.ts +15 -15
- package/api/invite-users-api.ts +34 -137
- package/api/roles-api.ts +4 -0
- package/api/users-api.ts +18 -447
- package/api.ts +2 -2
- package/dist/api/dashboard-api.d.ts +52 -0
- package/dist/api/dashboard-api.js +88 -0
- package/dist/api/data-report-api.d.ts +0 -51
- package/dist/api/data-report-api.js +0 -88
- package/dist/api/health-check-api.d.ts +70 -0
- package/dist/api/{default-api.js → health-check-api.js} +30 -26
- 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 -78
- package/dist/api/invite-users-api.js +27 -119
- package/dist/api/roles-api.d.ts +4 -0
- package/dist/api/roles-api.js +4 -0
- package/dist/api/users-api.d.ts +15 -242
- package/dist/api/users-api.js +15 -382
- package/dist/api.d.ts +1 -1
- package/dist/api.js +1 -1
- package/dist/models/{assign-user-roles-request-dto.d.ts → create-tenant-db-config-request-dto.d.ts} +10 -10
- package/dist/models/custom-schema-class.d.ts +12 -0
- package/dist/models/data-report-class.d.ts +12 -0
- package/dist/models/data-report-filter-class.d.ts +12 -0
- package/dist/models/{enable-user-response-class.d.ts → get-embedded-url-response-class.d.ts} +6 -7
- package/dist/models/index.d.ts +5 -11
- package/dist/models/index.js +5 -11
- package/dist/models/invite-class.d.ts +12 -0
- 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/dist/models/org-invitation-class.d.ts +12 -0
- package/dist/models/organization-class.d.ts +12 -0
- package/dist/models/permission-class.d.ts +12 -0
- package/dist/models/role-class.d.ts +12 -0
- package/dist/models/subscription-class.d.ts +12 -0
- package/dist/models/user-class.d.ts +12 -0
- package/models/{assign-user-roles-request-dto.ts → create-tenant-db-config-request-dto.ts} +10 -10
- package/models/custom-schema-class.ts +12 -0
- package/models/data-report-class.ts +12 -0
- package/models/data-report-filter-class.ts +12 -0
- package/models/{enable-user-response-class.ts → get-embedded-url-response-class.ts} +6 -7
- package/models/index.ts +5 -11
- package/models/invite-class.ts +12 -0
- 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/models/org-invitation-class.ts +12 -0
- package/models/organization-class.ts +12 -0
- package/models/permission-class.ts +12 -0
- package/models/role-class.ts +12 -0
- package/models/subscription-class.ts +12 -0
- package/models/user-class.ts +12 -0
- package/package.json +1 -1
- package/dist/api/default-api.d.ts +0 -66
- package/dist/models/assign-user-roles-response-class.d.ts +0 -25
- 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/disable-user-response-class.d.ts +0 -25
- package/dist/models/enable-user-response-class.js +0 -15
- package/dist/models/invite-org-request-dto.js +0 -15
- package/dist/models/invite-user-request-dto.d.ts +0 -43
- package/dist/models/invite-user-request-dto.js +0 -15
- package/dist/models/invite-users-request-dto.d.ts +0 -36
- package/dist/models/invite-users-request-dto.js +0 -15
- 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/assign-user-roles-response-class.ts +0 -31
- package/models/create-permission-request-dto.ts +0 -48
- package/models/create-role-request-dto.ts +0 -42
- package/models/disable-user-response-class.ts +0 -31
- package/models/invite-user-request-dto.ts +0 -49
- package/models/invite-users-request-dto.ts +0 -42
- package/models/partner-invitation-data-dto.ts +0 -42
- package/models/update-role-request-dto.ts +0 -48
- /package/dist/models/{assign-user-roles-request-dto.js → create-tenant-db-config-request-dto.js} +0 -0
- /package/dist/models/{assign-user-roles-response-class.js → get-embedded-url-response-class.js} +0 -0
- /package/dist/models/{create-permission-request-dto.js → invite-org-request-dto-rest.js} +0 -0
- /package/dist/models/{create-role-request-dto.js → invite-user-request-dto-rest.js} +0 -0
- /package/dist/models/{disable-user-response-class.js → invite-users-request-dto-rest.js} +0 -0
package/models/index.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
export * from './assign-user-roles-request-dto';
|
|
2
|
-
export * from './assign-user-roles-response-class';
|
|
3
1
|
export * from './batch-delete-request-dto';
|
|
4
2
|
export * from './batch-delete-response-class';
|
|
5
3
|
export * from './create-custom-schema-request-dto';
|
|
@@ -10,8 +8,7 @@ export * from './create-dashboard-request-dto';
|
|
|
10
8
|
export * from './create-dashboard-response-class';
|
|
11
9
|
export * from './create-data-report-request-dto';
|
|
12
10
|
export * from './create-data-report-response-class';
|
|
13
|
-
export * from './create-
|
|
14
|
-
export * from './create-role-request-dto';
|
|
11
|
+
export * from './create-tenant-db-config-request-dto';
|
|
15
12
|
export * from './create-tenant-request-dto';
|
|
16
13
|
export * from './custom-field-dto';
|
|
17
14
|
export * from './custom-schema-class';
|
|
@@ -24,10 +21,8 @@ export * from './data-report-filter-dto';
|
|
|
24
21
|
export * from './data-report-filter-single-value-dto';
|
|
25
22
|
export * from './data-report-filter-value-dto';
|
|
26
23
|
export * from './delete-response-class';
|
|
27
|
-
export * from './disable-user-response-class';
|
|
28
24
|
export * from './disable-users-request-dto';
|
|
29
25
|
export * from './disable-users-response-class';
|
|
30
|
-
export * from './enable-user-response-class';
|
|
31
26
|
export * from './enable-users-request-dto';
|
|
32
27
|
export * from './enable-users-response-class';
|
|
33
28
|
export * from './format-tenant-settings-class';
|
|
@@ -35,6 +30,7 @@ export * from './get-custom-schema-response-class';
|
|
|
35
30
|
export * from './get-dashboard-group-response-class';
|
|
36
31
|
export * from './get-dashboard-response-class';
|
|
37
32
|
export * from './get-data-report-response-class';
|
|
33
|
+
export * from './get-embedded-url-response-class';
|
|
38
34
|
export * from './get-organization-response-class';
|
|
39
35
|
export * from './get-settings-response-class';
|
|
40
36
|
export * from './get-user-response-class';
|
|
@@ -42,10 +38,10 @@ export * from './initial-tenant-config-class';
|
|
|
42
38
|
export * from './inline-response200';
|
|
43
39
|
export * from './inline-response503';
|
|
44
40
|
export * from './invite-class';
|
|
45
|
-
export * from './invite-org-request-dto';
|
|
46
|
-
export * from './invite-user-request-dto';
|
|
41
|
+
export * from './invite-org-request-dto-rest';
|
|
42
|
+
export * from './invite-user-request-dto-rest';
|
|
47
43
|
export * from './invite-user-response-class';
|
|
48
|
-
export * from './invite-users-request-dto';
|
|
44
|
+
export * from './invite-users-request-dto-rest';
|
|
49
45
|
export * from './invite-users-response-class';
|
|
50
46
|
export * from './link-user-with-partner-request-dto-rest';
|
|
51
47
|
export * from './link-user-with-partner-response-class';
|
|
@@ -61,7 +57,6 @@ export * from './list-users-response-class';
|
|
|
61
57
|
export * from './org-invitation-class';
|
|
62
58
|
export * from './org-invitation-response-class';
|
|
63
59
|
export * from './organization-class';
|
|
64
|
-
export * from './partner-invitation-data-dto';
|
|
65
60
|
export * from './permission-class';
|
|
66
61
|
export * from './re-invite-org-request-dto';
|
|
67
62
|
export * from './role-class';
|
|
@@ -81,5 +76,4 @@ export * from './update-data-report-request-dto';
|
|
|
81
76
|
export * from './update-data-report-response-class';
|
|
82
77
|
export * from './update-organization-request-dto-rest';
|
|
83
78
|
export * from './update-organization-response-class';
|
|
84
|
-
export * from './update-role-request-dto';
|
|
85
79
|
export * from './user-class';
|
package/models/invite-class.ts
CHANGED
|
@@ -58,6 +58,18 @@ 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;
|
|
61
73
|
/**
|
|
62
74
|
* Emil Resources Names (ERN) identifies the most specific owner of a resource.
|
|
63
75
|
* @type {string}
|
|
@@ -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
|
+
|
|
@@ -111,5 +111,17 @@ export interface OrgInvitationClass {
|
|
|
111
111
|
* @memberof OrgInvitationClass
|
|
112
112
|
*/
|
|
113
113
|
'updatedAt': string;
|
|
114
|
+
/**
|
|
115
|
+
* Identifier of the user who created the record.
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof OrgInvitationClass
|
|
118
|
+
*/
|
|
119
|
+
'createdBy': string;
|
|
120
|
+
/**
|
|
121
|
+
* Identifier of the user who last updated the record.
|
|
122
|
+
* @type {string}
|
|
123
|
+
* @memberof OrgInvitationClass
|
|
124
|
+
*/
|
|
125
|
+
'updatedBy': string;
|
|
114
126
|
}
|
|
115
127
|
|
|
@@ -110,5 +110,17 @@ export interface OrganizationClass {
|
|
|
110
110
|
* @memberof OrganizationClass
|
|
111
111
|
*/
|
|
112
112
|
'updatedAt': string;
|
|
113
|
+
/**
|
|
114
|
+
* Identifier of the user who created the record.
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof OrganizationClass
|
|
117
|
+
*/
|
|
118
|
+
'createdBy': string;
|
|
119
|
+
/**
|
|
120
|
+
* Identifier of the user who last updated the record.
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof OrganizationClass
|
|
123
|
+
*/
|
|
124
|
+
'updatedBy': string;
|
|
113
125
|
}
|
|
114
126
|
|
|
@@ -62,5 +62,17 @@ export interface PermissionClass {
|
|
|
62
62
|
* @memberof PermissionClass
|
|
63
63
|
*/
|
|
64
64
|
'updatedAt': string;
|
|
65
|
+
/**
|
|
66
|
+
* Identifier of the user who created the record.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof PermissionClass
|
|
69
|
+
*/
|
|
70
|
+
'createdBy': string;
|
|
71
|
+
/**
|
|
72
|
+
* Identifier of the user who last updated the record.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof PermissionClass
|
|
75
|
+
*/
|
|
76
|
+
'updatedBy': string;
|
|
65
77
|
}
|
|
66
78
|
|
package/models/role-class.ts
CHANGED
|
@@ -63,5 +63,17 @@ export interface RoleClass {
|
|
|
63
63
|
* @memberof RoleClass
|
|
64
64
|
*/
|
|
65
65
|
'updatedAt': string;
|
|
66
|
+
/**
|
|
67
|
+
* Identifier of the user who created the record.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof RoleClass
|
|
70
|
+
*/
|
|
71
|
+
'createdBy': string;
|
|
72
|
+
/**
|
|
73
|
+
* Identifier of the user who last updated the record.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof RoleClass
|
|
76
|
+
*/
|
|
77
|
+
'updatedBy': string;
|
|
66
78
|
}
|
|
67
79
|
|
|
@@ -63,6 +63,18 @@ export interface SubscriptionClass {
|
|
|
63
63
|
* @memberof SubscriptionClass
|
|
64
64
|
*/
|
|
65
65
|
'updatedAt'?: string;
|
|
66
|
+
/**
|
|
67
|
+
* Identifier of the user who created the record.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof SubscriptionClass
|
|
70
|
+
*/
|
|
71
|
+
'createdBy': string;
|
|
72
|
+
/**
|
|
73
|
+
* Identifier of the user who last updated the record.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof SubscriptionClass
|
|
76
|
+
*/
|
|
77
|
+
'updatedBy': string;
|
|
66
78
|
/**
|
|
67
79
|
* user
|
|
68
80
|
* @type {UserClass}
|
package/models/user-class.ts
CHANGED
|
@@ -95,6 +95,18 @@ export interface UserClass {
|
|
|
95
95
|
* @memberof UserClass
|
|
96
96
|
*/
|
|
97
97
|
'updatedAt': string;
|
|
98
|
+
/**
|
|
99
|
+
* Identifier of the user who created the record.
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof UserClass
|
|
102
|
+
*/
|
|
103
|
+
'createdBy': string;
|
|
104
|
+
/**
|
|
105
|
+
* Identifier of the user who last updated the record.
|
|
106
|
+
* @type {string}
|
|
107
|
+
* @memberof UserClass
|
|
108
|
+
*/
|
|
109
|
+
'updatedBy': string;
|
|
98
110
|
/**
|
|
99
111
|
* Emil Resources Names (ERN) identifies the most specific owner of a resource.
|
|
100
112
|
* @type {string}
|
package/package.json
CHANGED
|
@@ -1,66 +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 { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
-
import { Configuration } from '../configuration';
|
|
14
|
-
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
-
import { InlineResponse200 } from '../models';
|
|
16
|
-
/**
|
|
17
|
-
* DefaultApi - axios parameter creator
|
|
18
|
-
* @export
|
|
19
|
-
*/
|
|
20
|
-
export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
21
|
-
/**
|
|
22
|
-
*
|
|
23
|
-
* @param {*} [options] Override http request option.
|
|
24
|
-
* @throws {RequiredError}
|
|
25
|
-
*/
|
|
26
|
-
check: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27
|
-
};
|
|
28
|
-
/**
|
|
29
|
-
* DefaultApi - functional programming interface
|
|
30
|
-
* @export
|
|
31
|
-
*/
|
|
32
|
-
export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
33
|
-
/**
|
|
34
|
-
*
|
|
35
|
-
* @param {*} [options] Override http request option.
|
|
36
|
-
* @throws {RequiredError}
|
|
37
|
-
*/
|
|
38
|
-
check(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
|
|
39
|
-
};
|
|
40
|
-
/**
|
|
41
|
-
* DefaultApi - factory interface
|
|
42
|
-
* @export
|
|
43
|
-
*/
|
|
44
|
-
export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* @param {*} [options] Override http request option.
|
|
48
|
-
* @throws {RequiredError}
|
|
49
|
-
*/
|
|
50
|
-
check(options?: any): AxiosPromise<InlineResponse200>;
|
|
51
|
-
};
|
|
52
|
-
/**
|
|
53
|
-
* DefaultApi - object-oriented interface
|
|
54
|
-
* @export
|
|
55
|
-
* @class DefaultApi
|
|
56
|
-
* @extends {BaseAPI}
|
|
57
|
-
*/
|
|
58
|
-
export declare class DefaultApi extends BaseAPI {
|
|
59
|
-
/**
|
|
60
|
-
*
|
|
61
|
-
* @param {*} [options] Override http request option.
|
|
62
|
-
* @throws {RequiredError}
|
|
63
|
-
* @memberof DefaultApi
|
|
64
|
-
*/
|
|
65
|
-
check(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any>>;
|
|
66
|
-
}
|
|
@@ -1,25 +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 { UserClass } from './user-class';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface AssignUserRolesResponseClass
|
|
17
|
-
*/
|
|
18
|
-
export interface AssignUserRolesResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* user
|
|
21
|
-
* @type {UserClass}
|
|
22
|
-
* @memberof AssignUserRolesResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'user': UserClass;
|
|
25
|
-
}
|
|
@@ -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,25 +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 { UserClass } from './user-class';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface DisableUserResponseClass
|
|
17
|
-
*/
|
|
18
|
-
export interface DisableUserResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* user
|
|
21
|
-
* @type {UserClass}
|
|
22
|
-
* @memberof DisableUserResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'user': UserClass;
|
|
25
|
-
}
|
|
@@ -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,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 });
|