@emilgroup/tenant-sdk-node 1.34.1-beta.28 → 1.34.1-beta.29
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 +0 -1
- package/README.md +2 -2
- package/api/dashboard-api.ts +6 -23
- package/dist/api/dashboard-api.d.ts +3 -13
- package/dist/api/dashboard-api.js +6 -13
- package/dist/models/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/models/index.ts +0 -1
- package/package.json +1 -1
- package/dist/models/duplicate-dashboard-request-dto.d.ts +0 -30
- package/dist/models/duplicate-dashboard-request-dto.js +0 -15
- package/models/duplicate-dashboard-request-dto.ts +0 -36
package/.openapi-generator/FILES
CHANGED
|
@@ -57,7 +57,6 @@ models/dbconfig-dto.ts
|
|
|
57
57
|
models/delete-response-class.ts
|
|
58
58
|
models/disable-users-request-dto.ts
|
|
59
59
|
models/disable-users-response-class.ts
|
|
60
|
-
models/duplicate-dashboard-request-dto.ts
|
|
61
60
|
models/duplicate-dashboard-response-class.ts
|
|
62
61
|
models/enable-users-request-dto.ts
|
|
63
62
|
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.29 --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.29
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `UsersApi`.
|
package/api/dashboard-api.ts
CHANGED
|
@@ -31,8 +31,6 @@ 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
|
|
36
34
|
import { DuplicateDashboardResponseClass } from '../models';
|
|
37
35
|
// @ts-ignore
|
|
38
36
|
import { GetDashboardResponseClass } from '../models';
|
|
@@ -202,16 +200,13 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
202
200
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
203
201
|
* @summary Creates a duplicate of an existing dashboard
|
|
204
202
|
* @param {string} code
|
|
205
|
-
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
206
203
|
* @param {string} [authorization] Bearer Token
|
|
207
204
|
* @param {*} [options] Override http request option.
|
|
208
205
|
* @throws {RequiredError}
|
|
209
206
|
*/
|
|
210
|
-
duplicateDashboard: async (code: string,
|
|
207
|
+
duplicateDashboard: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
211
208
|
// verify required parameter 'code' is not null or undefined
|
|
212
209
|
assertParamExists('duplicateDashboard', 'code', code)
|
|
213
|
-
// verify required parameter 'duplicateDashboardRequestDto' is not null or undefined
|
|
214
|
-
assertParamExists('duplicateDashboard', 'duplicateDashboardRequestDto', duplicateDashboardRequestDto)
|
|
215
210
|
const localVarPath = `/tenantservice/v1/dashboards/{code}/duplicate`
|
|
216
211
|
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
217
212
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -237,12 +232,9 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
237
232
|
|
|
238
233
|
|
|
239
234
|
|
|
240
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
241
|
-
|
|
242
235
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
243
236
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
244
237
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
245
|
-
localVarRequestOptions.data = serializeDataIfNeeded(duplicateDashboardRequestDto, localVarRequestOptions, configuration)
|
|
246
238
|
|
|
247
239
|
return {
|
|
248
240
|
url: toPathString(localVarUrlObj),
|
|
@@ -656,13 +648,12 @@ export const DashboardApiFp = function(configuration?: Configuration) {
|
|
|
656
648
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
657
649
|
* @summary Creates a duplicate of an existing dashboard
|
|
658
650
|
* @param {string} code
|
|
659
|
-
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
660
651
|
* @param {string} [authorization] Bearer Token
|
|
661
652
|
* @param {*} [options] Override http request option.
|
|
662
653
|
* @throws {RequiredError}
|
|
663
654
|
*/
|
|
664
|
-
async duplicateDashboard(code: string,
|
|
665
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.duplicateDashboard(code,
|
|
655
|
+
async duplicateDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DuplicateDashboardResponseClass>> {
|
|
656
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.duplicateDashboard(code, authorization, options);
|
|
666
657
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
667
658
|
},
|
|
668
659
|
/**
|
|
@@ -804,13 +795,12 @@ export const DashboardApiFactory = function (configuration?: Configuration, base
|
|
|
804
795
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
805
796
|
* @summary Creates a duplicate of an existing dashboard
|
|
806
797
|
* @param {string} code
|
|
807
|
-
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
808
798
|
* @param {string} [authorization] Bearer Token
|
|
809
799
|
* @param {*} [options] Override http request option.
|
|
810
800
|
* @throws {RequiredError}
|
|
811
801
|
*/
|
|
812
|
-
duplicateDashboard(code: string,
|
|
813
|
-
return localVarFp.duplicateDashboard(code,
|
|
802
|
+
duplicateDashboard(code: string, authorization?: string, options?: any): AxiosPromise<DuplicateDashboardResponseClass> {
|
|
803
|
+
return localVarFp.duplicateDashboard(code, authorization, options).then((request) => request(axios, basePath));
|
|
814
804
|
},
|
|
815
805
|
/**
|
|
816
806
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
@@ -975,13 +965,6 @@ export interface DashboardApiDuplicateDashboardRequest {
|
|
|
975
965
|
*/
|
|
976
966
|
readonly code: string
|
|
977
967
|
|
|
978
|
-
/**
|
|
979
|
-
*
|
|
980
|
-
* @type {DuplicateDashboardRequestDto}
|
|
981
|
-
* @memberof DashboardApiDuplicateDashboard
|
|
982
|
-
*/
|
|
983
|
-
readonly duplicateDashboardRequestDto: DuplicateDashboardRequestDto
|
|
984
|
-
|
|
985
968
|
/**
|
|
986
969
|
* Bearer Token
|
|
987
970
|
* @type {string}
|
|
@@ -1239,7 +1222,7 @@ export class DashboardApi extends BaseAPI {
|
|
|
1239
1222
|
* @memberof DashboardApi
|
|
1240
1223
|
*/
|
|
1241
1224
|
public duplicateDashboard(requestParameters: DashboardApiDuplicateDashboardRequest, options?: AxiosRequestConfig) {
|
|
1242
|
-
return DashboardApiFp(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.
|
|
1225
|
+
return DashboardApiFp(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1243
1226
|
}
|
|
1244
1227
|
|
|
1245
1228
|
/**
|
|
@@ -17,7 +17,6 @@ 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';
|
|
21
20
|
import { DuplicateDashboardResponseClass } from '../models';
|
|
22
21
|
import { GetDashboardResponseClass } from '../models';
|
|
23
22
|
import { GetEmbeddedUrlResponseClass } from '../models';
|
|
@@ -63,12 +62,11 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
63
62
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
64
63
|
* @summary Creates a duplicate of an existing dashboard
|
|
65
64
|
* @param {string} code
|
|
66
|
-
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
67
65
|
* @param {string} [authorization] Bearer Token
|
|
68
66
|
* @param {*} [options] Override http request option.
|
|
69
67
|
* @throws {RequiredError}
|
|
70
68
|
*/
|
|
71
|
-
duplicateDashboard: (code: string,
|
|
69
|
+
duplicateDashboard: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
70
|
/**
|
|
73
71
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
74
72
|
* @summary Generates an embedded URL for dashboard editing
|
|
@@ -177,12 +175,11 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
177
175
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
178
176
|
* @summary Creates a duplicate of an existing dashboard
|
|
179
177
|
* @param {string} code
|
|
180
|
-
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
181
178
|
* @param {string} [authorization] Bearer Token
|
|
182
179
|
* @param {*} [options] Override http request option.
|
|
183
180
|
* @throws {RequiredError}
|
|
184
181
|
*/
|
|
185
|
-
duplicateDashboard(code: string,
|
|
182
|
+
duplicateDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DuplicateDashboardResponseClass>>;
|
|
186
183
|
/**
|
|
187
184
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
188
185
|
* @summary Generates an embedded URL for dashboard editing
|
|
@@ -291,12 +288,11 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
291
288
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
292
289
|
* @summary Creates a duplicate of an existing dashboard
|
|
293
290
|
* @param {string} code
|
|
294
|
-
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
295
291
|
* @param {string} [authorization] Bearer Token
|
|
296
292
|
* @param {*} [options] Override http request option.
|
|
297
293
|
* @throws {RequiredError}
|
|
298
294
|
*/
|
|
299
|
-
duplicateDashboard(code: string,
|
|
295
|
+
duplicateDashboard(code: string, authorization?: string, options?: any): AxiosPromise<DuplicateDashboardResponseClass>;
|
|
300
296
|
/**
|
|
301
297
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
302
298
|
* @summary Generates an embedded URL for dashboard editing
|
|
@@ -437,12 +433,6 @@ export interface DashboardApiDuplicateDashboardRequest {
|
|
|
437
433
|
* @memberof DashboardApiDuplicateDashboard
|
|
438
434
|
*/
|
|
439
435
|
readonly code: string;
|
|
440
|
-
/**
|
|
441
|
-
*
|
|
442
|
-
* @type {DuplicateDashboardRequestDto}
|
|
443
|
-
* @memberof DashboardApiDuplicateDashboard
|
|
444
|
-
*/
|
|
445
|
-
readonly duplicateDashboardRequestDto: DuplicateDashboardRequestDto;
|
|
446
436
|
/**
|
|
447
437
|
* Bearer Token
|
|
448
438
|
* @type {string}
|
|
@@ -247,12 +247,11 @@ 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
|
|
251
250
|
* @param {string} [authorization] Bearer Token
|
|
252
251
|
* @param {*} [options] Override http request option.
|
|
253
252
|
* @throws {RequiredError}
|
|
254
253
|
*/
|
|
255
|
-
duplicateDashboard: function (code,
|
|
254
|
+
duplicateDashboard: function (code, authorization, options) {
|
|
256
255
|
if (options === void 0) { options = {}; }
|
|
257
256
|
return __awaiter(_this, void 0, void 0, function () {
|
|
258
257
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -261,8 +260,6 @@ var DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
261
260
|
case 0:
|
|
262
261
|
// verify required parameter 'code' is not null or undefined
|
|
263
262
|
(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);
|
|
266
263
|
localVarPath = "/tenantservice/v1/dashboards/{code}/duplicate"
|
|
267
264
|
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
268
265
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -283,11 +280,9 @@ var DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
283
280
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
284
281
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
285
282
|
}
|
|
286
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
287
283
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
288
284
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
289
285
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
290
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(duplicateDashboardRequestDto, localVarRequestOptions, configuration);
|
|
291
286
|
return [2 /*return*/, {
|
|
292
287
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
293
288
|
options: localVarRequestOptions,
|
|
@@ -741,17 +736,16 @@ var DashboardApiFp = function (configuration) {
|
|
|
741
736
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
742
737
|
* @summary Creates a duplicate of an existing dashboard
|
|
743
738
|
* @param {string} code
|
|
744
|
-
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
745
739
|
* @param {string} [authorization] Bearer Token
|
|
746
740
|
* @param {*} [options] Override http request option.
|
|
747
741
|
* @throws {RequiredError}
|
|
748
742
|
*/
|
|
749
|
-
duplicateDashboard: function (code,
|
|
743
|
+
duplicateDashboard: function (code, authorization, options) {
|
|
750
744
|
return __awaiter(this, void 0, void 0, function () {
|
|
751
745
|
var localVarAxiosArgs;
|
|
752
746
|
return __generator(this, function (_a) {
|
|
753
747
|
switch (_a.label) {
|
|
754
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.duplicateDashboard(code,
|
|
748
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.duplicateDashboard(code, authorization, options)];
|
|
755
749
|
case 1:
|
|
756
750
|
localVarAxiosArgs = _a.sent();
|
|
757
751
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -961,13 +955,12 @@ var DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
961
955
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
962
956
|
* @summary Creates a duplicate of an existing dashboard
|
|
963
957
|
* @param {string} code
|
|
964
|
-
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
965
958
|
* @param {string} [authorization] Bearer Token
|
|
966
959
|
* @param {*} [options] Override http request option.
|
|
967
960
|
* @throws {RequiredError}
|
|
968
961
|
*/
|
|
969
|
-
duplicateDashboard: function (code,
|
|
970
|
-
return localVarFp.duplicateDashboard(code,
|
|
962
|
+
duplicateDashboard: function (code, authorization, options) {
|
|
963
|
+
return localVarFp.duplicateDashboard(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
971
964
|
},
|
|
972
965
|
/**
|
|
973
966
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
@@ -1114,7 +1107,7 @@ var DashboardApi = /** @class */ (function (_super) {
|
|
|
1114
1107
|
*/
|
|
1115
1108
|
DashboardApi.prototype.duplicateDashboard = function (requestParameters, options) {
|
|
1116
1109
|
var _this = this;
|
|
1117
|
-
return (0, exports.DashboardApiFp)(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.
|
|
1110
|
+
return (0, exports.DashboardApiFp)(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1118
1111
|
};
|
|
1119
1112
|
/**
|
|
1120
1113
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
package/dist/models/index.d.ts
CHANGED
|
@@ -29,7 +29,6 @@ export * from './data-report-filter-value-dto';
|
|
|
29
29
|
export * from './delete-response-class';
|
|
30
30
|
export * from './disable-users-request-dto';
|
|
31
31
|
export * from './disable-users-response-class';
|
|
32
|
-
export * from './duplicate-dashboard-request-dto';
|
|
33
32
|
export * from './duplicate-dashboard-response-class';
|
|
34
33
|
export * from './enable-users-request-dto';
|
|
35
34
|
export * from './enable-users-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -45,7 +45,6 @@ __exportStar(require("./data-report-filter-value-dto"), exports);
|
|
|
45
45
|
__exportStar(require("./delete-response-class"), exports);
|
|
46
46
|
__exportStar(require("./disable-users-request-dto"), exports);
|
|
47
47
|
__exportStar(require("./disable-users-response-class"), exports);
|
|
48
|
-
__exportStar(require("./duplicate-dashboard-request-dto"), exports);
|
|
49
48
|
__exportStar(require("./duplicate-dashboard-response-class"), exports);
|
|
50
49
|
__exportStar(require("./enable-users-request-dto"), exports);
|
|
51
50
|
__exportStar(require("./enable-users-response-class"), exports);
|
package/models/index.ts
CHANGED
|
@@ -29,7 +29,6 @@ export * from './data-report-filter-value-dto';
|
|
|
29
29
|
export * from './delete-response-class';
|
|
30
30
|
export * from './disable-users-request-dto';
|
|
31
31
|
export * from './disable-users-response-class';
|
|
32
|
-
export * from './duplicate-dashboard-request-dto';
|
|
33
32
|
export * from './duplicate-dashboard-response-class';
|
|
34
33
|
export * from './enable-users-request-dto';
|
|
35
34
|
export * from './enable-users-response-class';
|
package/package.json
CHANGED
|
@@ -1,30 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* EMIL Tenant Service
|
|
5
|
-
* The EMIL TenantService API description
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0
|
|
8
|
-
* Contact: kontakt@emil.de
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @export
|
|
20
|
-
* @interface 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
|
-
|