@emilgroup/tenant-sdk-node 1.34.1-beta.48 → 1.34.1-beta.49
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 +17 -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.ts +4 -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.d.ts +2 -0
- package/dist/api.js +2 -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/dashboard-metadata-class.d.ts +43 -0
- package/dist/models/dashboard-metadata-class.js +15 -0
- package/dist/models/dbconfig-dto.d.ts +6 -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/index.d.ts +15 -0
- package/dist/models/index.js +15 -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/quick-sight-analysis-parameter-class.d.ts +36 -0
- package/dist/models/quick-sight-analysis-parameter-class.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/models/create-report-schedule-request-dto.ts +121 -0
- package/models/create-report-schedule-response-class.ts +31 -0
- package/models/dashboard-metadata-class.ts +49 -0
- package/models/dbconfig-dto.ts +6 -0
- package/models/get-dashboard-metadata-response-class.ts +31 -0
- package/models/get-report-schedule-response-class.ts +31 -0
- package/models/index.ts +15 -0
- package/models/list-report-schedule-logs-response-class.ts +49 -0
- package/models/list-report-schedules-response-class.ts +49 -0
- package/models/quick-sight-analysis-parameter-class.ts +42 -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/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 });
|
|
@@ -45,4 +45,10 @@ export interface DBConfigDto {
|
|
|
45
45
|
* @memberof DBConfigDto
|
|
46
46
|
*/
|
|
47
47
|
'username': string;
|
|
48
|
+
/**
|
|
49
|
+
* Optional prefix applied to database/schema names when a tenant shares an RDS instance with other tenants but needs isolated database naming
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof DBConfigDto
|
|
52
|
+
*/
|
|
53
|
+
'databasePrefix'?: string;
|
|
48
54
|
}
|
|
@@ -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 { DashboardMetadataClass } from './dashboard-metadata-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetDashboardMetadataResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetDashboardMetadataResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* QuickSight dashboard analysis metadata when available
|
|
21
|
+
* @type {DashboardMetadataClass}
|
|
22
|
+
* @memberof GetDashboardMetadataResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'metadata'?: DashboardMetadataClass;
|
|
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 { ReportScheduleClass } from './report-schedule-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetReportScheduleResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetReportScheduleResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The report-schedule response.
|
|
21
|
+
* @type {ReportScheduleClass}
|
|
22
|
+
* @memberof GetReportScheduleResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'reportSchedule': ReportScheduleClass;
|
|
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
|
@@ -18,6 +18,8 @@ export * from './create-data-report-request-dto';
|
|
|
18
18
|
export * from './create-data-report-response-class';
|
|
19
19
|
export * from './create-organization-migration-request-dto';
|
|
20
20
|
export * from './create-organization-migration-response-class';
|
|
21
|
+
export * from './create-report-schedule-request-dto';
|
|
22
|
+
export * from './create-report-schedule-response-class';
|
|
21
23
|
export * from './create-resources-migration-request-dto';
|
|
22
24
|
export * from './create-tenant-request-dto';
|
|
23
25
|
export * from './create-user-group-request-dto';
|
|
@@ -27,6 +29,7 @@ export * from './custom-schema-class';
|
|
|
27
29
|
export * from './dbconfig-dto';
|
|
28
30
|
export * from './dashboard-class';
|
|
29
31
|
export * from './dashboard-group-class';
|
|
32
|
+
export * from './dashboard-metadata-class';
|
|
30
33
|
export * from './data-report-class';
|
|
31
34
|
export * from './data-report-filter-class';
|
|
32
35
|
export * from './data-report-filter-dto';
|
|
@@ -42,11 +45,13 @@ export * from './enable-users-response-class';
|
|
|
42
45
|
export * from './format-tenant-settings-class';
|
|
43
46
|
export * from './get-custom-schema-response-class';
|
|
44
47
|
export * from './get-dashboard-group-response-class';
|
|
48
|
+
export * from './get-dashboard-metadata-response-class';
|
|
45
49
|
export * from './get-dashboard-response-class';
|
|
46
50
|
export * from './get-data-report-response-class';
|
|
47
51
|
export * from './get-embedded-url-response-class';
|
|
48
52
|
export * from './get-organization-migration-response-class';
|
|
49
53
|
export * from './get-organization-response-class';
|
|
54
|
+
export * from './get-report-schedule-response-class';
|
|
50
55
|
export * from './get-settings-response-class';
|
|
51
56
|
export * from './get-user-group-response-class';
|
|
52
57
|
export * from './get-user-response-class';
|
|
@@ -69,6 +74,8 @@ export * from './list-invites-response-class';
|
|
|
69
74
|
export * from './list-org-invitations-response-class';
|
|
70
75
|
export * from './list-organization-migrations-response-class';
|
|
71
76
|
export * from './list-organizations-response-class';
|
|
77
|
+
export * from './list-report-schedule-logs-response-class';
|
|
78
|
+
export * from './list-report-schedules-response-class';
|
|
72
79
|
export * from './list-roles-response-class';
|
|
73
80
|
export * from './list-user-group-members-response-class';
|
|
74
81
|
export * from './list-user-groups-response-class';
|
|
@@ -79,8 +86,14 @@ export * from './organization-class';
|
|
|
79
86
|
export * from './organization-migration-class';
|
|
80
87
|
export * from './permission-class';
|
|
81
88
|
export * from './publish-dashboard-request-dto';
|
|
89
|
+
export * from './quick-sight-analysis-parameter-class';
|
|
82
90
|
export * from './re-invite-org-request-dto';
|
|
83
91
|
export * from './remove-users-from-group-request-dto';
|
|
92
|
+
export * from './report-schedule-class';
|
|
93
|
+
export * from './report-schedule-log-class';
|
|
94
|
+
export * from './report-schedule-parameter-class';
|
|
95
|
+
export * from './report-schedule-parameter-dto';
|
|
96
|
+
export * from './report-schedule-parameter-value-class';
|
|
84
97
|
export * from './revert-analysis-request-dto';
|
|
85
98
|
export * from './revert-organization-migration-request-dto';
|
|
86
99
|
export * from './revert-organization-migration-response-class';
|
|
@@ -104,6 +117,8 @@ export * from './update-data-report-request-dto';
|
|
|
104
117
|
export * from './update-data-report-response-class';
|
|
105
118
|
export * from './update-organization-request-dto-rest';
|
|
106
119
|
export * from './update-organization-response-class';
|
|
120
|
+
export * from './update-report-schedule-request-dto';
|
|
121
|
+
export * from './update-report-schedule-response-class';
|
|
107
122
|
export * from './update-user-group-request-dto';
|
|
108
123
|
export * from './update-user-group-response-class';
|
|
109
124
|
export * from './user-class';
|
package/dist/models/index.js
CHANGED
|
@@ -34,6 +34,8 @@ __exportStar(require("./create-data-report-request-dto"), exports);
|
|
|
34
34
|
__exportStar(require("./create-data-report-response-class"), exports);
|
|
35
35
|
__exportStar(require("./create-organization-migration-request-dto"), exports);
|
|
36
36
|
__exportStar(require("./create-organization-migration-response-class"), exports);
|
|
37
|
+
__exportStar(require("./create-report-schedule-request-dto"), exports);
|
|
38
|
+
__exportStar(require("./create-report-schedule-response-class"), exports);
|
|
37
39
|
__exportStar(require("./create-resources-migration-request-dto"), exports);
|
|
38
40
|
__exportStar(require("./create-tenant-request-dto"), exports);
|
|
39
41
|
__exportStar(require("./create-user-group-request-dto"), exports);
|
|
@@ -43,6 +45,7 @@ __exportStar(require("./custom-schema-class"), exports);
|
|
|
43
45
|
__exportStar(require("./dbconfig-dto"), exports);
|
|
44
46
|
__exportStar(require("./dashboard-class"), exports);
|
|
45
47
|
__exportStar(require("./dashboard-group-class"), exports);
|
|
48
|
+
__exportStar(require("./dashboard-metadata-class"), exports);
|
|
46
49
|
__exportStar(require("./data-report-class"), exports);
|
|
47
50
|
__exportStar(require("./data-report-filter-class"), exports);
|
|
48
51
|
__exportStar(require("./data-report-filter-dto"), exports);
|
|
@@ -58,11 +61,13 @@ __exportStar(require("./enable-users-response-class"), exports);
|
|
|
58
61
|
__exportStar(require("./format-tenant-settings-class"), exports);
|
|
59
62
|
__exportStar(require("./get-custom-schema-response-class"), exports);
|
|
60
63
|
__exportStar(require("./get-dashboard-group-response-class"), exports);
|
|
64
|
+
__exportStar(require("./get-dashboard-metadata-response-class"), exports);
|
|
61
65
|
__exportStar(require("./get-dashboard-response-class"), exports);
|
|
62
66
|
__exportStar(require("./get-data-report-response-class"), exports);
|
|
63
67
|
__exportStar(require("./get-embedded-url-response-class"), exports);
|
|
64
68
|
__exportStar(require("./get-organization-migration-response-class"), exports);
|
|
65
69
|
__exportStar(require("./get-organization-response-class"), exports);
|
|
70
|
+
__exportStar(require("./get-report-schedule-response-class"), exports);
|
|
66
71
|
__exportStar(require("./get-settings-response-class"), exports);
|
|
67
72
|
__exportStar(require("./get-user-group-response-class"), exports);
|
|
68
73
|
__exportStar(require("./get-user-response-class"), exports);
|
|
@@ -85,6 +90,8 @@ __exportStar(require("./list-invites-response-class"), exports);
|
|
|
85
90
|
__exportStar(require("./list-org-invitations-response-class"), exports);
|
|
86
91
|
__exportStar(require("./list-organization-migrations-response-class"), exports);
|
|
87
92
|
__exportStar(require("./list-organizations-response-class"), exports);
|
|
93
|
+
__exportStar(require("./list-report-schedule-logs-response-class"), exports);
|
|
94
|
+
__exportStar(require("./list-report-schedules-response-class"), exports);
|
|
88
95
|
__exportStar(require("./list-roles-response-class"), exports);
|
|
89
96
|
__exportStar(require("./list-user-group-members-response-class"), exports);
|
|
90
97
|
__exportStar(require("./list-user-groups-response-class"), exports);
|
|
@@ -95,8 +102,14 @@ __exportStar(require("./organization-class"), exports);
|
|
|
95
102
|
__exportStar(require("./organization-migration-class"), exports);
|
|
96
103
|
__exportStar(require("./permission-class"), exports);
|
|
97
104
|
__exportStar(require("./publish-dashboard-request-dto"), exports);
|
|
105
|
+
__exportStar(require("./quick-sight-analysis-parameter-class"), exports);
|
|
98
106
|
__exportStar(require("./re-invite-org-request-dto"), exports);
|
|
99
107
|
__exportStar(require("./remove-users-from-group-request-dto"), exports);
|
|
108
|
+
__exportStar(require("./report-schedule-class"), exports);
|
|
109
|
+
__exportStar(require("./report-schedule-log-class"), exports);
|
|
110
|
+
__exportStar(require("./report-schedule-parameter-class"), exports);
|
|
111
|
+
__exportStar(require("./report-schedule-parameter-dto"), exports);
|
|
112
|
+
__exportStar(require("./report-schedule-parameter-value-class"), exports);
|
|
100
113
|
__exportStar(require("./revert-analysis-request-dto"), exports);
|
|
101
114
|
__exportStar(require("./revert-organization-migration-request-dto"), exports);
|
|
102
115
|
__exportStar(require("./revert-organization-migration-response-class"), exports);
|
|
@@ -120,6 +133,8 @@ __exportStar(require("./update-data-report-request-dto"), exports);
|
|
|
120
133
|
__exportStar(require("./update-data-report-response-class"), exports);
|
|
121
134
|
__exportStar(require("./update-organization-request-dto-rest"), exports);
|
|
122
135
|
__exportStar(require("./update-organization-response-class"), exports);
|
|
136
|
+
__exportStar(require("./update-report-schedule-request-dto"), exports);
|
|
137
|
+
__exportStar(require("./update-report-schedule-response-class"), exports);
|
|
123
138
|
__exportStar(require("./update-user-group-request-dto"), exports);
|
|
124
139
|
__exportStar(require("./update-user-group-response-class"), exports);
|
|
125
140
|
__exportStar(require("./user-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 { ReportScheduleLogClass } from './report-schedule-log-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListReportScheduleLogsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListReportScheduleLogsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The list of report-schedule-logs.
|
|
21
|
+
* @type {Array<ReportScheduleLogClass>}
|
|
22
|
+
* @memberof ListReportScheduleLogsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<ReportScheduleLogClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListReportScheduleLogsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
/**
|
|
32
|
+
* Page size used for this result set
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListReportScheduleLogsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* Total matching items for this query
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListReportScheduleLogsResponseClass
|
|
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 { ReportScheduleClass } from './report-schedule-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListReportSchedulesResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListReportSchedulesResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The list of report-schedules.
|
|
21
|
+
* @type {Array<ReportScheduleClass>}
|
|
22
|
+
* @memberof ListReportSchedulesResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<ReportScheduleClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListReportSchedulesResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
/**
|
|
32
|
+
* Page size used for this result set
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListReportSchedulesResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* Total matching items for this query
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListReportSchedulesResponseClass
|
|
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,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 QuickSightAnalysisParameterClass
|
|
16
|
+
*/
|
|
17
|
+
export interface QuickSightAnalysisParameterClass {
|
|
18
|
+
/**
|
|
19
|
+
* QuickSight parameter name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof QuickSightAnalysisParameterClass
|
|
22
|
+
*/
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* Parameter value type (for example string, integer, decimal, datetime)
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof QuickSightAnalysisParameterClass
|
|
28
|
+
*/
|
|
29
|
+
'type': string;
|
|
30
|
+
/**
|
|
31
|
+
* Whether the parameter accepts multiple values
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof QuickSightAnalysisParameterClass
|
|
34
|
+
*/
|
|
35
|
+
'isMultiValue': boolean;
|
|
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,157 @@
|
|
|
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 { ReportScheduleParameterClass } from './report-schedule-parameter-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ReportScheduleClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ReportScheduleClass {
|
|
19
|
+
/**
|
|
20
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof ReportScheduleClass
|
|
23
|
+
*/
|
|
24
|
+
'id': number;
|
|
25
|
+
/**
|
|
26
|
+
* Unique identifier for the object.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ReportScheduleClass
|
|
29
|
+
*/
|
|
30
|
+
'code': string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof ReportScheduleClass
|
|
35
|
+
*/
|
|
36
|
+
'name': string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ReportScheduleClass
|
|
41
|
+
*/
|
|
42
|
+
'description'?: string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof ReportScheduleClass
|
|
47
|
+
*/
|
|
48
|
+
'reportCode': string;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof ReportScheduleClass
|
|
53
|
+
*/
|
|
54
|
+
'reportName': string;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof ReportScheduleClass
|
|
59
|
+
*/
|
|
60
|
+
'exportFormat': string;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof ReportScheduleClass
|
|
65
|
+
*/
|
|
66
|
+
'reportSheet'?: string;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {boolean}
|
|
70
|
+
* @memberof ReportScheduleClass
|
|
71
|
+
*/
|
|
72
|
+
'skipHeaderRow': boolean;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof ReportScheduleClass
|
|
77
|
+
*/
|
|
78
|
+
'frequency': string;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {Array<number>}
|
|
82
|
+
* @memberof ReportScheduleClass
|
|
83
|
+
*/
|
|
84
|
+
'periods': Array<number>;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof ReportScheduleClass
|
|
89
|
+
*/
|
|
90
|
+
'executionTime': string;
|
|
91
|
+
/**
|
|
92
|
+
* Code of the schedulerservice.schedule_jobs created for this schedule
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof ReportScheduleClass
|
|
95
|
+
*/
|
|
96
|
+
'scheduleJobCode'?: string;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof ReportScheduleClass
|
|
101
|
+
*/
|
|
102
|
+
'adminUrl': string;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof ReportScheduleClass
|
|
107
|
+
*/
|
|
108
|
+
'emailRecipients': string;
|
|
109
|
+
/**
|
|
110
|
+
*
|
|
111
|
+
* @type {string}
|
|
112
|
+
* @memberof ReportScheduleClass
|
|
113
|
+
*/
|
|
114
|
+
'emailSubject'?: string;
|
|
115
|
+
/**
|
|
116
|
+
*
|
|
117
|
+
* @type {string}
|
|
118
|
+
* @memberof ReportScheduleClass
|
|
119
|
+
*/
|
|
120
|
+
'emailTemplateSlug': string;
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @type {boolean}
|
|
124
|
+
* @memberof ReportScheduleClass
|
|
125
|
+
*/
|
|
126
|
+
'isActive': boolean;
|
|
127
|
+
/**
|
|
128
|
+
*
|
|
129
|
+
* @type {Array<ReportScheduleParameterClass>}
|
|
130
|
+
* @memberof ReportScheduleClass
|
|
131
|
+
*/
|
|
132
|
+
'parameters': Array<ReportScheduleParameterClass>;
|
|
133
|
+
/**
|
|
134
|
+
* Time at which the object was created.
|
|
135
|
+
* @type {string}
|
|
136
|
+
* @memberof ReportScheduleClass
|
|
137
|
+
*/
|
|
138
|
+
'createdAt': string;
|
|
139
|
+
/**
|
|
140
|
+
* Time at which the object was updated.
|
|
141
|
+
* @type {string}
|
|
142
|
+
* @memberof ReportScheduleClass
|
|
143
|
+
*/
|
|
144
|
+
'updatedAt': string;
|
|
145
|
+
/**
|
|
146
|
+
* Identifier of the user who created the record.
|
|
147
|
+
* @type {string}
|
|
148
|
+
* @memberof ReportScheduleClass
|
|
149
|
+
*/
|
|
150
|
+
'createdBy': string;
|
|
151
|
+
/**
|
|
152
|
+
* Identifier of the user who last updated the record.
|
|
153
|
+
* @type {string}
|
|
154
|
+
* @memberof ReportScheduleClass
|
|
155
|
+
*/
|
|
156
|
+
'updatedBy': string;
|
|
157
|
+
}
|
|
@@ -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 });
|