@emilgroup/tenant-sdk-node 1.34.1-beta.22 → 1.34.1-beta.23
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-node@1.34.1-beta.
|
|
20
|
+
npm install @emilgroup/tenant-sdk-node@1.34.1-beta.23 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/tenant-sdk-node@1.34.1-beta.
|
|
24
|
+
yarn add @emilgroup/tenant-sdk-node@1.34.1-beta.23
|
|
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';
|
|
@@ -202,13 +204,16 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
202
204
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
203
205
|
* @summary Creates a duplicate of an existing dashboard
|
|
204
206
|
* @param {string} code
|
|
207
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
205
208
|
* @param {string} [authorization] Bearer Token
|
|
206
209
|
* @param {*} [options] Override http request option.
|
|
207
210
|
* @throws {RequiredError}
|
|
208
211
|
*/
|
|
209
|
-
duplicateDashboard: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
212
|
+
duplicateDashboard: async (code: string, duplicateDashboardRequestDto: DuplicateDashboardRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
210
213
|
// verify required parameter 'code' is not null or undefined
|
|
211
214
|
assertParamExists('duplicateDashboard', 'code', code)
|
|
215
|
+
// verify required parameter 'duplicateDashboardRequestDto' is not null or undefined
|
|
216
|
+
assertParamExists('duplicateDashboard', 'duplicateDashboardRequestDto', duplicateDashboardRequestDto)
|
|
212
217
|
const localVarPath = `/tenantservice/v1/dashboards/{code}/duplicate`
|
|
213
218
|
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
214
219
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -234,9 +239,12 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
234
239
|
|
|
235
240
|
|
|
236
241
|
|
|
242
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
243
|
+
|
|
237
244
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
238
245
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
239
246
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
247
|
+
localVarRequestOptions.data = serializeDataIfNeeded(duplicateDashboardRequestDto, localVarRequestOptions, configuration)
|
|
240
248
|
|
|
241
249
|
return {
|
|
242
250
|
url: toPathString(localVarUrlObj),
|
|
@@ -695,12 +703,13 @@ export const DashboardApiFp = function(configuration?: Configuration) {
|
|
|
695
703
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
696
704
|
* @summary Creates a duplicate of an existing dashboard
|
|
697
705
|
* @param {string} code
|
|
706
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
698
707
|
* @param {string} [authorization] Bearer Token
|
|
699
708
|
* @param {*} [options] Override http request option.
|
|
700
709
|
* @throws {RequiredError}
|
|
701
710
|
*/
|
|
702
|
-
async duplicateDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DuplicateDashboardResponseClass>> {
|
|
703
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.duplicateDashboard(code, authorization, options);
|
|
711
|
+
async duplicateDashboard(code: string, duplicateDashboardRequestDto: DuplicateDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DuplicateDashboardResponseClass>> {
|
|
712
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.duplicateDashboard(code, duplicateDashboardRequestDto, authorization, options);
|
|
704
713
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
705
714
|
},
|
|
706
715
|
/**
|
|
@@ -854,12 +863,13 @@ export const DashboardApiFactory = function (configuration?: Configuration, base
|
|
|
854
863
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
855
864
|
* @summary Creates a duplicate of an existing dashboard
|
|
856
865
|
* @param {string} code
|
|
866
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
857
867
|
* @param {string} [authorization] Bearer Token
|
|
858
868
|
* @param {*} [options] Override http request option.
|
|
859
869
|
* @throws {RequiredError}
|
|
860
870
|
*/
|
|
861
|
-
duplicateDashboard(code: string, authorization?: string, options?: any): AxiosPromise<DuplicateDashboardResponseClass> {
|
|
862
|
-
return localVarFp.duplicateDashboard(code, authorization, options).then((request) => request(axios, basePath));
|
|
871
|
+
duplicateDashboard(code: string, duplicateDashboardRequestDto: DuplicateDashboardRequestDto, authorization?: string, options?: any): AxiosPromise<DuplicateDashboardResponseClass> {
|
|
872
|
+
return localVarFp.duplicateDashboard(code, duplicateDashboardRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
863
873
|
},
|
|
864
874
|
/**
|
|
865
875
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
@@ -1035,6 +1045,13 @@ export interface DashboardApiDuplicateDashboardRequest {
|
|
|
1035
1045
|
*/
|
|
1036
1046
|
readonly code: string
|
|
1037
1047
|
|
|
1048
|
+
/**
|
|
1049
|
+
*
|
|
1050
|
+
* @type {DuplicateDashboardRequestDto}
|
|
1051
|
+
* @memberof DashboardApiDuplicateDashboard
|
|
1052
|
+
*/
|
|
1053
|
+
readonly duplicateDashboardRequestDto: DuplicateDashboardRequestDto
|
|
1054
|
+
|
|
1038
1055
|
/**
|
|
1039
1056
|
* Bearer Token
|
|
1040
1057
|
* @type {string}
|
|
@@ -1313,7 +1330,7 @@ export class DashboardApi extends BaseAPI {
|
|
|
1313
1330
|
* @memberof DashboardApi
|
|
1314
1331
|
*/
|
|
1315
1332
|
public duplicateDashboard(requestParameters: DashboardApiDuplicateDashboardRequest, options?: AxiosRequestConfig) {
|
|
1316
|
-
return DashboardApiFp(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1333
|
+
return DashboardApiFp(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.duplicateDashboardRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1317
1334
|
}
|
|
1318
1335
|
|
|
1319
1336
|
/**
|
|
@@ -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}
|
|
@@ -247,11 +247,12 @@ var DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
247
247
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
248
248
|
* @summary Creates a duplicate of an existing dashboard
|
|
249
249
|
* @param {string} code
|
|
250
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
250
251
|
* @param {string} [authorization] Bearer Token
|
|
251
252
|
* @param {*} [options] Override http request option.
|
|
252
253
|
* @throws {RequiredError}
|
|
253
254
|
*/
|
|
254
|
-
duplicateDashboard: function (code, authorization, options) {
|
|
255
|
+
duplicateDashboard: function (code, duplicateDashboardRequestDto, authorization, options) {
|
|
255
256
|
if (options === void 0) { options = {}; }
|
|
256
257
|
return __awaiter(_this, void 0, void 0, function () {
|
|
257
258
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -260,6 +261,8 @@ var DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
260
261
|
case 0:
|
|
261
262
|
// verify required parameter 'code' is not null or undefined
|
|
262
263
|
(0, common_1.assertParamExists)('duplicateDashboard', 'code', code);
|
|
264
|
+
// verify required parameter 'duplicateDashboardRequestDto' is not null or undefined
|
|
265
|
+
(0, common_1.assertParamExists)('duplicateDashboard', 'duplicateDashboardRequestDto', duplicateDashboardRequestDto);
|
|
263
266
|
localVarPath = "/tenantservice/v1/dashboards/{code}/duplicate"
|
|
264
267
|
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
265
268
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -280,9 +283,11 @@ var DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
280
283
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
281
284
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
282
285
|
}
|
|
286
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
283
287
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
284
288
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
285
289
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
290
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(duplicateDashboardRequestDto, localVarRequestOptions, configuration);
|
|
286
291
|
return [2 /*return*/, {
|
|
287
292
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
288
293
|
options: localVarRequestOptions,
|
|
@@ -784,16 +789,17 @@ var DashboardApiFp = function (configuration) {
|
|
|
784
789
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
785
790
|
* @summary Creates a duplicate of an existing dashboard
|
|
786
791
|
* @param {string} code
|
|
792
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
787
793
|
* @param {string} [authorization] Bearer Token
|
|
788
794
|
* @param {*} [options] Override http request option.
|
|
789
795
|
* @throws {RequiredError}
|
|
790
796
|
*/
|
|
791
|
-
duplicateDashboard: function (code, authorization, options) {
|
|
797
|
+
duplicateDashboard: function (code, duplicateDashboardRequestDto, authorization, options) {
|
|
792
798
|
return __awaiter(this, void 0, void 0, function () {
|
|
793
799
|
var localVarAxiosArgs;
|
|
794
800
|
return __generator(this, function (_a) {
|
|
795
801
|
switch (_a.label) {
|
|
796
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.duplicateDashboard(code, authorization, options)];
|
|
802
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.duplicateDashboard(code, duplicateDashboardRequestDto, authorization, options)];
|
|
797
803
|
case 1:
|
|
798
804
|
localVarAxiosArgs = _a.sent();
|
|
799
805
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -1024,12 +1030,13 @@ var DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
1024
1030
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
1025
1031
|
* @summary Creates a duplicate of an existing dashboard
|
|
1026
1032
|
* @param {string} code
|
|
1033
|
+
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
1027
1034
|
* @param {string} [authorization] Bearer Token
|
|
1028
1035
|
* @param {*} [options] Override http request option.
|
|
1029
1036
|
* @throws {RequiredError}
|
|
1030
1037
|
*/
|
|
1031
|
-
duplicateDashboard: function (code, authorization, options) {
|
|
1032
|
-
return localVarFp.duplicateDashboard(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
1038
|
+
duplicateDashboard: function (code, duplicateDashboardRequestDto, authorization, options) {
|
|
1039
|
+
return localVarFp.duplicateDashboard(code, duplicateDashboardRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
1033
1040
|
},
|
|
1034
1041
|
/**
|
|
1035
1042
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
@@ -1187,7 +1194,7 @@ var DashboardApi = /** @class */ (function (_super) {
|
|
|
1187
1194
|
*/
|
|
1188
1195
|
DashboardApi.prototype.duplicateDashboard = function (requestParameters, options) {
|
|
1189
1196
|
var _this = this;
|
|
1190
|
-
return (0, exports.DashboardApiFp)(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1197
|
+
return (0, exports.DashboardApiFp)(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.duplicateDashboardRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1191
1198
|
};
|
|
1192
1199
|
/**
|
|
1193
1200
|
* 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';
|