@emilgroup/tenant-sdk-node 1.28.0 → 1.28.1-beta.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 +3 -0
- package/README.md +2 -2
- package/api/custom-schema-api.ts +16 -16
- package/api/dashboard-api.ts +226 -24
- 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 +128 -24
- package/dist/api/dashboard-api.js +202 -24
- 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
|
@@ -24,7 +24,7 @@ import { UpdateCustomSchemaResponseClass } from '../models';
|
|
|
24
24
|
*/
|
|
25
25
|
export declare const CustomSchemaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26
26
|
/**
|
|
27
|
-
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
27
|
+
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema. **Required Permissions** \"tenant-management.custom-schemas.create\"
|
|
28
28
|
* @summary Create the custom-schema
|
|
29
29
|
* @param {CreateCustomSchemaRequestDto} createCustomSchemaRequestDto
|
|
30
30
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -33,7 +33,7 @@ export declare const CustomSchemaApiAxiosParamCreator: (configuration?: Configur
|
|
|
33
33
|
*/
|
|
34
34
|
createCustomSchema: (createCustomSchemaRequestDto: CreateCustomSchemaRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
35
|
/**
|
|
36
|
-
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
36
|
+
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
37
37
|
* @summary Retrieve the custom-schema
|
|
38
38
|
* @param {string} code Unique identifier for the object.
|
|
39
39
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -43,7 +43,7 @@ export declare const CustomSchemaApiAxiosParamCreator: (configuration?: Configur
|
|
|
43
43
|
*/
|
|
44
44
|
getCustomSchema: (code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
45
45
|
/**
|
|
46
|
-
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
46
|
+
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
47
47
|
* @summary List custom-schemas
|
|
48
48
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
49
49
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -58,7 +58,7 @@ export declare const CustomSchemaApiAxiosParamCreator: (configuration?: Configur
|
|
|
58
58
|
*/
|
|
59
59
|
listCustomSchemas: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60
60
|
/**
|
|
61
|
-
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
61
|
+
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"tenant-management.custom-schemas.update\"
|
|
62
62
|
* @summary Update the custom-schema
|
|
63
63
|
* @param {string} code
|
|
64
64
|
* @param {UpdateCustomSchemaRequestDto} updateCustomSchemaRequestDto
|
|
@@ -74,7 +74,7 @@ export declare const CustomSchemaApiAxiosParamCreator: (configuration?: Configur
|
|
|
74
74
|
*/
|
|
75
75
|
export declare const CustomSchemaApiFp: (configuration?: Configuration) => {
|
|
76
76
|
/**
|
|
77
|
-
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
77
|
+
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema. **Required Permissions** \"tenant-management.custom-schemas.create\"
|
|
78
78
|
* @summary Create the custom-schema
|
|
79
79
|
* @param {CreateCustomSchemaRequestDto} createCustomSchemaRequestDto
|
|
80
80
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -83,7 +83,7 @@ export declare const CustomSchemaApiFp: (configuration?: Configuration) => {
|
|
|
83
83
|
*/
|
|
84
84
|
createCustomSchema(createCustomSchemaRequestDto: CreateCustomSchemaRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateCustomSchemaResponseClass>>;
|
|
85
85
|
/**
|
|
86
|
-
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
86
|
+
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
87
87
|
* @summary Retrieve the custom-schema
|
|
88
88
|
* @param {string} code Unique identifier for the object.
|
|
89
89
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -93,7 +93,7 @@ export declare const CustomSchemaApiFp: (configuration?: Configuration) => {
|
|
|
93
93
|
*/
|
|
94
94
|
getCustomSchema(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCustomSchemaResponseClass>>;
|
|
95
95
|
/**
|
|
96
|
-
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
96
|
+
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
97
97
|
* @summary List custom-schemas
|
|
98
98
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
99
99
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -108,7 +108,7 @@ export declare const CustomSchemaApiFp: (configuration?: Configuration) => {
|
|
|
108
108
|
*/
|
|
109
109
|
listCustomSchemas(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCustomSchemasResponseClass>>;
|
|
110
110
|
/**
|
|
111
|
-
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
111
|
+
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"tenant-management.custom-schemas.update\"
|
|
112
112
|
* @summary Update the custom-schema
|
|
113
113
|
* @param {string} code
|
|
114
114
|
* @param {UpdateCustomSchemaRequestDto} updateCustomSchemaRequestDto
|
|
@@ -124,7 +124,7 @@ export declare const CustomSchemaApiFp: (configuration?: Configuration) => {
|
|
|
124
124
|
*/
|
|
125
125
|
export declare const CustomSchemaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
126
126
|
/**
|
|
127
|
-
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
127
|
+
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema. **Required Permissions** \"tenant-management.custom-schemas.create\"
|
|
128
128
|
* @summary Create the custom-schema
|
|
129
129
|
* @param {CreateCustomSchemaRequestDto} createCustomSchemaRequestDto
|
|
130
130
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -133,7 +133,7 @@ export declare const CustomSchemaApiFactory: (configuration?: Configuration, bas
|
|
|
133
133
|
*/
|
|
134
134
|
createCustomSchema(createCustomSchemaRequestDto: CreateCustomSchemaRequestDto, authorization?: string, options?: any): AxiosPromise<CreateCustomSchemaResponseClass>;
|
|
135
135
|
/**
|
|
136
|
-
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
136
|
+
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
137
137
|
* @summary Retrieve the custom-schema
|
|
138
138
|
* @param {string} code Unique identifier for the object.
|
|
139
139
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -143,7 +143,7 @@ export declare const CustomSchemaApiFactory: (configuration?: Configuration, bas
|
|
|
143
143
|
*/
|
|
144
144
|
getCustomSchema(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetCustomSchemaResponseClass>;
|
|
145
145
|
/**
|
|
146
|
-
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
146
|
+
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
147
147
|
* @summary List custom-schemas
|
|
148
148
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
149
149
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -158,7 +158,7 @@ export declare const CustomSchemaApiFactory: (configuration?: Configuration, bas
|
|
|
158
158
|
*/
|
|
159
159
|
listCustomSchemas(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: any): AxiosPromise<ListCustomSchemasResponseClass>;
|
|
160
160
|
/**
|
|
161
|
-
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
161
|
+
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"tenant-management.custom-schemas.update\"
|
|
162
162
|
* @summary Update the custom-schema
|
|
163
163
|
* @param {string} code
|
|
164
164
|
* @param {UpdateCustomSchemaRequestDto} updateCustomSchemaRequestDto
|
|
@@ -300,7 +300,7 @@ export interface CustomSchemaApiUpdateCustomSchemaRequest {
|
|
|
300
300
|
*/
|
|
301
301
|
export declare class CustomSchemaApi extends BaseAPI {
|
|
302
302
|
/**
|
|
303
|
-
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
303
|
+
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema. **Required Permissions** \"tenant-management.custom-schemas.create\"
|
|
304
304
|
* @summary Create the custom-schema
|
|
305
305
|
* @param {CustomSchemaApiCreateCustomSchemaRequest} requestParameters Request parameters.
|
|
306
306
|
* @param {*} [options] Override http request option.
|
|
@@ -309,7 +309,7 @@ export declare class CustomSchemaApi extends BaseAPI {
|
|
|
309
309
|
*/
|
|
310
310
|
createCustomSchema(requestParameters: CustomSchemaApiCreateCustomSchemaRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateCustomSchemaResponseClass, any>>;
|
|
311
311
|
/**
|
|
312
|
-
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
312
|
+
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
313
313
|
* @summary Retrieve the custom-schema
|
|
314
314
|
* @param {CustomSchemaApiGetCustomSchemaRequest} requestParameters Request parameters.
|
|
315
315
|
* @param {*} [options] Override http request option.
|
|
@@ -318,7 +318,7 @@ export declare class CustomSchemaApi extends BaseAPI {
|
|
|
318
318
|
*/
|
|
319
319
|
getCustomSchema(requestParameters: CustomSchemaApiGetCustomSchemaRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCustomSchemaResponseClass, any>>;
|
|
320
320
|
/**
|
|
321
|
-
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
321
|
+
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
322
322
|
* @summary List custom-schemas
|
|
323
323
|
* @param {CustomSchemaApiListCustomSchemasRequest} requestParameters Request parameters.
|
|
324
324
|
* @param {*} [options] Override http request option.
|
|
@@ -327,7 +327,7 @@ export declare class CustomSchemaApi extends BaseAPI {
|
|
|
327
327
|
*/
|
|
328
328
|
listCustomSchemas(requestParameters?: CustomSchemaApiListCustomSchemasRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCustomSchemasResponseClass, any>>;
|
|
329
329
|
/**
|
|
330
|
-
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
330
|
+
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"tenant-management.custom-schemas.update\"
|
|
331
331
|
* @summary Update the custom-schema
|
|
332
332
|
* @param {CustomSchemaApiUpdateCustomSchemaRequest} requestParameters Request parameters.
|
|
333
333
|
* @param {*} [options] Override http request option.
|
|
@@ -97,7 +97,7 @@ var CustomSchemaApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
100
|
+
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema. **Required Permissions** \"tenant-management.custom-schemas.create\"
|
|
101
101
|
* @summary Create the custom-schema
|
|
102
102
|
* @param {CreateCustomSchemaRequestDto} createCustomSchemaRequestDto
|
|
103
103
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -146,7 +146,7 @@ var CustomSchemaApiAxiosParamCreator = function (configuration) {
|
|
|
146
146
|
});
|
|
147
147
|
},
|
|
148
148
|
/**
|
|
149
|
-
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
149
|
+
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
150
150
|
* @summary Retrieve the custom-schema
|
|
151
151
|
* @param {string} code Unique identifier for the object.
|
|
152
152
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -198,7 +198,7 @@ var CustomSchemaApiAxiosParamCreator = function (configuration) {
|
|
|
198
198
|
});
|
|
199
199
|
},
|
|
200
200
|
/**
|
|
201
|
-
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
201
|
+
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
202
202
|
* @summary List custom-schemas
|
|
203
203
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
204
204
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -270,7 +270,7 @@ var CustomSchemaApiAxiosParamCreator = function (configuration) {
|
|
|
270
270
|
});
|
|
271
271
|
},
|
|
272
272
|
/**
|
|
273
|
-
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
273
|
+
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"tenant-management.custom-schemas.update\"
|
|
274
274
|
* @summary Update the custom-schema
|
|
275
275
|
* @param {string} code
|
|
276
276
|
* @param {UpdateCustomSchemaRequestDto} updateCustomSchemaRequestDto
|
|
@@ -333,7 +333,7 @@ var CustomSchemaApiFp = function (configuration) {
|
|
|
333
333
|
var localVarAxiosParamCreator = (0, exports.CustomSchemaApiAxiosParamCreator)(configuration);
|
|
334
334
|
return {
|
|
335
335
|
/**
|
|
336
|
-
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
336
|
+
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema. **Required Permissions** \"tenant-management.custom-schemas.create\"
|
|
337
337
|
* @summary Create the custom-schema
|
|
338
338
|
* @param {CreateCustomSchemaRequestDto} createCustomSchemaRequestDto
|
|
339
339
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -354,7 +354,7 @@ var CustomSchemaApiFp = function (configuration) {
|
|
|
354
354
|
});
|
|
355
355
|
},
|
|
356
356
|
/**
|
|
357
|
-
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
357
|
+
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
358
358
|
* @summary Retrieve the custom-schema
|
|
359
359
|
* @param {string} code Unique identifier for the object.
|
|
360
360
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -376,7 +376,7 @@ var CustomSchemaApiFp = function (configuration) {
|
|
|
376
376
|
});
|
|
377
377
|
},
|
|
378
378
|
/**
|
|
379
|
-
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
379
|
+
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
380
380
|
* @summary List custom-schemas
|
|
381
381
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
382
382
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -403,7 +403,7 @@ var CustomSchemaApiFp = function (configuration) {
|
|
|
403
403
|
});
|
|
404
404
|
},
|
|
405
405
|
/**
|
|
406
|
-
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
406
|
+
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"tenant-management.custom-schemas.update\"
|
|
407
407
|
* @summary Update the custom-schema
|
|
408
408
|
* @param {string} code
|
|
409
409
|
* @param {UpdateCustomSchemaRequestDto} updateCustomSchemaRequestDto
|
|
@@ -435,7 +435,7 @@ var CustomSchemaApiFactory = function (configuration, basePath, axios) {
|
|
|
435
435
|
var localVarFp = (0, exports.CustomSchemaApiFp)(configuration);
|
|
436
436
|
return {
|
|
437
437
|
/**
|
|
438
|
-
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
438
|
+
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema. **Required Permissions** \"tenant-management.custom-schemas.create\"
|
|
439
439
|
* @summary Create the custom-schema
|
|
440
440
|
* @param {CreateCustomSchemaRequestDto} createCustomSchemaRequestDto
|
|
441
441
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -446,7 +446,7 @@ var CustomSchemaApiFactory = function (configuration, basePath, axios) {
|
|
|
446
446
|
return localVarFp.createCustomSchema(createCustomSchemaRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
447
447
|
},
|
|
448
448
|
/**
|
|
449
|
-
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
449
|
+
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
450
450
|
* @summary Retrieve the custom-schema
|
|
451
451
|
* @param {string} code Unique identifier for the object.
|
|
452
452
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -458,7 +458,7 @@ var CustomSchemaApiFactory = function (configuration, basePath, axios) {
|
|
|
458
458
|
return localVarFp.getCustomSchema(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
|
|
459
459
|
},
|
|
460
460
|
/**
|
|
461
|
-
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
461
|
+
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
462
462
|
* @summary List custom-schemas
|
|
463
463
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
464
464
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -475,7 +475,7 @@ var CustomSchemaApiFactory = function (configuration, basePath, axios) {
|
|
|
475
475
|
return localVarFp.listCustomSchemas(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
476
476
|
},
|
|
477
477
|
/**
|
|
478
|
-
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
478
|
+
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"tenant-management.custom-schemas.update\"
|
|
479
479
|
* @summary Update the custom-schema
|
|
480
480
|
* @param {string} code
|
|
481
481
|
* @param {UpdateCustomSchemaRequestDto} updateCustomSchemaRequestDto
|
|
@@ -501,7 +501,7 @@ var CustomSchemaApi = /** @class */ (function (_super) {
|
|
|
501
501
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
502
502
|
}
|
|
503
503
|
/**
|
|
504
|
-
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
504
|
+
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema. **Required Permissions** \"tenant-management.custom-schemas.create\"
|
|
505
505
|
* @summary Create the custom-schema
|
|
506
506
|
* @param {CustomSchemaApiCreateCustomSchemaRequest} requestParameters Request parameters.
|
|
507
507
|
* @param {*} [options] Override http request option.
|
|
@@ -513,7 +513,7 @@ var CustomSchemaApi = /** @class */ (function (_super) {
|
|
|
513
513
|
return (0, exports.CustomSchemaApiFp)(this.configuration).createCustomSchema(requestParameters.createCustomSchemaRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
514
514
|
};
|
|
515
515
|
/**
|
|
516
|
-
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
516
|
+
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
517
517
|
* @summary Retrieve the custom-schema
|
|
518
518
|
* @param {CustomSchemaApiGetCustomSchemaRequest} requestParameters Request parameters.
|
|
519
519
|
* @param {*} [options] Override http request option.
|
|
@@ -525,7 +525,7 @@ var CustomSchemaApi = /** @class */ (function (_super) {
|
|
|
525
525
|
return (0, exports.CustomSchemaApiFp)(this.configuration).getCustomSchema(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
526
526
|
};
|
|
527
527
|
/**
|
|
528
|
-
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
528
|
+
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.custom-schemas.view\"
|
|
529
529
|
* @summary List custom-schemas
|
|
530
530
|
* @param {CustomSchemaApiListCustomSchemasRequest} requestParameters Request parameters.
|
|
531
531
|
* @param {*} [options] Override http request option.
|
|
@@ -538,7 +538,7 @@ var CustomSchemaApi = /** @class */ (function (_super) {
|
|
|
538
538
|
return (0, exports.CustomSchemaApiFp)(this.configuration).listCustomSchemas(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
539
539
|
};
|
|
540
540
|
/**
|
|
541
|
-
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
541
|
+
* Updates the specified custom-schema by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"tenant-management.custom-schemas.update\"
|
|
542
542
|
* @summary Update the custom-schema
|
|
543
543
|
* @param {CustomSchemaApiUpdateCustomSchemaRequest} requestParameters Request parameters.
|
|
544
544
|
* @param {*} [options] Override http request option.
|
|
@@ -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,7 @@ 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.view\"
|
|
46
48
|
* @param {string} code
|
|
47
49
|
* @param {string} [authorization] Bearer Token
|
|
48
50
|
* @param {*} [options] Override http request option.
|
|
@@ -50,7 +52,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
50
52
|
*/
|
|
51
53
|
getDashboard: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
54
|
/**
|
|
53
|
-
*
|
|
55
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
54
56
|
* @param {string} providerDashboardId
|
|
55
57
|
* @param {string} [authorization] Bearer Token
|
|
56
58
|
* @param {*} [options] Override http request option.
|
|
@@ -58,7 +60,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
58
60
|
*/
|
|
59
61
|
getEmbeddedUrl: (providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60
62
|
/**
|
|
61
|
-
*
|
|
63
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
62
64
|
* @param {string} [authorization] Bearer Token
|
|
63
65
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
64
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=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -72,7 +74,23 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
72
74
|
*/
|
|
73
75
|
listDashboards: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
74
76
|
/**
|
|
75
|
-
*
|
|
77
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
78
|
+
* @param {PublishDashboardRequestDto} publishDashboardRequestDto
|
|
79
|
+
* @param {string} [authorization] Bearer Token
|
|
80
|
+
* @param {*} [options] Override http request option.
|
|
81
|
+
* @throws {RequiredError}
|
|
82
|
+
*/
|
|
83
|
+
publishDashboard: (publishDashboardRequestDto: PublishDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
84
|
+
/**
|
|
85
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
86
|
+
* @param {RevertAnalysisRequestDto} revertAnalysisRequestDto
|
|
87
|
+
* @param {string} [authorization] Bearer Token
|
|
88
|
+
* @param {*} [options] Override http request option.
|
|
89
|
+
* @throws {RequiredError}
|
|
90
|
+
*/
|
|
91
|
+
revertAnalysis: (revertAnalysisRequestDto: RevertAnalysisRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
92
|
+
/**
|
|
93
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
76
94
|
* @param {string} code
|
|
77
95
|
* @param {UpdateDashboardRequestDto} updateDashboardRequestDto
|
|
78
96
|
* @param {string} [authorization] Bearer Token
|
|
@@ -87,7 +105,7 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
87
105
|
*/
|
|
88
106
|
export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
89
107
|
/**
|
|
90
|
-
*
|
|
108
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.create\"
|
|
91
109
|
* @param {CreateDashboardRequestDto} createDashboardRequestDto
|
|
92
110
|
* @param {string} [authorization] Bearer Token
|
|
93
111
|
* @param {*} [options] Override http request option.
|
|
@@ -95,7 +113,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
95
113
|
*/
|
|
96
114
|
createDashboard(createDashboardRequestDto: CreateDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateDashboardResponseClass>>;
|
|
97
115
|
/**
|
|
98
|
-
*
|
|
116
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.delete\"
|
|
99
117
|
* @param {string} code
|
|
100
118
|
* @param {string} [authorization] Bearer Token
|
|
101
119
|
* @param {*} [options] Override http request option.
|
|
@@ -103,7 +121,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
103
121
|
*/
|
|
104
122
|
deleteDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteResponseClass>>;
|
|
105
123
|
/**
|
|
106
|
-
*
|
|
124
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
107
125
|
* @param {string} code
|
|
108
126
|
* @param {string} [authorization] Bearer Token
|
|
109
127
|
* @param {*} [options] Override http request option.
|
|
@@ -111,7 +129,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
111
129
|
*/
|
|
112
130
|
getDashboard(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDashboardResponseClass>>;
|
|
113
131
|
/**
|
|
114
|
-
*
|
|
132
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
115
133
|
* @param {string} providerDashboardId
|
|
116
134
|
* @param {string} [authorization] Bearer Token
|
|
117
135
|
* @param {*} [options] Override http request option.
|
|
@@ -119,7 +137,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
119
137
|
*/
|
|
120
138
|
getEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEmbeddedUrlResponseClass>>;
|
|
121
139
|
/**
|
|
122
|
-
*
|
|
140
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
123
141
|
* @param {string} [authorization] Bearer Token
|
|
124
142
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
125
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=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -133,7 +151,23 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
133
151
|
*/
|
|
134
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>>;
|
|
135
153
|
/**
|
|
136
|
-
*
|
|
154
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
155
|
+
* @param {PublishDashboardRequestDto} publishDashboardRequestDto
|
|
156
|
+
* @param {string} [authorization] Bearer Token
|
|
157
|
+
* @param {*} [options] Override http request option.
|
|
158
|
+
* @throws {RequiredError}
|
|
159
|
+
*/
|
|
160
|
+
publishDashboard(publishDashboardRequestDto: PublishDashboardRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
161
|
+
/**
|
|
162
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
163
|
+
* @param {RevertAnalysisRequestDto} revertAnalysisRequestDto
|
|
164
|
+
* @param {string} [authorization] Bearer Token
|
|
165
|
+
* @param {*} [options] Override http request option.
|
|
166
|
+
* @throws {RequiredError}
|
|
167
|
+
*/
|
|
168
|
+
revertAnalysis(revertAnalysisRequestDto: RevertAnalysisRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
169
|
+
/**
|
|
170
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
137
171
|
* @param {string} code
|
|
138
172
|
* @param {UpdateDashboardRequestDto} updateDashboardRequestDto
|
|
139
173
|
* @param {string} [authorization] Bearer Token
|
|
@@ -148,7 +182,7 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
148
182
|
*/
|
|
149
183
|
export declare const DashboardApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
150
184
|
/**
|
|
151
|
-
*
|
|
185
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.create\"
|
|
152
186
|
* @param {CreateDashboardRequestDto} createDashboardRequestDto
|
|
153
187
|
* @param {string} [authorization] Bearer Token
|
|
154
188
|
* @param {*} [options] Override http request option.
|
|
@@ -156,7 +190,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
156
190
|
*/
|
|
157
191
|
createDashboard(createDashboardRequestDto: CreateDashboardRequestDto, authorization?: string, options?: any): AxiosPromise<CreateDashboardResponseClass>;
|
|
158
192
|
/**
|
|
159
|
-
*
|
|
193
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.delete\"
|
|
160
194
|
* @param {string} code
|
|
161
195
|
* @param {string} [authorization] Bearer Token
|
|
162
196
|
* @param {*} [options] Override http request option.
|
|
@@ -164,7 +198,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
164
198
|
*/
|
|
165
199
|
deleteDashboard(code: string, authorization?: string, options?: any): AxiosPromise<DeleteResponseClass>;
|
|
166
200
|
/**
|
|
167
|
-
*
|
|
201
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
168
202
|
* @param {string} code
|
|
169
203
|
* @param {string} [authorization] Bearer Token
|
|
170
204
|
* @param {*} [options] Override http request option.
|
|
@@ -172,7 +206,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
172
206
|
*/
|
|
173
207
|
getDashboard(code: string, authorization?: string, options?: any): AxiosPromise<GetDashboardResponseClass>;
|
|
174
208
|
/**
|
|
175
|
-
*
|
|
209
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
176
210
|
* @param {string} providerDashboardId
|
|
177
211
|
* @param {string} [authorization] Bearer Token
|
|
178
212
|
* @param {*} [options] Override http request option.
|
|
@@ -180,7 +214,7 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
180
214
|
*/
|
|
181
215
|
getEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: any): AxiosPromise<GetEmbeddedUrlResponseClass>;
|
|
182
216
|
/**
|
|
183
|
-
*
|
|
217
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
184
218
|
* @param {string} [authorization] Bearer Token
|
|
185
219
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
186
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=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -194,7 +228,23 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
194
228
|
*/
|
|
195
229
|
listDashboards(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: any): AxiosPromise<ListDashboardsResponseClass>;
|
|
196
230
|
/**
|
|
197
|
-
*
|
|
231
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
232
|
+
* @param {PublishDashboardRequestDto} publishDashboardRequestDto
|
|
233
|
+
* @param {string} [authorization] Bearer Token
|
|
234
|
+
* @param {*} [options] Override http request option.
|
|
235
|
+
* @throws {RequiredError}
|
|
236
|
+
*/
|
|
237
|
+
publishDashboard(publishDashboardRequestDto: PublishDashboardRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
238
|
+
/**
|
|
239
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
240
|
+
* @param {RevertAnalysisRequestDto} revertAnalysisRequestDto
|
|
241
|
+
* @param {string} [authorization] Bearer Token
|
|
242
|
+
* @param {*} [options] Override http request option.
|
|
243
|
+
* @throws {RequiredError}
|
|
244
|
+
*/
|
|
245
|
+
revertAnalysis(revertAnalysisRequestDto: RevertAnalysisRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
246
|
+
/**
|
|
247
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
198
248
|
* @param {string} code
|
|
199
249
|
* @param {UpdateDashboardRequestDto} updateDashboardRequestDto
|
|
200
250
|
* @param {string} [authorization] Bearer Token
|
|
@@ -334,6 +384,44 @@ export interface DashboardApiListDashboardsRequest {
|
|
|
334
384
|
*/
|
|
335
385
|
readonly filters?: any;
|
|
336
386
|
}
|
|
387
|
+
/**
|
|
388
|
+
* Request parameters for publishDashboard operation in DashboardApi.
|
|
389
|
+
* @export
|
|
390
|
+
* @interface DashboardApiPublishDashboardRequest
|
|
391
|
+
*/
|
|
392
|
+
export interface DashboardApiPublishDashboardRequest {
|
|
393
|
+
/**
|
|
394
|
+
*
|
|
395
|
+
* @type {PublishDashboardRequestDto}
|
|
396
|
+
* @memberof DashboardApiPublishDashboard
|
|
397
|
+
*/
|
|
398
|
+
readonly publishDashboardRequestDto: PublishDashboardRequestDto;
|
|
399
|
+
/**
|
|
400
|
+
* Bearer Token
|
|
401
|
+
* @type {string}
|
|
402
|
+
* @memberof DashboardApiPublishDashboard
|
|
403
|
+
*/
|
|
404
|
+
readonly authorization?: string;
|
|
405
|
+
}
|
|
406
|
+
/**
|
|
407
|
+
* Request parameters for revertAnalysis operation in DashboardApi.
|
|
408
|
+
* @export
|
|
409
|
+
* @interface DashboardApiRevertAnalysisRequest
|
|
410
|
+
*/
|
|
411
|
+
export interface DashboardApiRevertAnalysisRequest {
|
|
412
|
+
/**
|
|
413
|
+
*
|
|
414
|
+
* @type {RevertAnalysisRequestDto}
|
|
415
|
+
* @memberof DashboardApiRevertAnalysis
|
|
416
|
+
*/
|
|
417
|
+
readonly revertAnalysisRequestDto: RevertAnalysisRequestDto;
|
|
418
|
+
/**
|
|
419
|
+
* Bearer Token
|
|
420
|
+
* @type {string}
|
|
421
|
+
* @memberof DashboardApiRevertAnalysis
|
|
422
|
+
*/
|
|
423
|
+
readonly authorization?: string;
|
|
424
|
+
}
|
|
337
425
|
/**
|
|
338
426
|
* Request parameters for updateDashboard operation in DashboardApi.
|
|
339
427
|
* @export
|
|
@@ -367,7 +455,7 @@ export interface DashboardApiUpdateDashboardRequest {
|
|
|
367
455
|
*/
|
|
368
456
|
export declare class DashboardApi extends BaseAPI {
|
|
369
457
|
/**
|
|
370
|
-
*
|
|
458
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.create\"
|
|
371
459
|
* @param {DashboardApiCreateDashboardRequest} requestParameters Request parameters.
|
|
372
460
|
* @param {*} [options] Override http request option.
|
|
373
461
|
* @throws {RequiredError}
|
|
@@ -375,7 +463,7 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
375
463
|
*/
|
|
376
464
|
createDashboard(requestParameters: DashboardApiCreateDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateDashboardResponseClass, any>>;
|
|
377
465
|
/**
|
|
378
|
-
*
|
|
466
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.delete\"
|
|
379
467
|
* @param {DashboardApiDeleteDashboardRequest} requestParameters Request parameters.
|
|
380
468
|
* @param {*} [options] Override http request option.
|
|
381
469
|
* @throws {RequiredError}
|
|
@@ -383,7 +471,7 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
383
471
|
*/
|
|
384
472
|
deleteDashboard(requestParameters: DashboardApiDeleteDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any>>;
|
|
385
473
|
/**
|
|
386
|
-
*
|
|
474
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
387
475
|
* @param {DashboardApiGetDashboardRequest} requestParameters Request parameters.
|
|
388
476
|
* @param {*} [options] Override http request option.
|
|
389
477
|
* @throws {RequiredError}
|
|
@@ -391,7 +479,7 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
391
479
|
*/
|
|
392
480
|
getDashboard(requestParameters: DashboardApiGetDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDashboardResponseClass, any>>;
|
|
393
481
|
/**
|
|
394
|
-
*
|
|
482
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
395
483
|
* @param {DashboardApiGetEmbeddedUrlRequest} requestParameters Request parameters.
|
|
396
484
|
* @param {*} [options] Override http request option.
|
|
397
485
|
* @throws {RequiredError}
|
|
@@ -399,7 +487,7 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
399
487
|
*/
|
|
400
488
|
getEmbeddedUrl(requestParameters: DashboardApiGetEmbeddedUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEmbeddedUrlResponseClass, any>>;
|
|
401
489
|
/**
|
|
402
|
-
*
|
|
490
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.view\"
|
|
403
491
|
* @param {DashboardApiListDashboardsRequest} requestParameters Request parameters.
|
|
404
492
|
* @param {*} [options] Override http request option.
|
|
405
493
|
* @throws {RequiredError}
|
|
@@ -407,7 +495,23 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
407
495
|
*/
|
|
408
496
|
listDashboards(requestParameters?: DashboardApiListDashboardsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListDashboardsResponseClass, any>>;
|
|
409
497
|
/**
|
|
410
|
-
*
|
|
498
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
499
|
+
* @param {DashboardApiPublishDashboardRequest} requestParameters Request parameters.
|
|
500
|
+
* @param {*} [options] Override http request option.
|
|
501
|
+
* @throws {RequiredError}
|
|
502
|
+
* @memberof DashboardApi
|
|
503
|
+
*/
|
|
504
|
+
publishDashboard(requestParameters: DashboardApiPublishDashboardRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
505
|
+
/**
|
|
506
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
507
|
+
* @param {DashboardApiRevertAnalysisRequest} requestParameters Request parameters.
|
|
508
|
+
* @param {*} [options] Override http request option.
|
|
509
|
+
* @throws {RequiredError}
|
|
510
|
+
* @memberof DashboardApi
|
|
511
|
+
*/
|
|
512
|
+
revertAnalysis(requestParameters: DashboardApiRevertAnalysisRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
513
|
+
/**
|
|
514
|
+
* undefined **Required Permissions** \"pbm-management.dashboards.update\"
|
|
411
515
|
* @param {DashboardApiUpdateDashboardRequest} requestParameters Request parameters.
|
|
412
516
|
* @param {*} [options] Override http request option.
|
|
413
517
|
* @throws {RequiredError}
|