@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.
Files changed (57) hide show
  1. package/.openapi-generator/FILES +16 -0
  2. package/README.md +2 -2
  3. package/api/dashboard-api.ts +659 -0
  4. package/api/dashboard-group-api.ts +659 -0
  5. package/api.ts +4 -0
  6. package/dist/api/dashboard-api.d.ts +365 -0
  7. package/dist/api/dashboard-api.js +616 -0
  8. package/dist/api/dashboard-group-api.d.ts +365 -0
  9. package/dist/api/dashboard-group-api.js +616 -0
  10. package/dist/api.d.ts +2 -0
  11. package/dist/api.js +2 -0
  12. package/dist/models/create-dashboard-group-request-dto.d.ts +30 -0
  13. package/dist/models/create-dashboard-group-request-dto.js +15 -0
  14. package/dist/models/create-dashboard-group-response-class.d.ts +25 -0
  15. package/dist/models/create-dashboard-group-response-class.js +15 -0
  16. package/dist/models/create-dashboard-request-dto.d.ts +48 -0
  17. package/dist/models/create-dashboard-request-dto.js +15 -0
  18. package/dist/models/create-dashboard-response-class.d.ts +25 -0
  19. package/dist/models/create-dashboard-response-class.js +15 -0
  20. package/dist/models/dashboard-class.d.ts +84 -0
  21. package/dist/models/dashboard-class.js +15 -0
  22. package/dist/models/dashboard-group-class.d.ts +66 -0
  23. package/dist/models/dashboard-group-class.js +15 -0
  24. package/dist/models/get-dashboard-group-response-class.d.ts +25 -0
  25. package/dist/models/get-dashboard-group-response-class.js +15 -0
  26. package/dist/models/get-dashboard-response-class.d.ts +25 -0
  27. package/dist/models/get-dashboard-response-class.js +15 -0
  28. package/dist/models/index.d.ts +14 -0
  29. package/dist/models/index.js +14 -0
  30. package/dist/models/list-dashboard-groups-response-class.d.ts +31 -0
  31. package/dist/models/list-dashboard-groups-response-class.js +15 -0
  32. package/dist/models/list-dashboards-response-class.d.ts +31 -0
  33. package/dist/models/list-dashboards-response-class.js +15 -0
  34. package/dist/models/update-dashboard-group-request-dto.d.ts +30 -0
  35. package/dist/models/update-dashboard-group-request-dto.js +15 -0
  36. package/dist/models/update-dashboard-group-response-class.d.ts +25 -0
  37. package/dist/models/update-dashboard-group-response-class.js +15 -0
  38. package/dist/models/update-dashboard-request-dto.d.ts +48 -0
  39. package/dist/models/update-dashboard-request-dto.js +15 -0
  40. package/dist/models/update-dashboard-response-class.d.ts +25 -0
  41. package/dist/models/update-dashboard-response-class.js +15 -0
  42. package/models/create-dashboard-group-request-dto.ts +36 -0
  43. package/models/create-dashboard-group-response-class.ts +31 -0
  44. package/models/create-dashboard-request-dto.ts +54 -0
  45. package/models/create-dashboard-response-class.ts +31 -0
  46. package/models/dashboard-class.ts +90 -0
  47. package/models/dashboard-group-class.ts +72 -0
  48. package/models/get-dashboard-group-response-class.ts +31 -0
  49. package/models/get-dashboard-response-class.ts +31 -0
  50. package/models/index.ts +14 -0
  51. package/models/list-dashboard-groups-response-class.ts +37 -0
  52. package/models/list-dashboards-response-class.ts +37 -0
  53. package/models/update-dashboard-group-request-dto.ts +36 -0
  54. package/models/update-dashboard-group-response-class.ts +31 -0
  55. package/models/update-dashboard-request-dto.ts +54 -0
  56. package/models/update-dashboard-response-class.ts +31 -0
  57. 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
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/tenant-sdk",
3
- "version": "1.18.0",
3
+ "version": "1.19.0",
4
4
  "description": "OpenAPI client for @emilgroup/tenant-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [