@emilgroup/tenant-sdk 1.1.0 → 1.2.2
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 +2 -15
- package/README.md +2 -2
- package/api/organizations-api.ts +18 -14
- package/api.ts +0 -4
- package/base.ts +1 -1
- package/dist/api/organizations-api.d.ts +11 -9
- package/dist/api/organizations-api.js +12 -12
- package/dist/api.d.ts +0 -2
- package/dist/api.js +0 -2
- package/dist/base.js +1 -1
- package/dist/models/index.d.ts +2 -13
- package/dist/models/index.js +2 -13
- package/dist/models/invite-org-request-dto.d.ts +8 -2
- package/dist/models/org-invitation-class.d.ts +8 -2
- package/dist/models/organization-class.d.ts +22 -4
- package/dist/models/update-organization-request-dto-rest.d.ts +66 -0
- package/dist/models/{get-data-report-response-class.d.ts → update-organization-response-class.d.ts} +7 -7
- package/models/index.ts +2 -13
- package/models/invite-org-request-dto.ts +8 -2
- package/models/org-invitation-class.ts +8 -2
- package/models/organization-class.ts +22 -4
- package/models/update-organization-request-dto-rest.ts +72 -0
- package/models/{create-data-report-response-class.ts → update-organization-response-class.ts} +7 -7
- package/package.json +1 -1
- package/api/data-report-api.ts +0 -677
- package/api/data-report-executor-api.ts +0 -165
- package/dist/api/data-report-api.d.ts +0 -380
- package/dist/api/data-report-api.js +0 -636
- package/dist/api/data-report-executor-api.d.ts +0 -93
- package/dist/api/data-report-executor-api.js +0 -224
- package/dist/models/create-data-report-request-dto.d.ts +0 -61
- package/dist/models/create-data-report-response-class.d.ts +0 -25
- package/dist/models/data-report-class.d.ts +0 -79
- package/dist/models/data-report-class.js +0 -15
- package/dist/models/data-report-filter-class.d.ts +0 -72
- package/dist/models/data-report-filter-class.js +0 -15
- package/dist/models/data-report-filter-dto.d.ts +0 -48
- package/dist/models/data-report-filter-dto.js +0 -15
- package/dist/models/data-report-filter-single-value-dto.d.ts +0 -42
- package/dist/models/data-report-filter-single-value-dto.js +0 -15
- package/dist/models/data-report-filter-value-dto.d.ts +0 -31
- package/dist/models/data-report-filter-value-dto.js +0 -15
- package/dist/models/get-data-report-response-class.js +0 -15
- package/dist/models/list-data-reports-response-class.d.ts +0 -31
- package/dist/models/list-data-reports-response-class.js +0 -15
- package/dist/models/run-data-report-request-dto.d.ts +0 -31
- package/dist/models/run-data-report-request-dto.js +0 -15
- package/dist/models/run-data-report-response-class.d.ts +0 -24
- package/dist/models/run-data-report-response-class.js +0 -15
- package/dist/models/update-data-report-request-dto.d.ts +0 -61
- package/dist/models/update-data-report-request-dto.js +0 -15
- package/dist/models/update-data-report-response-class.d.ts +0 -25
- package/dist/models/update-data-report-response-class.js +0 -15
- package/models/create-data-report-request-dto.ts +0 -67
- package/models/data-report-class.ts +0 -85
- package/models/data-report-filter-class.ts +0 -78
- package/models/data-report-filter-dto.ts +0 -54
- package/models/data-report-filter-single-value-dto.ts +0 -48
- package/models/data-report-filter-value-dto.ts +0 -37
- package/models/get-data-report-response-class.ts +0 -31
- package/models/list-data-reports-response-class.ts +0 -37
- package/models/run-data-report-request-dto.ts +0 -37
- package/models/run-data-report-response-class.ts +0 -30
- package/models/update-data-report-request-dto.ts +0 -67
- package/models/update-data-report-response-class.ts +0 -31
- /package/dist/models/{create-data-report-request-dto.js → update-organization-request-dto-rest.js} +0 -0
- /package/dist/models/{create-data-report-response-class.js → update-organization-response-class.js} +0 -0
|
@@ -1,48 +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 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
|
-
|
|
@@ -1,37 +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 { 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
|
-
|
|
@@ -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 { 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
|
-
|
|
@@ -1,37 +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 { DataReportClass } from './data-report-class';
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @export
|
|
21
|
-
* @interface ListDataReportsResponseClass
|
|
22
|
-
*/
|
|
23
|
-
export interface ListDataReportsResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* The list of data-reports.
|
|
26
|
-
* @type {Array<DataReportClass>}
|
|
27
|
-
* @memberof ListDataReportsResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'items': Array<DataReportClass>;
|
|
30
|
-
/**
|
|
31
|
-
* Next page token.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof ListDataReportsResponseClass
|
|
34
|
-
*/
|
|
35
|
-
'nextPageToken': string;
|
|
36
|
-
}
|
|
37
|
-
|
|
@@ -1,37 +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 { DataReportFilterValueDto } from './data-report-filter-value-dto';
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @export
|
|
21
|
-
* @interface RunDataReportRequestDto
|
|
22
|
-
*/
|
|
23
|
-
export interface RunDataReportRequestDto {
|
|
24
|
-
/**
|
|
25
|
-
* Slug of the report to run
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof RunDataReportRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'reportSlug': string;
|
|
30
|
-
/**
|
|
31
|
-
* Array with the report filter values.
|
|
32
|
-
* @type {Array<DataReportFilterValueDto>}
|
|
33
|
-
* @memberof RunDataReportRequestDto
|
|
34
|
-
*/
|
|
35
|
-
'filterValues': Array<DataReportFilterValueDto>;
|
|
36
|
-
}
|
|
37
|
-
|
|
@@ -1,30 +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 RunDataReportResponseClass
|
|
21
|
-
*/
|
|
22
|
-
export interface RunDataReportResponseClass {
|
|
23
|
-
/**
|
|
24
|
-
* Report results as an array of objects (each row is an object).
|
|
25
|
-
* @type {Array<any>}
|
|
26
|
-
* @memberof RunDataReportResponseClass
|
|
27
|
-
*/
|
|
28
|
-
'data': Array<any>;
|
|
29
|
-
}
|
|
30
|
-
|
|
@@ -1,67 +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 { DataReportFilterDto } from './data-report-filter-dto';
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @export
|
|
21
|
-
* @interface UpdateDataReportRequestDto
|
|
22
|
-
*/
|
|
23
|
-
export interface UpdateDataReportRequestDto {
|
|
24
|
-
/**
|
|
25
|
-
* Unique identifier for the object.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof UpdateDataReportRequestDto
|
|
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 UpdateDataReportRequestDto
|
|
34
|
-
*/
|
|
35
|
-
'slug': string;
|
|
36
|
-
/**
|
|
37
|
-
* Optional description of the data report.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof UpdateDataReportRequestDto
|
|
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 UpdateDataReportRequestDto
|
|
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 UpdateDataReportRequestDto
|
|
52
|
-
*/
|
|
53
|
-
'orderByClause'?: string;
|
|
54
|
-
/**
|
|
55
|
-
* Optional number of records to return as the report results.
|
|
56
|
-
* @type {number}
|
|
57
|
-
* @memberof UpdateDataReportRequestDto
|
|
58
|
-
*/
|
|
59
|
-
'limit'?: number;
|
|
60
|
-
/**
|
|
61
|
-
* Array with the report filter values.
|
|
62
|
-
* @type {Array<DataReportFilterDto>}
|
|
63
|
-
* @memberof UpdateDataReportRequestDto
|
|
64
|
-
*/
|
|
65
|
-
'filters': Array<DataReportFilterDto>;
|
|
66
|
-
}
|
|
67
|
-
|
|
@@ -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 { DataReportClass } from './data-report-class';
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @export
|
|
21
|
-
* @interface UpdateDataReportResponseClass
|
|
22
|
-
*/
|
|
23
|
-
export interface UpdateDataReportResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* The data-report response.
|
|
26
|
-
* @type {DataReportClass}
|
|
27
|
-
* @memberof UpdateDataReportResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'report': DataReportClass;
|
|
30
|
-
}
|
|
31
|
-
|
/package/dist/models/{create-data-report-request-dto.js → update-organization-request-dto-rest.js}
RENAMED
|
File without changes
|
/package/dist/models/{create-data-report-response-class.js → update-organization-response-class.js}
RENAMED
|
File without changes
|