@emilgroup/tenant-sdk 1.3.0 → 1.5.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 +18 -0
- package/README.md +2 -2
- package/api/data-report-api.ts +677 -0
- package/api/data-report-executor-api.ts +165 -0
- package/api/roles-api.ts +236 -0
- package/api/settings-api.ts +168 -0
- package/api.ts +8 -0
- package/dist/api/data-report-api.d.ts +380 -0
- package/dist/api/data-report-api.js +636 -0
- package/dist/api/data-report-executor-api.d.ts +93 -0
- package/dist/api/data-report-executor-api.js +224 -0
- package/dist/api/roles-api.d.ts +141 -0
- package/dist/api/roles-api.js +258 -0
- package/dist/api/settings-api.d.ts +96 -0
- package/dist/api/settings-api.js +229 -0
- package/dist/api.d.ts +4 -0
- package/dist/api.js +4 -0
- package/dist/models/create-data-report-request-dto.d.ts +61 -0
- package/dist/models/create-data-report-request-dto.js +15 -0
- package/dist/models/create-data-report-response-class.d.ts +25 -0
- package/dist/models/create-data-report-response-class.js +15 -0
- package/dist/models/data-report-class.d.ts +79 -0
- package/dist/models/data-report-class.js +15 -0
- package/dist/models/data-report-filter-class.d.ts +72 -0
- package/dist/models/data-report-filter-class.js +15 -0
- package/dist/models/data-report-filter-dto.d.ts +48 -0
- package/dist/models/data-report-filter-dto.js +15 -0
- package/dist/models/data-report-filter-single-value-dto.d.ts +42 -0
- package/dist/models/data-report-filter-single-value-dto.js +15 -0
- package/dist/models/data-report-filter-value-dto.d.ts +31 -0
- package/dist/models/data-report-filter-value-dto.js +15 -0
- package/dist/models/get-data-report-response-class.d.ts +25 -0
- package/dist/models/get-data-report-response-class.js +15 -0
- package/dist/models/index.d.ts +14 -0
- package/dist/models/index.js +14 -0
- package/dist/models/list-data-reports-response-class.d.ts +31 -0
- package/dist/models/list-data-reports-response-class.js +15 -0
- package/dist/models/list-roles-response-class.d.ts +31 -0
- package/dist/models/list-roles-response-class.js +15 -0
- package/dist/models/run-data-report-request-dto.d.ts +31 -0
- package/dist/models/run-data-report-request-dto.js +15 -0
- package/dist/models/run-data-report-response-class.d.ts +24 -0
- package/dist/models/run-data-report-response-class.js +15 -0
- package/dist/models/update-data-report-request-dto.d.ts +61 -0
- package/dist/models/update-data-report-request-dto.js +15 -0
- package/dist/models/update-data-report-response-class.d.ts +25 -0
- package/dist/models/update-data-report-response-class.js +15 -0
- package/models/create-data-report-request-dto.ts +67 -0
- package/models/create-data-report-response-class.ts +31 -0
- package/models/data-report-class.ts +85 -0
- package/models/data-report-filter-class.ts +78 -0
- package/models/data-report-filter-dto.ts +54 -0
- package/models/data-report-filter-single-value-dto.ts +48 -0
- package/models/data-report-filter-value-dto.ts +37 -0
- package/models/get-data-report-response-class.ts +31 -0
- package/models/index.ts +14 -0
- package/models/list-data-reports-response-class.ts +37 -0
- package/models/list-roles-response-class.ts +37 -0
- package/models/run-data-report-request-dto.ts +37 -0
- package/models/run-data-report-response-class.ts +30 -0
- package/models/update-data-report-request-dto.ts +67 -0
- package/models/update-data-report-response-class.ts +31 -0
- package/package.json +1 -1
|
@@ -0,0 +1,31 @@
|
|
|
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 { DataReportFilterValueDto } from './data-report-filter-value-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RunDataReportRequestDto
|
|
17
|
+
*/
|
|
18
|
+
export interface RunDataReportRequestDto {
|
|
19
|
+
/**
|
|
20
|
+
* Slug of the report to run
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof RunDataReportRequestDto
|
|
23
|
+
*/
|
|
24
|
+
'reportSlug': string;
|
|
25
|
+
/**
|
|
26
|
+
* Array with the report filter values.
|
|
27
|
+
* @type {Array<DataReportFilterValueDto>}
|
|
28
|
+
* @memberof RunDataReportRequestDto
|
|
29
|
+
*/
|
|
30
|
+
'filterValues': Array<DataReportFilterValueDto>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,24 @@
|
|
|
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 RunDataReportResponseClass
|
|
16
|
+
*/
|
|
17
|
+
export interface RunDataReportResponseClass {
|
|
18
|
+
/**
|
|
19
|
+
* Report results as an array of objects (each row is an object).
|
|
20
|
+
* @type {Array<any>}
|
|
21
|
+
* @memberof RunDataReportResponseClass
|
|
22
|
+
*/
|
|
23
|
+
'data': Array<any>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,61 @@
|
|
|
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 { DataReportFilterDto } from './data-report-filter-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateDataReportRequestDto
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateDataReportRequestDto {
|
|
19
|
+
/**
|
|
20
|
+
* Unique identifier for the object.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof UpdateDataReportRequestDto
|
|
23
|
+
*/
|
|
24
|
+
'code': string;
|
|
25
|
+
/**
|
|
26
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof UpdateDataReportRequestDto
|
|
29
|
+
*/
|
|
30
|
+
'slug': string;
|
|
31
|
+
/**
|
|
32
|
+
* Optional description of the data report.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof UpdateDataReportRequestDto
|
|
35
|
+
*/
|
|
36
|
+
'description'?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Athena view or query to use in the FROM clause of the report query.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof UpdateDataReportRequestDto
|
|
41
|
+
*/
|
|
42
|
+
'fromClause': string;
|
|
43
|
+
/**
|
|
44
|
+
* Optional list of columns to sort the query results by (to use in the ORDER BY clause of the report query).
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof UpdateDataReportRequestDto
|
|
47
|
+
*/
|
|
48
|
+
'orderByClause'?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Optional number of records to return as the report results.
|
|
51
|
+
* @type {number}
|
|
52
|
+
* @memberof UpdateDataReportRequestDto
|
|
53
|
+
*/
|
|
54
|
+
'limit'?: number;
|
|
55
|
+
/**
|
|
56
|
+
* Array with the report filter values.
|
|
57
|
+
* @type {Array<DataReportFilterDto>}
|
|
58
|
+
* @memberof UpdateDataReportRequestDto
|
|
59
|
+
*/
|
|
60
|
+
'filters': Array<DataReportFilterDto>;
|
|
61
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { DataReportClass } from './data-report-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateDataReportResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateDataReportResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The data-report response.
|
|
21
|
+
* @type {DataReportClass}
|
|
22
|
+
* @memberof UpdateDataReportResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'report': DataReportClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,67 @@
|
|
|
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 { DataReportFilterDto } from './data-report-filter-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateDataReportRequestDto
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateDataReportRequestDto {
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the object.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateDataReportRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateDataReportRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'slug': string;
|
|
36
|
+
/**
|
|
37
|
+
* Optional description of the data report.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateDataReportRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'description'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Athena view or query to use in the FROM clause of the report query.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateDataReportRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'fromClause': string;
|
|
48
|
+
/**
|
|
49
|
+
* Optional list of columns to sort the query results by (to use in the ORDER BY clause of the report query).
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateDataReportRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'orderByClause'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Optional number of records to return as the report results.
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof CreateDataReportRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'limit'?: number;
|
|
60
|
+
/**
|
|
61
|
+
* Array with the report filter values.
|
|
62
|
+
* @type {Array<DataReportFilterDto>}
|
|
63
|
+
* @memberof CreateDataReportRequestDto
|
|
64
|
+
*/
|
|
65
|
+
'filters': Array<DataReportFilterDto>;
|
|
66
|
+
}
|
|
67
|
+
|
|
@@ -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 { DataReportClass } from './data-report-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateDataReportResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateDataReportResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The data-report response.
|
|
26
|
+
* @type {DataReportClass}
|
|
27
|
+
* @memberof CreateDataReportResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'report': DataReportClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,85 @@
|
|
|
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 { DataReportFilterClass } from './data-report-filter-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface DataReportClass
|
|
22
|
+
*/
|
|
23
|
+
export interface DataReportClass {
|
|
24
|
+
/**
|
|
25
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof DataReportClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier for the object.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof DataReportClass
|
|
34
|
+
*/
|
|
35
|
+
'code': string;
|
|
36
|
+
/**
|
|
37
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof DataReportClass
|
|
40
|
+
*/
|
|
41
|
+
'slug': string;
|
|
42
|
+
/**
|
|
43
|
+
* Optional description of the data report.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof DataReportClass
|
|
46
|
+
*/
|
|
47
|
+
'description': string;
|
|
48
|
+
/**
|
|
49
|
+
* Athena view or query to use in the FROM clause of the report query.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof DataReportClass
|
|
52
|
+
*/
|
|
53
|
+
'fromClause': string;
|
|
54
|
+
/**
|
|
55
|
+
* Optional list of columns to sort the query results by (to use in the ORDER BY clause of the report query).
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof DataReportClass
|
|
58
|
+
*/
|
|
59
|
+
'orderByClause': string;
|
|
60
|
+
/**
|
|
61
|
+
* Optional number of records to return as the report results.
|
|
62
|
+
* @type {number}
|
|
63
|
+
* @memberof DataReportClass
|
|
64
|
+
*/
|
|
65
|
+
'limit': number;
|
|
66
|
+
/**
|
|
67
|
+
* List of the report filters.
|
|
68
|
+
* @type {Array<DataReportFilterClass>}
|
|
69
|
+
* @memberof DataReportClass
|
|
70
|
+
*/
|
|
71
|
+
'filters': Array<DataReportFilterClass>;
|
|
72
|
+
/**
|
|
73
|
+
* Time at which the object was created.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof DataReportClass
|
|
76
|
+
*/
|
|
77
|
+
'createdAt': string;
|
|
78
|
+
/**
|
|
79
|
+
* Time at which the object was updated.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof DataReportClass
|
|
82
|
+
*/
|
|
83
|
+
'updatedAt': string;
|
|
84
|
+
}
|
|
85
|
+
|
|
@@ -0,0 +1,78 @@
|
|
|
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 DataReportFilterClass
|
|
21
|
+
*/
|
|
22
|
+
export interface DataReportFilterClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof DataReportFilterClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Internal unique identifier for the report this filter belongs to.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof DataReportFilterClass
|
|
33
|
+
*/
|
|
34
|
+
'dataReportId': number;
|
|
35
|
+
/**
|
|
36
|
+
* Name of the filter (name of the Athena view column).
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof DataReportFilterClass
|
|
39
|
+
*/
|
|
40
|
+
'name': string;
|
|
41
|
+
/**
|
|
42
|
+
* Optional description of the data report filter.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof DataReportFilterClass
|
|
45
|
+
*/
|
|
46
|
+
'description': string;
|
|
47
|
+
/**
|
|
48
|
+
* Type of the filter column (int, float, datetime or string).
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof DataReportFilterClass
|
|
51
|
+
*/
|
|
52
|
+
'type': string;
|
|
53
|
+
/**
|
|
54
|
+
* Condition the filter uses (=, in or between).
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof DataReportFilterClass
|
|
57
|
+
*/
|
|
58
|
+
'condition': string;
|
|
59
|
+
/**
|
|
60
|
+
* Set to true if the filter is mandatory when executing the report.
|
|
61
|
+
* @type {boolean}
|
|
62
|
+
* @memberof DataReportFilterClass
|
|
63
|
+
*/
|
|
64
|
+
'isMandatory': boolean;
|
|
65
|
+
/**
|
|
66
|
+
* Time at which the object was created.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof DataReportFilterClass
|
|
69
|
+
*/
|
|
70
|
+
'createdAt': string;
|
|
71
|
+
/**
|
|
72
|
+
* Time at which the object was updated.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof DataReportFilterClass
|
|
75
|
+
*/
|
|
76
|
+
'updatedAt': string;
|
|
77
|
+
}
|
|
78
|
+
|
|
@@ -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 DataReportFilterDto
|
|
21
|
+
*/
|
|
22
|
+
export interface DataReportFilterDto {
|
|
23
|
+
/**
|
|
24
|
+
* Name of the filter (name of the Athena view column).
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof DataReportFilterDto
|
|
27
|
+
*/
|
|
28
|
+
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* Optional description of the data report filter.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof DataReportFilterDto
|
|
33
|
+
*/
|
|
34
|
+
'description'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Type of the filter column (int, float, datetime or string).
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof DataReportFilterDto
|
|
39
|
+
*/
|
|
40
|
+
'type': string;
|
|
41
|
+
/**
|
|
42
|
+
* Condition the filter uses (=, in or between).
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof DataReportFilterDto
|
|
45
|
+
*/
|
|
46
|
+
'condition': string;
|
|
47
|
+
/**
|
|
48
|
+
* Set to true if the filter is mandatory when executing the report.
|
|
49
|
+
* @type {boolean}
|
|
50
|
+
* @memberof DataReportFilterDto
|
|
51
|
+
*/
|
|
52
|
+
'isMandatory'?: boolean;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
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 DataReportFilterSingleValueDto
|
|
21
|
+
*/
|
|
22
|
+
export interface DataReportFilterSingleValueDto {
|
|
23
|
+
/**
|
|
24
|
+
* Integer value of the filter.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof DataReportFilterSingleValueDto
|
|
27
|
+
*/
|
|
28
|
+
'valueAsInt'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* Float value of the filter.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof DataReportFilterSingleValueDto
|
|
33
|
+
*/
|
|
34
|
+
'valueAsFloat'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* String value of the filter.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof DataReportFilterSingleValueDto
|
|
39
|
+
*/
|
|
40
|
+
'valueAsString'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* String value of the filter.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof DataReportFilterSingleValueDto
|
|
45
|
+
*/
|
|
46
|
+
'valueAsDate'?: string;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -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 { DataReportFilterSingleValueDto } from './data-report-filter-single-value-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface DataReportFilterValueDto
|
|
22
|
+
*/
|
|
23
|
+
export interface DataReportFilterValueDto {
|
|
24
|
+
/**
|
|
25
|
+
* Name of the filter
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DataReportFilterValueDto
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* Array with the values to use in the report filter condition (a single value array for the \"equality\" filters, a two value array for the \"between\" filter, an array with one or more values for the \"multiselect\" filters).
|
|
32
|
+
* @type {Array<DataReportFilterSingleValueDto>}
|
|
33
|
+
* @memberof DataReportFilterValueDto
|
|
34
|
+
*/
|
|
35
|
+
'values': Array<DataReportFilterSingleValueDto>;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -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 { DataReportClass } from './data-report-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetDataReportResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetDataReportResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The data-report response.
|
|
26
|
+
* @type {DataReportClass}
|
|
27
|
+
* @memberof GetDataReportResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'report': DataReportClass;
|
|
30
|
+
}
|
|
31
|
+
|