@emilgroup/tenant-sdk-node 1.34.1-beta.21 → 1.34.1-beta.22
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 +30 -0
- package/README.md +2 -2
- package/api/dashboard-api.ts +103 -0
- package/api/report-schedule-api.ts +697 -0
- package/api/report-schedule-logs-api.ts +250 -0
- package/api/user-group-api.ts +1090 -0
- package/api.ts +6 -0
- package/base.ts +1 -0
- package/dist/api/dashboard-api.d.ts +56 -0
- package/dist/api/dashboard-api.js +92 -0
- package/dist/api/report-schedule-api.d.ts +394 -0
- package/dist/api/report-schedule-api.js +646 -0
- package/dist/api/report-schedule-logs-api.d.ts +150 -0
- package/dist/api/report-schedule-logs-api.js +264 -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 +3 -0
- package/dist/api.js +3 -0
- package/dist/base.d.ts +2 -1
- package/dist/base.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-report-schedule-request-dto.d.ts +115 -0
- package/dist/models/create-report-schedule-request-dto.js +15 -0
- package/dist/models/create-report-schedule-response-class.d.ts +25 -0
- package/dist/models/create-report-schedule-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/dashboard-metadata-class.d.ts +43 -0
- package/dist/models/dashboard-metadata-class.js +15 -0
- package/dist/models/get-dashboard-metadata-response-class.d.ts +25 -0
- package/dist/models/get-dashboard-metadata-response-class.js +15 -0
- package/dist/models/get-report-schedule-response-class.d.ts +25 -0
- package/dist/models/get-report-schedule-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 +27 -0
- package/dist/models/index.js +27 -0
- package/dist/models/list-report-schedule-logs-response-class.d.ts +43 -0
- package/dist/models/list-report-schedule-logs-response-class.js +15 -0
- package/dist/models/list-report-schedules-response-class.d.ts +43 -0
- package/dist/models/list-report-schedules-response-class.js +15 -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/quick-sight-analysis-parameter-class.d.ts +36 -0
- package/dist/models/quick-sight-analysis-parameter-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/report-schedule-class.d.ts +157 -0
- package/dist/models/report-schedule-class.js +15 -0
- package/dist/models/report-schedule-log-class.d.ts +133 -0
- package/dist/models/report-schedule-log-class.js +15 -0
- package/dist/models/report-schedule-parameter-class.d.ts +42 -0
- package/dist/models/report-schedule-parameter-class.js +15 -0
- package/dist/models/report-schedule-parameter-dto.d.ts +42 -0
- package/dist/models/report-schedule-parameter-dto.js +15 -0
- package/dist/models/report-schedule-parameter-value-class.d.ts +30 -0
- package/dist/models/report-schedule-parameter-value-class.js +15 -0
- package/dist/models/update-report-schedule-request-dto.d.ts +121 -0
- package/dist/models/update-report-schedule-request-dto.js +15 -0
- package/dist/models/update-report-schedule-response-class.d.ts +25 -0
- package/dist/models/update-report-schedule-response-class.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-report-schedule-request-dto.ts +121 -0
- package/models/create-report-schedule-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/dashboard-metadata-class.ts +49 -0
- package/models/get-dashboard-metadata-response-class.ts +31 -0
- package/models/get-report-schedule-response-class.ts +31 -0
- package/models/get-user-group-response-class.ts +31 -0
- package/models/index.ts +27 -0
- package/models/list-report-schedule-logs-response-class.ts +49 -0
- package/models/list-report-schedules-response-class.ts +49 -0
- package/models/list-user-group-members-response-class.ts +49 -0
- package/models/list-user-groups-response-class.ts +49 -0
- package/models/quick-sight-analysis-parameter-class.ts +42 -0
- package/models/remove-users-from-group-request-dto.ts +30 -0
- package/models/report-schedule-class.ts +163 -0
- package/models/report-schedule-log-class.ts +139 -0
- package/models/report-schedule-parameter-class.ts +48 -0
- package/models/report-schedule-parameter-dto.ts +48 -0
- package/models/report-schedule-parameter-value-class.ts +36 -0
- package/models/update-report-schedule-request-dto.ts +127 -0
- package/models/update-report-schedule-response-class.ts +31 -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 +2 -2
|
@@ -0,0 +1,42 @@
|
|
|
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 UserGroupMemberClass
|
|
16
|
+
*/
|
|
17
|
+
export interface UserGroupMemberClass {
|
|
18
|
+
/**
|
|
19
|
+
* Code of the user who is a member.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UserGroupMemberClass
|
|
22
|
+
*/
|
|
23
|
+
'userCode': string;
|
|
24
|
+
/**
|
|
25
|
+
* Display name of the user (first + last). Snapshot at member-add time; not kept in sync with subsequent user-profile edits.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UserGroupMemberClass
|
|
28
|
+
*/
|
|
29
|
+
'name'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Time at which the object was created.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UserGroupMemberClass
|
|
34
|
+
*/
|
|
35
|
+
'createdAt': string;
|
|
36
|
+
/**
|
|
37
|
+
* Identifier of the user who created the record.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof UserGroupMemberClass
|
|
40
|
+
*/
|
|
41
|
+
'createdBy': string;
|
|
42
|
+
}
|
|
@@ -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,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 AddUsersToGroupRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface AddUsersToGroupRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* User codes to add as members. Idempotent per user. Max 50 per call.
|
|
25
|
+
* @type {Array<string>}
|
|
26
|
+
* @memberof AddUsersToGroupRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'userCodes': Array<string>;
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -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 { UserGroupMemberClass } from './user-group-member-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface AddUsersToGroupResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface AddUsersToGroupResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Members added by the request (full resulting set).
|
|
26
|
+
* @type {Array<UserGroupMemberClass>}
|
|
27
|
+
* @memberof AddUsersToGroupResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<UserGroupMemberClass>;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,121 @@
|
|
|
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 { ReportScheduleParameterDto } from './report-schedule-parameter-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateReportScheduleRequestDto
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateReportScheduleRequestDto {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateReportScheduleRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateReportScheduleRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'description'?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateReportScheduleRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'reportCode': string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateReportScheduleRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'reportName': string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateReportScheduleRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'exportFormat': string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreateReportScheduleRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'reportSheet'?: string;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {boolean}
|
|
63
|
+
* @memberof CreateReportScheduleRequestDto
|
|
64
|
+
*/
|
|
65
|
+
'skipHeaderRow': boolean;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof CreateReportScheduleRequestDto
|
|
70
|
+
*/
|
|
71
|
+
'frequency': string;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {Array<number>}
|
|
75
|
+
* @memberof CreateReportScheduleRequestDto
|
|
76
|
+
*/
|
|
77
|
+
'periods': Array<number>;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CreateReportScheduleRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'executionTime': string;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof CreateReportScheduleRequestDto
|
|
88
|
+
*/
|
|
89
|
+
'adminUrl': string;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof CreateReportScheduleRequestDto
|
|
94
|
+
*/
|
|
95
|
+
'emailRecipients': string;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof CreateReportScheduleRequestDto
|
|
100
|
+
*/
|
|
101
|
+
'emailSubject'?: string;
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof CreateReportScheduleRequestDto
|
|
106
|
+
*/
|
|
107
|
+
'emailTemplateSlug': string;
|
|
108
|
+
/**
|
|
109
|
+
*
|
|
110
|
+
* @type {boolean}
|
|
111
|
+
* @memberof CreateReportScheduleRequestDto
|
|
112
|
+
*/
|
|
113
|
+
'isActive': boolean;
|
|
114
|
+
/**
|
|
115
|
+
*
|
|
116
|
+
* @type {Array<ReportScheduleParameterDto>}
|
|
117
|
+
* @memberof CreateReportScheduleRequestDto
|
|
118
|
+
*/
|
|
119
|
+
'parameters': Array<ReportScheduleParameterDto>;
|
|
120
|
+
}
|
|
121
|
+
|
|
@@ -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 { ReportScheduleClass } from './report-schedule-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateReportScheduleResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateReportScheduleResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The report-schedule response.
|
|
26
|
+
* @type {ReportScheduleClass}
|
|
27
|
+
* @memberof CreateReportScheduleResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'reportSchedule': ReportScheduleClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -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 CreateUserGroupRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateUserGroupRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Human-readable, renameable identifier for the user group. Unique per tenant. Must match /^[a-z0-9-]+$/.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateUserGroupRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'slug': string;
|
|
29
|
+
/**
|
|
30
|
+
* Display name for the user group.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateUserGroupRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'name': string;
|
|
35
|
+
/**
|
|
36
|
+
* Optional free-text description.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateUserGroupRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'description'?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -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 { UserGroupClass } from './user-group-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateUserGroupResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateUserGroupResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The created user group.
|
|
26
|
+
* @type {UserGroupClass}
|
|
27
|
+
* @memberof CreateUserGroupResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'userGroup': UserGroupClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -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 { QuickSightAnalysisParameterClass } from './quick-sight-analysis-parameter-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface DashboardMetadataClass
|
|
22
|
+
*/
|
|
23
|
+
export interface DashboardMetadataClass {
|
|
24
|
+
/**
|
|
25
|
+
* QuickSight analysis display name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DashboardMetadataClass
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* QuickSight analysis identifier
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof DashboardMetadataClass
|
|
34
|
+
*/
|
|
35
|
+
'quicksightAnalysisId': string;
|
|
36
|
+
/**
|
|
37
|
+
* Sheet names defined on the analysis
|
|
38
|
+
* @type {Array<string>}
|
|
39
|
+
* @memberof DashboardMetadataClass
|
|
40
|
+
*/
|
|
41
|
+
'sheets': Array<string>;
|
|
42
|
+
/**
|
|
43
|
+
* Analysis parameters exposed for embedding or filtering
|
|
44
|
+
* @type {Array<QuickSightAnalysisParameterClass>}
|
|
45
|
+
* @memberof DashboardMetadataClass
|
|
46
|
+
*/
|
|
47
|
+
'parameters': Array<QuickSightAnalysisParameterClass>;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -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 { DashboardMetadataClass } from './dashboard-metadata-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetDashboardMetadataResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetDashboardMetadataResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* QuickSight dashboard analysis metadata when available
|
|
26
|
+
* @type {DashboardMetadataClass}
|
|
27
|
+
* @memberof GetDashboardMetadataResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'metadata'?: DashboardMetadataClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -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 { ReportScheduleClass } from './report-schedule-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetReportScheduleResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetReportScheduleResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The report-schedule response.
|
|
26
|
+
* @type {ReportScheduleClass}
|
|
27
|
+
* @memberof GetReportScheduleResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'reportSchedule': ReportScheduleClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -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 { UserGroupClass } from './user-group-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetUserGroupResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetUserGroupResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The user group.
|
|
26
|
+
* @type {UserGroupClass}
|
|
27
|
+
* @memberof GetUserGroupResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'userGroup': UserGroupClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.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';
|
|
@@ -14,13 +16,18 @@ export * from './create-data-report-request-dto';
|
|
|
14
16
|
export * from './create-data-report-response-class';
|
|
15
17
|
export * from './create-organization-migration-request-dto';
|
|
16
18
|
export * from './create-organization-migration-response-class';
|
|
19
|
+
export * from './create-report-schedule-request-dto';
|
|
20
|
+
export * from './create-report-schedule-response-class';
|
|
17
21
|
export * from './create-resources-migration-request-dto';
|
|
18
22
|
export * from './create-tenant-request-dto';
|
|
23
|
+
export * from './create-user-group-request-dto';
|
|
24
|
+
export * from './create-user-group-response-class';
|
|
19
25
|
export * from './custom-field-dto';
|
|
20
26
|
export * from './custom-schema-class';
|
|
21
27
|
export * from './dbconfig-dto';
|
|
22
28
|
export * from './dashboard-class';
|
|
23
29
|
export * from './dashboard-group-class';
|
|
30
|
+
export * from './dashboard-metadata-class';
|
|
24
31
|
export * from './data-report-class';
|
|
25
32
|
export * from './data-report-filter-class';
|
|
26
33
|
export * from './data-report-filter-dto';
|
|
@@ -35,12 +42,15 @@ export * from './enable-users-response-class';
|
|
|
35
42
|
export * from './format-tenant-settings-class';
|
|
36
43
|
export * from './get-custom-schema-response-class';
|
|
37
44
|
export * from './get-dashboard-group-response-class';
|
|
45
|
+
export * from './get-dashboard-metadata-response-class';
|
|
38
46
|
export * from './get-dashboard-response-class';
|
|
39
47
|
export * from './get-data-report-response-class';
|
|
40
48
|
export * from './get-embedded-url-response-class';
|
|
41
49
|
export * from './get-organization-migration-response-class';
|
|
42
50
|
export * from './get-organization-response-class';
|
|
51
|
+
export * from './get-report-schedule-response-class';
|
|
43
52
|
export * from './get-settings-response-class';
|
|
53
|
+
export * from './get-user-group-response-class';
|
|
44
54
|
export * from './get-user-response-class';
|
|
45
55
|
export * from './initial-tenant-config-class';
|
|
46
56
|
export * from './inline-response200';
|
|
@@ -61,7 +71,11 @@ export * from './list-invites-response-class';
|
|
|
61
71
|
export * from './list-org-invitations-response-class';
|
|
62
72
|
export * from './list-organization-migrations-response-class';
|
|
63
73
|
export * from './list-organizations-response-class';
|
|
74
|
+
export * from './list-report-schedule-logs-response-class';
|
|
75
|
+
export * from './list-report-schedules-response-class';
|
|
64
76
|
export * from './list-roles-response-class';
|
|
77
|
+
export * from './list-user-group-members-response-class';
|
|
78
|
+
export * from './list-user-groups-response-class';
|
|
65
79
|
export * from './list-users-response-class';
|
|
66
80
|
export * from './org-invitation-class';
|
|
67
81
|
export * from './org-invitation-response-class';
|
|
@@ -69,7 +83,14 @@ export * from './organization-class';
|
|
|
69
83
|
export * from './organization-migration-class';
|
|
70
84
|
export * from './permission-class';
|
|
71
85
|
export * from './publish-dashboard-request-dto';
|
|
86
|
+
export * from './quick-sight-analysis-parameter-class';
|
|
72
87
|
export * from './re-invite-org-request-dto';
|
|
88
|
+
export * from './remove-users-from-group-request-dto';
|
|
89
|
+
export * from './report-schedule-class';
|
|
90
|
+
export * from './report-schedule-log-class';
|
|
91
|
+
export * from './report-schedule-parameter-class';
|
|
92
|
+
export * from './report-schedule-parameter-dto';
|
|
93
|
+
export * from './report-schedule-parameter-value-class';
|
|
73
94
|
export * from './revert-analysis-request-dto';
|
|
74
95
|
export * from './revert-organization-migration-request-dto';
|
|
75
96
|
export * from './revert-organization-migration-response-class';
|
|
@@ -93,4 +114,10 @@ export * from './update-data-report-request-dto';
|
|
|
93
114
|
export * from './update-data-report-response-class';
|
|
94
115
|
export * from './update-organization-request-dto-rest';
|
|
95
116
|
export * from './update-organization-response-class';
|
|
117
|
+
export * from './update-report-schedule-request-dto';
|
|
118
|
+
export * from './update-report-schedule-response-class';
|
|
119
|
+
export * from './update-user-group-request-dto';
|
|
120
|
+
export * from './update-user-group-response-class';
|
|
96
121
|
export * from './user-class';
|
|
122
|
+
export * from './user-group-class';
|
|
123
|
+
export * from './user-group-member-class';
|
|
@@ -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 { ReportScheduleLogClass } from './report-schedule-log-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListReportScheduleLogsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListReportScheduleLogsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of report-schedule-logs.
|
|
26
|
+
* @type {Array<ReportScheduleLogClass>}
|
|
27
|
+
* @memberof ListReportScheduleLogsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<ReportScheduleLogClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListReportScheduleLogsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
/**
|
|
37
|
+
* Page size used for this result set
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListReportScheduleLogsResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* Total matching items for this query
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof ListReportScheduleLogsResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'totalItems': number;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -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 { ReportScheduleClass } from './report-schedule-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListReportSchedulesResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListReportSchedulesResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of report-schedules.
|
|
26
|
+
* @type {Array<ReportScheduleClass>}
|
|
27
|
+
* @memberof ListReportSchedulesResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<ReportScheduleClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListReportSchedulesResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
/**
|
|
37
|
+
* Page size used for this result set
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListReportSchedulesResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* Total matching items for this query
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof ListReportSchedulesResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'totalItems': number;
|
|
48
|
+
}
|
|
49
|
+
|