@emilgroup/tenant-sdk-node 1.28.1-beta.1 → 1.29.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 -1
- package/README.md +2 -2
- package/api/custom-schema-api.ts +40 -40
- package/api/dashboard-api.ts +76 -76
- package/api/dashboard-group-api.ts +40 -40
- package/api/data-report-api.ts +40 -40
- package/api/invite-users-api.ts +19 -19
- package/api/list-organization-invitations-api.ts +40 -40
- package/api/organizations-api.ts +40 -40
- package/api/users-api.ts +19 -19
- package/dist/api/custom-schema-api.d.ts +40 -40
- package/dist/api/custom-schema-api.js +21 -21
- package/dist/api/dashboard-api.d.ts +76 -76
- package/dist/api/dashboard-api.js +57 -57
- package/dist/api/dashboard-group-api.d.ts +40 -40
- package/dist/api/dashboard-group-api.js +21 -21
- package/dist/api/data-report-api.d.ts +40 -40
- package/dist/api/data-report-api.js +21 -21
- package/dist/api/invite-users-api.d.ts +19 -19
- package/dist/api/invite-users-api.js +9 -9
- package/dist/api/list-organization-invitations-api.d.ts +40 -40
- package/dist/api/list-organization-invitations-api.js +21 -21
- package/dist/api/organizations-api.d.ts +40 -40
- package/dist/api/organizations-api.js +21 -21
- package/dist/api/users-api.d.ts +19 -19
- package/dist/api/users-api.js +9 -9
- package/dist/models/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/dist/models/invite-class.d.ts +12 -12
- package/dist/models/list-org-invitations-response-class.d.ts +12 -0
- package/dist/models/list-organizations-response-class.d.ts +12 -0
- package/dist/models/user-class.d.ts +8 -8
- package/models/index.ts +0 -1
- package/models/invite-class.ts +12 -12
- package/models/list-org-invitations-response-class.ts +12 -0
- package/models/list-organizations-response-class.ts +12 -0
- 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/models/create-tenant-db-config-request-dto.ts +0 -36
|
@@ -28,7 +28,7 @@ import { UpdateDashboardResponseClass } from '../models';
|
|
|
28
28
|
*/
|
|
29
29
|
export declare const DashboardApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
30
30
|
/**
|
|
31
|
-
* undefined **Required Permissions** \"
|
|
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** \"
|
|
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,7 @@ 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** \"
|
|
47
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
48
48
|
* @param {string} providerDashboardId
|
|
49
49
|
* @param {string} [authorization] Bearer Token
|
|
50
50
|
* @param {*} [options] Override http request option.
|
|
@@ -52,7 +52,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
52
52
|
*/
|
|
53
53
|
getAnalysisEmbeddedUrl: (providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
54
54
|
/**
|
|
55
|
-
* undefined **Required Permissions** \"
|
|
55
|
+
* undefined **Required Permissions** \"reporting.dashboards.view\"
|
|
56
56
|
* @param {string} code
|
|
57
57
|
* @param {string} [authorization] Bearer Token
|
|
58
58
|
* @param {*} [options] Override http request option.
|
|
@@ -60,7 +60,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
60
60
|
*/
|
|
61
61
|
getDashboard: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
62
62
|
/**
|
|
63
|
-
* undefined **Required Permissions** \"
|
|
63
|
+
* undefined **Required Permissions** \"reporting.dashboards.view\"
|
|
64
64
|
* @param {string} providerDashboardId
|
|
65
65
|
* @param {string} [authorization] Bearer Token
|
|
66
66
|
* @param {*} [options] Override http request option.
|
|
@@ -68,21 +68,21 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
68
68
|
*/
|
|
69
69
|
getDashboardEmbeddedUrl: (providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70
70
|
/**
|
|
71
|
-
* undefined **Required Permissions** \"
|
|
71
|
+
* undefined **Required Permissions** \"reporting.dashboards.view\"
|
|
72
72
|
* @param {string} [authorization] Bearer Token
|
|
73
|
-
* @param {
|
|
74
|
-
* @param {
|
|
75
|
-
* @param {
|
|
76
|
-
* @param {
|
|
77
|
-
* @param {
|
|
78
|
-
* @param {
|
|
79
|
-
* @param {
|
|
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=1, your subsequent call can include pageToken=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=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.
|
|
80
80
|
* @param {*} [options] Override http request option.
|
|
81
81
|
* @throws {RequiredError}
|
|
82
82
|
*/
|
|
83
|
-
listDashboards: (authorization?: string, pageSize?:
|
|
83
|
+
listDashboards: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
84
84
|
/**
|
|
85
|
-
* undefined **Required Permissions** \"
|
|
85
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
86
86
|
* @param {PublishDashboardRequestDto} publishDashboardRequestDto
|
|
87
87
|
* @param {string} [authorization] Bearer Token
|
|
88
88
|
* @param {*} [options] Override http request option.
|
|
@@ -90,7 +90,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
90
90
|
*/
|
|
91
91
|
publishDashboard: (publishDashboardRequestDto: PublishDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
92
92
|
/**
|
|
93
|
-
* undefined **Required Permissions** \"
|
|
93
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
94
94
|
* @param {RevertAnalysisRequestDto} revertAnalysisRequestDto
|
|
95
95
|
* @param {string} [authorization] Bearer Token
|
|
96
96
|
* @param {*} [options] Override http request option.
|
|
@@ -98,7 +98,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
98
98
|
*/
|
|
99
99
|
revertAnalysis: (revertAnalysisRequestDto: RevertAnalysisRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
100
100
|
/**
|
|
101
|
-
* undefined **Required Permissions** \"
|
|
101
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
102
102
|
* @param {string} code
|
|
103
103
|
* @param {UpdateDashboardRequestDto} updateDashboardRequestDto
|
|
104
104
|
* @param {string} [authorization] Bearer Token
|
|
@@ -113,7 +113,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
113
113
|
*/
|
|
114
114
|
export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
115
115
|
/**
|
|
116
|
-
* undefined **Required Permissions** \"
|
|
116
|
+
* undefined **Required Permissions** \"reporting.dashboards.create\"
|
|
117
117
|
* @param {CreateDashboardRequestDto} createDashboardRequestDto
|
|
118
118
|
* @param {string} [authorization] Bearer Token
|
|
119
119
|
* @param {*} [options] Override http request option.
|
|
@@ -121,7 +121,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
121
121
|
*/
|
|
122
122
|
createDashboard(createDashboardRequestDto: CreateDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateDashboardResponseClass>>;
|
|
123
123
|
/**
|
|
124
|
-
* undefined **Required Permissions** \"
|
|
124
|
+
* undefined **Required Permissions** \"reporting.dashboards.delete\"
|
|
125
125
|
* @param {string} code
|
|
126
126
|
* @param {string} [authorization] Bearer Token
|
|
127
127
|
* @param {*} [options] Override http request option.
|
|
@@ -129,7 +129,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
129
129
|
*/
|
|
130
130
|
deleteDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteResponseClass>>;
|
|
131
131
|
/**
|
|
132
|
-
* undefined **Required Permissions** \"
|
|
132
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
133
133
|
* @param {string} providerDashboardId
|
|
134
134
|
* @param {string} [authorization] Bearer Token
|
|
135
135
|
* @param {*} [options] Override http request option.
|
|
@@ -137,7 +137,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
137
137
|
*/
|
|
138
138
|
getAnalysisEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEmbeddedUrlResponseClass>>;
|
|
139
139
|
/**
|
|
140
|
-
* undefined **Required Permissions** \"
|
|
140
|
+
* undefined **Required Permissions** \"reporting.dashboards.view\"
|
|
141
141
|
* @param {string} code
|
|
142
142
|
* @param {string} [authorization] Bearer Token
|
|
143
143
|
* @param {*} [options] Override http request option.
|
|
@@ -145,7 +145,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
145
145
|
*/
|
|
146
146
|
getDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDashboardResponseClass>>;
|
|
147
147
|
/**
|
|
148
|
-
* undefined **Required Permissions** \"
|
|
148
|
+
* undefined **Required Permissions** \"reporting.dashboards.view\"
|
|
149
149
|
* @param {string} providerDashboardId
|
|
150
150
|
* @param {string} [authorization] Bearer Token
|
|
151
151
|
* @param {*} [options] Override http request option.
|
|
@@ -153,21 +153,21 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
153
153
|
*/
|
|
154
154
|
getDashboardEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEmbeddedUrlResponseClass>>;
|
|
155
155
|
/**
|
|
156
|
-
* undefined **Required Permissions** \"
|
|
156
|
+
* undefined **Required Permissions** \"reporting.dashboards.view\"
|
|
157
157
|
* @param {string} [authorization] Bearer Token
|
|
158
|
-
* @param {
|
|
159
|
-
* @param {
|
|
160
|
-
* @param {
|
|
161
|
-
* @param {
|
|
162
|
-
* @param {
|
|
163
|
-
* @param {
|
|
164
|
-
* @param {
|
|
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=1, your subsequent call can include pageToken=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=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.
|
|
165
165
|
* @param {*} [options] Override http request option.
|
|
166
166
|
* @throws {RequiredError}
|
|
167
167
|
*/
|
|
168
|
-
listDashboards(authorization?: string, pageSize?:
|
|
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>>;
|
|
169
169
|
/**
|
|
170
|
-
* undefined **Required Permissions** \"
|
|
170
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
171
171
|
* @param {PublishDashboardRequestDto} publishDashboardRequestDto
|
|
172
172
|
* @param {string} [authorization] Bearer Token
|
|
173
173
|
* @param {*} [options] Override http request option.
|
|
@@ -175,7 +175,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
175
175
|
*/
|
|
176
176
|
publishDashboard(publishDashboardRequestDto: PublishDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
177
177
|
/**
|
|
178
|
-
* undefined **Required Permissions** \"
|
|
178
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
179
179
|
* @param {RevertAnalysisRequestDto} revertAnalysisRequestDto
|
|
180
180
|
* @param {string} [authorization] Bearer Token
|
|
181
181
|
* @param {*} [options] Override http request option.
|
|
@@ -183,7 +183,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
183
183
|
*/
|
|
184
184
|
revertAnalysis(revertAnalysisRequestDto: RevertAnalysisRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
185
185
|
/**
|
|
186
|
-
* undefined **Required Permissions** \"
|
|
186
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
187
187
|
* @param {string} code
|
|
188
188
|
* @param {UpdateDashboardRequestDto} updateDashboardRequestDto
|
|
189
189
|
* @param {string} [authorization] Bearer Token
|
|
@@ -198,7 +198,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
198
198
|
*/
|
|
199
199
|
export declare const DashboardApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
200
200
|
/**
|
|
201
|
-
* undefined **Required Permissions** \"
|
|
201
|
+
* undefined **Required Permissions** \"reporting.dashboards.create\"
|
|
202
202
|
* @param {CreateDashboardRequestDto} createDashboardRequestDto
|
|
203
203
|
* @param {string} [authorization] Bearer Token
|
|
204
204
|
* @param {*} [options] Override http request option.
|
|
@@ -206,7 +206,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
206
206
|
*/
|
|
207
207
|
createDashboard(createDashboardRequestDto: CreateDashboardRequestDto, authorization?: string, options?: any): AxiosPromise<CreateDashboardResponseClass>;
|
|
208
208
|
/**
|
|
209
|
-
* undefined **Required Permissions** \"
|
|
209
|
+
* undefined **Required Permissions** \"reporting.dashboards.delete\"
|
|
210
210
|
* @param {string} code
|
|
211
211
|
* @param {string} [authorization] Bearer Token
|
|
212
212
|
* @param {*} [options] Override http request option.
|
|
@@ -214,7 +214,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
214
214
|
*/
|
|
215
215
|
deleteDashboard(code: string, authorization?: string, options?: any): AxiosPromise<DeleteResponseClass>;
|
|
216
216
|
/**
|
|
217
|
-
* undefined **Required Permissions** \"
|
|
217
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
218
218
|
* @param {string} providerDashboardId
|
|
219
219
|
* @param {string} [authorization] Bearer Token
|
|
220
220
|
* @param {*} [options] Override http request option.
|
|
@@ -222,7 +222,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
222
222
|
*/
|
|
223
223
|
getAnalysisEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: any): AxiosPromise<GetEmbeddedUrlResponseClass>;
|
|
224
224
|
/**
|
|
225
|
-
* undefined **Required Permissions** \"
|
|
225
|
+
* undefined **Required Permissions** \"reporting.dashboards.view\"
|
|
226
226
|
* @param {string} code
|
|
227
227
|
* @param {string} [authorization] Bearer Token
|
|
228
228
|
* @param {*} [options] Override http request option.
|
|
@@ -230,7 +230,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
230
230
|
*/
|
|
231
231
|
getDashboard(code: string, authorization?: string, options?: any): AxiosPromise<GetDashboardResponseClass>;
|
|
232
232
|
/**
|
|
233
|
-
* undefined **Required Permissions** \"
|
|
233
|
+
* undefined **Required Permissions** \"reporting.dashboards.view\"
|
|
234
234
|
* @param {string} providerDashboardId
|
|
235
235
|
* @param {string} [authorization] Bearer Token
|
|
236
236
|
* @param {*} [options] Override http request option.
|
|
@@ -238,21 +238,21 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
238
238
|
*/
|
|
239
239
|
getDashboardEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: any): AxiosPromise<GetEmbeddedUrlResponseClass>;
|
|
240
240
|
/**
|
|
241
|
-
* undefined **Required Permissions** \"
|
|
241
|
+
* undefined **Required Permissions** \"reporting.dashboards.view\"
|
|
242
242
|
* @param {string} [authorization] Bearer Token
|
|
243
|
-
* @param {
|
|
244
|
-
* @param {
|
|
245
|
-
* @param {
|
|
246
|
-
* @param {
|
|
247
|
-
* @param {
|
|
248
|
-
* @param {
|
|
249
|
-
* @param {
|
|
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=1, your subsequent call can include pageToken=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=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.
|
|
250
250
|
* @param {*} [options] Override http request option.
|
|
251
251
|
* @throws {RequiredError}
|
|
252
252
|
*/
|
|
253
|
-
listDashboards(authorization?: string, pageSize?:
|
|
253
|
+
listDashboards(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListDashboardsResponseClass>;
|
|
254
254
|
/**
|
|
255
|
-
* undefined **Required Permissions** \"
|
|
255
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
256
256
|
* @param {PublishDashboardRequestDto} publishDashboardRequestDto
|
|
257
257
|
* @param {string} [authorization] Bearer Token
|
|
258
258
|
* @param {*} [options] Override http request option.
|
|
@@ -260,7 +260,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
260
260
|
*/
|
|
261
261
|
publishDashboard(publishDashboardRequestDto: PublishDashboardRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
262
262
|
/**
|
|
263
|
-
* undefined **Required Permissions** \"
|
|
263
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
264
264
|
* @param {RevertAnalysisRequestDto} revertAnalysisRequestDto
|
|
265
265
|
* @param {string} [authorization] Bearer Token
|
|
266
266
|
* @param {*} [options] Override http request option.
|
|
@@ -268,7 +268,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
268
268
|
*/
|
|
269
269
|
revertAnalysis(revertAnalysisRequestDto: RevertAnalysisRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
270
270
|
/**
|
|
271
|
-
* undefined **Required Permissions** \"
|
|
271
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
272
272
|
* @param {string} code
|
|
273
273
|
* @param {UpdateDashboardRequestDto} updateDashboardRequestDto
|
|
274
274
|
* @param {string} [authorization] Bearer Token
|
|
@@ -386,46 +386,46 @@ export interface DashboardApiListDashboardsRequest {
|
|
|
386
386
|
readonly authorization?: string;
|
|
387
387
|
/**
|
|
388
388
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
389
|
-
* @type {
|
|
389
|
+
* @type {number}
|
|
390
390
|
* @memberof DashboardApiListDashboards
|
|
391
391
|
*/
|
|
392
|
-
readonly pageSize?:
|
|
392
|
+
readonly pageSize?: number;
|
|
393
393
|
/**
|
|
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=1,
|
|
395
|
-
* @type {
|
|
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=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
395
|
+
* @type {string}
|
|
396
396
|
* @memberof DashboardApiListDashboards
|
|
397
397
|
*/
|
|
398
|
-
readonly pageToken?:
|
|
398
|
+
readonly pageToken?: string;
|
|
399
399
|
/**
|
|
400
400
|
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
401
|
-
* @type {
|
|
401
|
+
* @type {string}
|
|
402
402
|
* @memberof DashboardApiListDashboards
|
|
403
403
|
*/
|
|
404
|
-
readonly filter?:
|
|
404
|
+
readonly filter?: string;
|
|
405
405
|
/**
|
|
406
406
|
* To search the list by any field, pass search=xxx to fetch the result.
|
|
407
|
-
* @type {
|
|
407
|
+
* @type {string}
|
|
408
408
|
* @memberof DashboardApiListDashboards
|
|
409
409
|
*/
|
|
410
|
-
readonly search?:
|
|
410
|
+
readonly search?: string;
|
|
411
411
|
/**
|
|
412
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.
|
|
413
|
-
* @type {
|
|
413
|
+
* @type {string}
|
|
414
414
|
* @memberof DashboardApiListDashboards
|
|
415
415
|
*/
|
|
416
|
-
readonly order?:
|
|
416
|
+
readonly order?: string;
|
|
417
417
|
/**
|
|
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
|
|
419
|
-
* @type {
|
|
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}
|
|
420
420
|
* @memberof DashboardApiListDashboards
|
|
421
421
|
*/
|
|
422
|
-
readonly expand?:
|
|
422
|
+
readonly expand?: string;
|
|
423
423
|
/**
|
|
424
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.
|
|
425
|
-
* @type {
|
|
425
|
+
* @type {string}
|
|
426
426
|
* @memberof DashboardApiListDashboards
|
|
427
427
|
*/
|
|
428
|
-
readonly filters?:
|
|
428
|
+
readonly filters?: string;
|
|
429
429
|
}
|
|
430
430
|
/**
|
|
431
431
|
* Request parameters for publishDashboard operation in DashboardApi.
|
|
@@ -498,7 +498,7 @@ export interface DashboardApiUpdateDashboardRequest {
|
|
|
498
498
|
*/
|
|
499
499
|
export declare class DashboardApi extends BaseAPI {
|
|
500
500
|
/**
|
|
501
|
-
* undefined **Required Permissions** \"
|
|
501
|
+
* undefined **Required Permissions** \"reporting.dashboards.create\"
|
|
502
502
|
* @param {DashboardApiCreateDashboardRequest} requestParameters Request parameters.
|
|
503
503
|
* @param {*} [options] Override http request option.
|
|
504
504
|
* @throws {RequiredError}
|
|
@@ -506,7 +506,7 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
506
506
|
*/
|
|
507
507
|
createDashboard(requestParameters: DashboardApiCreateDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateDashboardResponseClass, any>>;
|
|
508
508
|
/**
|
|
509
|
-
* undefined **Required Permissions** \"
|
|
509
|
+
* undefined **Required Permissions** \"reporting.dashboards.delete\"
|
|
510
510
|
* @param {DashboardApiDeleteDashboardRequest} requestParameters Request parameters.
|
|
511
511
|
* @param {*} [options] Override http request option.
|
|
512
512
|
* @throws {RequiredError}
|
|
@@ -514,7 +514,7 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
514
514
|
*/
|
|
515
515
|
deleteDashboard(requestParameters: DashboardApiDeleteDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any>>;
|
|
516
516
|
/**
|
|
517
|
-
* undefined **Required Permissions** \"
|
|
517
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
518
518
|
* @param {DashboardApiGetAnalysisEmbeddedUrlRequest} requestParameters Request parameters.
|
|
519
519
|
* @param {*} [options] Override http request option.
|
|
520
520
|
* @throws {RequiredError}
|
|
@@ -522,7 +522,7 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
522
522
|
*/
|
|
523
523
|
getAnalysisEmbeddedUrl(requestParameters: DashboardApiGetAnalysisEmbeddedUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEmbeddedUrlResponseClass, any>>;
|
|
524
524
|
/**
|
|
525
|
-
* undefined **Required Permissions** \"
|
|
525
|
+
* undefined **Required Permissions** \"reporting.dashboards.view\"
|
|
526
526
|
* @param {DashboardApiGetDashboardRequest} requestParameters Request parameters.
|
|
527
527
|
* @param {*} [options] Override http request option.
|
|
528
528
|
* @throws {RequiredError}
|
|
@@ -530,7 +530,7 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
530
530
|
*/
|
|
531
531
|
getDashboard(requestParameters: DashboardApiGetDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDashboardResponseClass, any>>;
|
|
532
532
|
/**
|
|
533
|
-
* undefined **Required Permissions** \"
|
|
533
|
+
* undefined **Required Permissions** \"reporting.dashboards.view\"
|
|
534
534
|
* @param {DashboardApiGetDashboardEmbeddedUrlRequest} requestParameters Request parameters.
|
|
535
535
|
* @param {*} [options] Override http request option.
|
|
536
536
|
* @throws {RequiredError}
|
|
@@ -538,7 +538,7 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
538
538
|
*/
|
|
539
539
|
getDashboardEmbeddedUrl(requestParameters: DashboardApiGetDashboardEmbeddedUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEmbeddedUrlResponseClass, any>>;
|
|
540
540
|
/**
|
|
541
|
-
* undefined **Required Permissions** \"
|
|
541
|
+
* undefined **Required Permissions** \"reporting.dashboards.view\"
|
|
542
542
|
* @param {DashboardApiListDashboardsRequest} requestParameters Request parameters.
|
|
543
543
|
* @param {*} [options] Override http request option.
|
|
544
544
|
* @throws {RequiredError}
|
|
@@ -546,7 +546,7 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
546
546
|
*/
|
|
547
547
|
listDashboards(requestParameters?: DashboardApiListDashboardsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListDashboardsResponseClass, any>>;
|
|
548
548
|
/**
|
|
549
|
-
* undefined **Required Permissions** \"
|
|
549
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
550
550
|
* @param {DashboardApiPublishDashboardRequest} requestParameters Request parameters.
|
|
551
551
|
* @param {*} [options] Override http request option.
|
|
552
552
|
* @throws {RequiredError}
|
|
@@ -554,7 +554,7 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
554
554
|
*/
|
|
555
555
|
publishDashboard(requestParameters: DashboardApiPublishDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
556
556
|
/**
|
|
557
|
-
* undefined **Required Permissions** \"
|
|
557
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
558
558
|
* @param {DashboardApiRevertAnalysisRequest} requestParameters Request parameters.
|
|
559
559
|
* @param {*} [options] Override http request option.
|
|
560
560
|
* @throws {RequiredError}
|
|
@@ -562,7 +562,7 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
562
562
|
*/
|
|
563
563
|
revertAnalysis(requestParameters: DashboardApiRevertAnalysisRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
564
564
|
/**
|
|
565
|
-
* undefined **Required Permissions** \"
|
|
565
|
+
* undefined **Required Permissions** \"reporting.dashboards.update\"
|
|
566
566
|
* @param {DashboardApiUpdateDashboardRequest} requestParameters Request parameters.
|
|
567
567
|
* @param {*} [options] Override http request option.
|
|
568
568
|
* @throws {RequiredError}
|