@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 CreateDashboardGroupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateDashboardGroupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Dashboard group name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateDashboardGroupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard group parent id
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof CreateDashboardGroupRequestDto
|
|
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 CreateDashboardGroupResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateDashboardGroupResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Dashboard group
|
|
21
|
+
* @type {DashboardGroupClass}
|
|
22
|
+
* @memberof CreateDashboardGroupResponseClass
|
|
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 CreateDashboardRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateDashboardRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Dashboard name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateDashboardRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard description
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateDashboardRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'description': string;
|
|
30
|
+
/**
|
|
31
|
+
* Dashboard quick sight analysis id
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateDashboardRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'quicksightAnalysisId': string;
|
|
36
|
+
/**
|
|
37
|
+
* Dashboard quick sight dashboard id
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateDashboardRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'quicksightDashboardId': string;
|
|
42
|
+
/**
|
|
43
|
+
* Dashboard group id
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof CreateDashboardRequestDto
|
|
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 CreateDashboardResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateDashboardResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Dashboard
|
|
21
|
+
* @type {DashboardClass}
|
|
22
|
+
* @memberof CreateDashboardResponseClass
|
|
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,84 @@
|
|
|
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 DashboardClass
|
|
16
|
+
*/
|
|
17
|
+
export interface DashboardClass {
|
|
18
|
+
/**
|
|
19
|
+
* Dashboard id
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof DashboardClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard code
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DashboardClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* Dashboard name
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof DashboardClass
|
|
34
|
+
*/
|
|
35
|
+
'name': string;
|
|
36
|
+
/**
|
|
37
|
+
* Dashboard description
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof DashboardClass
|
|
40
|
+
*/
|
|
41
|
+
'description': string;
|
|
42
|
+
/**
|
|
43
|
+
* Dashboard quicksight analysis id
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof DashboardClass
|
|
46
|
+
*/
|
|
47
|
+
'quicksightAnalysisId': string;
|
|
48
|
+
/**
|
|
49
|
+
* Quicksight dashboard id
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof DashboardClass
|
|
52
|
+
*/
|
|
53
|
+
'quicksightDashboardId': string;
|
|
54
|
+
/**
|
|
55
|
+
* Dashboard group id
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof DashboardClass
|
|
58
|
+
*/
|
|
59
|
+
'dashboardGroupId': number;
|
|
60
|
+
/**
|
|
61
|
+
* Created at
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof DashboardClass
|
|
64
|
+
*/
|
|
65
|
+
'createdAt': string;
|
|
66
|
+
/**
|
|
67
|
+
* Updated at
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof DashboardClass
|
|
70
|
+
*/
|
|
71
|
+
'updatedAt': string;
|
|
72
|
+
/**
|
|
73
|
+
* Identifier of the user who created the record.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof DashboardClass
|
|
76
|
+
*/
|
|
77
|
+
'createdBy': string;
|
|
78
|
+
/**
|
|
79
|
+
* Identifier of the user who last updated the record.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof DashboardClass
|
|
82
|
+
*/
|
|
83
|
+
'updatedBy': string;
|
|
84
|
+
}
|
|
@@ -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,66 @@
|
|
|
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 DashboardGroupClass
|
|
16
|
+
*/
|
|
17
|
+
export interface DashboardGroupClass {
|
|
18
|
+
/**
|
|
19
|
+
* Dashboard group id
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof DashboardGroupClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard group code
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DashboardGroupClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* Dashboard group name
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof DashboardGroupClass
|
|
34
|
+
*/
|
|
35
|
+
'name': string;
|
|
36
|
+
/**
|
|
37
|
+
* Dashboard group parent id
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof DashboardGroupClass
|
|
40
|
+
*/
|
|
41
|
+
'parentId': number;
|
|
42
|
+
/**
|
|
43
|
+
* Time at which the object was created.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof DashboardGroupClass
|
|
46
|
+
*/
|
|
47
|
+
'createdAt': string;
|
|
48
|
+
/**
|
|
49
|
+
* Time at which the object was updated.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof DashboardGroupClass
|
|
52
|
+
*/
|
|
53
|
+
'updatedAt': string;
|
|
54
|
+
/**
|
|
55
|
+
* Identifier of the user who created the record.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof DashboardGroupClass
|
|
58
|
+
*/
|
|
59
|
+
'createdBy': string;
|
|
60
|
+
/**
|
|
61
|
+
* Identifier of the user who last updated the record.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof DashboardGroupClass
|
|
64
|
+
*/
|
|
65
|
+
'updatedBy': string;
|
|
66
|
+
}
|
|
@@ -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 GetDashboardGroupResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetDashboardGroupResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Dashboard group
|
|
21
|
+
* @type {DashboardGroupClass}
|
|
22
|
+
* @memberof GetDashboardGroupResponseClass
|
|
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,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 GetDashboardResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetDashboardResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Dashboard
|
|
21
|
+
* @type {DashboardClass}
|
|
22
|
+
* @memberof GetDashboardResponseClass
|
|
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 });
|
package/dist/models/index.d.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';
|
package/dist/models/index.js
CHANGED
|
@@ -20,6 +20,10 @@ __exportStar(require("./batch-delete-request-dto"), exports);
|
|
|
20
20
|
__exportStar(require("./batch-delete-response-class"), exports);
|
|
21
21
|
__exportStar(require("./create-custom-schema-request-dto"), exports);
|
|
22
22
|
__exportStar(require("./create-custom-schema-response-class"), exports);
|
|
23
|
+
__exportStar(require("./create-dashboard-group-request-dto"), exports);
|
|
24
|
+
__exportStar(require("./create-dashboard-group-response-class"), exports);
|
|
25
|
+
__exportStar(require("./create-dashboard-request-dto"), exports);
|
|
26
|
+
__exportStar(require("./create-dashboard-response-class"), exports);
|
|
23
27
|
__exportStar(require("./create-data-report-request-dto"), exports);
|
|
24
28
|
__exportStar(require("./create-data-report-response-class"), exports);
|
|
25
29
|
__exportStar(require("./create-permission-request-dto"), exports);
|
|
@@ -28,6 +32,8 @@ __exportStar(require("./create-tenant-request-dto"), exports);
|
|
|
28
32
|
__exportStar(require("./custom-field-dto"), exports);
|
|
29
33
|
__exportStar(require("./custom-schema-class"), exports);
|
|
30
34
|
__exportStar(require("./dbconfig-dto"), exports);
|
|
35
|
+
__exportStar(require("./dashboard-class"), exports);
|
|
36
|
+
__exportStar(require("./dashboard-group-class"), exports);
|
|
31
37
|
__exportStar(require("./data-report-class"), exports);
|
|
32
38
|
__exportStar(require("./data-report-filter-class"), exports);
|
|
33
39
|
__exportStar(require("./data-report-filter-dto"), exports);
|
|
@@ -42,6 +48,8 @@ __exportStar(require("./enable-users-request-dto"), exports);
|
|
|
42
48
|
__exportStar(require("./enable-users-response-class"), exports);
|
|
43
49
|
__exportStar(require("./format-tenant-settings-class"), exports);
|
|
44
50
|
__exportStar(require("./get-custom-schema-response-class"), exports);
|
|
51
|
+
__exportStar(require("./get-dashboard-group-response-class"), exports);
|
|
52
|
+
__exportStar(require("./get-dashboard-response-class"), exports);
|
|
45
53
|
__exportStar(require("./get-data-report-response-class"), exports);
|
|
46
54
|
__exportStar(require("./get-organization-response-class"), exports);
|
|
47
55
|
__exportStar(require("./get-settings-response-class"), exports);
|
|
@@ -56,6 +64,8 @@ __exportStar(require("./invite-user-response-class"), exports);
|
|
|
56
64
|
__exportStar(require("./invite-users-request-dto"), exports);
|
|
57
65
|
__exportStar(require("./invite-users-response-class"), exports);
|
|
58
66
|
__exportStar(require("./list-custom-schemas-response-class"), exports);
|
|
67
|
+
__exportStar(require("./list-dashboard-groups-response-class"), exports);
|
|
68
|
+
__exportStar(require("./list-dashboards-response-class"), exports);
|
|
59
69
|
__exportStar(require("./list-data-reports-response-class"), exports);
|
|
60
70
|
__exportStar(require("./list-invites-response-class"), exports);
|
|
61
71
|
__exportStar(require("./list-org-invitations-response-class"), exports);
|
|
@@ -76,6 +86,10 @@ __exportStar(require("./tenant-admin-user-dto"), exports);
|
|
|
76
86
|
__exportStar(require("./tenant-settings-class"), exports);
|
|
77
87
|
__exportStar(require("./update-custom-schema-request-dto"), exports);
|
|
78
88
|
__exportStar(require("./update-custom-schema-response-class"), exports);
|
|
89
|
+
__exportStar(require("./update-dashboard-group-request-dto"), exports);
|
|
90
|
+
__exportStar(require("./update-dashboard-group-response-class"), exports);
|
|
91
|
+
__exportStar(require("./update-dashboard-request-dto"), exports);
|
|
92
|
+
__exportStar(require("./update-dashboard-response-class"), exports);
|
|
79
93
|
__exportStar(require("./update-data-report-request-dto"), exports);
|
|
80
94
|
__exportStar(require("./update-data-report-response-class"), exports);
|
|
81
95
|
__exportStar(require("./update-organization-request-dto-rest"), exports);
|
|
@@ -0,0 +1,31 @@
|
|
|
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 ListDashboardGroupsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListDashboardGroupsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Dashboard groups
|
|
21
|
+
* @type {Array<DashboardGroupClass>}
|
|
22
|
+
* @memberof ListDashboardGroupsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<DashboardGroupClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListDashboardGroupsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
}
|
|
@@ -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,31 @@
|
|
|
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 ListDashboardsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListDashboardsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Dashboards
|
|
21
|
+
* @type {Array<DashboardClass>}
|
|
22
|
+
* @memberof ListDashboardsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<DashboardClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListDashboardsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
}
|
|
@@ -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 });
|