@emilgroup/tenant-sdk 1.18.0 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +16 -0
- package/README.md +2 -2
- package/api/dashboard-api.ts +659 -0
- package/api/dashboard-group-api.ts +659 -0
- package/api.ts +4 -0
- package/dist/api/dashboard-api.d.ts +365 -0
- package/dist/api/dashboard-api.js +616 -0
- package/dist/api/dashboard-group-api.d.ts +365 -0
- package/dist/api/dashboard-group-api.js +616 -0
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/models/create-dashboard-group-request-dto.d.ts +30 -0
- package/dist/models/create-dashboard-group-request-dto.js +15 -0
- package/dist/models/create-dashboard-group-response-class.d.ts +25 -0
- package/dist/models/create-dashboard-group-response-class.js +15 -0
- package/dist/models/create-dashboard-request-dto.d.ts +48 -0
- package/dist/models/create-dashboard-request-dto.js +15 -0
- package/dist/models/create-dashboard-response-class.d.ts +25 -0
- package/dist/models/create-dashboard-response-class.js +15 -0
- package/dist/models/dashboard-class.d.ts +84 -0
- package/dist/models/dashboard-class.js +15 -0
- package/dist/models/dashboard-group-class.d.ts +66 -0
- package/dist/models/dashboard-group-class.js +15 -0
- package/dist/models/get-dashboard-group-response-class.d.ts +25 -0
- package/dist/models/get-dashboard-group-response-class.js +15 -0
- package/dist/models/get-dashboard-response-class.d.ts +25 -0
- package/dist/models/get-dashboard-response-class.js +15 -0
- package/dist/models/index.d.ts +14 -0
- package/dist/models/index.js +14 -0
- package/dist/models/list-dashboard-groups-response-class.d.ts +31 -0
- package/dist/models/list-dashboard-groups-response-class.js +15 -0
- package/dist/models/list-dashboards-response-class.d.ts +31 -0
- package/dist/models/list-dashboards-response-class.js +15 -0
- package/dist/models/update-dashboard-group-request-dto.d.ts +30 -0
- package/dist/models/update-dashboard-group-request-dto.js +15 -0
- package/dist/models/update-dashboard-group-response-class.d.ts +25 -0
- package/dist/models/update-dashboard-group-response-class.js +15 -0
- package/dist/models/update-dashboard-request-dto.d.ts +48 -0
- package/dist/models/update-dashboard-request-dto.js +15 -0
- package/dist/models/update-dashboard-response-class.d.ts +25 -0
- package/dist/models/update-dashboard-response-class.js +15 -0
- package/models/create-dashboard-group-request-dto.ts +36 -0
- package/models/create-dashboard-group-response-class.ts +31 -0
- package/models/create-dashboard-request-dto.ts +54 -0
- package/models/create-dashboard-response-class.ts +31 -0
- package/models/dashboard-class.ts +90 -0
- package/models/dashboard-group-class.ts +72 -0
- package/models/get-dashboard-group-response-class.ts +31 -0
- package/models/get-dashboard-response-class.ts +31 -0
- package/models/index.ts +14 -0
- package/models/list-dashboard-groups-response-class.ts +37 -0
- package/models/list-dashboards-response-class.ts +37 -0
- package/models/update-dashboard-group-request-dto.ts +36 -0
- package/models/update-dashboard-group-response-class.ts +31 -0
- package/models/update-dashboard-request-dto.ts +54 -0
- package/models/update-dashboard-response-class.ts +31 -0
- package/package.json +1 -1
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL Tenant Service
|
|
5
|
+
* The EMIL TenantService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { DashboardClass } from './dashboard-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListDashboardsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListDashboardsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Dashboards
|
|
26
|
+
* @type {Array<DashboardClass>}
|
|
27
|
+
* @memberof ListDashboardsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<DashboardClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListDashboardsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
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 UpdateDashboardGroupRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateDashboardGroupRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Dashboard group name
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateDashboardGroupRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* Dashboard group parent id
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof UpdateDashboardGroupRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'parentId'?: number;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -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 { DashboardGroupClass } from './dashboard-group-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface UpdateDashboardGroupResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdateDashboardGroupResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard group
|
|
26
|
+
* @type {DashboardGroupClass}
|
|
27
|
+
* @memberof UpdateDashboardGroupResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'dashboardGroup': DashboardGroupClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
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 UpdateDashboardRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateDashboardRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Dashboard name
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateDashboardRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* Dashboard description
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateDashboardRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'description': string;
|
|
35
|
+
/**
|
|
36
|
+
* Dashboard quick sight analysis id
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateDashboardRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'quicksightAnalysisId': string;
|
|
41
|
+
/**
|
|
42
|
+
* Dashboard quick sight dashboard id
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof UpdateDashboardRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'quicksightDashboardId': string;
|
|
47
|
+
/**
|
|
48
|
+
* Dashboard group id
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof UpdateDashboardRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'dashboardGroupId'?: number;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -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 { DashboardClass } from './dashboard-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface UpdateDashboardResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdateDashboardResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard
|
|
26
|
+
* @type {DashboardClass}
|
|
27
|
+
* @memberof UpdateDashboardResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'dashboard': DashboardClass;
|
|
30
|
+
}
|
|
31
|
+
|