@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,30 @@
|
|
|
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 UpdateDashboardGroupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateDashboardGroupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Dashboard group name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateDashboardGroupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard group parent id
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof UpdateDashboardGroupRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'parentId'?: number;
|
|
30
|
+
}
|
|
@@ -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 { DashboardGroupClass } from './dashboard-group-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateDashboardGroupResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateDashboardGroupResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Dashboard group
|
|
21
|
+
* @type {DashboardGroupClass}
|
|
22
|
+
* @memberof UpdateDashboardGroupResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'dashboardGroup': DashboardGroupClass;
|
|
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,48 @@
|
|
|
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 UpdateDashboardRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateDashboardRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Dashboard name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateDashboardRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard description
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdateDashboardRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'description': string;
|
|
30
|
+
/**
|
|
31
|
+
* Dashboard quick sight analysis id
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdateDashboardRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'quicksightAnalysisId': string;
|
|
36
|
+
/**
|
|
37
|
+
* Dashboard quick sight dashboard id
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof UpdateDashboardRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'quicksightDashboardId': string;
|
|
42
|
+
/**
|
|
43
|
+
* Dashboard group id
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof UpdateDashboardRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'dashboardGroupId'?: number;
|
|
48
|
+
}
|
|
@@ -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 { DashboardClass } from './dashboard-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateDashboardResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateDashboardResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Dashboard
|
|
21
|
+
* @type {DashboardClass}
|
|
22
|
+
* @memberof UpdateDashboardResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'dashboard': DashboardClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL Tenant Service
|
|
6
|
+
* The EMIL TenantService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* 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 CreateDashboardGroupRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateDashboardGroupRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Dashboard group name
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateDashboardGroupRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* Dashboard group parent id
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof CreateDashboardGroupRequestDto
|
|
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 CreateDashboardGroupResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateDashboardGroupResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard group
|
|
26
|
+
* @type {DashboardGroupClass}
|
|
27
|
+
* @memberof CreateDashboardGroupResponseClass
|
|
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 CreateDashboardRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateDashboardRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Dashboard name
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateDashboardRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* Dashboard description
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateDashboardRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'description': string;
|
|
35
|
+
/**
|
|
36
|
+
* Dashboard quick sight analysis id
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateDashboardRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'quicksightAnalysisId': string;
|
|
41
|
+
/**
|
|
42
|
+
* Dashboard quick sight dashboard id
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreateDashboardRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'quicksightDashboardId': string;
|
|
47
|
+
/**
|
|
48
|
+
* Dashboard group id
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof CreateDashboardRequestDto
|
|
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 CreateDashboardResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateDashboardResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard
|
|
26
|
+
* @type {DashboardClass}
|
|
27
|
+
* @memberof CreateDashboardResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'dashboard': DashboardClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,90 @@
|
|
|
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 DashboardClass
|
|
21
|
+
*/
|
|
22
|
+
export interface DashboardClass {
|
|
23
|
+
/**
|
|
24
|
+
* Dashboard id
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof DashboardClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Dashboard code
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof DashboardClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
* Dashboard name
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof DashboardClass
|
|
39
|
+
*/
|
|
40
|
+
'name': string;
|
|
41
|
+
/**
|
|
42
|
+
* Dashboard description
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof DashboardClass
|
|
45
|
+
*/
|
|
46
|
+
'description': string;
|
|
47
|
+
/**
|
|
48
|
+
* Dashboard quicksight analysis id
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof DashboardClass
|
|
51
|
+
*/
|
|
52
|
+
'quicksightAnalysisId': string;
|
|
53
|
+
/**
|
|
54
|
+
* Quicksight dashboard id
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof DashboardClass
|
|
57
|
+
*/
|
|
58
|
+
'quicksightDashboardId': string;
|
|
59
|
+
/**
|
|
60
|
+
* Dashboard group id
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof DashboardClass
|
|
63
|
+
*/
|
|
64
|
+
'dashboardGroupId': number;
|
|
65
|
+
/**
|
|
66
|
+
* Created at
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof DashboardClass
|
|
69
|
+
*/
|
|
70
|
+
'createdAt': string;
|
|
71
|
+
/**
|
|
72
|
+
* Updated at
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof DashboardClass
|
|
75
|
+
*/
|
|
76
|
+
'updatedAt': string;
|
|
77
|
+
/**
|
|
78
|
+
* Identifier of the user who created the record.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof DashboardClass
|
|
81
|
+
*/
|
|
82
|
+
'createdBy': string;
|
|
83
|
+
/**
|
|
84
|
+
* Identifier of the user who last updated the record.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof DashboardClass
|
|
87
|
+
*/
|
|
88
|
+
'updatedBy': string;
|
|
89
|
+
}
|
|
90
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
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 DashboardGroupClass
|
|
21
|
+
*/
|
|
22
|
+
export interface DashboardGroupClass {
|
|
23
|
+
/**
|
|
24
|
+
* Dashboard group id
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof DashboardGroupClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Dashboard group code
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof DashboardGroupClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
* Dashboard group name
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof DashboardGroupClass
|
|
39
|
+
*/
|
|
40
|
+
'name': string;
|
|
41
|
+
/**
|
|
42
|
+
* Dashboard group parent id
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof DashboardGroupClass
|
|
45
|
+
*/
|
|
46
|
+
'parentId': number;
|
|
47
|
+
/**
|
|
48
|
+
* Time at which the object was created.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof DashboardGroupClass
|
|
51
|
+
*/
|
|
52
|
+
'createdAt': string;
|
|
53
|
+
/**
|
|
54
|
+
* Time at which the object was updated.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof DashboardGroupClass
|
|
57
|
+
*/
|
|
58
|
+
'updatedAt': string;
|
|
59
|
+
/**
|
|
60
|
+
* Identifier of the user who created the record.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof DashboardGroupClass
|
|
63
|
+
*/
|
|
64
|
+
'createdBy': string;
|
|
65
|
+
/**
|
|
66
|
+
* Identifier of the user who last updated the record.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof DashboardGroupClass
|
|
69
|
+
*/
|
|
70
|
+
'updatedBy': string;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -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 GetDashboardGroupResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetDashboardGroupResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard group
|
|
26
|
+
* @type {DashboardGroupClass}
|
|
27
|
+
* @memberof GetDashboardGroupResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'dashboardGroup': DashboardGroupClass;
|
|
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 { DashboardClass } from './dashboard-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetDashboardResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetDashboardResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard
|
|
26
|
+
* @type {DashboardClass}
|
|
27
|
+
* @memberof GetDashboardResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'dashboard': DashboardClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -4,6 +4,10 @@ export * from './batch-delete-request-dto';
|
|
|
4
4
|
export * from './batch-delete-response-class';
|
|
5
5
|
export * from './create-custom-schema-request-dto';
|
|
6
6
|
export * from './create-custom-schema-response-class';
|
|
7
|
+
export * from './create-dashboard-group-request-dto';
|
|
8
|
+
export * from './create-dashboard-group-response-class';
|
|
9
|
+
export * from './create-dashboard-request-dto';
|
|
10
|
+
export * from './create-dashboard-response-class';
|
|
7
11
|
export * from './create-data-report-request-dto';
|
|
8
12
|
export * from './create-data-report-response-class';
|
|
9
13
|
export * from './create-permission-request-dto';
|
|
@@ -12,6 +16,8 @@ export * from './create-tenant-request-dto';
|
|
|
12
16
|
export * from './custom-field-dto';
|
|
13
17
|
export * from './custom-schema-class';
|
|
14
18
|
export * from './dbconfig-dto';
|
|
19
|
+
export * from './dashboard-class';
|
|
20
|
+
export * from './dashboard-group-class';
|
|
15
21
|
export * from './data-report-class';
|
|
16
22
|
export * from './data-report-filter-class';
|
|
17
23
|
export * from './data-report-filter-dto';
|
|
@@ -26,6 +32,8 @@ export * from './enable-users-request-dto';
|
|
|
26
32
|
export * from './enable-users-response-class';
|
|
27
33
|
export * from './format-tenant-settings-class';
|
|
28
34
|
export * from './get-custom-schema-response-class';
|
|
35
|
+
export * from './get-dashboard-group-response-class';
|
|
36
|
+
export * from './get-dashboard-response-class';
|
|
29
37
|
export * from './get-data-report-response-class';
|
|
30
38
|
export * from './get-organization-response-class';
|
|
31
39
|
export * from './get-settings-response-class';
|
|
@@ -40,6 +48,8 @@ export * from './invite-user-response-class';
|
|
|
40
48
|
export * from './invite-users-request-dto';
|
|
41
49
|
export * from './invite-users-response-class';
|
|
42
50
|
export * from './list-custom-schemas-response-class';
|
|
51
|
+
export * from './list-dashboard-groups-response-class';
|
|
52
|
+
export * from './list-dashboards-response-class';
|
|
43
53
|
export * from './list-data-reports-response-class';
|
|
44
54
|
export * from './list-invites-response-class';
|
|
45
55
|
export * from './list-org-invitations-response-class';
|
|
@@ -60,6 +70,10 @@ export * from './tenant-admin-user-dto';
|
|
|
60
70
|
export * from './tenant-settings-class';
|
|
61
71
|
export * from './update-custom-schema-request-dto';
|
|
62
72
|
export * from './update-custom-schema-response-class';
|
|
73
|
+
export * from './update-dashboard-group-request-dto';
|
|
74
|
+
export * from './update-dashboard-group-response-class';
|
|
75
|
+
export * from './update-dashboard-request-dto';
|
|
76
|
+
export * from './update-dashboard-response-class';
|
|
63
77
|
export * from './update-data-report-request-dto';
|
|
64
78
|
export * from './update-data-report-response-class';
|
|
65
79
|
export * from './update-organization-request-dto-rest';
|
|
@@ -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 { DashboardGroupClass } from './dashboard-group-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListDashboardGroupsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListDashboardGroupsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard groups
|
|
26
|
+
* @type {Array<DashboardGroupClass>}
|
|
27
|
+
* @memberof ListDashboardGroupsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<DashboardGroupClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListDashboardGroupsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|