@emilgroup/tenant-sdk-node 1.17.0 → 1.20.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 (75) hide show
  1. package/.openapi-generator/FILES +19 -0
  2. package/README.md +2 -2
  3. package/api/dashboard-api.ts +663 -0
  4. package/api/dashboard-group-api.ts +663 -0
  5. package/api/users-api.ts +116 -0
  6. package/api.ts +4 -0
  7. package/dist/api/dashboard-api.d.ts +365 -0
  8. package/dist/api/dashboard-api.js +620 -0
  9. package/dist/api/dashboard-group-api.d.ts +365 -0
  10. package/dist/api/dashboard-group-api.js +620 -0
  11. package/dist/api/users-api.d.ts +62 -0
  12. package/dist/api/users-api.js +95 -0
  13. package/dist/api.d.ts +2 -0
  14. package/dist/api.js +2 -0
  15. package/dist/models/create-dashboard-group-request-dto.d.ts +30 -0
  16. package/dist/models/create-dashboard-group-request-dto.js +15 -0
  17. package/dist/models/create-dashboard-group-response-class.d.ts +25 -0
  18. package/dist/models/create-dashboard-group-response-class.js +15 -0
  19. package/dist/models/create-dashboard-request-dto.d.ts +48 -0
  20. package/dist/models/create-dashboard-request-dto.js +15 -0
  21. package/dist/models/create-dashboard-response-class.d.ts +25 -0
  22. package/dist/models/create-dashboard-response-class.js +15 -0
  23. package/dist/models/dashboard-class.d.ts +84 -0
  24. package/dist/models/dashboard-class.js +15 -0
  25. package/dist/models/dashboard-group-class.d.ts +66 -0
  26. package/dist/models/dashboard-group-class.js +15 -0
  27. package/dist/models/get-dashboard-group-response-class.d.ts +25 -0
  28. package/dist/models/get-dashboard-group-response-class.js +15 -0
  29. package/dist/models/get-dashboard-response-class.d.ts +25 -0
  30. package/dist/models/get-dashboard-response-class.js +15 -0
  31. package/dist/models/index.d.ts +17 -0
  32. package/dist/models/index.js +17 -0
  33. package/dist/models/invite-class.d.ts +19 -1
  34. package/dist/models/invite-user-request-dto.d.ts +7 -0
  35. package/dist/models/link-user-with-partner-request-dto-rest.d.ts +30 -0
  36. package/dist/models/link-user-with-partner-request-dto-rest.js +15 -0
  37. package/dist/models/link-user-with-partner-response-class.d.ts +25 -0
  38. package/dist/models/link-user-with-partner-response-class.js +15 -0
  39. package/dist/models/list-dashboard-groups-response-class.d.ts +31 -0
  40. package/dist/models/list-dashboard-groups-response-class.js +15 -0
  41. package/dist/models/list-dashboards-response-class.d.ts +31 -0
  42. package/dist/models/list-dashboards-response-class.js +15 -0
  43. package/dist/models/partner-invitation-data-dto.d.ts +36 -0
  44. package/dist/models/partner-invitation-data-dto.js +15 -0
  45. package/dist/models/update-dashboard-group-request-dto.d.ts +30 -0
  46. package/dist/models/update-dashboard-group-request-dto.js +15 -0
  47. package/dist/models/update-dashboard-group-response-class.d.ts +25 -0
  48. package/dist/models/update-dashboard-group-response-class.js +15 -0
  49. package/dist/models/update-dashboard-request-dto.d.ts +48 -0
  50. package/dist/models/update-dashboard-request-dto.js +15 -0
  51. package/dist/models/update-dashboard-response-class.d.ts +25 -0
  52. package/dist/models/update-dashboard-response-class.js +15 -0
  53. package/dist/models/user-class.d.ts +7 -1
  54. package/models/create-dashboard-group-request-dto.ts +36 -0
  55. package/models/create-dashboard-group-response-class.ts +31 -0
  56. package/models/create-dashboard-request-dto.ts +54 -0
  57. package/models/create-dashboard-response-class.ts +31 -0
  58. package/models/dashboard-class.ts +90 -0
  59. package/models/dashboard-group-class.ts +72 -0
  60. package/models/get-dashboard-group-response-class.ts +31 -0
  61. package/models/get-dashboard-response-class.ts +31 -0
  62. package/models/index.ts +17 -0
  63. package/models/invite-class.ts +19 -1
  64. package/models/invite-user-request-dto.ts +7 -0
  65. package/models/link-user-with-partner-request-dto-rest.ts +36 -0
  66. package/models/link-user-with-partner-response-class.ts +31 -0
  67. package/models/list-dashboard-groups-response-class.ts +37 -0
  68. package/models/list-dashboards-response-class.ts +37 -0
  69. package/models/partner-invitation-data-dto.ts +42 -0
  70. package/models/update-dashboard-group-request-dto.ts +36 -0
  71. package/models/update-dashboard-group-response-class.ts +31 -0
  72. package/models/update-dashboard-request-dto.ts +54 -0
  73. package/models/update-dashboard-response-class.ts +31 -0
  74. package/models/user-class.ts +7 -1
  75. package/package.json +1 -1
@@ -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';
@@ -39,7 +47,11 @@ export * from './invite-user-request-dto';
39
47
  export * from './invite-user-response-class';
40
48
  export * from './invite-users-request-dto';
41
49
  export * from './invite-users-response-class';
50
+ export * from './link-user-with-partner-request-dto-rest';
51
+ export * from './link-user-with-partner-response-class';
42
52
  export * from './list-custom-schemas-response-class';
53
+ export * from './list-dashboard-groups-response-class';
54
+ export * from './list-dashboards-response-class';
43
55
  export * from './list-data-reports-response-class';
44
56
  export * from './list-invites-response-class';
45
57
  export * from './list-org-invitations-response-class';
@@ -49,6 +61,7 @@ export * from './list-users-response-class';
49
61
  export * from './org-invitation-class';
50
62
  export * from './org-invitation-response-class';
51
63
  export * from './organization-class';
64
+ export * from './partner-invitation-data-dto';
52
65
  export * from './permission-class';
53
66
  export * from './re-invite-org-request-dto';
54
67
  export * from './role-class';
@@ -60,6 +73,10 @@ export * from './tenant-admin-user-dto';
60
73
  export * from './tenant-settings-class';
61
74
  export * from './update-custom-schema-request-dto';
62
75
  export * from './update-custom-schema-response-class';
76
+ export * from './update-dashboard-group-request-dto';
77
+ export * from './update-dashboard-group-response-class';
78
+ export * from './update-dashboard-request-dto';
79
+ export * from './update-dashboard-response-class';
63
80
  export * from './update-data-report-request-dto';
64
81
  export * from './update-data-report-response-class';
65
82
  export * from './update-organization-request-dto-rest';
@@ -64,11 +64,29 @@ export interface InviteClass {
64
64
  * @memberof InviteClass
65
65
  */
66
66
  'ern': string;
67
+ /**
68
+ * Indicates if a new partner will be created as part of the invitation flow.
69
+ * @type {boolean}
70
+ * @memberof InviteClass
71
+ */
72
+ 'shouldCreateNewPartner': boolean;
73
+ /**
74
+ * Optional metadata associated with the invite - useful for passing data to the front end for custom logic.
75
+ * @type {object}
76
+ * @memberof InviteClass
77
+ */
78
+ 'metadata'?: object;
79
+ /**
80
+ * Organization ID associated with the invite.
81
+ * @type {number}
82
+ * @memberof InviteClass
83
+ */
84
+ 'organizationId'?: number;
67
85
  /**
68
86
  * Organization associated with the user
69
87
  * @type {OrganizationClass}
70
88
  * @memberof InviteClass
71
89
  */
72
- 'organization': OrganizationClass;
90
+ 'organization'?: OrganizationClass;
73
91
  }
74
92
 
@@ -13,6 +13,7 @@
13
13
  */
14
14
 
15
15
 
16
+ import { PartnerInvitationDataDto } from './partner-invitation-data-dto';
16
17
 
17
18
  /**
18
19
  *
@@ -38,5 +39,11 @@ export interface InviteUserRequestDto {
38
39
  * @memberof InviteUserRequestDto
39
40
  */
40
41
  'roleIds': Array<number>;
42
+ /**
43
+ *
44
+ * @type {PartnerInvitationDataDto}
45
+ * @memberof InviteUserRequestDto
46
+ */
47
+ 'partnerInvitationData'?: PartnerInvitationDataDto;
41
48
  }
42
49
 
@@ -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 LinkUserWithPartnerRequestDtoRest
21
+ */
22
+ export interface LinkUserWithPartnerRequestDtoRest {
23
+ /**
24
+ * Indicates whether a new partner entity should be created or an existing one should be used
25
+ * @type {boolean}
26
+ * @memberof LinkUserWithPartnerRequestDtoRest
27
+ */
28
+ 'shouldCreateNewPartner': boolean;
29
+ /**
30
+ * The code of the partner that will be linked with the user - only if shouldCreateNewPartner is false
31
+ * @type {string}
32
+ * @memberof LinkUserWithPartnerRequestDtoRest
33
+ */
34
+ 'partnerCode'?: string;
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 { UserClass } from './user-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface LinkUserWithPartnerResponseClass
22
+ */
23
+ export interface LinkUserWithPartnerResponseClass {
24
+ /**
25
+ * user
26
+ * @type {UserClass}
27
+ * @memberof LinkUserWithPartnerResponseClass
28
+ */
29
+ 'user': UserClass;
30
+ }
31
+
@@ -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
+
@@ -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,42 @@
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 PartnerInvitationDataDto
21
+ */
22
+ export interface PartnerInvitationDataDto {
23
+ /**
24
+ * Indicates if a new partner should be created if the partner code does not exist
25
+ * @type {boolean}
26
+ * @memberof PartnerInvitationDataDto
27
+ */
28
+ 'shouldCreateNewPartner': boolean;
29
+ /**
30
+ * In case we do not want to create a new partner, we can provide the code of an existing partner
31
+ * @type {string}
32
+ * @memberof PartnerInvitationDataDto
33
+ */
34
+ 'partnerCode'?: string;
35
+ /**
36
+ * Optional metadata to be stored with the invitation
37
+ * @type {object}
38
+ * @memberof PartnerInvitationDataDto
39
+ */
40
+ 'metadata'?: object;
41
+ }
42
+