@emilgroup/tenant-sdk 1.4.0 → 1.5.1
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 +15 -0
- package/README.md +5 -22
- package/api/custom-schema-api.ts +0 -4
- package/api/data-report-api.ts +673 -0
- package/api/data-report-executor-api.ts +161 -0
- package/api/invite-organizations-api.ts +0 -4
- package/api/invite-users-api.ts +0 -4
- package/api/list-organization-invitations-api.ts +0 -4
- package/api/organizations-api.ts +0 -4
- package/api/re-invite-an-organization-api.ts +0 -4
- package/api/roles-api.ts +0 -4
- package/api/settings-api.ts +0 -4
- package/api/users-api.ts +0 -4
- package/api.ts +4 -4
- package/base.ts +59 -93
- package/common.ts +0 -1
- package/configuration.ts +0 -8
- package/dist/api/custom-schema-api.js +4 -8
- package/dist/api/data-report-api.d.ts +380 -0
- package/dist/api/data-report-api.js +632 -0
- package/dist/api/data-report-executor-api.d.ts +93 -0
- package/dist/api/data-report-executor-api.js +220 -0
- package/dist/api/invite-organizations-api.js +1 -5
- package/dist/api/invite-users-api.js +5 -9
- package/dist/api/list-organization-invitations-api.js +1 -5
- package/dist/api/organizations-api.js +3 -7
- package/dist/api/re-invite-an-organization-api.js +1 -5
- package/dist/api/roles-api.js +1 -5
- package/dist/api/settings-api.js +1 -5
- package/dist/api/users-api.js +9 -13
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/base.d.ts +5 -9
- package/dist/base.js +40 -136
- package/dist/common.d.ts +0 -1
- package/dist/common.js +1 -2
- package/dist/configuration.d.ts +0 -7
- 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 +13 -0
- package/dist/models/index.js +13 -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/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 +13 -0
- package/models/list-data-reports-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 +3 -5
|
@@ -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,42 @@
|
|
|
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 DataReportFilterSingleValueDto
|
|
16
|
+
*/
|
|
17
|
+
export interface DataReportFilterSingleValueDto {
|
|
18
|
+
/**
|
|
19
|
+
* Integer value of the filter.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof DataReportFilterSingleValueDto
|
|
22
|
+
*/
|
|
23
|
+
'valueAsInt'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* Float value of the filter.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof DataReportFilterSingleValueDto
|
|
28
|
+
*/
|
|
29
|
+
'valueAsFloat'?: number;
|
|
30
|
+
/**
|
|
31
|
+
* String value of the filter.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof DataReportFilterSingleValueDto
|
|
34
|
+
*/
|
|
35
|
+
'valueAsString'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* String value of the filter.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof DataReportFilterSingleValueDto
|
|
40
|
+
*/
|
|
41
|
+
'valueAsDate'?: string;
|
|
42
|
+
}
|
|
@@ -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,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 { DataReportFilterSingleValueDto } from './data-report-filter-single-value-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DataReportFilterValueDto
|
|
17
|
+
*/
|
|
18
|
+
export interface DataReportFilterValueDto {
|
|
19
|
+
/**
|
|
20
|
+
* Name of the filter
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof DataReportFilterValueDto
|
|
23
|
+
*/
|
|
24
|
+
'name': string;
|
|
25
|
+
/**
|
|
26
|
+
* 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).
|
|
27
|
+
* @type {Array<DataReportFilterSingleValueDto>}
|
|
28
|
+
* @memberof DataReportFilterValueDto
|
|
29
|
+
*/
|
|
30
|
+
'values': Array<DataReportFilterSingleValueDto>;
|
|
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,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 GetDataReportResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetDataReportResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The data-report response.
|
|
21
|
+
* @type {DataReportClass}
|
|
22
|
+
* @memberof GetDataReportResponseClass
|
|
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 });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -4,12 +4,19 @@ 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-data-report-request-dto';
|
|
8
|
+
export * from './create-data-report-response-class';
|
|
7
9
|
export * from './create-permission-request-dto';
|
|
8
10
|
export * from './create-role-request-dto';
|
|
9
11
|
export * from './create-tenant-request-dto';
|
|
10
12
|
export * from './custom-field-dto';
|
|
11
13
|
export * from './custom-schema-class';
|
|
12
14
|
export * from './dbconfig-dto';
|
|
15
|
+
export * from './data-report-class';
|
|
16
|
+
export * from './data-report-filter-class';
|
|
17
|
+
export * from './data-report-filter-dto';
|
|
18
|
+
export * from './data-report-filter-single-value-dto';
|
|
19
|
+
export * from './data-report-filter-value-dto';
|
|
13
20
|
export * from './delete-response-class';
|
|
14
21
|
export * from './disable-user-response-class';
|
|
15
22
|
export * from './disable-users-request-dto';
|
|
@@ -18,6 +25,7 @@ export * from './enable-user-response-class';
|
|
|
18
25
|
export * from './enable-users-request-dto';
|
|
19
26
|
export * from './enable-users-response-class';
|
|
20
27
|
export * from './get-custom-schema-response-class';
|
|
28
|
+
export * from './get-data-report-response-class';
|
|
21
29
|
export * from './get-organization-response-class';
|
|
22
30
|
export * from './get-settings-response-class';
|
|
23
31
|
export * from './get-user-response-class';
|
|
@@ -28,6 +36,7 @@ export * from './invite-user-response-class';
|
|
|
28
36
|
export * from './invite-users-request-dto';
|
|
29
37
|
export * from './invite-users-response-class';
|
|
30
38
|
export * from './list-custom-schemas-response-class';
|
|
39
|
+
export * from './list-data-reports-response-class';
|
|
31
40
|
export * from './list-invites-response-class';
|
|
32
41
|
export * from './list-org-invitations-response-class';
|
|
33
42
|
export * from './list-organizations-response-class';
|
|
@@ -39,12 +48,16 @@ export * from './organization-class';
|
|
|
39
48
|
export * from './permission-class';
|
|
40
49
|
export * from './re-invite-org-request-dto';
|
|
41
50
|
export * from './role-class';
|
|
51
|
+
export * from './run-data-report-request-dto';
|
|
52
|
+
export * from './run-data-report-response-class';
|
|
42
53
|
export * from './set-setting-request-dto';
|
|
43
54
|
export * from './set-user-setting-response-class';
|
|
44
55
|
export * from './subscription-class';
|
|
45
56
|
export * from './tenant-admin-user-dto';
|
|
46
57
|
export * from './update-custom-schema-request-dto';
|
|
47
58
|
export * from './update-custom-schema-response-class';
|
|
59
|
+
export * from './update-data-report-request-dto';
|
|
60
|
+
export * from './update-data-report-response-class';
|
|
48
61
|
export * from './update-organization-request-dto-rest';
|
|
49
62
|
export * from './update-organization-response-class';
|
|
50
63
|
export * from './update-role-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -20,12 +20,19 @@ __exportStar(require("./batch-delete-request-dto"), exports);
|
|
|
20
20
|
__exportStar(require("./batch-delete-response-class"), exports);
|
|
21
21
|
__exportStar(require("./create-custom-schema-request-dto"), exports);
|
|
22
22
|
__exportStar(require("./create-custom-schema-response-class"), exports);
|
|
23
|
+
__exportStar(require("./create-data-report-request-dto"), exports);
|
|
24
|
+
__exportStar(require("./create-data-report-response-class"), exports);
|
|
23
25
|
__exportStar(require("./create-permission-request-dto"), exports);
|
|
24
26
|
__exportStar(require("./create-role-request-dto"), exports);
|
|
25
27
|
__exportStar(require("./create-tenant-request-dto"), exports);
|
|
26
28
|
__exportStar(require("./custom-field-dto"), exports);
|
|
27
29
|
__exportStar(require("./custom-schema-class"), exports);
|
|
28
30
|
__exportStar(require("./dbconfig-dto"), exports);
|
|
31
|
+
__exportStar(require("./data-report-class"), exports);
|
|
32
|
+
__exportStar(require("./data-report-filter-class"), exports);
|
|
33
|
+
__exportStar(require("./data-report-filter-dto"), exports);
|
|
34
|
+
__exportStar(require("./data-report-filter-single-value-dto"), exports);
|
|
35
|
+
__exportStar(require("./data-report-filter-value-dto"), exports);
|
|
29
36
|
__exportStar(require("./delete-response-class"), exports);
|
|
30
37
|
__exportStar(require("./disable-user-response-class"), exports);
|
|
31
38
|
__exportStar(require("./disable-users-request-dto"), exports);
|
|
@@ -34,6 +41,7 @@ __exportStar(require("./enable-user-response-class"), exports);
|
|
|
34
41
|
__exportStar(require("./enable-users-request-dto"), exports);
|
|
35
42
|
__exportStar(require("./enable-users-response-class"), exports);
|
|
36
43
|
__exportStar(require("./get-custom-schema-response-class"), exports);
|
|
44
|
+
__exportStar(require("./get-data-report-response-class"), exports);
|
|
37
45
|
__exportStar(require("./get-organization-response-class"), exports);
|
|
38
46
|
__exportStar(require("./get-settings-response-class"), exports);
|
|
39
47
|
__exportStar(require("./get-user-response-class"), exports);
|
|
@@ -44,6 +52,7 @@ __exportStar(require("./invite-user-response-class"), exports);
|
|
|
44
52
|
__exportStar(require("./invite-users-request-dto"), exports);
|
|
45
53
|
__exportStar(require("./invite-users-response-class"), exports);
|
|
46
54
|
__exportStar(require("./list-custom-schemas-response-class"), exports);
|
|
55
|
+
__exportStar(require("./list-data-reports-response-class"), exports);
|
|
47
56
|
__exportStar(require("./list-invites-response-class"), exports);
|
|
48
57
|
__exportStar(require("./list-org-invitations-response-class"), exports);
|
|
49
58
|
__exportStar(require("./list-organizations-response-class"), exports);
|
|
@@ -55,12 +64,16 @@ __exportStar(require("./organization-class"), exports);
|
|
|
55
64
|
__exportStar(require("./permission-class"), exports);
|
|
56
65
|
__exportStar(require("./re-invite-org-request-dto"), exports);
|
|
57
66
|
__exportStar(require("./role-class"), exports);
|
|
67
|
+
__exportStar(require("./run-data-report-request-dto"), exports);
|
|
68
|
+
__exportStar(require("./run-data-report-response-class"), exports);
|
|
58
69
|
__exportStar(require("./set-setting-request-dto"), exports);
|
|
59
70
|
__exportStar(require("./set-user-setting-response-class"), exports);
|
|
60
71
|
__exportStar(require("./subscription-class"), exports);
|
|
61
72
|
__exportStar(require("./tenant-admin-user-dto"), exports);
|
|
62
73
|
__exportStar(require("./update-custom-schema-request-dto"), exports);
|
|
63
74
|
__exportStar(require("./update-custom-schema-response-class"), exports);
|
|
75
|
+
__exportStar(require("./update-data-report-request-dto"), exports);
|
|
76
|
+
__exportStar(require("./update-data-report-response-class"), exports);
|
|
64
77
|
__exportStar(require("./update-organization-request-dto-rest"), exports);
|
|
65
78
|
__exportStar(require("./update-organization-response-class"), exports);
|
|
66
79
|
__exportStar(require("./update-role-request-dto"), exports);
|
|
@@ -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 { DataReportClass } from './data-report-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListDataReportsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListDataReportsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The list of data-reports.
|
|
21
|
+
* @type {Array<DataReportClass>}
|
|
22
|
+
* @memberof ListDataReportsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<DataReportClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListDataReportsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
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,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
|
+
|