@emilgroup/tenant-sdk 1.36.1-beta.23 → 1.36.1-beta.25
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 +1 -0
- package/README.md +2 -2
- package/api/dashboard-api.ts +23 -6
- package/dist/api/dashboard-api.d.ts +13 -3
- package/dist/api/dashboard-api.js +13 -6
- package/dist/models/duplicate-dashboard-request-dto.d.ts +30 -0
- package/dist/models/duplicate-dashboard-request-dto.js +15 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/models/duplicate-dashboard-request-dto.ts +36 -0
- package/models/index.ts +1 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -67,6 +67,7 @@ models/dbconfig-dto.ts
|
|
|
67
67
|
models/delete-response-class.ts
|
|
68
68
|
models/disable-users-request-dto.ts
|
|
69
69
|
models/disable-users-response-class.ts
|
|
70
|
+
models/duplicate-dashboard-request-dto.ts
|
|
70
71
|
models/duplicate-dashboard-response-class.ts
|
|
71
72
|
models/enable-users-request-dto.ts
|
|
72
73
|
models/enable-users-response-class.ts
|
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/tenant-sdk@1.36.1-beta.
|
|
20
|
+
npm install @emilgroup/tenant-sdk@1.36.1-beta.25 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/tenant-sdk@1.36.1-beta.
|
|
24
|
+
yarn add @emilgroup/tenant-sdk@1.36.1-beta.25
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `UsersApi`.
|
package/api/dashboard-api.ts
CHANGED
|
@@ -31,6 +31,8 @@ import { CreateDashboardV2ResponseClass } from '../models';
|
|
|
31
31
|
// @ts-ignore
|
|
32
32
|
import { DeleteResponseClass } from '../models';
|
|
33
33
|
// @ts-ignore
|
|
34
|
+
import { DuplicateDashboardRequestDto } from '../models';
|
|
35
|
+
// @ts-ignore
|
|
34
36
|
import { DuplicateDashboardResponseClass } from '../models';
|
|
35
37
|
// @ts-ignore
|
|
36
38
|
import { GetDashboardMetadataResponseClass } from '../models';
|
|
@@ -198,13 +200,16 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
198
200
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
199
201
|
* @summary Creates a duplicate of an existing dashboard
|
|
200
202
|
* @param {string} code
|
|
203
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
201
204
|
* @param {string} [authorization] Bearer Token
|
|
202
205
|
* @param {*} [options] Override http request option.
|
|
203
206
|
* @throws {RequiredError}
|
|
204
207
|
*/
|
|
205
|
-
duplicateDashboard: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
208
|
+
duplicateDashboard: async (code: string, duplicateDashboardRequestDto: DuplicateDashboardRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
206
209
|
// verify required parameter 'code' is not null or undefined
|
|
207
210
|
assertParamExists('duplicateDashboard', 'code', code)
|
|
211
|
+
// verify required parameter 'duplicateDashboardRequestDto' is not null or undefined
|
|
212
|
+
assertParamExists('duplicateDashboard', 'duplicateDashboardRequestDto', duplicateDashboardRequestDto)
|
|
208
213
|
const localVarPath = `/tenantservice/v1/dashboards/{code}/duplicate`
|
|
209
214
|
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
210
215
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -230,9 +235,12 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
230
235
|
|
|
231
236
|
|
|
232
237
|
|
|
238
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
239
|
+
|
|
233
240
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
234
241
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
235
242
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
243
|
+
localVarRequestOptions.data = serializeDataIfNeeded(duplicateDashboardRequestDto, localVarRequestOptions, configuration)
|
|
236
244
|
|
|
237
245
|
return {
|
|
238
246
|
url: toPathString(localVarUrlObj),
|
|
@@ -691,12 +699,13 @@ export const DashboardApiFp = function(configuration?: Configuration) {
|
|
|
691
699
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
692
700
|
* @summary Creates a duplicate of an existing dashboard
|
|
693
701
|
* @param {string} code
|
|
702
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
694
703
|
* @param {string} [authorization] Bearer Token
|
|
695
704
|
* @param {*} [options] Override http request option.
|
|
696
705
|
* @throws {RequiredError}
|
|
697
706
|
*/
|
|
698
|
-
async duplicateDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DuplicateDashboardResponseClass>> {
|
|
699
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.duplicateDashboard(code, authorization, options);
|
|
707
|
+
async duplicateDashboard(code: string, duplicateDashboardRequestDto: DuplicateDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DuplicateDashboardResponseClass>> {
|
|
708
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.duplicateDashboard(code, duplicateDashboardRequestDto, authorization, options);
|
|
700
709
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
701
710
|
},
|
|
702
711
|
/**
|
|
@@ -850,12 +859,13 @@ export const DashboardApiFactory = function (configuration?: Configuration, base
|
|
|
850
859
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
851
860
|
* @summary Creates a duplicate of an existing dashboard
|
|
852
861
|
* @param {string} code
|
|
862
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
853
863
|
* @param {string} [authorization] Bearer Token
|
|
854
864
|
* @param {*} [options] Override http request option.
|
|
855
865
|
* @throws {RequiredError}
|
|
856
866
|
*/
|
|
857
|
-
duplicateDashboard(code: string, authorization?: string, options?: any): AxiosPromise<DuplicateDashboardResponseClass> {
|
|
858
|
-
return localVarFp.duplicateDashboard(code, authorization, options).then((request) => request(axios, basePath));
|
|
867
|
+
duplicateDashboard(code: string, duplicateDashboardRequestDto: DuplicateDashboardRequestDto, authorization?: string, options?: any): AxiosPromise<DuplicateDashboardResponseClass> {
|
|
868
|
+
return localVarFp.duplicateDashboard(code, duplicateDashboardRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
859
869
|
},
|
|
860
870
|
/**
|
|
861
871
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
@@ -1031,6 +1041,13 @@ export interface DashboardApiDuplicateDashboardRequest {
|
|
|
1031
1041
|
*/
|
|
1032
1042
|
readonly code: string
|
|
1033
1043
|
|
|
1044
|
+
/**
|
|
1045
|
+
*
|
|
1046
|
+
* @type {DuplicateDashboardRequestDto}
|
|
1047
|
+
* @memberof DashboardApiDuplicateDashboard
|
|
1048
|
+
*/
|
|
1049
|
+
readonly duplicateDashboardRequestDto: DuplicateDashboardRequestDto
|
|
1050
|
+
|
|
1034
1051
|
/**
|
|
1035
1052
|
* Bearer Token
|
|
1036
1053
|
* @type {string}
|
|
@@ -1309,7 +1326,7 @@ export class DashboardApi extends BaseAPI {
|
|
|
1309
1326
|
* @memberof DashboardApi
|
|
1310
1327
|
*/
|
|
1311
1328
|
public duplicateDashboard(requestParameters: DashboardApiDuplicateDashboardRequest, options?: AxiosRequestConfig) {
|
|
1312
|
-
return DashboardApiFp(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1329
|
+
return DashboardApiFp(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.duplicateDashboardRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1313
1330
|
}
|
|
1314
1331
|
|
|
1315
1332
|
/**
|
|
@@ -17,6 +17,7 @@ import { CreateDashboardResponseClass } from '../models';
|
|
|
17
17
|
import { CreateDashboardV2RequestDto } from '../models';
|
|
18
18
|
import { CreateDashboardV2ResponseClass } from '../models';
|
|
19
19
|
import { DeleteResponseClass } from '../models';
|
|
20
|
+
import { DuplicateDashboardRequestDto } from '../models';
|
|
20
21
|
import { DuplicateDashboardResponseClass } from '../models';
|
|
21
22
|
import { GetDashboardMetadataResponseClass } from '../models';
|
|
22
23
|
import { GetDashboardResponseClass } from '../models';
|
|
@@ -63,11 +64,12 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
63
64
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
64
65
|
* @summary Creates a duplicate of an existing dashboard
|
|
65
66
|
* @param {string} code
|
|
67
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
66
68
|
* @param {string} [authorization] Bearer Token
|
|
67
69
|
* @param {*} [options] Override http request option.
|
|
68
70
|
* @throws {RequiredError}
|
|
69
71
|
*/
|
|
70
|
-
duplicateDashboard: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
|
+
duplicateDashboard: (code: string, duplicateDashboardRequestDto: DuplicateDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
71
73
|
/**
|
|
72
74
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
73
75
|
* @summary Generates an embedded URL for dashboard editing
|
|
@@ -185,11 +187,12 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
185
187
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
186
188
|
* @summary Creates a duplicate of an existing dashboard
|
|
187
189
|
* @param {string} code
|
|
190
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
188
191
|
* @param {string} [authorization] Bearer Token
|
|
189
192
|
* @param {*} [options] Override http request option.
|
|
190
193
|
* @throws {RequiredError}
|
|
191
194
|
*/
|
|
192
|
-
duplicateDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DuplicateDashboardResponseClass>>;
|
|
195
|
+
duplicateDashboard(code: string, duplicateDashboardRequestDto: DuplicateDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DuplicateDashboardResponseClass>>;
|
|
193
196
|
/**
|
|
194
197
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
195
198
|
* @summary Generates an embedded URL for dashboard editing
|
|
@@ -307,11 +310,12 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
307
310
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
308
311
|
* @summary Creates a duplicate of an existing dashboard
|
|
309
312
|
* @param {string} code
|
|
313
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
310
314
|
* @param {string} [authorization] Bearer Token
|
|
311
315
|
* @param {*} [options] Override http request option.
|
|
312
316
|
* @throws {RequiredError}
|
|
313
317
|
*/
|
|
314
|
-
duplicateDashboard(code: string, authorization?: string, options?: any): AxiosPromise<DuplicateDashboardResponseClass>;
|
|
318
|
+
duplicateDashboard(code: string, duplicateDashboardRequestDto: DuplicateDashboardRequestDto, authorization?: string, options?: any): AxiosPromise<DuplicateDashboardResponseClass>;
|
|
315
319
|
/**
|
|
316
320
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
317
321
|
* @summary Generates an embedded URL for dashboard editing
|
|
@@ -461,6 +465,12 @@ export interface DashboardApiDuplicateDashboardRequest {
|
|
|
461
465
|
* @memberof DashboardApiDuplicateDashboard
|
|
462
466
|
*/
|
|
463
467
|
readonly code: string;
|
|
468
|
+
/**
|
|
469
|
+
*
|
|
470
|
+
* @type {DuplicateDashboardRequestDto}
|
|
471
|
+
* @memberof DashboardApiDuplicateDashboard
|
|
472
|
+
*/
|
|
473
|
+
readonly duplicateDashboardRequestDto: DuplicateDashboardRequestDto;
|
|
464
474
|
/**
|
|
465
475
|
* Bearer Token
|
|
466
476
|
* @type {string}
|
|
@@ -243,11 +243,12 @@ var DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
243
243
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
244
244
|
* @summary Creates a duplicate of an existing dashboard
|
|
245
245
|
* @param {string} code
|
|
246
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
246
247
|
* @param {string} [authorization] Bearer Token
|
|
247
248
|
* @param {*} [options] Override http request option.
|
|
248
249
|
* @throws {RequiredError}
|
|
249
250
|
*/
|
|
250
|
-
duplicateDashboard: function (code, authorization, options) {
|
|
251
|
+
duplicateDashboard: function (code, duplicateDashboardRequestDto, authorization, options) {
|
|
251
252
|
if (options === void 0) { options = {}; }
|
|
252
253
|
return __awaiter(_this, void 0, void 0, function () {
|
|
253
254
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -256,6 +257,8 @@ var DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
256
257
|
case 0:
|
|
257
258
|
// verify required parameter 'code' is not null or undefined
|
|
258
259
|
(0, common_1.assertParamExists)('duplicateDashboard', 'code', code);
|
|
260
|
+
// verify required parameter 'duplicateDashboardRequestDto' is not null or undefined
|
|
261
|
+
(0, common_1.assertParamExists)('duplicateDashboard', 'duplicateDashboardRequestDto', duplicateDashboardRequestDto);
|
|
259
262
|
localVarPath = "/tenantservice/v1/dashboards/{code}/duplicate"
|
|
260
263
|
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
261
264
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -276,9 +279,11 @@ var DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
276
279
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
277
280
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
278
281
|
}
|
|
282
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
279
283
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
280
284
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
281
285
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
286
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(duplicateDashboardRequestDto, localVarRequestOptions, configuration);
|
|
282
287
|
return [2 /*return*/, {
|
|
283
288
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
284
289
|
options: localVarRequestOptions,
|
|
@@ -780,16 +785,17 @@ var DashboardApiFp = function (configuration) {
|
|
|
780
785
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
781
786
|
* @summary Creates a duplicate of an existing dashboard
|
|
782
787
|
* @param {string} code
|
|
788
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
783
789
|
* @param {string} [authorization] Bearer Token
|
|
784
790
|
* @param {*} [options] Override http request option.
|
|
785
791
|
* @throws {RequiredError}
|
|
786
792
|
*/
|
|
787
|
-
duplicateDashboard: function (code, authorization, options) {
|
|
793
|
+
duplicateDashboard: function (code, duplicateDashboardRequestDto, authorization, options) {
|
|
788
794
|
return __awaiter(this, void 0, void 0, function () {
|
|
789
795
|
var localVarAxiosArgs;
|
|
790
796
|
return __generator(this, function (_a) {
|
|
791
797
|
switch (_a.label) {
|
|
792
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.duplicateDashboard(code, authorization, options)];
|
|
798
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.duplicateDashboard(code, duplicateDashboardRequestDto, authorization, options)];
|
|
793
799
|
case 1:
|
|
794
800
|
localVarAxiosArgs = _a.sent();
|
|
795
801
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -1020,12 +1026,13 @@ var DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
1020
1026
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
1021
1027
|
* @summary Creates a duplicate of an existing dashboard
|
|
1022
1028
|
* @param {string} code
|
|
1029
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
1023
1030
|
* @param {string} [authorization] Bearer Token
|
|
1024
1031
|
* @param {*} [options] Override http request option.
|
|
1025
1032
|
* @throws {RequiredError}
|
|
1026
1033
|
*/
|
|
1027
|
-
duplicateDashboard: function (code, authorization, options) {
|
|
1028
|
-
return localVarFp.duplicateDashboard(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
1034
|
+
duplicateDashboard: function (code, duplicateDashboardRequestDto, authorization, options) {
|
|
1035
|
+
return localVarFp.duplicateDashboard(code, duplicateDashboardRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
1029
1036
|
},
|
|
1030
1037
|
/**
|
|
1031
1038
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
@@ -1183,7 +1190,7 @@ var DashboardApi = /** @class */ (function (_super) {
|
|
|
1183
1190
|
*/
|
|
1184
1191
|
DashboardApi.prototype.duplicateDashboard = function (requestParameters, options) {
|
|
1185
1192
|
var _this = this;
|
|
1186
|
-
return (0, exports.DashboardApiFp)(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1193
|
+
return (0, exports.DashboardApiFp)(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.duplicateDashboardRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1187
1194
|
};
|
|
1188
1195
|
/**
|
|
1189
1196
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
@@ -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 DuplicateDashboardRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface DuplicateDashboardRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Dashboard name to set
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof DuplicateDashboardRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'name'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Dashboard description to set
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DuplicateDashboardRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'description'?: string;
|
|
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 });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export * from './data-report-filter-value-dto';
|
|
|
36
36
|
export * from './delete-response-class';
|
|
37
37
|
export * from './disable-users-request-dto';
|
|
38
38
|
export * from './disable-users-response-class';
|
|
39
|
+
export * from './duplicate-dashboard-request-dto';
|
|
39
40
|
export * from './duplicate-dashboard-response-class';
|
|
40
41
|
export * from './enable-users-request-dto';
|
|
41
42
|
export * from './enable-users-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -52,6 +52,7 @@ __exportStar(require("./data-report-filter-value-dto"), exports);
|
|
|
52
52
|
__exportStar(require("./delete-response-class"), exports);
|
|
53
53
|
__exportStar(require("./disable-users-request-dto"), exports);
|
|
54
54
|
__exportStar(require("./disable-users-response-class"), exports);
|
|
55
|
+
__exportStar(require("./duplicate-dashboard-request-dto"), exports);
|
|
55
56
|
__exportStar(require("./duplicate-dashboard-response-class"), exports);
|
|
56
57
|
__exportStar(require("./enable-users-request-dto"), exports);
|
|
57
58
|
__exportStar(require("./enable-users-response-class"), exports);
|
|
@@ -0,0 +1,36 @@
|
|
|
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 DuplicateDashboardRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface DuplicateDashboardRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Dashboard name to set
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof DuplicateDashboardRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'name'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Dashboard description to set
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof DuplicateDashboardRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'description'?: string;
|
|
35
|
+
}
|
|
36
|
+
|
package/models/index.ts
CHANGED
|
@@ -36,6 +36,7 @@ export * from './data-report-filter-value-dto';
|
|
|
36
36
|
export * from './delete-response-class';
|
|
37
37
|
export * from './disable-users-request-dto';
|
|
38
38
|
export * from './disable-users-response-class';
|
|
39
|
+
export * from './duplicate-dashboard-request-dto';
|
|
39
40
|
export * from './duplicate-dashboard-response-class';
|
|
40
41
|
export * from './enable-users-request-dto';
|
|
41
42
|
export * from './enable-users-response-class';
|