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