@emilgroup/tenant-sdk-node 1.34.1-beta.15 → 1.34.1-beta.19
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/user-group-api.ts +40 -40
- 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/user-group-api.d.ts +40 -40
- package/dist/api/user-group-api.js +30 -30
- 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/create-user-group-request-dto.d.ts +1 -1
- 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/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/dist/models/update-user-group-request-dto.d.ts +1 -1
- 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 +1 -1
- 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/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/models/update-user-group-request-dto.ts +1 -1
- package/package.json +1 -1
|
@@ -294,12 +294,12 @@ var UserGroupApiAxiosParamCreator = function (configuration) {
|
|
|
294
294
|
* undefined **Required Permissions** \"identity-management.user-groups.view\"
|
|
295
295
|
* @param {string} code
|
|
296
296
|
* @param {string} [authorization] Bearer Token
|
|
297
|
-
* @param {number} [pageSize]
|
|
298
|
-
* @param {string} [pageToken]
|
|
299
|
-
* @param {string} [filter] Filter
|
|
297
|
+
* @param {number} [pageSize] Number of items per page.
|
|
298
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
299
|
+
* @param {string} [filter] Filter members by one or more fields (in addition to the parent group). Allowed fields are declared in user-group-membership.config.
|
|
300
300
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
301
|
-
* @param {string} [order]
|
|
302
|
-
* @param {string} [expand]
|
|
301
|
+
* @param {string} [order] Sort the response by allowed columns (see paginate config).
|
|
302
|
+
* @param {string} [expand] Comma-separated list of related objects to embed in each member (e.g. user details).
|
|
303
303
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
304
304
|
* @param {*} [options] Override http request option.
|
|
305
305
|
* @throws {RequiredError}
|
|
@@ -368,11 +368,11 @@ var UserGroupApiAxiosParamCreator = function (configuration) {
|
|
|
368
368
|
/**
|
|
369
369
|
* undefined **Required Permissions** \"identity-management.user-groups.view\"
|
|
370
370
|
* @param {string} [authorization] Bearer Token
|
|
371
|
-
* @param {number} [pageSize]
|
|
372
|
-
* @param {string} [pageToken]
|
|
373
|
-
* @param {string} [filter] Filter
|
|
374
|
-
* @param {string} [search]
|
|
375
|
-
* @param {string} [order]
|
|
371
|
+
* @param {number} [pageSize] Number of items per page.
|
|
372
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
373
|
+
* @param {string} [filter] Filter user groups by one or more fields. Allowed: id, name, slug, createdAt, updatedAt.
|
|
374
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
375
|
+
* @param {string} [order] Sort the response. Allowed columns: id, name, slug, createdAt, updatedAt.
|
|
376
376
|
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
377
377
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
378
378
|
* @param {*} [options] Override http request option.
|
|
@@ -635,12 +635,12 @@ var UserGroupApiFp = function (configuration) {
|
|
|
635
635
|
* undefined **Required Permissions** \"identity-management.user-groups.view\"
|
|
636
636
|
* @param {string} code
|
|
637
637
|
* @param {string} [authorization] Bearer Token
|
|
638
|
-
* @param {number} [pageSize]
|
|
639
|
-
* @param {string} [pageToken]
|
|
640
|
-
* @param {string} [filter] Filter
|
|
638
|
+
* @param {number} [pageSize] Number of items per page.
|
|
639
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
640
|
+
* @param {string} [filter] Filter members by one or more fields (in addition to the parent group). Allowed fields are declared in user-group-membership.config.
|
|
641
641
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
642
|
-
* @param {string} [order]
|
|
643
|
-
* @param {string} [expand]
|
|
642
|
+
* @param {string} [order] Sort the response by allowed columns (see paginate config).
|
|
643
|
+
* @param {string} [expand] Comma-separated list of related objects to embed in each member (e.g. user details).
|
|
644
644
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
645
645
|
* @param {*} [options] Override http request option.
|
|
646
646
|
* @throws {RequiredError}
|
|
@@ -661,11 +661,11 @@ var UserGroupApiFp = function (configuration) {
|
|
|
661
661
|
/**
|
|
662
662
|
* undefined **Required Permissions** \"identity-management.user-groups.view\"
|
|
663
663
|
* @param {string} [authorization] Bearer Token
|
|
664
|
-
* @param {number} [pageSize]
|
|
665
|
-
* @param {string} [pageToken]
|
|
666
|
-
* @param {string} [filter] Filter
|
|
667
|
-
* @param {string} [search]
|
|
668
|
-
* @param {string} [order]
|
|
664
|
+
* @param {number} [pageSize] Number of items per page.
|
|
665
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
666
|
+
* @param {string} [filter] Filter user groups by one or more fields. Allowed: id, name, slug, createdAt, updatedAt.
|
|
667
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
668
|
+
* @param {string} [order] Sort the response. Allowed columns: id, name, slug, createdAt, updatedAt.
|
|
669
669
|
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
670
670
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
671
671
|
* @param {*} [options] Override http request option.
|
|
@@ -781,12 +781,12 @@ var UserGroupApiFactory = function (configuration, basePath, axios) {
|
|
|
781
781
|
* undefined **Required Permissions** \"identity-management.user-groups.view\"
|
|
782
782
|
* @param {string} code
|
|
783
783
|
* @param {string} [authorization] Bearer Token
|
|
784
|
-
* @param {number} [pageSize]
|
|
785
|
-
* @param {string} [pageToken]
|
|
786
|
-
* @param {string} [filter] Filter
|
|
784
|
+
* @param {number} [pageSize] Number of items per page.
|
|
785
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
786
|
+
* @param {string} [filter] Filter members by one or more fields (in addition to the parent group). Allowed fields are declared in user-group-membership.config.
|
|
787
787
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
788
|
-
* @param {string} [order]
|
|
789
|
-
* @param {string} [expand]
|
|
788
|
+
* @param {string} [order] Sort the response by allowed columns (see paginate config).
|
|
789
|
+
* @param {string} [expand] Comma-separated list of related objects to embed in each member (e.g. user details).
|
|
790
790
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
791
791
|
* @param {*} [options] Override http request option.
|
|
792
792
|
* @throws {RequiredError}
|
|
@@ -797,11 +797,11 @@ var UserGroupApiFactory = function (configuration, basePath, axios) {
|
|
|
797
797
|
/**
|
|
798
798
|
* undefined **Required Permissions** \"identity-management.user-groups.view\"
|
|
799
799
|
* @param {string} [authorization] Bearer Token
|
|
800
|
-
* @param {number} [pageSize]
|
|
801
|
-
* @param {string} [pageToken]
|
|
802
|
-
* @param {string} [filter] Filter
|
|
803
|
-
* @param {string} [search]
|
|
804
|
-
* @param {string} [order]
|
|
800
|
+
* @param {number} [pageSize] Number of items per page.
|
|
801
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
802
|
+
* @param {string} [filter] Filter user groups by one or more fields. Allowed: id, name, slug, createdAt, updatedAt.
|
|
803
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
804
|
+
* @param {string} [order] Sort the response. Allowed columns: id, name, slug, createdAt, updatedAt.
|
|
805
805
|
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
806
806
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
807
807
|
* @param {*} [options] Override http request option.
|
package/dist/api.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ export * from './api/list-organization-invitations-api';
|
|
|
23
23
|
export * from './api/organization-migration-api';
|
|
24
24
|
export * from './api/organizations-api';
|
|
25
25
|
export * from './api/re-invite-an-organization-api';
|
|
26
|
+
export * from './api/report-schedule-api';
|
|
27
|
+
export * from './api/report-schedule-logs-api';
|
|
26
28
|
export * from './api/roles-api';
|
|
27
29
|
export * from './api/settings-api';
|
|
28
30
|
export * from './api/user-controller-rest-api';
|
package/dist/api.js
CHANGED
|
@@ -41,6 +41,8 @@ __exportStar(require("./api/list-organization-invitations-api"), exports);
|
|
|
41
41
|
__exportStar(require("./api/organization-migration-api"), exports);
|
|
42
42
|
__exportStar(require("./api/organizations-api"), exports);
|
|
43
43
|
__exportStar(require("./api/re-invite-an-organization-api"), exports);
|
|
44
|
+
__exportStar(require("./api/report-schedule-api"), exports);
|
|
45
|
+
__exportStar(require("./api/report-schedule-logs-api"), exports);
|
|
44
46
|
__exportStar(require("./api/roles-api"), exports);
|
|
45
47
|
__exportStar(require("./api/settings-api"), exports);
|
|
46
48
|
__exportStar(require("./api/user-controller-rest-api"), exports);
|
|
@@ -0,0 +1,115 @@
|
|
|
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 { ReportScheduleParameterDto } from './report-schedule-parameter-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateReportScheduleRequestDto
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateReportScheduleRequestDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof CreateReportScheduleRequestDto
|
|
23
|
+
*/
|
|
24
|
+
'name': string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof CreateReportScheduleRequestDto
|
|
29
|
+
*/
|
|
30
|
+
'description'?: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CreateReportScheduleRequestDto
|
|
35
|
+
*/
|
|
36
|
+
'reportCode': string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof CreateReportScheduleRequestDto
|
|
41
|
+
*/
|
|
42
|
+
'reportName': string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof CreateReportScheduleRequestDto
|
|
47
|
+
*/
|
|
48
|
+
'exportFormat': string;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof CreateReportScheduleRequestDto
|
|
53
|
+
*/
|
|
54
|
+
'reportSheet'?: string;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {boolean}
|
|
58
|
+
* @memberof CreateReportScheduleRequestDto
|
|
59
|
+
*/
|
|
60
|
+
'skipHeaderRow': boolean;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof CreateReportScheduleRequestDto
|
|
65
|
+
*/
|
|
66
|
+
'frequency': string;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {Array<number>}
|
|
70
|
+
* @memberof CreateReportScheduleRequestDto
|
|
71
|
+
*/
|
|
72
|
+
'periods': Array<number>;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof CreateReportScheduleRequestDto
|
|
77
|
+
*/
|
|
78
|
+
'executionTime': string;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof CreateReportScheduleRequestDto
|
|
83
|
+
*/
|
|
84
|
+
'adminUrl': string;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof CreateReportScheduleRequestDto
|
|
89
|
+
*/
|
|
90
|
+
'emailRecipients': string;
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof CreateReportScheduleRequestDto
|
|
95
|
+
*/
|
|
96
|
+
'emailSubject'?: string;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof CreateReportScheduleRequestDto
|
|
101
|
+
*/
|
|
102
|
+
'emailTemplateSlug': string;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @type {boolean}
|
|
106
|
+
* @memberof CreateReportScheduleRequestDto
|
|
107
|
+
*/
|
|
108
|
+
'isActive': boolean;
|
|
109
|
+
/**
|
|
110
|
+
*
|
|
111
|
+
* @type {Array<ReportScheduleParameterDto>}
|
|
112
|
+
* @memberof CreateReportScheduleRequestDto
|
|
113
|
+
*/
|
|
114
|
+
'parameters': Array<ReportScheduleParameterDto>;
|
|
115
|
+
}
|
|
@@ -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 CreateReportScheduleResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateReportScheduleResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The report-schedule response.
|
|
21
|
+
* @type {ReportScheduleClass}
|
|
22
|
+
* @memberof CreateReportScheduleResponseClass
|
|
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 });
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface CreateUserGroupRequestDto {
|
|
18
18
|
/**
|
|
19
|
-
* Human-readable, renameable identifier for the user group. Unique per tenant.
|
|
19
|
+
* Human-readable, renameable identifier for the user group. Unique per tenant. Must match /^[a-z0-9-]+$/.
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof CreateUserGroupRequestDto
|
|
22
22
|
*/
|
|
@@ -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 { QuickSightAnalysisParameterClass } from './quick-sight-analysis-parameter-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DashboardMetadataClass
|
|
17
|
+
*/
|
|
18
|
+
export interface DashboardMetadataClass {
|
|
19
|
+
/**
|
|
20
|
+
* QuickSight analysis display name
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof DashboardMetadataClass
|
|
23
|
+
*/
|
|
24
|
+
'name': string;
|
|
25
|
+
/**
|
|
26
|
+
* QuickSight analysis identifier
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof DashboardMetadataClass
|
|
29
|
+
*/
|
|
30
|
+
'quicksightAnalysisId': string;
|
|
31
|
+
/**
|
|
32
|
+
* Sheet names defined on the analysis
|
|
33
|
+
* @type {Array<string>}
|
|
34
|
+
* @memberof DashboardMetadataClass
|
|
35
|
+
*/
|
|
36
|
+
'sheets': Array<string>;
|
|
37
|
+
/**
|
|
38
|
+
* Analysis parameters exposed for embedding or filtering
|
|
39
|
+
* @type {Array<QuickSightAnalysisParameterClass>}
|
|
40
|
+
* @memberof DashboardMetadataClass
|
|
41
|
+
*/
|
|
42
|
+
'parameters': Array<QuickSightAnalysisParameterClass>;
|
|
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,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
|
@@ -16,6 +16,8 @@ export * from './create-data-report-request-dto';
|
|
|
16
16
|
export * from './create-data-report-response-class';
|
|
17
17
|
export * from './create-organization-migration-request-dto';
|
|
18
18
|
export * from './create-organization-migration-response-class';
|
|
19
|
+
export * from './create-report-schedule-request-dto';
|
|
20
|
+
export * from './create-report-schedule-response-class';
|
|
19
21
|
export * from './create-resources-migration-request-dto';
|
|
20
22
|
export * from './create-tenant-request-dto';
|
|
21
23
|
export * from './create-user-group-request-dto';
|
|
@@ -25,6 +27,7 @@ export * from './custom-schema-class';
|
|
|
25
27
|
export * from './dbconfig-dto';
|
|
26
28
|
export * from './dashboard-class';
|
|
27
29
|
export * from './dashboard-group-class';
|
|
30
|
+
export * from './dashboard-metadata-class';
|
|
28
31
|
export * from './data-report-class';
|
|
29
32
|
export * from './data-report-filter-class';
|
|
30
33
|
export * from './data-report-filter-dto';
|
|
@@ -39,11 +42,13 @@ export * from './enable-users-response-class';
|
|
|
39
42
|
export * from './format-tenant-settings-class';
|
|
40
43
|
export * from './get-custom-schema-response-class';
|
|
41
44
|
export * from './get-dashboard-group-response-class';
|
|
45
|
+
export * from './get-dashboard-metadata-response-class';
|
|
42
46
|
export * from './get-dashboard-response-class';
|
|
43
47
|
export * from './get-data-report-response-class';
|
|
44
48
|
export * from './get-embedded-url-response-class';
|
|
45
49
|
export * from './get-organization-migration-response-class';
|
|
46
50
|
export * from './get-organization-response-class';
|
|
51
|
+
export * from './get-report-schedule-response-class';
|
|
47
52
|
export * from './get-settings-response-class';
|
|
48
53
|
export * from './get-user-group-response-class';
|
|
49
54
|
export * from './get-user-response-class';
|
|
@@ -66,6 +71,8 @@ export * from './list-invites-response-class';
|
|
|
66
71
|
export * from './list-org-invitations-response-class';
|
|
67
72
|
export * from './list-organization-migrations-response-class';
|
|
68
73
|
export * from './list-organizations-response-class';
|
|
74
|
+
export * from './list-report-schedule-logs-response-class';
|
|
75
|
+
export * from './list-report-schedules-response-class';
|
|
69
76
|
export * from './list-roles-response-class';
|
|
70
77
|
export * from './list-user-group-members-response-class';
|
|
71
78
|
export * from './list-user-groups-response-class';
|
|
@@ -76,8 +83,14 @@ export * from './organization-class';
|
|
|
76
83
|
export * from './organization-migration-class';
|
|
77
84
|
export * from './permission-class';
|
|
78
85
|
export * from './publish-dashboard-request-dto';
|
|
86
|
+
export * from './quick-sight-analysis-parameter-class';
|
|
79
87
|
export * from './re-invite-org-request-dto';
|
|
80
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';
|
|
81
94
|
export * from './revert-analysis-request-dto';
|
|
82
95
|
export * from './revert-organization-migration-request-dto';
|
|
83
96
|
export * from './revert-organization-migration-response-class';
|
|
@@ -101,6 +114,8 @@ export * from './update-data-report-request-dto';
|
|
|
101
114
|
export * from './update-data-report-response-class';
|
|
102
115
|
export * from './update-organization-request-dto-rest';
|
|
103
116
|
export * from './update-organization-response-class';
|
|
117
|
+
export * from './update-report-schedule-request-dto';
|
|
118
|
+
export * from './update-report-schedule-response-class';
|
|
104
119
|
export * from './update-user-group-request-dto';
|
|
105
120
|
export * from './update-user-group-response-class';
|
|
106
121
|
export * from './user-class';
|
package/dist/models/index.js
CHANGED
|
@@ -32,6 +32,8 @@ __exportStar(require("./create-data-report-request-dto"), exports);
|
|
|
32
32
|
__exportStar(require("./create-data-report-response-class"), exports);
|
|
33
33
|
__exportStar(require("./create-organization-migration-request-dto"), exports);
|
|
34
34
|
__exportStar(require("./create-organization-migration-response-class"), exports);
|
|
35
|
+
__exportStar(require("./create-report-schedule-request-dto"), exports);
|
|
36
|
+
__exportStar(require("./create-report-schedule-response-class"), exports);
|
|
35
37
|
__exportStar(require("./create-resources-migration-request-dto"), exports);
|
|
36
38
|
__exportStar(require("./create-tenant-request-dto"), exports);
|
|
37
39
|
__exportStar(require("./create-user-group-request-dto"), exports);
|
|
@@ -41,6 +43,7 @@ __exportStar(require("./custom-schema-class"), exports);
|
|
|
41
43
|
__exportStar(require("./dbconfig-dto"), exports);
|
|
42
44
|
__exportStar(require("./dashboard-class"), exports);
|
|
43
45
|
__exportStar(require("./dashboard-group-class"), exports);
|
|
46
|
+
__exportStar(require("./dashboard-metadata-class"), exports);
|
|
44
47
|
__exportStar(require("./data-report-class"), exports);
|
|
45
48
|
__exportStar(require("./data-report-filter-class"), exports);
|
|
46
49
|
__exportStar(require("./data-report-filter-dto"), exports);
|
|
@@ -55,11 +58,13 @@ __exportStar(require("./enable-users-response-class"), exports);
|
|
|
55
58
|
__exportStar(require("./format-tenant-settings-class"), exports);
|
|
56
59
|
__exportStar(require("./get-custom-schema-response-class"), exports);
|
|
57
60
|
__exportStar(require("./get-dashboard-group-response-class"), exports);
|
|
61
|
+
__exportStar(require("./get-dashboard-metadata-response-class"), exports);
|
|
58
62
|
__exportStar(require("./get-dashboard-response-class"), exports);
|
|
59
63
|
__exportStar(require("./get-data-report-response-class"), exports);
|
|
60
64
|
__exportStar(require("./get-embedded-url-response-class"), exports);
|
|
61
65
|
__exportStar(require("./get-organization-migration-response-class"), exports);
|
|
62
66
|
__exportStar(require("./get-organization-response-class"), exports);
|
|
67
|
+
__exportStar(require("./get-report-schedule-response-class"), exports);
|
|
63
68
|
__exportStar(require("./get-settings-response-class"), exports);
|
|
64
69
|
__exportStar(require("./get-user-group-response-class"), exports);
|
|
65
70
|
__exportStar(require("./get-user-response-class"), exports);
|
|
@@ -82,6 +87,8 @@ __exportStar(require("./list-invites-response-class"), exports);
|
|
|
82
87
|
__exportStar(require("./list-org-invitations-response-class"), exports);
|
|
83
88
|
__exportStar(require("./list-organization-migrations-response-class"), exports);
|
|
84
89
|
__exportStar(require("./list-organizations-response-class"), exports);
|
|
90
|
+
__exportStar(require("./list-report-schedule-logs-response-class"), exports);
|
|
91
|
+
__exportStar(require("./list-report-schedules-response-class"), exports);
|
|
85
92
|
__exportStar(require("./list-roles-response-class"), exports);
|
|
86
93
|
__exportStar(require("./list-user-group-members-response-class"), exports);
|
|
87
94
|
__exportStar(require("./list-user-groups-response-class"), exports);
|
|
@@ -92,8 +99,14 @@ __exportStar(require("./organization-class"), exports);
|
|
|
92
99
|
__exportStar(require("./organization-migration-class"), exports);
|
|
93
100
|
__exportStar(require("./permission-class"), exports);
|
|
94
101
|
__exportStar(require("./publish-dashboard-request-dto"), exports);
|
|
102
|
+
__exportStar(require("./quick-sight-analysis-parameter-class"), exports);
|
|
95
103
|
__exportStar(require("./re-invite-org-request-dto"), exports);
|
|
96
104
|
__exportStar(require("./remove-users-from-group-request-dto"), exports);
|
|
105
|
+
__exportStar(require("./report-schedule-class"), exports);
|
|
106
|
+
__exportStar(require("./report-schedule-log-class"), exports);
|
|
107
|
+
__exportStar(require("./report-schedule-parameter-class"), exports);
|
|
108
|
+
__exportStar(require("./report-schedule-parameter-dto"), exports);
|
|
109
|
+
__exportStar(require("./report-schedule-parameter-value-class"), exports);
|
|
97
110
|
__exportStar(require("./revert-analysis-request-dto"), exports);
|
|
98
111
|
__exportStar(require("./revert-organization-migration-request-dto"), exports);
|
|
99
112
|
__exportStar(require("./revert-organization-migration-response-class"), exports);
|
|
@@ -117,6 +130,8 @@ __exportStar(require("./update-data-report-request-dto"), exports);
|
|
|
117
130
|
__exportStar(require("./update-data-report-response-class"), exports);
|
|
118
131
|
__exportStar(require("./update-organization-request-dto-rest"), exports);
|
|
119
132
|
__exportStar(require("./update-organization-response-class"), exports);
|
|
133
|
+
__exportStar(require("./update-report-schedule-request-dto"), exports);
|
|
134
|
+
__exportStar(require("./update-report-schedule-response-class"), exports);
|
|
120
135
|
__exportStar(require("./update-user-group-request-dto"), exports);
|
|
121
136
|
__exportStar(require("./update-user-group-response-class"), exports);
|
|
122
137
|
__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
|
+
}
|