@emilgroup/tenant-sdk 1.36.1-beta.28 → 1.36.1-beta.30
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@1.36.1-beta.
|
|
20
|
+
npm install @emilgroup/tenant-sdk@1.36.1-beta.30 --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.30
|
|
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';
|
|
@@ -198,16 +196,13 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
198
196
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
199
197
|
* @summary Creates a duplicate of an existing dashboard
|
|
200
198
|
* @param {string} code
|
|
201
|
-
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
202
199
|
* @param {string} [authorization] Bearer Token
|
|
203
200
|
* @param {*} [options] Override http request option.
|
|
204
201
|
* @throws {RequiredError}
|
|
205
202
|
*/
|
|
206
|
-
duplicateDashboard: async (code: string,
|
|
203
|
+
duplicateDashboard: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
207
204
|
// verify required parameter 'code' is not null or undefined
|
|
208
205
|
assertParamExists('duplicateDashboard', 'code', code)
|
|
209
|
-
// verify required parameter 'duplicateDashboardRequestDto' is not null or undefined
|
|
210
|
-
assertParamExists('duplicateDashboard', 'duplicateDashboardRequestDto', duplicateDashboardRequestDto)
|
|
211
206
|
const localVarPath = `/tenantservice/v1/dashboards/{code}/duplicate`
|
|
212
207
|
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
213
208
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -233,12 +228,9 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
233
228
|
|
|
234
229
|
|
|
235
230
|
|
|
236
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
237
|
-
|
|
238
231
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
239
232
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
240
233
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
241
|
-
localVarRequestOptions.data = serializeDataIfNeeded(duplicateDashboardRequestDto, localVarRequestOptions, configuration)
|
|
242
234
|
|
|
243
235
|
return {
|
|
244
236
|
url: toPathString(localVarUrlObj),
|
|
@@ -652,13 +644,12 @@ export const DashboardApiFp = function(configuration?: Configuration) {
|
|
|
652
644
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
653
645
|
* @summary Creates a duplicate of an existing dashboard
|
|
654
646
|
* @param {string} code
|
|
655
|
-
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
656
647
|
* @param {string} [authorization] Bearer Token
|
|
657
648
|
* @param {*} [options] Override http request option.
|
|
658
649
|
* @throws {RequiredError}
|
|
659
650
|
*/
|
|
660
|
-
async duplicateDashboard(code: string,
|
|
661
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.duplicateDashboard(code,
|
|
651
|
+
async duplicateDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DuplicateDashboardResponseClass>> {
|
|
652
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.duplicateDashboard(code, authorization, options);
|
|
662
653
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
663
654
|
},
|
|
664
655
|
/**
|
|
@@ -800,13 +791,12 @@ export const DashboardApiFactory = function (configuration?: Configuration, base
|
|
|
800
791
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
801
792
|
* @summary Creates a duplicate of an existing dashboard
|
|
802
793
|
* @param {string} code
|
|
803
|
-
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
804
794
|
* @param {string} [authorization] Bearer Token
|
|
805
795
|
* @param {*} [options] Override http request option.
|
|
806
796
|
* @throws {RequiredError}
|
|
807
797
|
*/
|
|
808
|
-
duplicateDashboard(code: string,
|
|
809
|
-
return localVarFp.duplicateDashboard(code,
|
|
798
|
+
duplicateDashboard(code: string, authorization?: string, options?: any): AxiosPromise<DuplicateDashboardResponseClass> {
|
|
799
|
+
return localVarFp.duplicateDashboard(code, authorization, options).then((request) => request(axios, basePath));
|
|
810
800
|
},
|
|
811
801
|
/**
|
|
812
802
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
@@ -971,13 +961,6 @@ export interface DashboardApiDuplicateDashboardRequest {
|
|
|
971
961
|
*/
|
|
972
962
|
readonly code: string
|
|
973
963
|
|
|
974
|
-
/**
|
|
975
|
-
*
|
|
976
|
-
* @type {DuplicateDashboardRequestDto}
|
|
977
|
-
* @memberof DashboardApiDuplicateDashboard
|
|
978
|
-
*/
|
|
979
|
-
readonly duplicateDashboardRequestDto: DuplicateDashboardRequestDto
|
|
980
|
-
|
|
981
964
|
/**
|
|
982
965
|
* Bearer Token
|
|
983
966
|
* @type {string}
|
|
@@ -1235,7 +1218,7 @@ export class DashboardApi extends BaseAPI {
|
|
|
1235
1218
|
* @memberof DashboardApi
|
|
1236
1219
|
*/
|
|
1237
1220
|
public duplicateDashboard(requestParameters: DashboardApiDuplicateDashboardRequest, options?: AxiosRequestConfig) {
|
|
1238
|
-
return DashboardApiFp(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.
|
|
1221
|
+
return DashboardApiFp(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1239
1222
|
}
|
|
1240
1223
|
|
|
1241
1224
|
/**
|
|
@@ -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}
|
|
@@ -243,12 +243,11 @@ 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
|
|
247
246
|
* @param {string} [authorization] Bearer Token
|
|
248
247
|
* @param {*} [options] Override http request option.
|
|
249
248
|
* @throws {RequiredError}
|
|
250
249
|
*/
|
|
251
|
-
duplicateDashboard: function (code,
|
|
250
|
+
duplicateDashboard: function (code, authorization, options) {
|
|
252
251
|
if (options === void 0) { options = {}; }
|
|
253
252
|
return __awaiter(_this, void 0, void 0, function () {
|
|
254
253
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -257,8 +256,6 @@ var DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
257
256
|
case 0:
|
|
258
257
|
// verify required parameter 'code' is not null or undefined
|
|
259
258
|
(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);
|
|
262
259
|
localVarPath = "/tenantservice/v1/dashboards/{code}/duplicate"
|
|
263
260
|
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
264
261
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -279,11 +276,9 @@ var DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
279
276
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
280
277
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
281
278
|
}
|
|
282
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
283
279
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
284
280
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
285
281
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
286
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(duplicateDashboardRequestDto, localVarRequestOptions, configuration);
|
|
287
282
|
return [2 /*return*/, {
|
|
288
283
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
289
284
|
options: localVarRequestOptions,
|
|
@@ -737,17 +732,16 @@ var DashboardApiFp = function (configuration) {
|
|
|
737
732
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
738
733
|
* @summary Creates a duplicate of an existing dashboard
|
|
739
734
|
* @param {string} code
|
|
740
|
-
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
741
735
|
* @param {string} [authorization] Bearer Token
|
|
742
736
|
* @param {*} [options] Override http request option.
|
|
743
737
|
* @throws {RequiredError}
|
|
744
738
|
*/
|
|
745
|
-
duplicateDashboard: function (code,
|
|
739
|
+
duplicateDashboard: function (code, authorization, options) {
|
|
746
740
|
return __awaiter(this, void 0, void 0, function () {
|
|
747
741
|
var localVarAxiosArgs;
|
|
748
742
|
return __generator(this, function (_a) {
|
|
749
743
|
switch (_a.label) {
|
|
750
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.duplicateDashboard(code,
|
|
744
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.duplicateDashboard(code, authorization, options)];
|
|
751
745
|
case 1:
|
|
752
746
|
localVarAxiosArgs = _a.sent();
|
|
753
747
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -957,13 +951,12 @@ var DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
957
951
|
* Creates a copy of the specified dashboard with all its configurations and settings. **Required Permissions** \"reporting.dashboards.create\"
|
|
958
952
|
* @summary Creates a duplicate of an existing dashboard
|
|
959
953
|
* @param {string} code
|
|
960
|
-
* @param {DuplicateDashboardRequestDto} duplicateDashboardRequestDto
|
|
961
954
|
* @param {string} [authorization] Bearer Token
|
|
962
955
|
* @param {*} [options] Override http request option.
|
|
963
956
|
* @throws {RequiredError}
|
|
964
957
|
*/
|
|
965
|
-
duplicateDashboard: function (code,
|
|
966
|
-
return localVarFp.duplicateDashboard(code,
|
|
958
|
+
duplicateDashboard: function (code, authorization, options) {
|
|
959
|
+
return localVarFp.duplicateDashboard(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
967
960
|
},
|
|
968
961
|
/**
|
|
969
962
|
* Creates a secure embedded URL that allows dashboard analysis and editing within external applications. **Required Permissions** \"reporting.dashboards.update\"
|
|
@@ -1110,7 +1103,7 @@ var DashboardApi = /** @class */ (function (_super) {
|
|
|
1110
1103
|
*/
|
|
1111
1104
|
DashboardApi.prototype.duplicateDashboard = function (requestParameters, options) {
|
|
1112
1105
|
var _this = this;
|
|
1113
|
-
return (0, exports.DashboardApiFp)(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.
|
|
1106
|
+
return (0, exports.DashboardApiFp)(this.configuration).duplicateDashboard(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1114
1107
|
};
|
|
1115
1108
|
/**
|
|
1116
1109
|
* 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
|
-
|