@emilgroup/tenant-sdk 1.21.1-beta.0 → 1.22.0
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 -2
- package/README.md +2 -2
- package/api/dashboard-api.ts +0 -99
- package/dist/api/dashboard-api.d.ts +0 -52
- package/dist/api/dashboard-api.js +0 -88
- package/dist/models/index.d.ts +0 -2
- package/dist/models/index.js +0 -2
- package/dist/models/invite-class.d.ts +12 -12
- package/dist/models/user-class.d.ts +8 -8
- package/models/index.ts +0 -2
- package/models/invite-class.ts +12 -12
- package/models/user-class.ts +8 -8
- package/package.json +1 -1
- package/dist/models/create-tenant-db-config-request-dto.d.ts +0 -30
- package/dist/models/create-tenant-db-config-request-dto.js +0 -15
- package/dist/models/get-embedded-url-response-class.d.ts +0 -24
- package/dist/models/get-embedded-url-response-class.js +0 -15
- package/models/create-tenant-db-config-request-dto.ts +0 -36
- package/models/get-embedded-url-response-class.ts +0 -30
package/.openapi-generator/FILES
CHANGED
|
@@ -37,7 +37,6 @@ models/create-data-report-request-dto.ts
|
|
|
37
37
|
models/create-data-report-response-class.ts
|
|
38
38
|
models/create-permission-request-dto.ts
|
|
39
39
|
models/create-role-request-dto.ts
|
|
40
|
-
models/create-tenant-db-config-request-dto.ts
|
|
41
40
|
models/create-tenant-request-dto.ts
|
|
42
41
|
models/custom-field-dto.ts
|
|
43
42
|
models/custom-schema-class.ts
|
|
@@ -61,7 +60,6 @@ models/get-custom-schema-response-class.ts
|
|
|
61
60
|
models/get-dashboard-group-response-class.ts
|
|
62
61
|
models/get-dashboard-response-class.ts
|
|
63
62
|
models/get-data-report-response-class.ts
|
|
64
|
-
models/get-embedded-url-response-class.ts
|
|
65
63
|
models/get-organization-response-class.ts
|
|
66
64
|
models/get-settings-response-class.ts
|
|
67
65
|
models/get-user-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.
|
|
20
|
+
npm install @emilgroup/tenant-sdk@1.22.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/tenant-sdk@1.
|
|
24
|
+
yarn add @emilgroup/tenant-sdk@1.22.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `UsersApi`.
|
package/api/dashboard-api.ts
CHANGED
|
@@ -29,8 +29,6 @@ import { DeleteResponseClass } from '../models';
|
|
|
29
29
|
// @ts-ignore
|
|
30
30
|
import { GetDashboardResponseClass } from '../models';
|
|
31
31
|
// @ts-ignore
|
|
32
|
-
import { GetEmbeddedUrlResponseClass } from '../models';
|
|
33
|
-
// @ts-ignore
|
|
34
32
|
import { ListDashboardsResponseClass } from '../models';
|
|
35
33
|
// @ts-ignore
|
|
36
34
|
import { UpdateDashboardRequestDto } from '../models';
|
|
@@ -167,50 +165,6 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
167
165
|
|
|
168
166
|
|
|
169
167
|
|
|
170
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
171
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
172
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
173
|
-
|
|
174
|
-
return {
|
|
175
|
-
url: toPathString(localVarUrlObj),
|
|
176
|
-
options: localVarRequestOptions,
|
|
177
|
-
};
|
|
178
|
-
},
|
|
179
|
-
/**
|
|
180
|
-
*
|
|
181
|
-
* @param {string} providerDashboardId
|
|
182
|
-
* @param {string} [authorization] Bearer Token
|
|
183
|
-
* @param {*} [options] Override http request option.
|
|
184
|
-
* @throws {RequiredError}
|
|
185
|
-
*/
|
|
186
|
-
getEmbeddedUrl: async (providerDashboardId: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
187
|
-
// verify required parameter 'providerDashboardId' is not null or undefined
|
|
188
|
-
assertParamExists('getEmbeddedUrl', 'providerDashboardId', providerDashboardId)
|
|
189
|
-
const localVarPath = `/tenantservice/v1/dashboards/{provider_dashboard_id}/embedded-url`
|
|
190
|
-
.replace(`{${"provider_dashboard_id"}}`, encodeURIComponent(String(providerDashboardId)));
|
|
191
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
192
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
193
|
-
let baseOptions;
|
|
194
|
-
let baseAccessToken;
|
|
195
|
-
if (configuration) {
|
|
196
|
-
baseOptions = configuration.baseOptions;
|
|
197
|
-
baseAccessToken = configuration.accessToken;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
201
|
-
const localVarHeaderParameter = {} as any;
|
|
202
|
-
const localVarQueryParameter = {} as any;
|
|
203
|
-
|
|
204
|
-
// authentication bearer required
|
|
205
|
-
// http bearer authentication required
|
|
206
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
207
|
-
|
|
208
|
-
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
209
|
-
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
168
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
215
169
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
216
170
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -388,17 +342,6 @@ export const DashboardApiFp = function(configuration?: Configuration) {
|
|
|
388
342
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getDashboard(code, authorization, options);
|
|
389
343
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
390
344
|
},
|
|
391
|
-
/**
|
|
392
|
-
*
|
|
393
|
-
* @param {string} providerDashboardId
|
|
394
|
-
* @param {string} [authorization] Bearer Token
|
|
395
|
-
* @param {*} [options] Override http request option.
|
|
396
|
-
* @throws {RequiredError}
|
|
397
|
-
*/
|
|
398
|
-
async getEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEmbeddedUrlResponseClass>> {
|
|
399
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getEmbeddedUrl(providerDashboardId, authorization, options);
|
|
400
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
401
|
-
},
|
|
402
345
|
/**
|
|
403
346
|
*
|
|
404
347
|
* @param {string} [authorization] Bearer Token
|
|
@@ -468,16 +411,6 @@ export const DashboardApiFactory = function (configuration?: Configuration, base
|
|
|
468
411
|
getDashboard(code: string, authorization?: string, options?: any): AxiosPromise<GetDashboardResponseClass> {
|
|
469
412
|
return localVarFp.getDashboard(code, authorization, options).then((request) => request(axios, basePath));
|
|
470
413
|
},
|
|
471
|
-
/**
|
|
472
|
-
*
|
|
473
|
-
* @param {string} providerDashboardId
|
|
474
|
-
* @param {string} [authorization] Bearer Token
|
|
475
|
-
* @param {*} [options] Override http request option.
|
|
476
|
-
* @throws {RequiredError}
|
|
477
|
-
*/
|
|
478
|
-
getEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: any): AxiosPromise<GetEmbeddedUrlResponseClass> {
|
|
479
|
-
return localVarFp.getEmbeddedUrl(providerDashboardId, authorization, options).then((request) => request(axios, basePath));
|
|
480
|
-
},
|
|
481
414
|
/**
|
|
482
415
|
*
|
|
483
416
|
* @param {string} [authorization] Bearer Token
|
|
@@ -571,27 +504,6 @@ export interface DashboardApiGetDashboardRequest {
|
|
|
571
504
|
readonly authorization?: string
|
|
572
505
|
}
|
|
573
506
|
|
|
574
|
-
/**
|
|
575
|
-
* Request parameters for getEmbeddedUrl operation in DashboardApi.
|
|
576
|
-
* @export
|
|
577
|
-
* @interface DashboardApiGetEmbeddedUrlRequest
|
|
578
|
-
*/
|
|
579
|
-
export interface DashboardApiGetEmbeddedUrlRequest {
|
|
580
|
-
/**
|
|
581
|
-
*
|
|
582
|
-
* @type {string}
|
|
583
|
-
* @memberof DashboardApiGetEmbeddedUrl
|
|
584
|
-
*/
|
|
585
|
-
readonly providerDashboardId: string
|
|
586
|
-
|
|
587
|
-
/**
|
|
588
|
-
* Bearer Token
|
|
589
|
-
* @type {string}
|
|
590
|
-
* @memberof DashboardApiGetEmbeddedUrl
|
|
591
|
-
*/
|
|
592
|
-
readonly authorization?: string
|
|
593
|
-
}
|
|
594
|
-
|
|
595
507
|
/**
|
|
596
508
|
* Request parameters for listDashboards operation in DashboardApi.
|
|
597
509
|
* @export
|
|
@@ -723,17 +635,6 @@ export class DashboardApi extends BaseAPI {
|
|
|
723
635
|
return DashboardApiFp(this.configuration).getDashboard(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
724
636
|
}
|
|
725
637
|
|
|
726
|
-
/**
|
|
727
|
-
*
|
|
728
|
-
* @param {DashboardApiGetEmbeddedUrlRequest} requestParameters Request parameters.
|
|
729
|
-
* @param {*} [options] Override http request option.
|
|
730
|
-
* @throws {RequiredError}
|
|
731
|
-
* @memberof DashboardApi
|
|
732
|
-
*/
|
|
733
|
-
public getEmbeddedUrl(requestParameters: DashboardApiGetEmbeddedUrlRequest, options?: AxiosRequestConfig) {
|
|
734
|
-
return DashboardApiFp(this.configuration).getEmbeddedUrl(requestParameters.providerDashboardId, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
735
|
-
}
|
|
736
|
-
|
|
737
638
|
/**
|
|
738
639
|
*
|
|
739
640
|
* @param {DashboardApiListDashboardsRequest} requestParameters Request parameters.
|
|
@@ -16,7 +16,6 @@ import { CreateDashboardRequestDto } from '../models';
|
|
|
16
16
|
import { CreateDashboardResponseClass } from '../models';
|
|
17
17
|
import { DeleteResponseClass } from '../models';
|
|
18
18
|
import { GetDashboardResponseClass } from '../models';
|
|
19
|
-
import { GetEmbeddedUrlResponseClass } from '../models';
|
|
20
19
|
import { ListDashboardsResponseClass } from '../models';
|
|
21
20
|
import { UpdateDashboardRequestDto } from '../models';
|
|
22
21
|
import { UpdateDashboardResponseClass } from '../models';
|
|
@@ -49,14 +48,6 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
49
48
|
* @throws {RequiredError}
|
|
50
49
|
*/
|
|
51
50
|
getDashboard: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
|
-
/**
|
|
53
|
-
*
|
|
54
|
-
* @param {string} providerDashboardId
|
|
55
|
-
* @param {string} [authorization] Bearer Token
|
|
56
|
-
* @param {*} [options] Override http request option.
|
|
57
|
-
* @throws {RequiredError}
|
|
58
|
-
*/
|
|
59
|
-
getEmbeddedUrl: (providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60
51
|
/**
|
|
61
52
|
*
|
|
62
53
|
* @param {string} [authorization] Bearer Token
|
|
@@ -110,14 +101,6 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
110
101
|
* @throws {RequiredError}
|
|
111
102
|
*/
|
|
112
103
|
getDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDashboardResponseClass>>;
|
|
113
|
-
/**
|
|
114
|
-
*
|
|
115
|
-
* @param {string} providerDashboardId
|
|
116
|
-
* @param {string} [authorization] Bearer Token
|
|
117
|
-
* @param {*} [options] Override http request option.
|
|
118
|
-
* @throws {RequiredError}
|
|
119
|
-
*/
|
|
120
|
-
getEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEmbeddedUrlResponseClass>>;
|
|
121
104
|
/**
|
|
122
105
|
*
|
|
123
106
|
* @param {string} [authorization] Bearer Token
|
|
@@ -171,14 +154,6 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
171
154
|
* @throws {RequiredError}
|
|
172
155
|
*/
|
|
173
156
|
getDashboard(code: string, authorization?: string, options?: any): AxiosPromise<GetDashboardResponseClass>;
|
|
174
|
-
/**
|
|
175
|
-
*
|
|
176
|
-
* @param {string} providerDashboardId
|
|
177
|
-
* @param {string} [authorization] Bearer Token
|
|
178
|
-
* @param {*} [options] Override http request option.
|
|
179
|
-
* @throws {RequiredError}
|
|
180
|
-
*/
|
|
181
|
-
getEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: any): AxiosPromise<GetEmbeddedUrlResponseClass>;
|
|
182
157
|
/**
|
|
183
158
|
*
|
|
184
159
|
* @param {string} [authorization] Bearer Token
|
|
@@ -260,25 +235,6 @@ export interface DashboardApiGetDashboardRequest {
|
|
|
260
235
|
*/
|
|
261
236
|
readonly authorization?: string;
|
|
262
237
|
}
|
|
263
|
-
/**
|
|
264
|
-
* Request parameters for getEmbeddedUrl operation in DashboardApi.
|
|
265
|
-
* @export
|
|
266
|
-
* @interface DashboardApiGetEmbeddedUrlRequest
|
|
267
|
-
*/
|
|
268
|
-
export interface DashboardApiGetEmbeddedUrlRequest {
|
|
269
|
-
/**
|
|
270
|
-
*
|
|
271
|
-
* @type {string}
|
|
272
|
-
* @memberof DashboardApiGetEmbeddedUrl
|
|
273
|
-
*/
|
|
274
|
-
readonly providerDashboardId: string;
|
|
275
|
-
/**
|
|
276
|
-
* Bearer Token
|
|
277
|
-
* @type {string}
|
|
278
|
-
* @memberof DashboardApiGetEmbeddedUrl
|
|
279
|
-
*/
|
|
280
|
-
readonly authorization?: string;
|
|
281
|
-
}
|
|
282
238
|
/**
|
|
283
239
|
* Request parameters for listDashboards operation in DashboardApi.
|
|
284
240
|
* @export
|
|
@@ -390,14 +346,6 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
390
346
|
* @memberof DashboardApi
|
|
391
347
|
*/
|
|
392
348
|
getDashboard(requestParameters: DashboardApiGetDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDashboardResponseClass, any>>;
|
|
393
|
-
/**
|
|
394
|
-
*
|
|
395
|
-
* @param {DashboardApiGetEmbeddedUrlRequest} requestParameters Request parameters.
|
|
396
|
-
* @param {*} [options] Override http request option.
|
|
397
|
-
* @throws {RequiredError}
|
|
398
|
-
* @memberof DashboardApi
|
|
399
|
-
*/
|
|
400
|
-
getEmbeddedUrl(requestParameters: DashboardApiGetEmbeddedUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEmbeddedUrlResponseClass, any>>;
|
|
401
349
|
/**
|
|
402
350
|
*
|
|
403
351
|
* @param {DashboardApiListDashboardsRequest} requestParameters Request parameters.
|
|
@@ -234,53 +234,6 @@ var DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
234
234
|
});
|
|
235
235
|
});
|
|
236
236
|
},
|
|
237
|
-
/**
|
|
238
|
-
*
|
|
239
|
-
* @param {string} providerDashboardId
|
|
240
|
-
* @param {string} [authorization] Bearer Token
|
|
241
|
-
* @param {*} [options] Override http request option.
|
|
242
|
-
* @throws {RequiredError}
|
|
243
|
-
*/
|
|
244
|
-
getEmbeddedUrl: function (providerDashboardId, authorization, options) {
|
|
245
|
-
if (options === void 0) { options = {}; }
|
|
246
|
-
return __awaiter(_this, void 0, void 0, function () {
|
|
247
|
-
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
248
|
-
return __generator(this, function (_a) {
|
|
249
|
-
switch (_a.label) {
|
|
250
|
-
case 0:
|
|
251
|
-
// verify required parameter 'providerDashboardId' is not null or undefined
|
|
252
|
-
(0, common_1.assertParamExists)('getEmbeddedUrl', 'providerDashboardId', providerDashboardId);
|
|
253
|
-
localVarPath = "/tenantservice/v1/dashboards/{provider_dashboard_id}/embedded-url"
|
|
254
|
-
.replace("{".concat("provider_dashboard_id", "}"), encodeURIComponent(String(providerDashboardId)));
|
|
255
|
-
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
256
|
-
if (configuration) {
|
|
257
|
-
baseOptions = configuration.baseOptions;
|
|
258
|
-
baseAccessToken = configuration.accessToken;
|
|
259
|
-
}
|
|
260
|
-
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
261
|
-
localVarHeaderParameter = {};
|
|
262
|
-
localVarQueryParameter = {};
|
|
263
|
-
// authentication bearer required
|
|
264
|
-
// http bearer authentication required
|
|
265
|
-
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
266
|
-
case 1:
|
|
267
|
-
// authentication bearer required
|
|
268
|
-
// http bearer authentication required
|
|
269
|
-
_a.sent();
|
|
270
|
-
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
271
|
-
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
272
|
-
}
|
|
273
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
274
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
275
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
276
|
-
return [2 /*return*/, {
|
|
277
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
278
|
-
options: localVarRequestOptions,
|
|
279
|
-
}];
|
|
280
|
-
}
|
|
281
|
-
});
|
|
282
|
-
});
|
|
283
|
-
},
|
|
284
237
|
/**
|
|
285
238
|
*
|
|
286
239
|
* @param {string} [authorization] Bearer Token
|
|
@@ -474,26 +427,6 @@ var DashboardApiFp = function (configuration) {
|
|
|
474
427
|
});
|
|
475
428
|
});
|
|
476
429
|
},
|
|
477
|
-
/**
|
|
478
|
-
*
|
|
479
|
-
* @param {string} providerDashboardId
|
|
480
|
-
* @param {string} [authorization] Bearer Token
|
|
481
|
-
* @param {*} [options] Override http request option.
|
|
482
|
-
* @throws {RequiredError}
|
|
483
|
-
*/
|
|
484
|
-
getEmbeddedUrl: function (providerDashboardId, authorization, options) {
|
|
485
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
486
|
-
var localVarAxiosArgs;
|
|
487
|
-
return __generator(this, function (_a) {
|
|
488
|
-
switch (_a.label) {
|
|
489
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getEmbeddedUrl(providerDashboardId, authorization, options)];
|
|
490
|
-
case 1:
|
|
491
|
-
localVarAxiosArgs = _a.sent();
|
|
492
|
-
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
493
|
-
}
|
|
494
|
-
});
|
|
495
|
-
});
|
|
496
|
-
},
|
|
497
430
|
/**
|
|
498
431
|
*
|
|
499
432
|
* @param {string} [authorization] Bearer Token
|
|
@@ -581,16 +514,6 @@ var DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
581
514
|
getDashboard: function (code, authorization, options) {
|
|
582
515
|
return localVarFp.getDashboard(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
583
516
|
},
|
|
584
|
-
/**
|
|
585
|
-
*
|
|
586
|
-
* @param {string} providerDashboardId
|
|
587
|
-
* @param {string} [authorization] Bearer Token
|
|
588
|
-
* @param {*} [options] Override http request option.
|
|
589
|
-
* @throws {RequiredError}
|
|
590
|
-
*/
|
|
591
|
-
getEmbeddedUrl: function (providerDashboardId, authorization, options) {
|
|
592
|
-
return localVarFp.getEmbeddedUrl(providerDashboardId, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
593
|
-
},
|
|
594
517
|
/**
|
|
595
518
|
*
|
|
596
519
|
* @param {string} [authorization] Bearer Token
|
|
@@ -665,17 +588,6 @@ var DashboardApi = /** @class */ (function (_super) {
|
|
|
665
588
|
var _this = this;
|
|
666
589
|
return (0, exports.DashboardApiFp)(this.configuration).getDashboard(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
667
590
|
};
|
|
668
|
-
/**
|
|
669
|
-
*
|
|
670
|
-
* @param {DashboardApiGetEmbeddedUrlRequest} requestParameters Request parameters.
|
|
671
|
-
* @param {*} [options] Override http request option.
|
|
672
|
-
* @throws {RequiredError}
|
|
673
|
-
* @memberof DashboardApi
|
|
674
|
-
*/
|
|
675
|
-
DashboardApi.prototype.getEmbeddedUrl = function (requestParameters, options) {
|
|
676
|
-
var _this = this;
|
|
677
|
-
return (0, exports.DashboardApiFp)(this.configuration).getEmbeddedUrl(requestParameters.providerDashboardId, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
678
|
-
};
|
|
679
591
|
/**
|
|
680
592
|
*
|
|
681
593
|
* @param {DashboardApiListDashboardsRequest} requestParameters Request parameters.
|
package/dist/models/index.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ export * from './create-data-report-request-dto';
|
|
|
12
12
|
export * from './create-data-report-response-class';
|
|
13
13
|
export * from './create-permission-request-dto';
|
|
14
14
|
export * from './create-role-request-dto';
|
|
15
|
-
export * from './create-tenant-db-config-request-dto';
|
|
16
15
|
export * from './create-tenant-request-dto';
|
|
17
16
|
export * from './custom-field-dto';
|
|
18
17
|
export * from './custom-schema-class';
|
|
@@ -36,7 +35,6 @@ export * from './get-custom-schema-response-class';
|
|
|
36
35
|
export * from './get-dashboard-group-response-class';
|
|
37
36
|
export * from './get-dashboard-response-class';
|
|
38
37
|
export * from './get-data-report-response-class';
|
|
39
|
-
export * from './get-embedded-url-response-class';
|
|
40
38
|
export * from './get-organization-response-class';
|
|
41
39
|
export * from './get-settings-response-class';
|
|
42
40
|
export * from './get-user-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -28,7 +28,6 @@ __exportStar(require("./create-data-report-request-dto"), exports);
|
|
|
28
28
|
__exportStar(require("./create-data-report-response-class"), exports);
|
|
29
29
|
__exportStar(require("./create-permission-request-dto"), exports);
|
|
30
30
|
__exportStar(require("./create-role-request-dto"), exports);
|
|
31
|
-
__exportStar(require("./create-tenant-db-config-request-dto"), exports);
|
|
32
31
|
__exportStar(require("./create-tenant-request-dto"), exports);
|
|
33
32
|
__exportStar(require("./custom-field-dto"), exports);
|
|
34
33
|
__exportStar(require("./custom-schema-class"), exports);
|
|
@@ -52,7 +51,6 @@ __exportStar(require("./get-custom-schema-response-class"), exports);
|
|
|
52
51
|
__exportStar(require("./get-dashboard-group-response-class"), exports);
|
|
53
52
|
__exportStar(require("./get-dashboard-response-class"), exports);
|
|
54
53
|
__exportStar(require("./get-data-report-response-class"), exports);
|
|
55
|
-
__exportStar(require("./get-embedded-url-response-class"), exports);
|
|
56
54
|
__exportStar(require("./get-organization-response-class"), exports);
|
|
57
55
|
__exportStar(require("./get-settings-response-class"), exports);
|
|
58
56
|
__exportStar(require("./get-user-response-class"), exports);
|
|
@@ -53,18 +53,6 @@ export interface InviteClass {
|
|
|
53
53
|
* @memberof InviteClass
|
|
54
54
|
*/
|
|
55
55
|
'updatedAt': string;
|
|
56
|
-
/**
|
|
57
|
-
* Identifier of the user who created the record.
|
|
58
|
-
* @type {string}
|
|
59
|
-
* @memberof InviteClass
|
|
60
|
-
*/
|
|
61
|
-
'createdBy': string;
|
|
62
|
-
/**
|
|
63
|
-
* Identifier of the user who last updated the record.
|
|
64
|
-
* @type {string}
|
|
65
|
-
* @memberof InviteClass
|
|
66
|
-
*/
|
|
67
|
-
'updatedBy': string;
|
|
68
56
|
/**
|
|
69
57
|
* Emil Resources Names (ERN) identifies the most specific owner of a resource.
|
|
70
58
|
* @type {string}
|
|
@@ -89,6 +77,18 @@ export interface InviteClass {
|
|
|
89
77
|
* @memberof InviteClass
|
|
90
78
|
*/
|
|
91
79
|
'organizationId'?: number;
|
|
80
|
+
/**
|
|
81
|
+
* Identifier of the user who created the record.
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof InviteClass
|
|
84
|
+
*/
|
|
85
|
+
'createdBy': string;
|
|
86
|
+
/**
|
|
87
|
+
* Identifier of the user who last updated the record.
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof InviteClass
|
|
90
|
+
*/
|
|
91
|
+
'updatedBy': string;
|
|
92
92
|
/**
|
|
93
93
|
* Organization associated with the user
|
|
94
94
|
* @type {OrganizationClass}
|
|
@@ -91,29 +91,29 @@ export interface UserClass {
|
|
|
91
91
|
*/
|
|
92
92
|
'updatedAt': string;
|
|
93
93
|
/**
|
|
94
|
-
*
|
|
94
|
+
* Emil Resources Names (ERN) identifies the most specific owner of a resource.
|
|
95
95
|
* @type {string}
|
|
96
96
|
* @memberof UserClass
|
|
97
97
|
*/
|
|
98
|
-
'
|
|
98
|
+
'ern': string;
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
100
|
+
* Associated partner code - only available if the partner has been invited and registered in EIS platform
|
|
101
101
|
* @type {string}
|
|
102
102
|
* @memberof UserClass
|
|
103
103
|
*/
|
|
104
|
-
'
|
|
104
|
+
'partnerCode'?: string;
|
|
105
105
|
/**
|
|
106
|
-
*
|
|
106
|
+
* Identifier of the user who created the record.
|
|
107
107
|
* @type {string}
|
|
108
108
|
* @memberof UserClass
|
|
109
109
|
*/
|
|
110
|
-
'
|
|
110
|
+
'createdBy': string;
|
|
111
111
|
/**
|
|
112
|
-
*
|
|
112
|
+
* Identifier of the user who last updated the record.
|
|
113
113
|
* @type {string}
|
|
114
114
|
* @memberof UserClass
|
|
115
115
|
*/
|
|
116
|
-
'
|
|
116
|
+
'updatedBy': string;
|
|
117
117
|
/**
|
|
118
118
|
* Organization associated with the user
|
|
119
119
|
* @type {OrganizationClass}
|
package/models/index.ts
CHANGED
|
@@ -12,7 +12,6 @@ export * from './create-data-report-request-dto';
|
|
|
12
12
|
export * from './create-data-report-response-class';
|
|
13
13
|
export * from './create-permission-request-dto';
|
|
14
14
|
export * from './create-role-request-dto';
|
|
15
|
-
export * from './create-tenant-db-config-request-dto';
|
|
16
15
|
export * from './create-tenant-request-dto';
|
|
17
16
|
export * from './custom-field-dto';
|
|
18
17
|
export * from './custom-schema-class';
|
|
@@ -36,7 +35,6 @@ export * from './get-custom-schema-response-class';
|
|
|
36
35
|
export * from './get-dashboard-group-response-class';
|
|
37
36
|
export * from './get-dashboard-response-class';
|
|
38
37
|
export * from './get-data-report-response-class';
|
|
39
|
-
export * from './get-embedded-url-response-class';
|
|
40
38
|
export * from './get-organization-response-class';
|
|
41
39
|
export * from './get-settings-response-class';
|
|
42
40
|
export * from './get-user-response-class';
|
package/models/invite-class.ts
CHANGED
|
@@ -58,18 +58,6 @@ export interface InviteClass {
|
|
|
58
58
|
* @memberof InviteClass
|
|
59
59
|
*/
|
|
60
60
|
'updatedAt': string;
|
|
61
|
-
/**
|
|
62
|
-
* Identifier of the user who created the record.
|
|
63
|
-
* @type {string}
|
|
64
|
-
* @memberof InviteClass
|
|
65
|
-
*/
|
|
66
|
-
'createdBy': string;
|
|
67
|
-
/**
|
|
68
|
-
* Identifier of the user who last updated the record.
|
|
69
|
-
* @type {string}
|
|
70
|
-
* @memberof InviteClass
|
|
71
|
-
*/
|
|
72
|
-
'updatedBy': string;
|
|
73
61
|
/**
|
|
74
62
|
* Emil Resources Names (ERN) identifies the most specific owner of a resource.
|
|
75
63
|
* @type {string}
|
|
@@ -94,6 +82,18 @@ export interface InviteClass {
|
|
|
94
82
|
* @memberof InviteClass
|
|
95
83
|
*/
|
|
96
84
|
'organizationId'?: number;
|
|
85
|
+
/**
|
|
86
|
+
* Identifier of the user who created the record.
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof InviteClass
|
|
89
|
+
*/
|
|
90
|
+
'createdBy': string;
|
|
91
|
+
/**
|
|
92
|
+
* Identifier of the user who last updated the record.
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof InviteClass
|
|
95
|
+
*/
|
|
96
|
+
'updatedBy': string;
|
|
97
97
|
/**
|
|
98
98
|
* Organization associated with the user
|
|
99
99
|
* @type {OrganizationClass}
|
package/models/user-class.ts
CHANGED
|
@@ -96,29 +96,29 @@ export interface UserClass {
|
|
|
96
96
|
*/
|
|
97
97
|
'updatedAt': string;
|
|
98
98
|
/**
|
|
99
|
-
*
|
|
99
|
+
* Emil Resources Names (ERN) identifies the most specific owner of a resource.
|
|
100
100
|
* @type {string}
|
|
101
101
|
* @memberof UserClass
|
|
102
102
|
*/
|
|
103
|
-
'
|
|
103
|
+
'ern': string;
|
|
104
104
|
/**
|
|
105
|
-
*
|
|
105
|
+
* Associated partner code - only available if the partner has been invited and registered in EIS platform
|
|
106
106
|
* @type {string}
|
|
107
107
|
* @memberof UserClass
|
|
108
108
|
*/
|
|
109
|
-
'
|
|
109
|
+
'partnerCode'?: string;
|
|
110
110
|
/**
|
|
111
|
-
*
|
|
111
|
+
* Identifier of the user who created the record.
|
|
112
112
|
* @type {string}
|
|
113
113
|
* @memberof UserClass
|
|
114
114
|
*/
|
|
115
|
-
'
|
|
115
|
+
'createdBy': string;
|
|
116
116
|
/**
|
|
117
|
-
*
|
|
117
|
+
* Identifier of the user who last updated the record.
|
|
118
118
|
* @type {string}
|
|
119
119
|
* @memberof UserClass
|
|
120
120
|
*/
|
|
121
|
-
'
|
|
121
|
+
'updatedBy': string;
|
|
122
122
|
/**
|
|
123
123
|
* Organization associated with the user
|
|
124
124
|
* @type {OrganizationClass}
|
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 CreateTenantDbConfigRequestDto
|
|
16
|
-
*/
|
|
17
|
-
export interface CreateTenantDbConfigRequestDto {
|
|
18
|
-
/**
|
|
19
|
-
* Tenant Slug
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CreateTenantDbConfigRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'tenantSlug': string;
|
|
24
|
-
/**
|
|
25
|
-
* Tenant DB Config
|
|
26
|
-
* @type {object}
|
|
27
|
-
* @memberof CreateTenantDbConfigRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'config': object;
|
|
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,24 +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 GetEmbeddedUrlResponseClass
|
|
16
|
-
*/
|
|
17
|
-
export interface GetEmbeddedUrlResponseClass {
|
|
18
|
-
/**
|
|
19
|
-
* Embedded url
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof GetEmbeddedUrlResponseClass
|
|
22
|
-
*/
|
|
23
|
-
'url': string;
|
|
24
|
-
}
|
|
@@ -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 CreateTenantDbConfigRequestDto
|
|
21
|
-
*/
|
|
22
|
-
export interface CreateTenantDbConfigRequestDto {
|
|
23
|
-
/**
|
|
24
|
-
* Tenant Slug
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof CreateTenantDbConfigRequestDto
|
|
27
|
-
*/
|
|
28
|
-
'tenantSlug': string;
|
|
29
|
-
/**
|
|
30
|
-
* Tenant DB Config
|
|
31
|
-
* @type {object}
|
|
32
|
-
* @memberof CreateTenantDbConfigRequestDto
|
|
33
|
-
*/
|
|
34
|
-
'config': object;
|
|
35
|
-
}
|
|
36
|
-
|
|
@@ -1,30 +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 GetEmbeddedUrlResponseClass
|
|
21
|
-
*/
|
|
22
|
-
export interface GetEmbeddedUrlResponseClass {
|
|
23
|
-
/**
|
|
24
|
-
* Embedded url
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof GetEmbeddedUrlResponseClass
|
|
27
|
-
*/
|
|
28
|
-
'url': string;
|
|
29
|
-
}
|
|
30
|
-
|