@emilgroup/tenant-sdk-node 1.28.0 → 1.28.1-beta.1
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 +3 -0
- package/README.md +2 -2
- package/api/custom-schema-api.ts +16 -16
- package/api/dashboard-api.ts +338 -39
- package/api/dashboard-group-api.ts +20 -20
- package/api/data-report-api.ts +16 -16
- package/api/data-report-executor-api.ts +4 -4
- package/api/delete-organization-invitations-api.ts +4 -4
- package/api/invite-organizations-api.ts +4 -4
- package/api/invite-users-api.ts +16 -16
- package/api/list-organization-invitations-api.ts +4 -4
- package/api/organizations-api.ts +12 -12
- package/api/re-invite-an-organization-api.ts +4 -4
- package/api/roles-api.ts +4 -4
- package/api/settings-api.ts +4 -4
- package/api/users-api.ts +28 -28
- package/base.ts +1 -1
- package/common.ts +2 -2
- package/configuration.ts +9 -0
- package/dist/api/custom-schema-api.d.ts +16 -16
- package/dist/api/custom-schema-api.js +16 -16
- package/dist/api/dashboard-api.d.ts +189 -34
- package/dist/api/dashboard-api.js +300 -34
- package/dist/api/dashboard-group-api.d.ts +20 -20
- package/dist/api/dashboard-group-api.js +20 -20
- package/dist/api/data-report-api.d.ts +16 -16
- package/dist/api/data-report-api.js +16 -16
- package/dist/api/data-report-executor-api.d.ts +4 -4
- package/dist/api/data-report-executor-api.js +4 -4
- package/dist/api/delete-organization-invitations-api.d.ts +4 -4
- package/dist/api/delete-organization-invitations-api.js +4 -4
- package/dist/api/invite-organizations-api.d.ts +4 -4
- package/dist/api/invite-organizations-api.js +4 -4
- package/dist/api/invite-users-api.d.ts +16 -16
- package/dist/api/invite-users-api.js +16 -16
- package/dist/api/list-organization-invitations-api.d.ts +4 -4
- package/dist/api/list-organization-invitations-api.js +4 -4
- package/dist/api/organizations-api.d.ts +12 -12
- package/dist/api/organizations-api.js +12 -12
- package/dist/api/re-invite-an-organization-api.d.ts +4 -4
- package/dist/api/re-invite-an-organization-api.js +4 -4
- package/dist/api/roles-api.d.ts +4 -4
- package/dist/api/roles-api.js +4 -4
- package/dist/api/settings-api.d.ts +4 -4
- package/dist/api/settings-api.js +4 -4
- package/dist/api/users-api.d.ts +28 -28
- package/dist/api/users-api.js +28 -28
- package/dist/base.js +1 -1
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +6 -0
- package/dist/configuration.js +8 -0
- package/dist/models/create-tenant-db-config-request-dto.d.ts +30 -0
- package/dist/models/create-tenant-db-config-request-dto.js +15 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/invite-class.d.ts +12 -12
- package/dist/models/publish-dashboard-request-dto.d.ts +34 -0
- package/dist/models/publish-dashboard-request-dto.js +19 -0
- package/dist/models/revert-analysis-request-dto.d.ts +34 -0
- package/dist/models/revert-analysis-request-dto.js +19 -0
- package/dist/models/user-class.d.ts +8 -8
- package/models/create-tenant-db-config-request-dto.ts +36 -0
- package/models/index.ts +3 -0
- package/models/invite-class.ts +12 -12
- package/models/publish-dashboard-request-dto.ts +43 -0
- package/models/revert-analysis-request-dto.ts +43 -0
- package/models/user-class.ts +8 -8
- package/package.json +1 -1
|
@@ -18,6 +18,8 @@ import { DeleteResponseClass } from '../models';
|
|
|
18
18
|
import { GetDashboardResponseClass } from '../models';
|
|
19
19
|
import { GetEmbeddedUrlResponseClass } from '../models';
|
|
20
20
|
import { ListDashboardsResponseClass } from '../models';
|
|
21
|
+
import { PublishDashboardRequestDto } from '../models';
|
|
22
|
+
import { RevertAnalysisRequestDto } from '../models';
|
|
21
23
|
import { UpdateDashboardRequestDto } from '../models';
|
|
22
24
|
import { UpdateDashboardResponseClass } from '../models';
|
|
23
25
|
/**
|
|
@@ -26,7 +28,7 @@ import { UpdateDashboardResponseClass } from '../models';
|
|
|
26
28
|
*/
|
|
27
29
|
export declare const DashboardApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
28
30
|
/**
|
|
29
|
-
*
|
|
31
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.create\"
|
|
30
32
|
* @param {CreateDashboardRequestDto} createDashboardRequestDto
|
|
31
33
|
* @param {string} [authorization] Bearer Token
|
|
32
34
|
* @param {*} [options] Override http request option.
|
|
@@ -34,7 +36,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
34
36
|
*/
|
|
35
37
|
createDashboard: (createDashboardRequestDto: CreateDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
36
38
|
/**
|
|
37
|
-
*
|
|
39
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.delete\"
|
|
38
40
|
* @param {string} code
|
|
39
41
|
* @param {string} [authorization] Bearer Token
|
|
40
42
|
* @param {*} [options] Override http request option.
|
|
@@ -42,7 +44,15 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
42
44
|
*/
|
|
43
45
|
deleteDashboard: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
44
46
|
/**
|
|
45
|
-
*
|
|
47
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
48
|
+
* @param {string} providerDashboardId
|
|
49
|
+
* @param {string} [authorization] Bearer Token
|
|
50
|
+
* @param {*} [options] Override http request option.
|
|
51
|
+
* @throws {RequiredError}
|
|
52
|
+
*/
|
|
53
|
+
getAnalysisEmbeddedUrl: (providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
54
|
+
/**
|
|
55
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
46
56
|
* @param {string} code
|
|
47
57
|
* @param {string} [authorization] Bearer Token
|
|
48
58
|
* @param {*} [options] Override http request option.
|
|
@@ -50,15 +60,15 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
50
60
|
*/
|
|
51
61
|
getDashboard: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
62
|
/**
|
|
53
|
-
*
|
|
63
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
54
64
|
* @param {string} providerDashboardId
|
|
55
65
|
* @param {string} [authorization] Bearer Token
|
|
56
66
|
* @param {*} [options] Override http request option.
|
|
57
67
|
* @throws {RequiredError}
|
|
58
68
|
*/
|
|
59
|
-
|
|
69
|
+
getDashboardEmbeddedUrl: (providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60
70
|
/**
|
|
61
|
-
*
|
|
71
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
62
72
|
* @param {string} [authorization] Bearer Token
|
|
63
73
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
64
74
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -72,7 +82,23 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
72
82
|
*/
|
|
73
83
|
listDashboards: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
74
84
|
/**
|
|
75
|
-
*
|
|
85
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
86
|
+
* @param {PublishDashboardRequestDto} publishDashboardRequestDto
|
|
87
|
+
* @param {string} [authorization] Bearer Token
|
|
88
|
+
* @param {*} [options] Override http request option.
|
|
89
|
+
* @throws {RequiredError}
|
|
90
|
+
*/
|
|
91
|
+
publishDashboard: (publishDashboardRequestDto: PublishDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
92
|
+
/**
|
|
93
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
94
|
+
* @param {RevertAnalysisRequestDto} revertAnalysisRequestDto
|
|
95
|
+
* @param {string} [authorization] Bearer Token
|
|
96
|
+
* @param {*} [options] Override http request option.
|
|
97
|
+
* @throws {RequiredError}
|
|
98
|
+
*/
|
|
99
|
+
revertAnalysis: (revertAnalysisRequestDto: RevertAnalysisRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
100
|
+
/**
|
|
101
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
76
102
|
* @param {string} code
|
|
77
103
|
* @param {UpdateDashboardRequestDto} updateDashboardRequestDto
|
|
78
104
|
* @param {string} [authorization] Bearer Token
|
|
@@ -87,7 +113,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
87
113
|
*/
|
|
88
114
|
export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
89
115
|
/**
|
|
90
|
-
*
|
|
116
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.create\"
|
|
91
117
|
* @param {CreateDashboardRequestDto} createDashboardRequestDto
|
|
92
118
|
* @param {string} [authorization] Bearer Token
|
|
93
119
|
* @param {*} [options] Override http request option.
|
|
@@ -95,7 +121,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
95
121
|
*/
|
|
96
122
|
createDashboard(createDashboardRequestDto: CreateDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateDashboardResponseClass>>;
|
|
97
123
|
/**
|
|
98
|
-
*
|
|
124
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.delete\"
|
|
99
125
|
* @param {string} code
|
|
100
126
|
* @param {string} [authorization] Bearer Token
|
|
101
127
|
* @param {*} [options] Override http request option.
|
|
@@ -103,7 +129,15 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
103
129
|
*/
|
|
104
130
|
deleteDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteResponseClass>>;
|
|
105
131
|
/**
|
|
106
|
-
*
|
|
132
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
133
|
+
* @param {string} providerDashboardId
|
|
134
|
+
* @param {string} [authorization] Bearer Token
|
|
135
|
+
* @param {*} [options] Override http request option.
|
|
136
|
+
* @throws {RequiredError}
|
|
137
|
+
*/
|
|
138
|
+
getAnalysisEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEmbeddedUrlResponseClass>>;
|
|
139
|
+
/**
|
|
140
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
107
141
|
* @param {string} code
|
|
108
142
|
* @param {string} [authorization] Bearer Token
|
|
109
143
|
* @param {*} [options] Override http request option.
|
|
@@ -111,15 +145,15 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
111
145
|
*/
|
|
112
146
|
getDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDashboardResponseClass>>;
|
|
113
147
|
/**
|
|
114
|
-
*
|
|
148
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
115
149
|
* @param {string} providerDashboardId
|
|
116
150
|
* @param {string} [authorization] Bearer Token
|
|
117
151
|
* @param {*} [options] Override http request option.
|
|
118
152
|
* @throws {RequiredError}
|
|
119
153
|
*/
|
|
120
|
-
|
|
154
|
+
getDashboardEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEmbeddedUrlResponseClass>>;
|
|
121
155
|
/**
|
|
122
|
-
*
|
|
156
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
123
157
|
* @param {string} [authorization] Bearer Token
|
|
124
158
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
125
159
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -133,7 +167,23 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
133
167
|
*/
|
|
134
168
|
listDashboards(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListDashboardsResponseClass>>;
|
|
135
169
|
/**
|
|
136
|
-
*
|
|
170
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
171
|
+
* @param {PublishDashboardRequestDto} publishDashboardRequestDto
|
|
172
|
+
* @param {string} [authorization] Bearer Token
|
|
173
|
+
* @param {*} [options] Override http request option.
|
|
174
|
+
* @throws {RequiredError}
|
|
175
|
+
*/
|
|
176
|
+
publishDashboard(publishDashboardRequestDto: PublishDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
177
|
+
/**
|
|
178
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
179
|
+
* @param {RevertAnalysisRequestDto} revertAnalysisRequestDto
|
|
180
|
+
* @param {string} [authorization] Bearer Token
|
|
181
|
+
* @param {*} [options] Override http request option.
|
|
182
|
+
* @throws {RequiredError}
|
|
183
|
+
*/
|
|
184
|
+
revertAnalysis(revertAnalysisRequestDto: RevertAnalysisRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
185
|
+
/**
|
|
186
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
137
187
|
* @param {string} code
|
|
138
188
|
* @param {UpdateDashboardRequestDto} updateDashboardRequestDto
|
|
139
189
|
* @param {string} [authorization] Bearer Token
|
|
@@ -148,7 +198,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
148
198
|
*/
|
|
149
199
|
export declare const DashboardApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
150
200
|
/**
|
|
151
|
-
*
|
|
201
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.create\"
|
|
152
202
|
* @param {CreateDashboardRequestDto} createDashboardRequestDto
|
|
153
203
|
* @param {string} [authorization] Bearer Token
|
|
154
204
|
* @param {*} [options] Override http request option.
|
|
@@ -156,7 +206,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
156
206
|
*/
|
|
157
207
|
createDashboard(createDashboardRequestDto: CreateDashboardRequestDto, authorization?: string, options?: any): AxiosPromise<CreateDashboardResponseClass>;
|
|
158
208
|
/**
|
|
159
|
-
*
|
|
209
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.delete\"
|
|
160
210
|
* @param {string} code
|
|
161
211
|
* @param {string} [authorization] Bearer Token
|
|
162
212
|
* @param {*} [options] Override http request option.
|
|
@@ -164,7 +214,15 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
164
214
|
*/
|
|
165
215
|
deleteDashboard(code: string, authorization?: string, options?: any): AxiosPromise<DeleteResponseClass>;
|
|
166
216
|
/**
|
|
167
|
-
*
|
|
217
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
218
|
+
* @param {string} providerDashboardId
|
|
219
|
+
* @param {string} [authorization] Bearer Token
|
|
220
|
+
* @param {*} [options] Override http request option.
|
|
221
|
+
* @throws {RequiredError}
|
|
222
|
+
*/
|
|
223
|
+
getAnalysisEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: any): AxiosPromise<GetEmbeddedUrlResponseClass>;
|
|
224
|
+
/**
|
|
225
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
168
226
|
* @param {string} code
|
|
169
227
|
* @param {string} [authorization] Bearer Token
|
|
170
228
|
* @param {*} [options] Override http request option.
|
|
@@ -172,15 +230,15 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
172
230
|
*/
|
|
173
231
|
getDashboard(code: string, authorization?: string, options?: any): AxiosPromise<GetDashboardResponseClass>;
|
|
174
232
|
/**
|
|
175
|
-
*
|
|
233
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
176
234
|
* @param {string} providerDashboardId
|
|
177
235
|
* @param {string} [authorization] Bearer Token
|
|
178
236
|
* @param {*} [options] Override http request option.
|
|
179
237
|
* @throws {RequiredError}
|
|
180
238
|
*/
|
|
181
|
-
|
|
239
|
+
getDashboardEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: any): AxiosPromise<GetEmbeddedUrlResponseClass>;
|
|
182
240
|
/**
|
|
183
|
-
*
|
|
241
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
184
242
|
* @param {string} [authorization] Bearer Token
|
|
185
243
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
186
244
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -194,7 +252,23 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
194
252
|
*/
|
|
195
253
|
listDashboards(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: any): AxiosPromise<ListDashboardsResponseClass>;
|
|
196
254
|
/**
|
|
197
|
-
*
|
|
255
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
256
|
+
* @param {PublishDashboardRequestDto} publishDashboardRequestDto
|
|
257
|
+
* @param {string} [authorization] Bearer Token
|
|
258
|
+
* @param {*} [options] Override http request option.
|
|
259
|
+
* @throws {RequiredError}
|
|
260
|
+
*/
|
|
261
|
+
publishDashboard(publishDashboardRequestDto: PublishDashboardRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
262
|
+
/**
|
|
263
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
264
|
+
* @param {RevertAnalysisRequestDto} revertAnalysisRequestDto
|
|
265
|
+
* @param {string} [authorization] Bearer Token
|
|
266
|
+
* @param {*} [options] Override http request option.
|
|
267
|
+
* @throws {RequiredError}
|
|
268
|
+
*/
|
|
269
|
+
revertAnalysis(revertAnalysisRequestDto: RevertAnalysisRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
270
|
+
/**
|
|
271
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
198
272
|
* @param {string} code
|
|
199
273
|
* @param {UpdateDashboardRequestDto} updateDashboardRequestDto
|
|
200
274
|
* @param {string} [authorization] Bearer Token
|
|
@@ -241,6 +315,25 @@ export interface DashboardApiDeleteDashboardRequest {
|
|
|
241
315
|
*/
|
|
242
316
|
readonly authorization?: string;
|
|
243
317
|
}
|
|
318
|
+
/**
|
|
319
|
+
* Request parameters for getAnalysisEmbeddedUrl operation in DashboardApi.
|
|
320
|
+
* @export
|
|
321
|
+
* @interface DashboardApiGetAnalysisEmbeddedUrlRequest
|
|
322
|
+
*/
|
|
323
|
+
export interface DashboardApiGetAnalysisEmbeddedUrlRequest {
|
|
324
|
+
/**
|
|
325
|
+
*
|
|
326
|
+
* @type {string}
|
|
327
|
+
* @memberof DashboardApiGetAnalysisEmbeddedUrl
|
|
328
|
+
*/
|
|
329
|
+
readonly providerDashboardId: string;
|
|
330
|
+
/**
|
|
331
|
+
* Bearer Token
|
|
332
|
+
* @type {string}
|
|
333
|
+
* @memberof DashboardApiGetAnalysisEmbeddedUrl
|
|
334
|
+
*/
|
|
335
|
+
readonly authorization?: string;
|
|
336
|
+
}
|
|
244
337
|
/**
|
|
245
338
|
* Request parameters for getDashboard operation in DashboardApi.
|
|
246
339
|
* @export
|
|
@@ -261,21 +354,21 @@ export interface DashboardApiGetDashboardRequest {
|
|
|
261
354
|
readonly authorization?: string;
|
|
262
355
|
}
|
|
263
356
|
/**
|
|
264
|
-
* Request parameters for
|
|
357
|
+
* Request parameters for getDashboardEmbeddedUrl operation in DashboardApi.
|
|
265
358
|
* @export
|
|
266
|
-
* @interface
|
|
359
|
+
* @interface DashboardApiGetDashboardEmbeddedUrlRequest
|
|
267
360
|
*/
|
|
268
|
-
export interface
|
|
361
|
+
export interface DashboardApiGetDashboardEmbeddedUrlRequest {
|
|
269
362
|
/**
|
|
270
363
|
*
|
|
271
364
|
* @type {string}
|
|
272
|
-
* @memberof
|
|
365
|
+
* @memberof DashboardApiGetDashboardEmbeddedUrl
|
|
273
366
|
*/
|
|
274
367
|
readonly providerDashboardId: string;
|
|
275
368
|
/**
|
|
276
369
|
* Bearer Token
|
|
277
370
|
* @type {string}
|
|
278
|
-
* @memberof
|
|
371
|
+
* @memberof DashboardApiGetDashboardEmbeddedUrl
|
|
279
372
|
*/
|
|
280
373
|
readonly authorization?: string;
|
|
281
374
|
}
|
|
@@ -334,6 +427,44 @@ export interface DashboardApiListDashboardsRequest {
|
|
|
334
427
|
*/
|
|
335
428
|
readonly filters?: any;
|
|
336
429
|
}
|
|
430
|
+
/**
|
|
431
|
+
* Request parameters for publishDashboard operation in DashboardApi.
|
|
432
|
+
* @export
|
|
433
|
+
* @interface DashboardApiPublishDashboardRequest
|
|
434
|
+
*/
|
|
435
|
+
export interface DashboardApiPublishDashboardRequest {
|
|
436
|
+
/**
|
|
437
|
+
*
|
|
438
|
+
* @type {PublishDashboardRequestDto}
|
|
439
|
+
* @memberof DashboardApiPublishDashboard
|
|
440
|
+
*/
|
|
441
|
+
readonly publishDashboardRequestDto: PublishDashboardRequestDto;
|
|
442
|
+
/**
|
|
443
|
+
* Bearer Token
|
|
444
|
+
* @type {string}
|
|
445
|
+
* @memberof DashboardApiPublishDashboard
|
|
446
|
+
*/
|
|
447
|
+
readonly authorization?: string;
|
|
448
|
+
}
|
|
449
|
+
/**
|
|
450
|
+
* Request parameters for revertAnalysis operation in DashboardApi.
|
|
451
|
+
* @export
|
|
452
|
+
* @interface DashboardApiRevertAnalysisRequest
|
|
453
|
+
*/
|
|
454
|
+
export interface DashboardApiRevertAnalysisRequest {
|
|
455
|
+
/**
|
|
456
|
+
*
|
|
457
|
+
* @type {RevertAnalysisRequestDto}
|
|
458
|
+
* @memberof DashboardApiRevertAnalysis
|
|
459
|
+
*/
|
|
460
|
+
readonly revertAnalysisRequestDto: RevertAnalysisRequestDto;
|
|
461
|
+
/**
|
|
462
|
+
* Bearer Token
|
|
463
|
+
* @type {string}
|
|
464
|
+
* @memberof DashboardApiRevertAnalysis
|
|
465
|
+
*/
|
|
466
|
+
readonly authorization?: string;
|
|
467
|
+
}
|
|
337
468
|
/**
|
|
338
469
|
* Request parameters for updateDashboard operation in DashboardApi.
|
|
339
470
|
* @export
|
|
@@ -367,7 +498,7 @@ export interface DashboardApiUpdateDashboardRequest {
|
|
|
367
498
|
*/
|
|
368
499
|
export declare class DashboardApi extends BaseAPI {
|
|
369
500
|
/**
|
|
370
|
-
*
|
|
501
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.create\"
|
|
371
502
|
* @param {DashboardApiCreateDashboardRequest} requestParameters Request parameters.
|
|
372
503
|
* @param {*} [options] Override http request option.
|
|
373
504
|
* @throws {RequiredError}
|
|
@@ -375,7 +506,7 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
375
506
|
*/
|
|
376
507
|
createDashboard(requestParameters: DashboardApiCreateDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateDashboardResponseClass, any>>;
|
|
377
508
|
/**
|
|
378
|
-
*
|
|
509
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.delete\"
|
|
379
510
|
* @param {DashboardApiDeleteDashboardRequest} requestParameters Request parameters.
|
|
380
511
|
* @param {*} [options] Override http request option.
|
|
381
512
|
* @throws {RequiredError}
|
|
@@ -383,7 +514,15 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
383
514
|
*/
|
|
384
515
|
deleteDashboard(requestParameters: DashboardApiDeleteDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any>>;
|
|
385
516
|
/**
|
|
386
|
-
*
|
|
517
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
518
|
+
* @param {DashboardApiGetAnalysisEmbeddedUrlRequest} requestParameters Request parameters.
|
|
519
|
+
* @param {*} [options] Override http request option.
|
|
520
|
+
* @throws {RequiredError}
|
|
521
|
+
* @memberof DashboardApi
|
|
522
|
+
*/
|
|
523
|
+
getAnalysisEmbeddedUrl(requestParameters: DashboardApiGetAnalysisEmbeddedUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEmbeddedUrlResponseClass, any>>;
|
|
524
|
+
/**
|
|
525
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
387
526
|
* @param {DashboardApiGetDashboardRequest} requestParameters Request parameters.
|
|
388
527
|
* @param {*} [options] Override http request option.
|
|
389
528
|
* @throws {RequiredError}
|
|
@@ -391,15 +530,15 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
391
530
|
*/
|
|
392
531
|
getDashboard(requestParameters: DashboardApiGetDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDashboardResponseClass, any>>;
|
|
393
532
|
/**
|
|
394
|
-
*
|
|
395
|
-
* @param {
|
|
533
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
534
|
+
* @param {DashboardApiGetDashboardEmbeddedUrlRequest} requestParameters Request parameters.
|
|
396
535
|
* @param {*} [options] Override http request option.
|
|
397
536
|
* @throws {RequiredError}
|
|
398
537
|
* @memberof DashboardApi
|
|
399
538
|
*/
|
|
400
|
-
|
|
539
|
+
getDashboardEmbeddedUrl(requestParameters: DashboardApiGetDashboardEmbeddedUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEmbeddedUrlResponseClass, any>>;
|
|
401
540
|
/**
|
|
402
|
-
*
|
|
541
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
403
542
|
* @param {DashboardApiListDashboardsRequest} requestParameters Request parameters.
|
|
404
543
|
* @param {*} [options] Override http request option.
|
|
405
544
|
* @throws {RequiredError}
|
|
@@ -407,7 +546,23 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
407
546
|
*/
|
|
408
547
|
listDashboards(requestParameters?: DashboardApiListDashboardsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListDashboardsResponseClass, any>>;
|
|
409
548
|
/**
|
|
410
|
-
*
|
|
549
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
550
|
+
* @param {DashboardApiPublishDashboardRequest} requestParameters Request parameters.
|
|
551
|
+
* @param {*} [options] Override http request option.
|
|
552
|
+
* @throws {RequiredError}
|
|
553
|
+
* @memberof DashboardApi
|
|
554
|
+
*/
|
|
555
|
+
publishDashboard(requestParameters: DashboardApiPublishDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
556
|
+
/**
|
|
557
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
558
|
+
* @param {DashboardApiRevertAnalysisRequest} requestParameters Request parameters.
|
|
559
|
+
* @param {*} [options] Override http request option.
|
|
560
|
+
* @throws {RequiredError}
|
|
561
|
+
* @memberof DashboardApi
|
|
562
|
+
*/
|
|
563
|
+
revertAnalysis(requestParameters: DashboardApiRevertAnalysisRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
564
|
+
/**
|
|
565
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
411
566
|
* @param {DashboardApiUpdateDashboardRequest} requestParameters Request parameters.
|
|
412
567
|
* @param {*} [options] Override http request option.
|
|
413
568
|
* @throws {RequiredError}
|