@emilgroup/tenant-sdk-node 1.28.1-beta.0 → 1.28.1-beta.2

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.
@@ -28,7 +28,7 @@ import { UpdateDashboardResponseClass } from '../models';
28
28
  */
29
29
  export declare const DashboardApiAxiosParamCreator: (configuration?: Configuration) => {
30
30
  /**
31
- * undefined **Required Permissions** \"pbm-management.dashboards.create\"
31
+ * undefined **Required Permissions** \"reporting.dashboards.create\"
32
32
  * @param {CreateDashboardRequestDto} createDashboardRequestDto
33
33
  * @param {string} [authorization] Bearer Token
34
34
  * @param {*} [options] Override http request option.
@@ -36,7 +36,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
36
36
  */
37
37
  createDashboard: (createDashboardRequestDto: CreateDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
38
38
  /**
39
- * undefined **Required Permissions** \"pbm-management.dashboards.delete\"
39
+ * undefined **Required Permissions** \"reporting.dashboards.delete\"
40
40
  * @param {string} code
41
41
  * @param {string} [authorization] Bearer Token
42
42
  * @param {*} [options] Override http request option.
@@ -44,7 +44,15 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
44
44
  */
45
45
  deleteDashboard: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
46
46
  /**
47
- * undefined **Required Permissions** \"pbm-management.dashboards.view\"
47
+ * undefined **Required Permissions** \"reporting.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** \"reporting.dashboards.view\"
48
56
  * @param {string} code
49
57
  * @param {string} [authorization] Bearer Token
50
58
  * @param {*} [options] Override http request option.
@@ -52,29 +60,29 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
52
60
  */
53
61
  getDashboard: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
54
62
  /**
55
- * undefined **Required Permissions** \"pbm-management.dashboards.view\"
63
+ * undefined **Required Permissions** \"reporting.dashboards.view\"
56
64
  * @param {string} providerDashboardId
57
65
  * @param {string} [authorization] Bearer Token
58
66
  * @param {*} [options] Override http request option.
59
67
  * @throws {RequiredError}
60
68
  */
61
- getEmbeddedUrl: (providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
69
+ getDashboardEmbeddedUrl: (providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
62
70
  /**
63
- * undefined **Required Permissions** \"pbm-management.dashboards.view\"
71
+ * undefined **Required Permissions** \"reporting.dashboards.view\"
64
72
  * @param {string} [authorization] Bearer Token
65
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
66
- * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
67
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
68
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
69
- * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
70
- * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
71
- * @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
73
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
74
+ * @param {string} [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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
75
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
76
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
77
+ * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
78
+ * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
79
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
72
80
  * @param {*} [options] Override http request option.
73
81
  * @throws {RequiredError}
74
82
  */
75
- listDashboards: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
83
+ listDashboards: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
76
84
  /**
77
- * undefined **Required Permissions** \"pbm-management.dashboards.update\"
85
+ * undefined **Required Permissions** \"reporting.dashboards.update\"
78
86
  * @param {PublishDashboardRequestDto} publishDashboardRequestDto
79
87
  * @param {string} [authorization] Bearer Token
80
88
  * @param {*} [options] Override http request option.
@@ -82,7 +90,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
82
90
  */
83
91
  publishDashboard: (publishDashboardRequestDto: PublishDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
84
92
  /**
85
- * undefined **Required Permissions** \"pbm-management.dashboards.update\"
93
+ * undefined **Required Permissions** \"reporting.dashboards.update\"
86
94
  * @param {RevertAnalysisRequestDto} revertAnalysisRequestDto
87
95
  * @param {string} [authorization] Bearer Token
88
96
  * @param {*} [options] Override http request option.
@@ -90,7 +98,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
90
98
  */
91
99
  revertAnalysis: (revertAnalysisRequestDto: RevertAnalysisRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
92
100
  /**
93
- * undefined **Required Permissions** \"pbm-management.dashboards.update\"
101
+ * undefined **Required Permissions** \"reporting.dashboards.update\"
94
102
  * @param {string} code
95
103
  * @param {UpdateDashboardRequestDto} updateDashboardRequestDto
96
104
  * @param {string} [authorization] Bearer Token
@@ -105,7 +113,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
105
113
  */
106
114
  export declare const DashboardApiFp: (configuration?: Configuration) => {
107
115
  /**
108
- * undefined **Required Permissions** \"pbm-management.dashboards.create\"
116
+ * undefined **Required Permissions** \"reporting.dashboards.create\"
109
117
  * @param {CreateDashboardRequestDto} createDashboardRequestDto
110
118
  * @param {string} [authorization] Bearer Token
111
119
  * @param {*} [options] Override http request option.
@@ -113,7 +121,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
113
121
  */
114
122
  createDashboard(createDashboardRequestDto: CreateDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateDashboardResponseClass>>;
115
123
  /**
116
- * undefined **Required Permissions** \"pbm-management.dashboards.delete\"
124
+ * undefined **Required Permissions** \"reporting.dashboards.delete\"
117
125
  * @param {string} code
118
126
  * @param {string} [authorization] Bearer Token
119
127
  * @param {*} [options] Override http request option.
@@ -121,7 +129,15 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
121
129
  */
122
130
  deleteDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteResponseClass>>;
123
131
  /**
124
- * undefined **Required Permissions** \"pbm-management.dashboards.view\"
132
+ * undefined **Required Permissions** \"reporting.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** \"reporting.dashboards.view\"
125
141
  * @param {string} code
126
142
  * @param {string} [authorization] Bearer Token
127
143
  * @param {*} [options] Override http request option.
@@ -129,29 +145,29 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
129
145
  */
130
146
  getDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDashboardResponseClass>>;
131
147
  /**
132
- * undefined **Required Permissions** \"pbm-management.dashboards.view\"
148
+ * undefined **Required Permissions** \"reporting.dashboards.view\"
133
149
  * @param {string} providerDashboardId
134
150
  * @param {string} [authorization] Bearer Token
135
151
  * @param {*} [options] Override http request option.
136
152
  * @throws {RequiredError}
137
153
  */
138
- getEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEmbeddedUrlResponseClass>>;
154
+ getDashboardEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEmbeddedUrlResponseClass>>;
139
155
  /**
140
- * undefined **Required Permissions** \"pbm-management.dashboards.view\"
156
+ * undefined **Required Permissions** \"reporting.dashboards.view\"
141
157
  * @param {string} [authorization] Bearer Token
142
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
143
- * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
144
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
145
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
146
- * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
147
- * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
148
- * @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
158
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
159
+ * @param {string} [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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
160
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
161
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
162
+ * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
163
+ * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
164
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
149
165
  * @param {*} [options] Override http request option.
150
166
  * @throws {RequiredError}
151
167
  */
152
- 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>>;
168
+ listDashboards(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListDashboardsResponseClass>>;
153
169
  /**
154
- * undefined **Required Permissions** \"pbm-management.dashboards.update\"
170
+ * undefined **Required Permissions** \"reporting.dashboards.update\"
155
171
  * @param {PublishDashboardRequestDto} publishDashboardRequestDto
156
172
  * @param {string} [authorization] Bearer Token
157
173
  * @param {*} [options] Override http request option.
@@ -159,7 +175,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
159
175
  */
160
176
  publishDashboard(publishDashboardRequestDto: PublishDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
161
177
  /**
162
- * undefined **Required Permissions** \"pbm-management.dashboards.update\"
178
+ * undefined **Required Permissions** \"reporting.dashboards.update\"
163
179
  * @param {RevertAnalysisRequestDto} revertAnalysisRequestDto
164
180
  * @param {string} [authorization] Bearer Token
165
181
  * @param {*} [options] Override http request option.
@@ -167,7 +183,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
167
183
  */
168
184
  revertAnalysis(revertAnalysisRequestDto: RevertAnalysisRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
169
185
  /**
170
- * undefined **Required Permissions** \"pbm-management.dashboards.update\"
186
+ * undefined **Required Permissions** \"reporting.dashboards.update\"
171
187
  * @param {string} code
172
188
  * @param {UpdateDashboardRequestDto} updateDashboardRequestDto
173
189
  * @param {string} [authorization] Bearer Token
@@ -182,7 +198,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
182
198
  */
183
199
  export declare const DashboardApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
184
200
  /**
185
- * undefined **Required Permissions** \"pbm-management.dashboards.create\"
201
+ * undefined **Required Permissions** \"reporting.dashboards.create\"
186
202
  * @param {CreateDashboardRequestDto} createDashboardRequestDto
187
203
  * @param {string} [authorization] Bearer Token
188
204
  * @param {*} [options] Override http request option.
@@ -190,7 +206,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
190
206
  */
191
207
  createDashboard(createDashboardRequestDto: CreateDashboardRequestDto, authorization?: string, options?: any): AxiosPromise<CreateDashboardResponseClass>;
192
208
  /**
193
- * undefined **Required Permissions** \"pbm-management.dashboards.delete\"
209
+ * undefined **Required Permissions** \"reporting.dashboards.delete\"
194
210
  * @param {string} code
195
211
  * @param {string} [authorization] Bearer Token
196
212
  * @param {*} [options] Override http request option.
@@ -198,7 +214,15 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
198
214
  */
199
215
  deleteDashboard(code: string, authorization?: string, options?: any): AxiosPromise<DeleteResponseClass>;
200
216
  /**
201
- * undefined **Required Permissions** \"pbm-management.dashboards.view\"
217
+ * undefined **Required Permissions** \"reporting.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** \"reporting.dashboards.view\"
202
226
  * @param {string} code
203
227
  * @param {string} [authorization] Bearer Token
204
228
  * @param {*} [options] Override http request option.
@@ -206,29 +230,29 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
206
230
  */
207
231
  getDashboard(code: string, authorization?: string, options?: any): AxiosPromise<GetDashboardResponseClass>;
208
232
  /**
209
- * undefined **Required Permissions** \"pbm-management.dashboards.view\"
233
+ * undefined **Required Permissions** \"reporting.dashboards.view\"
210
234
  * @param {string} providerDashboardId
211
235
  * @param {string} [authorization] Bearer Token
212
236
  * @param {*} [options] Override http request option.
213
237
  * @throws {RequiredError}
214
238
  */
215
- getEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: any): AxiosPromise<GetEmbeddedUrlResponseClass>;
239
+ getDashboardEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: any): AxiosPromise<GetEmbeddedUrlResponseClass>;
216
240
  /**
217
- * undefined **Required Permissions** \"pbm-management.dashboards.view\"
241
+ * undefined **Required Permissions** \"reporting.dashboards.view\"
218
242
  * @param {string} [authorization] Bearer Token
219
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
220
- * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
221
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
222
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
223
- * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
224
- * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
225
- * @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
243
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
244
+ * @param {string} [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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
245
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
246
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
247
+ * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
248
+ * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
249
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
226
250
  * @param {*} [options] Override http request option.
227
251
  * @throws {RequiredError}
228
252
  */
229
- listDashboards(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: any): AxiosPromise<ListDashboardsResponseClass>;
253
+ listDashboards(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListDashboardsResponseClass>;
230
254
  /**
231
- * undefined **Required Permissions** \"pbm-management.dashboards.update\"
255
+ * undefined **Required Permissions** \"reporting.dashboards.update\"
232
256
  * @param {PublishDashboardRequestDto} publishDashboardRequestDto
233
257
  * @param {string} [authorization] Bearer Token
234
258
  * @param {*} [options] Override http request option.
@@ -236,7 +260,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
236
260
  */
237
261
  publishDashboard(publishDashboardRequestDto: PublishDashboardRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
238
262
  /**
239
- * undefined **Required Permissions** \"pbm-management.dashboards.update\"
263
+ * undefined **Required Permissions** \"reporting.dashboards.update\"
240
264
  * @param {RevertAnalysisRequestDto} revertAnalysisRequestDto
241
265
  * @param {string} [authorization] Bearer Token
242
266
  * @param {*} [options] Override http request option.
@@ -244,7 +268,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
244
268
  */
245
269
  revertAnalysis(revertAnalysisRequestDto: RevertAnalysisRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
246
270
  /**
247
- * undefined **Required Permissions** \"pbm-management.dashboards.update\"
271
+ * undefined **Required Permissions** \"reporting.dashboards.update\"
248
272
  * @param {string} code
249
273
  * @param {UpdateDashboardRequestDto} updateDashboardRequestDto
250
274
  * @param {string} [authorization] Bearer Token
@@ -291,6 +315,25 @@ export interface DashboardApiDeleteDashboardRequest {
291
315
  */
292
316
  readonly authorization?: string;
293
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
+ }
294
337
  /**
295
338
  * Request parameters for getDashboard operation in DashboardApi.
296
339
  * @export
@@ -311,21 +354,21 @@ export interface DashboardApiGetDashboardRequest {
311
354
  readonly authorization?: string;
312
355
  }
313
356
  /**
314
- * Request parameters for getEmbeddedUrl operation in DashboardApi.
357
+ * Request parameters for getDashboardEmbeddedUrl operation in DashboardApi.
315
358
  * @export
316
- * @interface DashboardApiGetEmbeddedUrlRequest
359
+ * @interface DashboardApiGetDashboardEmbeddedUrlRequest
317
360
  */
318
- export interface DashboardApiGetEmbeddedUrlRequest {
361
+ export interface DashboardApiGetDashboardEmbeddedUrlRequest {
319
362
  /**
320
363
  *
321
364
  * @type {string}
322
- * @memberof DashboardApiGetEmbeddedUrl
365
+ * @memberof DashboardApiGetDashboardEmbeddedUrl
323
366
  */
324
367
  readonly providerDashboardId: string;
325
368
  /**
326
369
  * Bearer Token
327
370
  * @type {string}
328
- * @memberof DashboardApiGetEmbeddedUrl
371
+ * @memberof DashboardApiGetDashboardEmbeddedUrl
329
372
  */
330
373
  readonly authorization?: string;
331
374
  }
@@ -343,46 +386,46 @@ export interface DashboardApiListDashboardsRequest {
343
386
  readonly authorization?: string;
344
387
  /**
345
388
  * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
346
- * @type {any}
389
+ * @type {number}
347
390
  * @memberof DashboardApiListDashboards
348
391
  */
349
- readonly pageSize?: any;
392
+ readonly pageSize?: number;
350
393
  /**
351
- * 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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
352
- * @type {any}
394
+ * 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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
395
+ * @type {string}
353
396
  * @memberof DashboardApiListDashboards
354
397
  */
355
- readonly pageToken?: any;
398
+ readonly pageToken?: string;
356
399
  /**
357
400
  * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
358
- * @type {any}
401
+ * @type {string}
359
402
  * @memberof DashboardApiListDashboards
360
403
  */
361
- readonly filter?: any;
404
+ readonly filter?: string;
362
405
  /**
363
406
  * To search the list by any field, pass search&#x3D;xxx to fetch the result.
364
- * @type {any}
407
+ * @type {string}
365
408
  * @memberof DashboardApiListDashboards
366
409
  */
367
- readonly search?: any;
410
+ readonly search?: string;
368
411
  /**
369
412
  * The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
370
- * @type {any}
413
+ * @type {string}
371
414
  * @memberof DashboardApiListDashboards
372
415
  */
373
- readonly order?: any;
416
+ readonly order?: string;
374
417
  /**
375
- * Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
376
- * @type {any}
418
+ * Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
419
+ * @type {string}
377
420
  * @memberof DashboardApiListDashboards
378
421
  */
379
- readonly expand?: any;
422
+ readonly expand?: string;
380
423
  /**
381
424
  * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
382
- * @type {any}
425
+ * @type {string}
383
426
  * @memberof DashboardApiListDashboards
384
427
  */
385
- readonly filters?: any;
428
+ readonly filters?: string;
386
429
  }
387
430
  /**
388
431
  * Request parameters for publishDashboard operation in DashboardApi.
@@ -455,7 +498,7 @@ export interface DashboardApiUpdateDashboardRequest {
455
498
  */
456
499
  export declare class DashboardApi extends BaseAPI {
457
500
  /**
458
- * undefined **Required Permissions** \"pbm-management.dashboards.create\"
501
+ * undefined **Required Permissions** \"reporting.dashboards.create\"
459
502
  * @param {DashboardApiCreateDashboardRequest} requestParameters Request parameters.
460
503
  * @param {*} [options] Override http request option.
461
504
  * @throws {RequiredError}
@@ -463,7 +506,7 @@ export declare class DashboardApi extends BaseAPI {
463
506
  */
464
507
  createDashboard(requestParameters: DashboardApiCreateDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateDashboardResponseClass, any>>;
465
508
  /**
466
- * undefined **Required Permissions** \"pbm-management.dashboards.delete\"
509
+ * undefined **Required Permissions** \"reporting.dashboards.delete\"
467
510
  * @param {DashboardApiDeleteDashboardRequest} requestParameters Request parameters.
468
511
  * @param {*} [options] Override http request option.
469
512
  * @throws {RequiredError}
@@ -471,7 +514,15 @@ export declare class DashboardApi extends BaseAPI {
471
514
  */
472
515
  deleteDashboard(requestParameters: DashboardApiDeleteDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any>>;
473
516
  /**
474
- * undefined **Required Permissions** \"pbm-management.dashboards.view\"
517
+ * undefined **Required Permissions** \"reporting.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** \"reporting.dashboards.view\"
475
526
  * @param {DashboardApiGetDashboardRequest} requestParameters Request parameters.
476
527
  * @param {*} [options] Override http request option.
477
528
  * @throws {RequiredError}
@@ -479,15 +530,15 @@ export declare class DashboardApi extends BaseAPI {
479
530
  */
480
531
  getDashboard(requestParameters: DashboardApiGetDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDashboardResponseClass, any>>;
481
532
  /**
482
- * undefined **Required Permissions** \"pbm-management.dashboards.view\"
483
- * @param {DashboardApiGetEmbeddedUrlRequest} requestParameters Request parameters.
533
+ * undefined **Required Permissions** \"reporting.dashboards.view\"
534
+ * @param {DashboardApiGetDashboardEmbeddedUrlRequest} requestParameters Request parameters.
484
535
  * @param {*} [options] Override http request option.
485
536
  * @throws {RequiredError}
486
537
  * @memberof DashboardApi
487
538
  */
488
- getEmbeddedUrl(requestParameters: DashboardApiGetEmbeddedUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEmbeddedUrlResponseClass, any>>;
539
+ getDashboardEmbeddedUrl(requestParameters: DashboardApiGetDashboardEmbeddedUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEmbeddedUrlResponseClass, any>>;
489
540
  /**
490
- * undefined **Required Permissions** \"pbm-management.dashboards.view\"
541
+ * undefined **Required Permissions** \"reporting.dashboards.view\"
491
542
  * @param {DashboardApiListDashboardsRequest} requestParameters Request parameters.
492
543
  * @param {*} [options] Override http request option.
493
544
  * @throws {RequiredError}
@@ -495,7 +546,7 @@ export declare class DashboardApi extends BaseAPI {
495
546
  */
496
547
  listDashboards(requestParameters?: DashboardApiListDashboardsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListDashboardsResponseClass, any>>;
497
548
  /**
498
- * undefined **Required Permissions** \"pbm-management.dashboards.update\"
549
+ * undefined **Required Permissions** \"reporting.dashboards.update\"
499
550
  * @param {DashboardApiPublishDashboardRequest} requestParameters Request parameters.
500
551
  * @param {*} [options] Override http request option.
501
552
  * @throws {RequiredError}
@@ -503,7 +554,7 @@ export declare class DashboardApi extends BaseAPI {
503
554
  */
504
555
  publishDashboard(requestParameters: DashboardApiPublishDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
505
556
  /**
506
- * undefined **Required Permissions** \"pbm-management.dashboards.update\"
557
+ * undefined **Required Permissions** \"reporting.dashboards.update\"
507
558
  * @param {DashboardApiRevertAnalysisRequest} requestParameters Request parameters.
508
559
  * @param {*} [options] Override http request option.
509
560
  * @throws {RequiredError}
@@ -511,7 +562,7 @@ export declare class DashboardApi extends BaseAPI {
511
562
  */
512
563
  revertAnalysis(requestParameters: DashboardApiRevertAnalysisRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
513
564
  /**
514
- * undefined **Required Permissions** \"pbm-management.dashboards.update\"
565
+ * undefined **Required Permissions** \"reporting.dashboards.update\"
515
566
  * @param {DashboardApiUpdateDashboardRequest} requestParameters Request parameters.
516
567
  * @param {*} [options] Override http request option.
517
568
  * @throws {RequiredError}