@emilgroup/tenant-sdk-node 1.28.0 → 1.28.1-beta.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 (68) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/README.md +2 -2
  3. package/api/custom-schema-api.ts +16 -16
  4. package/api/dashboard-api.ts +226 -24
  5. package/api/dashboard-group-api.ts +20 -20
  6. package/api/data-report-api.ts +16 -16
  7. package/api/data-report-executor-api.ts +4 -4
  8. package/api/delete-organization-invitations-api.ts +4 -4
  9. package/api/invite-organizations-api.ts +4 -4
  10. package/api/invite-users-api.ts +16 -16
  11. package/api/list-organization-invitations-api.ts +4 -4
  12. package/api/organizations-api.ts +12 -12
  13. package/api/re-invite-an-organization-api.ts +4 -4
  14. package/api/roles-api.ts +4 -4
  15. package/api/settings-api.ts +4 -4
  16. package/api/users-api.ts +28 -28
  17. package/base.ts +1 -1
  18. package/common.ts +2 -2
  19. package/configuration.ts +9 -0
  20. package/dist/api/custom-schema-api.d.ts +16 -16
  21. package/dist/api/custom-schema-api.js +16 -16
  22. package/dist/api/dashboard-api.d.ts +128 -24
  23. package/dist/api/dashboard-api.js +202 -24
  24. package/dist/api/dashboard-group-api.d.ts +20 -20
  25. package/dist/api/dashboard-group-api.js +20 -20
  26. package/dist/api/data-report-api.d.ts +16 -16
  27. package/dist/api/data-report-api.js +16 -16
  28. package/dist/api/data-report-executor-api.d.ts +4 -4
  29. package/dist/api/data-report-executor-api.js +4 -4
  30. package/dist/api/delete-organization-invitations-api.d.ts +4 -4
  31. package/dist/api/delete-organization-invitations-api.js +4 -4
  32. package/dist/api/invite-organizations-api.d.ts +4 -4
  33. package/dist/api/invite-organizations-api.js +4 -4
  34. package/dist/api/invite-users-api.d.ts +16 -16
  35. package/dist/api/invite-users-api.js +16 -16
  36. package/dist/api/list-organization-invitations-api.d.ts +4 -4
  37. package/dist/api/list-organization-invitations-api.js +4 -4
  38. package/dist/api/organizations-api.d.ts +12 -12
  39. package/dist/api/organizations-api.js +12 -12
  40. package/dist/api/re-invite-an-organization-api.d.ts +4 -4
  41. package/dist/api/re-invite-an-organization-api.js +4 -4
  42. package/dist/api/roles-api.d.ts +4 -4
  43. package/dist/api/roles-api.js +4 -4
  44. package/dist/api/settings-api.d.ts +4 -4
  45. package/dist/api/settings-api.js +4 -4
  46. package/dist/api/users-api.d.ts +28 -28
  47. package/dist/api/users-api.js +28 -28
  48. package/dist/base.js +1 -1
  49. package/dist/common.js +2 -2
  50. package/dist/configuration.d.ts +6 -0
  51. package/dist/configuration.js +8 -0
  52. package/dist/models/create-tenant-db-config-request-dto.d.ts +30 -0
  53. package/dist/models/create-tenant-db-config-request-dto.js +15 -0
  54. package/dist/models/index.d.ts +3 -0
  55. package/dist/models/index.js +3 -0
  56. package/dist/models/invite-class.d.ts +12 -12
  57. package/dist/models/publish-dashboard-request-dto.d.ts +34 -0
  58. package/dist/models/publish-dashboard-request-dto.js +19 -0
  59. package/dist/models/revert-analysis-request-dto.d.ts +34 -0
  60. package/dist/models/revert-analysis-request-dto.js +19 -0
  61. package/dist/models/user-class.d.ts +8 -8
  62. package/models/create-tenant-db-config-request-dto.ts +36 -0
  63. package/models/index.ts +3 -0
  64. package/models/invite-class.ts +12 -12
  65. package/models/publish-dashboard-request-dto.ts +43 -0
  66. package/models/revert-analysis-request-dto.ts +43 -0
  67. package/models/user-class.ts +8 -8
  68. package/package.json +1 -1
@@ -58,6 +58,18 @@ export interface InviteClass {
58
58
  * @memberof InviteClass
59
59
  */
60
60
  'updatedAt': string;
61
+ /**
62
+ * Identifier of the user who created the record.
63
+ * @type {string}
64
+ * @memberof InviteClass
65
+ */
66
+ 'createdBy': string;
67
+ /**
68
+ * Identifier of the user who last updated the record.
69
+ * @type {string}
70
+ * @memberof InviteClass
71
+ */
72
+ 'updatedBy': string;
61
73
  /**
62
74
  * Emil Resources Names (ERN) identifies the most specific owner of a resource.
63
75
  * @type {string}
@@ -82,18 +94,6 @@ export interface InviteClass {
82
94
  * @memberof InviteClass
83
95
  */
84
96
  'organizationId'?: number;
85
- /**
86
- * Identifier of the user who created the record.
87
- * @type {string}
88
- * @memberof InviteClass
89
- */
90
- 'createdBy': string;
91
- /**
92
- * Identifier of the user who last updated the record.
93
- * @type {string}
94
- * @memberof InviteClass
95
- */
96
- 'updatedBy': string;
97
97
  /**
98
98
  * Organization associated with the user
99
99
  * @type {OrganizationClass}
@@ -0,0 +1,43 @@
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 PublishDashboardRequestDto
21
+ */
22
+ export interface PublishDashboardRequestDto {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof PublishDashboardRequestDto
27
+ */
28
+ 'providerDashboardId': string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PublishDashboardRequestDto
33
+ */
34
+ 'providerName'?: PublishDashboardRequestDtoProviderNameEnum;
35
+ }
36
+
37
+ export const PublishDashboardRequestDtoProviderNameEnum = {
38
+ QuickSight: 'quick-sight'
39
+ } as const;
40
+
41
+ export type PublishDashboardRequestDtoProviderNameEnum = typeof PublishDashboardRequestDtoProviderNameEnum[keyof typeof PublishDashboardRequestDtoProviderNameEnum];
42
+
43
+
@@ -0,0 +1,43 @@
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 RevertAnalysisRequestDto
21
+ */
22
+ export interface RevertAnalysisRequestDto {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof RevertAnalysisRequestDto
27
+ */
28
+ 'providerAnalysisId': string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof RevertAnalysisRequestDto
33
+ */
34
+ 'providerName'?: RevertAnalysisRequestDtoProviderNameEnum;
35
+ }
36
+
37
+ export const RevertAnalysisRequestDtoProviderNameEnum = {
38
+ QuickSight: 'quick-sight'
39
+ } as const;
40
+
41
+ export type RevertAnalysisRequestDtoProviderNameEnum = typeof RevertAnalysisRequestDtoProviderNameEnum[keyof typeof RevertAnalysisRequestDtoProviderNameEnum];
42
+
43
+
@@ -96,29 +96,29 @@ export interface UserClass {
96
96
  */
97
97
  'updatedAt': string;
98
98
  /**
99
- * Emil Resources Names (ERN) identifies the most specific owner of a resource.
99
+ * Identifier of the user who created the record.
100
100
  * @type {string}
101
101
  * @memberof UserClass
102
102
  */
103
- 'ern': string;
103
+ 'createdBy': string;
104
104
  /**
105
- * Associated partner code - only available if the partner has been invited and registered in EIS platform
105
+ * Identifier of the user who last updated the record.
106
106
  * @type {string}
107
107
  * @memberof UserClass
108
108
  */
109
- 'partnerCode'?: string;
109
+ 'updatedBy': string;
110
110
  /**
111
- * Identifier of the user who created the record.
111
+ * Emil Resources Names (ERN) identifies the most specific owner of a resource.
112
112
  * @type {string}
113
113
  * @memberof UserClass
114
114
  */
115
- 'createdBy': string;
115
+ 'ern': string;
116
116
  /**
117
- * Identifier of the user who last updated the record.
117
+ * Associated partner code - only available if the partner has been invited and registered in EIS platform
118
118
  * @type {string}
119
119
  * @memberof UserClass
120
120
  */
121
- 'updatedBy': string;
121
+ 'partnerCode'?: string;
122
122
  /**
123
123
  * Organization associated with the user
124
124
  * @type {OrganizationClass}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/tenant-sdk-node",
3
- "version": "1.28.0",
3
+ "version": "1.28.1-beta.0",
4
4
  "description": "OpenAPI client for @emilgroup/tenant-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [