@emilgroup/tenant-sdk-node 1.34.1-beta.14 → 1.34.1-beta.15
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 +13 -0
- package/README.md +2 -2
- package/api/user-group-api.ts +1090 -0
- package/api.ts +2 -0
- package/dist/api/user-group-api.d.ts +603 -0
- package/dist/api/user-group-api.js +940 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/add-users-to-group-request-dto.d.ts +24 -0
- package/dist/models/add-users-to-group-request-dto.js +15 -0
- package/dist/models/add-users-to-group-response-class.d.ts +25 -0
- package/dist/models/add-users-to-group-response-class.js +15 -0
- package/dist/models/create-user-group-request-dto.d.ts +36 -0
- package/dist/models/create-user-group-request-dto.js +15 -0
- package/dist/models/create-user-group-response-class.d.ts +25 -0
- package/dist/models/create-user-group-response-class.js +15 -0
- package/dist/models/get-user-group-response-class.d.ts +25 -0
- package/dist/models/get-user-group-response-class.js +15 -0
- package/dist/models/index.d.ts +12 -0
- package/dist/models/index.js +12 -0
- package/dist/models/list-user-group-members-response-class.d.ts +43 -0
- package/dist/models/list-user-group-members-response-class.js +15 -0
- package/dist/models/list-user-groups-response-class.d.ts +43 -0
- package/dist/models/list-user-groups-response-class.js +15 -0
- package/dist/models/remove-users-from-group-request-dto.d.ts +24 -0
- package/dist/models/remove-users-from-group-request-dto.js +15 -0
- package/dist/models/update-user-group-request-dto.d.ts +36 -0
- package/dist/models/update-user-group-request-dto.js +15 -0
- package/dist/models/update-user-group-response-class.d.ts +25 -0
- package/dist/models/update-user-group-response-class.js +15 -0
- package/dist/models/user-group-class.d.ts +72 -0
- package/dist/models/user-group-class.js +15 -0
- package/dist/models/user-group-member-class.d.ts +42 -0
- package/dist/models/user-group-member-class.js +15 -0
- package/models/add-users-to-group-request-dto.ts +30 -0
- package/models/add-users-to-group-response-class.ts +31 -0
- package/models/create-user-group-request-dto.ts +42 -0
- package/models/create-user-group-response-class.ts +31 -0
- package/models/get-user-group-response-class.ts +31 -0
- package/models/index.ts +12 -0
- package/models/list-user-group-members-response-class.ts +49 -0
- package/models/list-user-groups-response-class.ts +49 -0
- package/models/remove-users-from-group-request-dto.ts +30 -0
- package/models/update-user-group-request-dto.ts +42 -0
- package/models/update-user-group-response-class.ts +31 -0
- package/models/user-group-class.ts +78 -0
- package/models/user-group-member-class.ts +48 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
package/dist/api.js
CHANGED
|
@@ -44,4 +44,5 @@ __exportStar(require("./api/re-invite-an-organization-api"), exports);
|
|
|
44
44
|
__exportStar(require("./api/roles-api"), exports);
|
|
45
45
|
__exportStar(require("./api/settings-api"), exports);
|
|
46
46
|
__exportStar(require("./api/user-controller-rest-api"), exports);
|
|
47
|
+
__exportStar(require("./api/user-group-api"), exports);
|
|
47
48
|
__exportStar(require("./api/users-api"), exports);
|
|
@@ -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 AddUsersToGroupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface AddUsersToGroupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* User codes to add as members. Idempotent per user. Max 50 per call.
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof AddUsersToGroupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'userCodes': Array<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 });
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { UserGroupMemberClass } from './user-group-member-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface AddUsersToGroupResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface AddUsersToGroupResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Members added by the request (full resulting set).
|
|
21
|
+
* @type {Array<UserGroupMemberClass>}
|
|
22
|
+
* @memberof AddUsersToGroupResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<UserGroupMemberClass>;
|
|
25
|
+
}
|
|
@@ -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,36 @@
|
|
|
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 CreateUserGroupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateUserGroupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Human-readable, renameable identifier for the user group. Unique per tenant.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateUserGroupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'slug': string;
|
|
24
|
+
/**
|
|
25
|
+
* Display name for the user group.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateUserGroupRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* Optional free-text description.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateUserGroupRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'description'?: string;
|
|
36
|
+
}
|
|
@@ -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,25 @@
|
|
|
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 { UserGroupClass } from './user-group-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateUserGroupResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateUserGroupResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The created user group.
|
|
21
|
+
* @type {UserGroupClass}
|
|
22
|
+
* @memberof CreateUserGroupResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'userGroup': UserGroupClass;
|
|
25
|
+
}
|
|
@@ -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,25 @@
|
|
|
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 { UserGroupClass } from './user-group-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetUserGroupResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetUserGroupResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The user group.
|
|
21
|
+
* @type {UserGroupClass}
|
|
22
|
+
* @memberof GetUserGroupResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'userGroup': UserGroupClass;
|
|
25
|
+
}
|
|
@@ -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/dist/models/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export * from './add-users-to-group-request-dto';
|
|
2
|
+
export * from './add-users-to-group-response-class';
|
|
1
3
|
export * from './assign-user-roles-request-dto';
|
|
2
4
|
export * from './assign-user-roles-response-class';
|
|
3
5
|
export * from './batch-delete-request-dto';
|
|
@@ -16,6 +18,8 @@ export * from './create-organization-migration-request-dto';
|
|
|
16
18
|
export * from './create-organization-migration-response-class';
|
|
17
19
|
export * from './create-resources-migration-request-dto';
|
|
18
20
|
export * from './create-tenant-request-dto';
|
|
21
|
+
export * from './create-user-group-request-dto';
|
|
22
|
+
export * from './create-user-group-response-class';
|
|
19
23
|
export * from './custom-field-dto';
|
|
20
24
|
export * from './custom-schema-class';
|
|
21
25
|
export * from './dbconfig-dto';
|
|
@@ -41,6 +45,7 @@ export * from './get-embedded-url-response-class';
|
|
|
41
45
|
export * from './get-organization-migration-response-class';
|
|
42
46
|
export * from './get-organization-response-class';
|
|
43
47
|
export * from './get-settings-response-class';
|
|
48
|
+
export * from './get-user-group-response-class';
|
|
44
49
|
export * from './get-user-response-class';
|
|
45
50
|
export * from './initial-tenant-config-class';
|
|
46
51
|
export * from './inline-response200';
|
|
@@ -62,6 +67,8 @@ export * from './list-org-invitations-response-class';
|
|
|
62
67
|
export * from './list-organization-migrations-response-class';
|
|
63
68
|
export * from './list-organizations-response-class';
|
|
64
69
|
export * from './list-roles-response-class';
|
|
70
|
+
export * from './list-user-group-members-response-class';
|
|
71
|
+
export * from './list-user-groups-response-class';
|
|
65
72
|
export * from './list-users-response-class';
|
|
66
73
|
export * from './org-invitation-class';
|
|
67
74
|
export * from './org-invitation-response-class';
|
|
@@ -70,6 +77,7 @@ export * from './organization-migration-class';
|
|
|
70
77
|
export * from './permission-class';
|
|
71
78
|
export * from './publish-dashboard-request-dto';
|
|
72
79
|
export * from './re-invite-org-request-dto';
|
|
80
|
+
export * from './remove-users-from-group-request-dto';
|
|
73
81
|
export * from './revert-analysis-request-dto';
|
|
74
82
|
export * from './revert-organization-migration-request-dto';
|
|
75
83
|
export * from './revert-organization-migration-response-class';
|
|
@@ -93,4 +101,8 @@ export * from './update-data-report-request-dto';
|
|
|
93
101
|
export * from './update-data-report-response-class';
|
|
94
102
|
export * from './update-organization-request-dto-rest';
|
|
95
103
|
export * from './update-organization-response-class';
|
|
104
|
+
export * from './update-user-group-request-dto';
|
|
105
|
+
export * from './update-user-group-response-class';
|
|
96
106
|
export * from './user-class';
|
|
107
|
+
export * from './user-group-class';
|
|
108
|
+
export * from './user-group-member-class';
|
package/dist/models/index.js
CHANGED
|
@@ -14,6 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./add-users-to-group-request-dto"), exports);
|
|
18
|
+
__exportStar(require("./add-users-to-group-response-class"), exports);
|
|
17
19
|
__exportStar(require("./assign-user-roles-request-dto"), exports);
|
|
18
20
|
__exportStar(require("./assign-user-roles-response-class"), exports);
|
|
19
21
|
__exportStar(require("./batch-delete-request-dto"), exports);
|
|
@@ -32,6 +34,8 @@ __exportStar(require("./create-organization-migration-request-dto"), exports);
|
|
|
32
34
|
__exportStar(require("./create-organization-migration-response-class"), exports);
|
|
33
35
|
__exportStar(require("./create-resources-migration-request-dto"), exports);
|
|
34
36
|
__exportStar(require("./create-tenant-request-dto"), exports);
|
|
37
|
+
__exportStar(require("./create-user-group-request-dto"), exports);
|
|
38
|
+
__exportStar(require("./create-user-group-response-class"), exports);
|
|
35
39
|
__exportStar(require("./custom-field-dto"), exports);
|
|
36
40
|
__exportStar(require("./custom-schema-class"), exports);
|
|
37
41
|
__exportStar(require("./dbconfig-dto"), exports);
|
|
@@ -57,6 +61,7 @@ __exportStar(require("./get-embedded-url-response-class"), exports);
|
|
|
57
61
|
__exportStar(require("./get-organization-migration-response-class"), exports);
|
|
58
62
|
__exportStar(require("./get-organization-response-class"), exports);
|
|
59
63
|
__exportStar(require("./get-settings-response-class"), exports);
|
|
64
|
+
__exportStar(require("./get-user-group-response-class"), exports);
|
|
60
65
|
__exportStar(require("./get-user-response-class"), exports);
|
|
61
66
|
__exportStar(require("./initial-tenant-config-class"), exports);
|
|
62
67
|
__exportStar(require("./inline-response200"), exports);
|
|
@@ -78,6 +83,8 @@ __exportStar(require("./list-org-invitations-response-class"), exports);
|
|
|
78
83
|
__exportStar(require("./list-organization-migrations-response-class"), exports);
|
|
79
84
|
__exportStar(require("./list-organizations-response-class"), exports);
|
|
80
85
|
__exportStar(require("./list-roles-response-class"), exports);
|
|
86
|
+
__exportStar(require("./list-user-group-members-response-class"), exports);
|
|
87
|
+
__exportStar(require("./list-user-groups-response-class"), exports);
|
|
81
88
|
__exportStar(require("./list-users-response-class"), exports);
|
|
82
89
|
__exportStar(require("./org-invitation-class"), exports);
|
|
83
90
|
__exportStar(require("./org-invitation-response-class"), exports);
|
|
@@ -86,6 +93,7 @@ __exportStar(require("./organization-migration-class"), exports);
|
|
|
86
93
|
__exportStar(require("./permission-class"), exports);
|
|
87
94
|
__exportStar(require("./publish-dashboard-request-dto"), exports);
|
|
88
95
|
__exportStar(require("./re-invite-org-request-dto"), exports);
|
|
96
|
+
__exportStar(require("./remove-users-from-group-request-dto"), exports);
|
|
89
97
|
__exportStar(require("./revert-analysis-request-dto"), exports);
|
|
90
98
|
__exportStar(require("./revert-organization-migration-request-dto"), exports);
|
|
91
99
|
__exportStar(require("./revert-organization-migration-response-class"), exports);
|
|
@@ -109,4 +117,8 @@ __exportStar(require("./update-data-report-request-dto"), exports);
|
|
|
109
117
|
__exportStar(require("./update-data-report-response-class"), exports);
|
|
110
118
|
__exportStar(require("./update-organization-request-dto-rest"), exports);
|
|
111
119
|
__exportStar(require("./update-organization-response-class"), exports);
|
|
120
|
+
__exportStar(require("./update-user-group-request-dto"), exports);
|
|
121
|
+
__exportStar(require("./update-user-group-response-class"), exports);
|
|
112
122
|
__exportStar(require("./user-class"), exports);
|
|
123
|
+
__exportStar(require("./user-group-class"), exports);
|
|
124
|
+
__exportStar(require("./user-group-member-class"), exports);
|
|
@@ -0,0 +1,43 @@
|
|
|
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 { UserGroupMemberClass } from './user-group-member-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListUserGroupMembersResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListUserGroupMembersResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* User group members.
|
|
21
|
+
* @type {Array<UserGroupMemberClass>}
|
|
22
|
+
* @memberof ListUserGroupMembersResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<UserGroupMemberClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListUserGroupMembersResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
/**
|
|
32
|
+
* Number of items in this page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListUserGroupMembersResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage'?: number;
|
|
37
|
+
/**
|
|
38
|
+
* Total number of matching items across all pages.
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListUserGroupMembersResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'totalItems'?: number;
|
|
43
|
+
}
|
|
@@ -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,43 @@
|
|
|
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 { UserGroupClass } from './user-group-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListUserGroupsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListUserGroupsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* User groups.
|
|
21
|
+
* @type {Array<UserGroupClass>}
|
|
22
|
+
* @memberof ListUserGroupsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<UserGroupClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListUserGroupsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
/**
|
|
32
|
+
* Number of items in this page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListUserGroupsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage'?: number;
|
|
37
|
+
/**
|
|
38
|
+
* Total number of matching items across all pages.
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListUserGroupsResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'totalItems'?: number;
|
|
43
|
+
}
|
|
@@ -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 RemoveUsersFromGroupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface RemoveUsersFromGroupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* User codes to remove from the group. Idempotent per user. Max 50 per call.
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof RemoveUsersFromGroupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'userCodes': Array<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 });
|
|
@@ -0,0 +1,36 @@
|
|
|
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 UpdateUserGroupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateUserGroupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* New slug. Slug remains unique per tenant.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateUserGroupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'slug'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* New display name.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdateUserGroupRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'name'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* New free-text description.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdateUserGroupRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'description'?: string;
|
|
36
|
+
}
|
|
@@ -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,25 @@
|
|
|
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 { UserGroupClass } from './user-group-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateUserGroupResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateUserGroupResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The updated user group.
|
|
21
|
+
* @type {UserGroupClass}
|
|
22
|
+
* @memberof UpdateUserGroupResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'userGroup': UserGroupClass;
|
|
25
|
+
}
|
|
@@ -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,72 @@
|
|
|
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 UserGroupClass
|
|
16
|
+
*/
|
|
17
|
+
export interface UserGroupClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal numeric id.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof UserGroupClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Auto-generated immutable identifier. Used for cross-service references.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UserGroupClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* Human-readable, renameable identifier. Unique per tenant.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UserGroupClass
|
|
34
|
+
*/
|
|
35
|
+
'slug': string;
|
|
36
|
+
/**
|
|
37
|
+
* Display name.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof UserGroupClass
|
|
40
|
+
*/
|
|
41
|
+
'name': string;
|
|
42
|
+
/**
|
|
43
|
+
* Free-text description.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof UserGroupClass
|
|
46
|
+
*/
|
|
47
|
+
'description'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Time at which the object was created.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof UserGroupClass
|
|
52
|
+
*/
|
|
53
|
+
'createdAt': string;
|
|
54
|
+
/**
|
|
55
|
+
* Time at which the object was updated.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof UserGroupClass
|
|
58
|
+
*/
|
|
59
|
+
'updatedAt': string;
|
|
60
|
+
/**
|
|
61
|
+
* Identifier of the user who created the record.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof UserGroupClass
|
|
64
|
+
*/
|
|
65
|
+
'createdBy': string;
|
|
66
|
+
/**
|
|
67
|
+
* Identifier of the user who last updated the record.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof UserGroupClass
|
|
70
|
+
*/
|
|
71
|
+
'updatedBy': string;
|
|
72
|
+
}
|