@emilgroup/tenant-sdk 1.18.0 → 1.21.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 +19 -0
- package/README.md +2 -2
- package/api/dashboard-api.ts +659 -0
- package/api/dashboard-group-api.ts +659 -0
- package/api/users-api.ts +116 -0
- package/api.ts +4 -0
- package/dist/api/dashboard-api.d.ts +365 -0
- package/dist/api/dashboard-api.js +616 -0
- package/dist/api/dashboard-group-api.d.ts +365 -0
- package/dist/api/dashboard-group-api.js +616 -0
- package/dist/api/users-api.d.ts +62 -0
- package/dist/api/users-api.js +95 -0
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/models/create-dashboard-group-request-dto.d.ts +30 -0
- package/dist/models/create-dashboard-group-request-dto.js +15 -0
- package/dist/models/create-dashboard-group-response-class.d.ts +25 -0
- package/dist/models/create-dashboard-group-response-class.js +15 -0
- package/dist/models/create-dashboard-request-dto.d.ts +48 -0
- package/dist/models/create-dashboard-request-dto.js +15 -0
- package/dist/models/create-dashboard-response-class.d.ts +25 -0
- package/dist/models/create-dashboard-response-class.js +15 -0
- package/dist/models/dashboard-class.d.ts +84 -0
- package/dist/models/dashboard-class.js +15 -0
- package/dist/models/dashboard-group-class.d.ts +66 -0
- package/dist/models/dashboard-group-class.js +15 -0
- package/dist/models/get-dashboard-group-response-class.d.ts +25 -0
- package/dist/models/get-dashboard-group-response-class.js +15 -0
- package/dist/models/get-dashboard-response-class.d.ts +25 -0
- package/dist/models/get-dashboard-response-class.js +15 -0
- package/dist/models/index.d.ts +17 -0
- package/dist/models/index.js +17 -0
- package/dist/models/invite-class.d.ts +19 -1
- package/dist/models/invite-user-request-dto.d.ts +7 -0
- package/dist/models/link-user-with-partner-request-dto-rest.d.ts +30 -0
- package/dist/models/link-user-with-partner-request-dto-rest.js +15 -0
- package/dist/models/link-user-with-partner-response-class.d.ts +25 -0
- package/dist/models/link-user-with-partner-response-class.js +15 -0
- package/dist/models/list-dashboard-groups-response-class.d.ts +31 -0
- package/dist/models/list-dashboard-groups-response-class.js +15 -0
- package/dist/models/list-dashboards-response-class.d.ts +31 -0
- package/dist/models/list-dashboards-response-class.js +15 -0
- package/dist/models/partner-invitation-data-dto.d.ts +36 -0
- package/dist/models/partner-invitation-data-dto.js +15 -0
- package/dist/models/update-dashboard-group-request-dto.d.ts +30 -0
- package/dist/models/update-dashboard-group-request-dto.js +15 -0
- package/dist/models/update-dashboard-group-response-class.d.ts +25 -0
- package/dist/models/update-dashboard-group-response-class.js +15 -0
- package/dist/models/update-dashboard-request-dto.d.ts +48 -0
- package/dist/models/update-dashboard-request-dto.js +15 -0
- package/dist/models/update-dashboard-response-class.d.ts +25 -0
- package/dist/models/update-dashboard-response-class.js +15 -0
- package/dist/models/user-class.d.ts +7 -1
- package/models/create-dashboard-group-request-dto.ts +36 -0
- package/models/create-dashboard-group-response-class.ts +31 -0
- package/models/create-dashboard-request-dto.ts +54 -0
- package/models/create-dashboard-response-class.ts +31 -0
- package/models/dashboard-class.ts +90 -0
- package/models/dashboard-group-class.ts +72 -0
- package/models/get-dashboard-group-response-class.ts +31 -0
- package/models/get-dashboard-response-class.ts +31 -0
- package/models/index.ts +17 -0
- package/models/invite-class.ts +19 -1
- package/models/invite-user-request-dto.ts +7 -0
- package/models/link-user-with-partner-request-dto-rest.ts +36 -0
- package/models/link-user-with-partner-response-class.ts +31 -0
- package/models/list-dashboard-groups-response-class.ts +37 -0
- package/models/list-dashboards-response-class.ts +37 -0
- package/models/partner-invitation-data-dto.ts +42 -0
- package/models/update-dashboard-group-request-dto.ts +36 -0
- package/models/update-dashboard-group-response-class.ts +31 -0
- package/models/update-dashboard-request-dto.ts +54 -0
- package/models/update-dashboard-response-class.ts +31 -0
- package/models/user-class.ts +7 -1
- package/package.json +1 -1
package/dist/api/users-api.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ import { EnableUserResponseClass } from '../models';
|
|
|
24
24
|
import { EnableUsersRequestDto } from '../models';
|
|
25
25
|
import { EnableUsersResponseClass } from '../models';
|
|
26
26
|
import { GetUserResponseClass } from '../models';
|
|
27
|
+
import { LinkUserWithPartnerRequestDtoRest } from '../models';
|
|
28
|
+
import { LinkUserWithPartnerResponseClass } from '../models';
|
|
27
29
|
import { ListUsersResponseClass } from '../models';
|
|
28
30
|
/**
|
|
29
31
|
* UsersApi - axios parameter creator
|
|
@@ -97,6 +99,15 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
97
99
|
* @throws {RequiredError}
|
|
98
100
|
*/
|
|
99
101
|
getUser: (code: string, code2: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @param {string} code Unique identifier for the object.
|
|
105
|
+
* @param {LinkUserWithPartnerRequestDtoRest} linkUserWithPartnerRequestDtoRest
|
|
106
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
107
|
+
* @param {*} [options] Override http request option.
|
|
108
|
+
* @throws {RequiredError}
|
|
109
|
+
*/
|
|
110
|
+
linkUserWithPartner: (code: string, linkUserWithPartnerRequestDtoRest: LinkUserWithPartnerRequestDtoRest, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
100
111
|
/**
|
|
101
112
|
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
102
113
|
* @summary List users
|
|
@@ -185,6 +196,15 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
185
196
|
* @throws {RequiredError}
|
|
186
197
|
*/
|
|
187
198
|
getUser(code: string, code2: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetUserResponseClass>>;
|
|
199
|
+
/**
|
|
200
|
+
*
|
|
201
|
+
* @param {string} code Unique identifier for the object.
|
|
202
|
+
* @param {LinkUserWithPartnerRequestDtoRest} linkUserWithPartnerRequestDtoRest
|
|
203
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
204
|
+
* @param {*} [options] Override http request option.
|
|
205
|
+
* @throws {RequiredError}
|
|
206
|
+
*/
|
|
207
|
+
linkUserWithPartner(code: string, linkUserWithPartnerRequestDtoRest: LinkUserWithPartnerRequestDtoRest, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LinkUserWithPartnerResponseClass>>;
|
|
188
208
|
/**
|
|
189
209
|
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
190
210
|
* @summary List users
|
|
@@ -273,6 +293,15 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
273
293
|
* @throws {RequiredError}
|
|
274
294
|
*/
|
|
275
295
|
getUser(code: string, code2: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetUserResponseClass>;
|
|
296
|
+
/**
|
|
297
|
+
*
|
|
298
|
+
* @param {string} code Unique identifier for the object.
|
|
299
|
+
* @param {LinkUserWithPartnerRequestDtoRest} linkUserWithPartnerRequestDtoRest
|
|
300
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
301
|
+
* @param {*} [options] Override http request option.
|
|
302
|
+
* @throws {RequiredError}
|
|
303
|
+
*/
|
|
304
|
+
linkUserWithPartner(code: string, linkUserWithPartnerRequestDtoRest: LinkUserWithPartnerRequestDtoRest, authorization?: string, options?: any): AxiosPromise<LinkUserWithPartnerResponseClass>;
|
|
276
305
|
/**
|
|
277
306
|
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
278
307
|
* @summary List users
|
|
@@ -459,6 +488,31 @@ export interface UsersApiGetUserRequest {
|
|
|
459
488
|
*/
|
|
460
489
|
readonly expand?: string;
|
|
461
490
|
}
|
|
491
|
+
/**
|
|
492
|
+
* Request parameters for linkUserWithPartner operation in UsersApi.
|
|
493
|
+
* @export
|
|
494
|
+
* @interface UsersApiLinkUserWithPartnerRequest
|
|
495
|
+
*/
|
|
496
|
+
export interface UsersApiLinkUserWithPartnerRequest {
|
|
497
|
+
/**
|
|
498
|
+
* Unique identifier for the object.
|
|
499
|
+
* @type {string}
|
|
500
|
+
* @memberof UsersApiLinkUserWithPartner
|
|
501
|
+
*/
|
|
502
|
+
readonly code: string;
|
|
503
|
+
/**
|
|
504
|
+
*
|
|
505
|
+
* @type {LinkUserWithPartnerRequestDtoRest}
|
|
506
|
+
* @memberof UsersApiLinkUserWithPartner
|
|
507
|
+
*/
|
|
508
|
+
readonly linkUserWithPartnerRequestDtoRest: LinkUserWithPartnerRequestDtoRest;
|
|
509
|
+
/**
|
|
510
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
511
|
+
* @type {string}
|
|
512
|
+
* @memberof UsersApiLinkUserWithPartner
|
|
513
|
+
*/
|
|
514
|
+
readonly authorization?: string;
|
|
515
|
+
}
|
|
462
516
|
/**
|
|
463
517
|
* Request parameters for listUsers operation in UsersApi.
|
|
464
518
|
* @export
|
|
@@ -585,6 +639,14 @@ export declare class UsersApi extends BaseAPI {
|
|
|
585
639
|
* @memberof UsersApi
|
|
586
640
|
*/
|
|
587
641
|
getUser(requestParameters: UsersApiGetUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetUserResponseClass, any>>;
|
|
642
|
+
/**
|
|
643
|
+
*
|
|
644
|
+
* @param {UsersApiLinkUserWithPartnerRequest} requestParameters Request parameters.
|
|
645
|
+
* @param {*} [options] Override http request option.
|
|
646
|
+
* @throws {RequiredError}
|
|
647
|
+
* @memberof UsersApi
|
|
648
|
+
*/
|
|
649
|
+
linkUserWithPartner(requestParameters: UsersApiLinkUserWithPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkUserWithPartnerResponseClass, any>>;
|
|
588
650
|
/**
|
|
589
651
|
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
590
652
|
* @summary List users
|
package/dist/api/users-api.js
CHANGED
|
@@ -486,6 +486,58 @@ var UsersApiAxiosParamCreator = function (configuration) {
|
|
|
486
486
|
});
|
|
487
487
|
});
|
|
488
488
|
},
|
|
489
|
+
/**
|
|
490
|
+
*
|
|
491
|
+
* @param {string} code Unique identifier for the object.
|
|
492
|
+
* @param {LinkUserWithPartnerRequestDtoRest} linkUserWithPartnerRequestDtoRest
|
|
493
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
494
|
+
* @param {*} [options] Override http request option.
|
|
495
|
+
* @throws {RequiredError}
|
|
496
|
+
*/
|
|
497
|
+
linkUserWithPartner: function (code, linkUserWithPartnerRequestDtoRest, authorization, options) {
|
|
498
|
+
if (options === void 0) { options = {}; }
|
|
499
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
500
|
+
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
501
|
+
return __generator(this, function (_a) {
|
|
502
|
+
switch (_a.label) {
|
|
503
|
+
case 0:
|
|
504
|
+
// verify required parameter 'code' is not null or undefined
|
|
505
|
+
(0, common_1.assertParamExists)('linkUserWithPartner', 'code', code);
|
|
506
|
+
// verify required parameter 'linkUserWithPartnerRequestDtoRest' is not null or undefined
|
|
507
|
+
(0, common_1.assertParamExists)('linkUserWithPartner', 'linkUserWithPartnerRequestDtoRest', linkUserWithPartnerRequestDtoRest);
|
|
508
|
+
localVarPath = "/tenantservice/v1/users/{code}/link-partner"
|
|
509
|
+
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
510
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
511
|
+
if (configuration) {
|
|
512
|
+
baseOptions = configuration.baseOptions;
|
|
513
|
+
baseAccessToken = configuration.accessToken;
|
|
514
|
+
}
|
|
515
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
516
|
+
localVarHeaderParameter = {};
|
|
517
|
+
localVarQueryParameter = {};
|
|
518
|
+
// authentication bearer required
|
|
519
|
+
// http bearer authentication required
|
|
520
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
521
|
+
case 1:
|
|
522
|
+
// authentication bearer required
|
|
523
|
+
// http bearer authentication required
|
|
524
|
+
_a.sent();
|
|
525
|
+
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
526
|
+
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
527
|
+
}
|
|
528
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
529
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
530
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
531
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
532
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(linkUserWithPartnerRequestDtoRest, localVarRequestOptions, configuration);
|
|
533
|
+
return [2 /*return*/, {
|
|
534
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
535
|
+
options: localVarRequestOptions,
|
|
536
|
+
}];
|
|
537
|
+
}
|
|
538
|
+
});
|
|
539
|
+
});
|
|
540
|
+
},
|
|
489
541
|
/**
|
|
490
542
|
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
491
543
|
* @summary List users
|
|
@@ -731,6 +783,27 @@ var UsersApiFp = function (configuration) {
|
|
|
731
783
|
});
|
|
732
784
|
});
|
|
733
785
|
},
|
|
786
|
+
/**
|
|
787
|
+
*
|
|
788
|
+
* @param {string} code Unique identifier for the object.
|
|
789
|
+
* @param {LinkUserWithPartnerRequestDtoRest} linkUserWithPartnerRequestDtoRest
|
|
790
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
791
|
+
* @param {*} [options] Override http request option.
|
|
792
|
+
* @throws {RequiredError}
|
|
793
|
+
*/
|
|
794
|
+
linkUserWithPartner: function (code, linkUserWithPartnerRequestDtoRest, authorization, options) {
|
|
795
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
796
|
+
var localVarAxiosArgs;
|
|
797
|
+
return __generator(this, function (_a) {
|
|
798
|
+
switch (_a.label) {
|
|
799
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.linkUserWithPartner(code, linkUserWithPartnerRequestDtoRest, authorization, options)];
|
|
800
|
+
case 1:
|
|
801
|
+
localVarAxiosArgs = _a.sent();
|
|
802
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
803
|
+
}
|
|
804
|
+
});
|
|
805
|
+
});
|
|
806
|
+
},
|
|
734
807
|
/**
|
|
735
808
|
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
736
809
|
* @summary List users
|
|
@@ -851,6 +924,17 @@ var UsersApiFactory = function (configuration, basePath, axios) {
|
|
|
851
924
|
getUser: function (code, code2, authorization, expand, options) {
|
|
852
925
|
return localVarFp.getUser(code, code2, authorization, expand, options).then(function (request) { return request(axios, basePath); });
|
|
853
926
|
},
|
|
927
|
+
/**
|
|
928
|
+
*
|
|
929
|
+
* @param {string} code Unique identifier for the object.
|
|
930
|
+
* @param {LinkUserWithPartnerRequestDtoRest} linkUserWithPartnerRequestDtoRest
|
|
931
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
932
|
+
* @param {*} [options] Override http request option.
|
|
933
|
+
* @throws {RequiredError}
|
|
934
|
+
*/
|
|
935
|
+
linkUserWithPartner: function (code, linkUserWithPartnerRequestDtoRest, authorization, options) {
|
|
936
|
+
return localVarFp.linkUserWithPartner(code, linkUserWithPartnerRequestDtoRest, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
937
|
+
},
|
|
854
938
|
/**
|
|
855
939
|
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
856
940
|
* @summary List users
|
|
@@ -970,6 +1054,17 @@ var UsersApi = /** @class */ (function (_super) {
|
|
|
970
1054
|
var _this = this;
|
|
971
1055
|
return (0, exports.UsersApiFp)(this.configuration).getUser(requestParameters.code, requestParameters.code2, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
972
1056
|
};
|
|
1057
|
+
/**
|
|
1058
|
+
*
|
|
1059
|
+
* @param {UsersApiLinkUserWithPartnerRequest} requestParameters Request parameters.
|
|
1060
|
+
* @param {*} [options] Override http request option.
|
|
1061
|
+
* @throws {RequiredError}
|
|
1062
|
+
* @memberof UsersApi
|
|
1063
|
+
*/
|
|
1064
|
+
UsersApi.prototype.linkUserWithPartner = function (requestParameters, options) {
|
|
1065
|
+
var _this = this;
|
|
1066
|
+
return (0, exports.UsersApiFp)(this.configuration).linkUserWithPartner(requestParameters.code, requestParameters.linkUserWithPartnerRequestDtoRest, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1067
|
+
};
|
|
973
1068
|
/**
|
|
974
1069
|
* Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
975
1070
|
* @summary List users
|
package/dist/api.d.ts
CHANGED
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
export * from './api/custom-schema-api';
|
|
13
|
+
export * from './api/dashboard-api';
|
|
14
|
+
export * from './api/dashboard-group-api';
|
|
13
15
|
export * from './api/data-report-api';
|
|
14
16
|
export * from './api/data-report-executor-api';
|
|
15
17
|
export * from './api/default-api';
|
package/dist/api.js
CHANGED
|
@@ -28,6 +28,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
28
28
|
};
|
|
29
29
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
30
|
__exportStar(require("./api/custom-schema-api"), exports);
|
|
31
|
+
__exportStar(require("./api/dashboard-api"), exports);
|
|
32
|
+
__exportStar(require("./api/dashboard-group-api"), exports);
|
|
31
33
|
__exportStar(require("./api/data-report-api"), exports);
|
|
32
34
|
__exportStar(require("./api/data-report-executor-api"), exports);
|
|
33
35
|
__exportStar(require("./api/default-api"), exports);
|
|
@@ -0,0 +1,30 @@
|
|
|
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 CreateDashboardGroupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateDashboardGroupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Dashboard group name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateDashboardGroupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard group parent id
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof CreateDashboardGroupRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'parentId'?: number;
|
|
30
|
+
}
|
|
@@ -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 { DashboardGroupClass } from './dashboard-group-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateDashboardGroupResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateDashboardGroupResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Dashboard group
|
|
21
|
+
* @type {DashboardGroupClass}
|
|
22
|
+
* @memberof CreateDashboardGroupResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'dashboardGroup': DashboardGroupClass;
|
|
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,48 @@
|
|
|
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 CreateDashboardRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateDashboardRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Dashboard name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateDashboardRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard description
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateDashboardRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'description': string;
|
|
30
|
+
/**
|
|
31
|
+
* Dashboard quick sight analysis id
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateDashboardRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'quicksightAnalysisId': string;
|
|
36
|
+
/**
|
|
37
|
+
* Dashboard quick sight dashboard id
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateDashboardRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'quicksightDashboardId': string;
|
|
42
|
+
/**
|
|
43
|
+
* Dashboard group id
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof CreateDashboardRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'dashboardGroupId'?: number;
|
|
48
|
+
}
|
|
@@ -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 { DashboardClass } from './dashboard-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateDashboardResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateDashboardResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Dashboard
|
|
21
|
+
* @type {DashboardClass}
|
|
22
|
+
* @memberof CreateDashboardResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'dashboard': DashboardClass;
|
|
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,84 @@
|
|
|
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 DashboardClass
|
|
16
|
+
*/
|
|
17
|
+
export interface DashboardClass {
|
|
18
|
+
/**
|
|
19
|
+
* Dashboard id
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof DashboardClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard code
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DashboardClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* Dashboard name
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof DashboardClass
|
|
34
|
+
*/
|
|
35
|
+
'name': string;
|
|
36
|
+
/**
|
|
37
|
+
* Dashboard description
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof DashboardClass
|
|
40
|
+
*/
|
|
41
|
+
'description': string;
|
|
42
|
+
/**
|
|
43
|
+
* Dashboard quicksight analysis id
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof DashboardClass
|
|
46
|
+
*/
|
|
47
|
+
'quicksightAnalysisId': string;
|
|
48
|
+
/**
|
|
49
|
+
* Quicksight dashboard id
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof DashboardClass
|
|
52
|
+
*/
|
|
53
|
+
'quicksightDashboardId': string;
|
|
54
|
+
/**
|
|
55
|
+
* Dashboard group id
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof DashboardClass
|
|
58
|
+
*/
|
|
59
|
+
'dashboardGroupId': number;
|
|
60
|
+
/**
|
|
61
|
+
* Created at
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof DashboardClass
|
|
64
|
+
*/
|
|
65
|
+
'createdAt': string;
|
|
66
|
+
/**
|
|
67
|
+
* Updated at
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof DashboardClass
|
|
70
|
+
*/
|
|
71
|
+
'updatedAt': string;
|
|
72
|
+
/**
|
|
73
|
+
* Identifier of the user who created the record.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof DashboardClass
|
|
76
|
+
*/
|
|
77
|
+
'createdBy': string;
|
|
78
|
+
/**
|
|
79
|
+
* Identifier of the user who last updated the record.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof DashboardClass
|
|
82
|
+
*/
|
|
83
|
+
'updatedBy': string;
|
|
84
|
+
}
|
|
@@ -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,66 @@
|
|
|
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 DashboardGroupClass
|
|
16
|
+
*/
|
|
17
|
+
export interface DashboardGroupClass {
|
|
18
|
+
/**
|
|
19
|
+
* Dashboard group id
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof DashboardGroupClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard group code
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DashboardGroupClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* Dashboard group name
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof DashboardGroupClass
|
|
34
|
+
*/
|
|
35
|
+
'name': string;
|
|
36
|
+
/**
|
|
37
|
+
* Dashboard group parent id
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof DashboardGroupClass
|
|
40
|
+
*/
|
|
41
|
+
'parentId': number;
|
|
42
|
+
/**
|
|
43
|
+
* Time at which the object was created.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof DashboardGroupClass
|
|
46
|
+
*/
|
|
47
|
+
'createdAt': string;
|
|
48
|
+
/**
|
|
49
|
+
* Time at which the object was updated.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof DashboardGroupClass
|
|
52
|
+
*/
|
|
53
|
+
'updatedAt': string;
|
|
54
|
+
/**
|
|
55
|
+
* Identifier of the user who created the record.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof DashboardGroupClass
|
|
58
|
+
*/
|
|
59
|
+
'createdBy': string;
|
|
60
|
+
/**
|
|
61
|
+
* Identifier of the user who last updated the record.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof DashboardGroupClass
|
|
64
|
+
*/
|
|
65
|
+
'updatedBy': string;
|
|
66
|
+
}
|
|
@@ -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 { DashboardGroupClass } from './dashboard-group-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetDashboardGroupResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetDashboardGroupResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Dashboard group
|
|
21
|
+
* @type {DashboardGroupClass}
|
|
22
|
+
* @memberof GetDashboardGroupResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'dashboardGroup': DashboardGroupClass;
|
|
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 });
|