@emilgroup/tenant-sdk 1.31.1-beta.3 → 1.32.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 +0 -3
- package/README.md +2 -2
- package/api/dashboard-api.ts +46 -296
- package/base.ts +6 -1
- package/dist/api/dashboard-api.d.ts +42 -195
- package/dist/api/dashboard-api.js +44 -269
- package/dist/base.js +5 -1
- package/dist/models/create-organization-migration-request-dto.d.ts +0 -6
- package/dist/models/index.d.ts +0 -3
- package/dist/models/index.js +0 -3
- package/models/create-organization-migration-request-dto.ts +0 -6
- package/models/index.ts +0 -3
- package/package.json +1 -1
- package/dist/models/create-dashboard-v2-request-dto.d.ts +0 -36
- package/dist/models/create-dashboard-v2-request-dto.js +0 -15
- package/dist/models/create-dashboard-v2-response-class.d.ts +0 -25
- package/dist/models/create-dashboard-v2-response-class.js +0 -15
- package/dist/models/duplicate-dashboard-response-class.d.ts +0 -25
- package/dist/models/duplicate-dashboard-response-class.js +0 -15
- package/models/create-dashboard-v2-request-dto.ts +0 -42
- package/models/create-dashboard-v2-response-class.ts +0 -31
- package/models/duplicate-dashboard-response-class.ts +0 -31
|
@@ -44,11 +44,5 @@ export interface CreateOrganizationMigrationRequestDto {
|
|
|
44
44
|
* @memberof CreateOrganizationMigrationRequestDto
|
|
45
45
|
*/
|
|
46
46
|
'onlySubtenants'?: boolean;
|
|
47
|
-
/**
|
|
48
|
-
*
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof CreateOrganizationMigrationRequestDto
|
|
51
|
-
*/
|
|
52
|
-
'startTime'?: string;
|
|
53
47
|
}
|
|
54
48
|
|
package/models/index.ts
CHANGED
|
@@ -8,8 +8,6 @@ export * from './create-dashboard-group-request-dto';
|
|
|
8
8
|
export * from './create-dashboard-group-response-class';
|
|
9
9
|
export * from './create-dashboard-request-dto';
|
|
10
10
|
export * from './create-dashboard-response-class';
|
|
11
|
-
export * from './create-dashboard-v2-request-dto';
|
|
12
|
-
export * from './create-dashboard-v2-response-class';
|
|
13
11
|
export * from './create-data-report-request-dto';
|
|
14
12
|
export * from './create-data-report-response-class';
|
|
15
13
|
export * from './create-organization-migration-request-dto';
|
|
@@ -29,7 +27,6 @@ export * from './data-report-filter-value-dto';
|
|
|
29
27
|
export * from './delete-response-class';
|
|
30
28
|
export * from './disable-users-request-dto';
|
|
31
29
|
export * from './disable-users-response-class';
|
|
32
|
-
export * from './duplicate-dashboard-response-class';
|
|
33
30
|
export * from './enable-users-request-dto';
|
|
34
31
|
export * from './enable-users-response-class';
|
|
35
32
|
export * from './format-tenant-settings-class';
|
package/package.json
CHANGED
|
@@ -1,36 +0,0 @@
|
|
|
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 CreateDashboardV2RequestDto
|
|
16
|
-
*/
|
|
17
|
-
export interface CreateDashboardV2RequestDto {
|
|
18
|
-
/**
|
|
19
|
-
* Dashboard name
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CreateDashboardV2RequestDto
|
|
22
|
-
*/
|
|
23
|
-
'dashboardName': string;
|
|
24
|
-
/**
|
|
25
|
-
* Dashboard description
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CreateDashboardV2RequestDto
|
|
28
|
-
*/
|
|
29
|
-
'description': string;
|
|
30
|
-
/**
|
|
31
|
-
* Dashboard group id
|
|
32
|
-
* @type {number}
|
|
33
|
-
* @memberof CreateDashboardV2RequestDto
|
|
34
|
-
*/
|
|
35
|
-
'dashboardGroupId'?: number;
|
|
36
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,25 +0,0 @@
|
|
|
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 CreateDashboardV2ResponseClass
|
|
17
|
-
*/
|
|
18
|
-
export interface CreateDashboardV2ResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* Dashboard
|
|
21
|
-
* @type {DashboardClass}
|
|
22
|
-
* @memberof CreateDashboardV2ResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'dashboard': DashboardClass;
|
|
25
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,25 +0,0 @@
|
|
|
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 DuplicateDashboardResponseClass
|
|
17
|
-
*/
|
|
18
|
-
export interface DuplicateDashboardResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* Duplicated dashboard
|
|
21
|
-
* @type {DashboardClass}
|
|
22
|
-
* @memberof DuplicateDashboardResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'dashboard': DashboardClass;
|
|
25
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,42 +0,0 @@
|
|
|
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 CreateDashboardV2RequestDto
|
|
21
|
-
*/
|
|
22
|
-
export interface CreateDashboardV2RequestDto {
|
|
23
|
-
/**
|
|
24
|
-
* Dashboard name
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof CreateDashboardV2RequestDto
|
|
27
|
-
*/
|
|
28
|
-
'dashboardName': string;
|
|
29
|
-
/**
|
|
30
|
-
* Dashboard description
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof CreateDashboardV2RequestDto
|
|
33
|
-
*/
|
|
34
|
-
'description': string;
|
|
35
|
-
/**
|
|
36
|
-
* Dashboard group id
|
|
37
|
-
* @type {number}
|
|
38
|
-
* @memberof CreateDashboardV2RequestDto
|
|
39
|
-
*/
|
|
40
|
-
'dashboardGroupId'?: number;
|
|
41
|
-
}
|
|
42
|
-
|
|
@@ -1,31 +0,0 @@
|
|
|
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 CreateDashboardV2ResponseClass
|
|
22
|
-
*/
|
|
23
|
-
export interface CreateDashboardV2ResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* Dashboard
|
|
26
|
-
* @type {DashboardClass}
|
|
27
|
-
* @memberof CreateDashboardV2ResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'dashboard': DashboardClass;
|
|
30
|
-
}
|
|
31
|
-
|
|
@@ -1,31 +0,0 @@
|
|
|
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 DuplicateDashboardResponseClass
|
|
22
|
-
*/
|
|
23
|
-
export interface DuplicateDashboardResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* Duplicated dashboard
|
|
26
|
-
* @type {DashboardClass}
|
|
27
|
-
* @memberof DuplicateDashboardResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'dashboard': DashboardClass;
|
|
30
|
-
}
|
|
31
|
-
|