@emilgroup/tenant-sdk 1.2.2 → 1.4.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 -0
- package/README.md +2 -2
- package/api/invite-organizations-api.ts +0 -174
- package/api/list-organization-invitations-api.ts +236 -0
- package/api/re-invite-an-organization-api.ts +165 -0
- package/api/roles-api.ts +236 -0
- package/api/settings-api.ts +168 -0
- package/api.ts +8 -0
- package/dist/api/invite-organizations-api.d.ts +0 -101
- package/dist/api/invite-organizations-api.js +0 -123
- package/dist/api/list-organization-invitations-api.d.ts +141 -0
- package/dist/api/list-organization-invitations-api.js +258 -0
- package/dist/api/re-invite-an-organization-api.d.ts +93 -0
- package/dist/api/re-invite-an-organization-api.js +224 -0
- package/dist/api/roles-api.d.ts +141 -0
- package/dist/api/roles-api.js +258 -0
- package/dist/api/settings-api.d.ts +96 -0
- package/dist/api/settings-api.js +229 -0
- package/dist/api.d.ts +4 -0
- package/dist/api.js +4 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/list-roles-response-class.d.ts +31 -0
- package/dist/models/list-roles-response-class.js +15 -0
- package/dist/models/organization-class.d.ts +1 -1
- package/dist/models/re-invite-org-request-dto.d.ts +24 -0
- package/dist/models/re-invite-org-request-dto.js +15 -0
- package/models/index.ts +2 -0
- package/models/list-roles-response-class.ts +37 -0
- package/models/organization-class.ts +1 -1
- package/models/re-invite-org-request-dto.ts +30 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,24 @@
|
|
|
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 ReInviteOrgRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface ReInviteOrgRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Email address to identify the invitation by
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ReInviteOrgRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'email': string;
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
package/models/index.ts
CHANGED
|
@@ -31,11 +31,13 @@ export * from './list-custom-schemas-response-class';
|
|
|
31
31
|
export * from './list-invites-response-class';
|
|
32
32
|
export * from './list-org-invitations-response-class';
|
|
33
33
|
export * from './list-organizations-response-class';
|
|
34
|
+
export * from './list-roles-response-class';
|
|
34
35
|
export * from './list-users-response-class';
|
|
35
36
|
export * from './org-invitation-class';
|
|
36
37
|
export * from './org-invitation-response-class';
|
|
37
38
|
export * from './organization-class';
|
|
38
39
|
export * from './permission-class';
|
|
40
|
+
export * from './re-invite-org-request-dto';
|
|
39
41
|
export * from './role-class';
|
|
40
42
|
export * from './set-setting-request-dto';
|
|
41
43
|
export * from './set-user-setting-response-class';
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { RoleClass } from './role-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListRolesResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListRolesResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Roles
|
|
26
|
+
* @type {Array<RoleClass>}
|
|
27
|
+
* @memberof ListRolesResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<RoleClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListRolesResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
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 ReInviteOrgRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface ReInviteOrgRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Email address to identify the invitation by
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ReInviteOrgRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'email': string;
|
|
29
|
+
}
|
|
30
|
+
|