@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.
- package/.openapi-generator/FILES +3 -0
- package/README.md +2 -2
- package/api/custom-schema-api.ts +16 -16
- package/api/dashboard-api.ts +226 -24
- package/api/dashboard-group-api.ts +20 -20
- package/api/data-report-api.ts +16 -16
- package/api/data-report-executor-api.ts +4 -4
- package/api/delete-organization-invitations-api.ts +4 -4
- package/api/invite-organizations-api.ts +4 -4
- package/api/invite-users-api.ts +16 -16
- package/api/list-organization-invitations-api.ts +4 -4
- package/api/organizations-api.ts +12 -12
- package/api/re-invite-an-organization-api.ts +4 -4
- package/api/roles-api.ts +4 -4
- package/api/settings-api.ts +4 -4
- package/api/users-api.ts +28 -28
- package/base.ts +1 -1
- package/common.ts +2 -2
- package/configuration.ts +9 -0
- package/dist/api/custom-schema-api.d.ts +16 -16
- package/dist/api/custom-schema-api.js +16 -16
- package/dist/api/dashboard-api.d.ts +128 -24
- package/dist/api/dashboard-api.js +202 -24
- package/dist/api/dashboard-group-api.d.ts +20 -20
- package/dist/api/dashboard-group-api.js +20 -20
- package/dist/api/data-report-api.d.ts +16 -16
- package/dist/api/data-report-api.js +16 -16
- package/dist/api/data-report-executor-api.d.ts +4 -4
- package/dist/api/data-report-executor-api.js +4 -4
- package/dist/api/delete-organization-invitations-api.d.ts +4 -4
- package/dist/api/delete-organization-invitations-api.js +4 -4
- package/dist/api/invite-organizations-api.d.ts +4 -4
- package/dist/api/invite-organizations-api.js +4 -4
- package/dist/api/invite-users-api.d.ts +16 -16
- package/dist/api/invite-users-api.js +16 -16
- package/dist/api/list-organization-invitations-api.d.ts +4 -4
- package/dist/api/list-organization-invitations-api.js +4 -4
- package/dist/api/organizations-api.d.ts +12 -12
- package/dist/api/organizations-api.js +12 -12
- package/dist/api/re-invite-an-organization-api.d.ts +4 -4
- package/dist/api/re-invite-an-organization-api.js +4 -4
- package/dist/api/roles-api.d.ts +4 -4
- package/dist/api/roles-api.js +4 -4
- package/dist/api/settings-api.d.ts +4 -4
- package/dist/api/settings-api.js +4 -4
- package/dist/api/users-api.d.ts +28 -28
- package/dist/api/users-api.js +28 -28
- package/dist/base.js +1 -1
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +6 -0
- package/dist/configuration.js +8 -0
- package/dist/models/create-tenant-db-config-request-dto.d.ts +30 -0
- package/dist/models/create-tenant-db-config-request-dto.js +15 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/invite-class.d.ts +12 -12
- package/dist/models/publish-dashboard-request-dto.d.ts +34 -0
- package/dist/models/publish-dashboard-request-dto.js +19 -0
- package/dist/models/revert-analysis-request-dto.d.ts +34 -0
- package/dist/models/revert-analysis-request-dto.js +19 -0
- package/dist/models/user-class.d.ts +8 -8
- package/models/create-tenant-db-config-request-dto.ts +36 -0
- package/models/index.ts +3 -0
- package/models/invite-class.ts +12 -12
- package/models/publish-dashboard-request-dto.ts +43 -0
- package/models/revert-analysis-request-dto.ts +43 -0
- package/models/user-class.ts +8 -8
- package/package.json +1 -1
package/models/invite-class.ts
CHANGED
|
@@ -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
|
+
|
package/models/user-class.ts
CHANGED
|
@@ -96,29 +96,29 @@ export interface UserClass {
|
|
|
96
96
|
*/
|
|
97
97
|
'updatedAt': string;
|
|
98
98
|
/**
|
|
99
|
-
*
|
|
99
|
+
* Identifier of the user who created the record.
|
|
100
100
|
* @type {string}
|
|
101
101
|
* @memberof UserClass
|
|
102
102
|
*/
|
|
103
|
-
'
|
|
103
|
+
'createdBy': string;
|
|
104
104
|
/**
|
|
105
|
-
*
|
|
105
|
+
* Identifier of the user who last updated the record.
|
|
106
106
|
* @type {string}
|
|
107
107
|
* @memberof UserClass
|
|
108
108
|
*/
|
|
109
|
-
'
|
|
109
|
+
'updatedBy': string;
|
|
110
110
|
/**
|
|
111
|
-
*
|
|
111
|
+
* Emil Resources Names (ERN) identifies the most specific owner of a resource.
|
|
112
112
|
* @type {string}
|
|
113
113
|
* @memberof UserClass
|
|
114
114
|
*/
|
|
115
|
-
'
|
|
115
|
+
'ern': string;
|
|
116
116
|
/**
|
|
117
|
-
*
|
|
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
|
-
'
|
|
121
|
+
'partnerCode'?: string;
|
|
122
122
|
/**
|
|
123
123
|
* Organization associated with the user
|
|
124
124
|
* @type {OrganizationClass}
|