@emilgroup/tenant-sdk-node 1.17.0 → 1.20.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 +663 -0
- package/api/dashboard-group-api.ts +663 -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 +620 -0
- package/dist/api/dashboard-group-api.d.ts +365 -0
- package/dist/api/dashboard-group-api.js +620 -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
|
@@ -490,6 +490,58 @@ var UsersApiAxiosParamCreator = function (configuration) {
|
|
|
490
490
|
});
|
|
491
491
|
});
|
|
492
492
|
},
|
|
493
|
+
/**
|
|
494
|
+
*
|
|
495
|
+
* @param {string} code Unique identifier for the object.
|
|
496
|
+
* @param {LinkUserWithPartnerRequestDtoRest} linkUserWithPartnerRequestDtoRest
|
|
497
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
498
|
+
* @param {*} [options] Override http request option.
|
|
499
|
+
* @throws {RequiredError}
|
|
500
|
+
*/
|
|
501
|
+
linkUserWithPartner: function (code, linkUserWithPartnerRequestDtoRest, authorization, options) {
|
|
502
|
+
if (options === void 0) { options = {}; }
|
|
503
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
504
|
+
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
505
|
+
return __generator(this, function (_a) {
|
|
506
|
+
switch (_a.label) {
|
|
507
|
+
case 0:
|
|
508
|
+
// verify required parameter 'code' is not null or undefined
|
|
509
|
+
(0, common_1.assertParamExists)('linkUserWithPartner', 'code', code);
|
|
510
|
+
// verify required parameter 'linkUserWithPartnerRequestDtoRest' is not null or undefined
|
|
511
|
+
(0, common_1.assertParamExists)('linkUserWithPartner', 'linkUserWithPartnerRequestDtoRest', linkUserWithPartnerRequestDtoRest);
|
|
512
|
+
localVarPath = "/tenantservice/v1/users/{code}/link-partner"
|
|
513
|
+
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
514
|
+
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
515
|
+
if (configuration) {
|
|
516
|
+
baseOptions = configuration.baseOptions;
|
|
517
|
+
baseAccessToken = configuration.accessToken;
|
|
518
|
+
}
|
|
519
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
520
|
+
localVarHeaderParameter = {};
|
|
521
|
+
localVarQueryParameter = {};
|
|
522
|
+
// authentication bearer required
|
|
523
|
+
// http bearer authentication required
|
|
524
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
525
|
+
case 1:
|
|
526
|
+
// authentication bearer required
|
|
527
|
+
// http bearer authentication required
|
|
528
|
+
_a.sent();
|
|
529
|
+
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
530
|
+
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
531
|
+
}
|
|
532
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
533
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
534
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
535
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
536
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(linkUserWithPartnerRequestDtoRest, localVarRequestOptions, configuration);
|
|
537
|
+
return [2 /*return*/, {
|
|
538
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
539
|
+
options: localVarRequestOptions,
|
|
540
|
+
}];
|
|
541
|
+
}
|
|
542
|
+
});
|
|
543
|
+
});
|
|
544
|
+
},
|
|
493
545
|
/**
|
|
494
546
|
* 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.
|
|
495
547
|
* @summary List users
|
|
@@ -735,6 +787,27 @@ var UsersApiFp = function (configuration) {
|
|
|
735
787
|
});
|
|
736
788
|
});
|
|
737
789
|
},
|
|
790
|
+
/**
|
|
791
|
+
*
|
|
792
|
+
* @param {string} code Unique identifier for the object.
|
|
793
|
+
* @param {LinkUserWithPartnerRequestDtoRest} linkUserWithPartnerRequestDtoRest
|
|
794
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
795
|
+
* @param {*} [options] Override http request option.
|
|
796
|
+
* @throws {RequiredError}
|
|
797
|
+
*/
|
|
798
|
+
linkUserWithPartner: function (code, linkUserWithPartnerRequestDtoRest, authorization, options) {
|
|
799
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
800
|
+
var localVarAxiosArgs;
|
|
801
|
+
return __generator(this, function (_a) {
|
|
802
|
+
switch (_a.label) {
|
|
803
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.linkUserWithPartner(code, linkUserWithPartnerRequestDtoRest, authorization, options)];
|
|
804
|
+
case 1:
|
|
805
|
+
localVarAxiosArgs = _a.sent();
|
|
806
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
807
|
+
}
|
|
808
|
+
});
|
|
809
|
+
});
|
|
810
|
+
},
|
|
738
811
|
/**
|
|
739
812
|
* 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.
|
|
740
813
|
* @summary List users
|
|
@@ -855,6 +928,17 @@ var UsersApiFactory = function (configuration, basePath, axios) {
|
|
|
855
928
|
getUser: function (code, code2, authorization, expand, options) {
|
|
856
929
|
return localVarFp.getUser(code, code2, authorization, expand, options).then(function (request) { return request(axios, basePath); });
|
|
857
930
|
},
|
|
931
|
+
/**
|
|
932
|
+
*
|
|
933
|
+
* @param {string} code Unique identifier for the object.
|
|
934
|
+
* @param {LinkUserWithPartnerRequestDtoRest} linkUserWithPartnerRequestDtoRest
|
|
935
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
936
|
+
* @param {*} [options] Override http request option.
|
|
937
|
+
* @throws {RequiredError}
|
|
938
|
+
*/
|
|
939
|
+
linkUserWithPartner: function (code, linkUserWithPartnerRequestDtoRest, authorization, options) {
|
|
940
|
+
return localVarFp.linkUserWithPartner(code, linkUserWithPartnerRequestDtoRest, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
941
|
+
},
|
|
858
942
|
/**
|
|
859
943
|
* 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.
|
|
860
944
|
* @summary List users
|
|
@@ -974,6 +1058,17 @@ var UsersApi = /** @class */ (function (_super) {
|
|
|
974
1058
|
var _this = this;
|
|
975
1059
|
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); });
|
|
976
1060
|
};
|
|
1061
|
+
/**
|
|
1062
|
+
*
|
|
1063
|
+
* @param {UsersApiLinkUserWithPartnerRequest} requestParameters Request parameters.
|
|
1064
|
+
* @param {*} [options] Override http request option.
|
|
1065
|
+
* @throws {RequiredError}
|
|
1066
|
+
* @memberof UsersApi
|
|
1067
|
+
*/
|
|
1068
|
+
UsersApi.prototype.linkUserWithPartner = function (requestParameters, options) {
|
|
1069
|
+
var _this = this;
|
|
1070
|
+
return (0, exports.UsersApiFp)(this.configuration).linkUserWithPartner(requestParameters.code, requestParameters.linkUserWithPartnerRequestDtoRest, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1071
|
+
};
|
|
977
1072
|
/**
|
|
978
1073
|
* 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.
|
|
979
1074
|
* @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 });
|