diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/automations/createWorkflow.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/automations/createWorkflow.ts index 895e3828296..ae114f15474 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/automations/createWorkflow.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/automations/createWorkflow.ts @@ -448,6 +448,10 @@ export interface ConfigClass { * Custom search service type */ type?: RESTType; + /** + * Billing Project ID + */ + billingProjectId?: string; /** * If using Metastore, Key-Value pairs that will be used to add configs to the SparkSession. */ @@ -909,6 +913,10 @@ export interface ConfigClass { * Table name to fetch the query history. */ queryHistoryTable?: string; + /** + * CLI Driver version to connect to DB2. If not provided, the latest version will be used. + */ + clidriverVersion?: string; /** * License to connect to DB2. */ @@ -1280,6 +1288,16 @@ export interface ConfigClass { * Version of the Redash instance */ redashVersion?: string; + /** + * Tableau API version. If not provided, the version will be used from the tableau server. + * + * Sigma API version. + * + * Airbyte API version. + * + * OpenMetadata server API version to use. + */ + apiVersion?: string; /** * Tableau Site Name. */ @@ -1355,14 +1373,6 @@ export interface ConfigClass { * Space types of Qlik Cloud to filter the dashboards ingested into the platform. */ spaceTypes?: SpaceType[]; - /** - * Sigma API version. - * - * Airbyte API version. - * - * OpenMetadata server API version to use. - */ - apiVersion?: string; /** * basic.auth.user.info schema registry config property, Client HTTP credentials in the form * of username:password. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/classification/createClassification.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/classification/createClassification.ts index 8dd1e6823e1..b6b9ba54706 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/classification/createClassification.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/classification/createClassification.ts @@ -102,9 +102,11 @@ export interface EntityReference { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/classification/createTag.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/classification/createTag.ts index 2cfcd705032..8321bc2653b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/classification/createTag.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/classification/createTag.ts @@ -56,9 +56,11 @@ export interface CreateTag { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/classification/loadTags.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/classification/loadTags.ts index 7ec9bc3f3c4..e7561d3f3cb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/classification/loadTags.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/classification/loadTags.ts @@ -110,9 +110,11 @@ export interface EntityReference { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/createBot.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/createBot.ts index 734c0b75225..8a938f4f6bc 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/createBot.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/createBot.ts @@ -41,9 +41,11 @@ export interface CreateBot { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createGlossary.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createGlossary.ts index 20169a669d4..2d5193059a4 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createGlossary.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createGlossary.ts @@ -114,9 +114,11 @@ export interface EntityReference { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createGlossaryTerm.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createGlossaryTerm.ts index 762cc0cb789..bd13a64430c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createGlossaryTerm.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createGlossaryTerm.ts @@ -132,9 +132,11 @@ export interface EntityReference { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/loadGlossary.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/loadGlossary.ts index d36299f91e5..5e0f03982bb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/loadGlossary.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/loadGlossary.ts @@ -122,9 +122,11 @@ export interface EntityReference { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/governance/createWorkflowDefinition.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/governance/createWorkflowDefinition.ts index a3a44ebad8f..23ad6b03dcc 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/governance/createWorkflowDefinition.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/governance/createWorkflowDefinition.ts @@ -269,7 +269,7 @@ export interface AppScheduleClass { */ export enum ScheduleTimeline { Custom = "Custom", - Daily = " Daily", + Daily = "Daily", Hourly = "Hourly", Monthly = "Monthly", None = "None", diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createDashboardService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createDashboardService.ts index 47aa3787ccb..03ea5aa886e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createDashboardService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createDashboardService.ts @@ -228,6 +228,12 @@ export interface Connection { * Choose between API or database connection fetch metadata from superset. */ connection?: SupersetConnection; + /** + * Tableau API version. If not provided, the version will be used from the tableau server. + * + * Sigma API version. + */ + apiVersion?: string; /** * Types of methods used to authenticate to the tableau instance */ @@ -339,10 +345,6 @@ export interface Connection { * token to connect to Qlik Cloud. */ token?: string; - /** - * Sigma API version. - */ - apiVersion?: string; } /** diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createDatabaseService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createDatabaseService.ts index 588f913df52..32803b5a3d6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createDatabaseService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createDatabaseService.ts @@ -149,6 +149,10 @@ export interface DatabaseConnection { * Cockroach Database Connection Config */ export interface ConfigClass { + /** + * Billing Project ID + */ + billingProjectId?: string; /** * If using Metastore, Key-Value pairs that will be used to add configs to the SparkSession. */ @@ -541,6 +545,10 @@ export interface ConfigClass { * Generated Token to connect to Databricks. */ token?: string; + /** + * CLI Driver version to connect to DB2. If not provided, the latest version will be used. + */ + clidriverVersion?: string; /** * License to connect to DB2. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/ingestionPipelines/createIngestionPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/ingestionPipelines/createIngestionPipeline.ts index 2ee35baa0ca..5b5807e2928 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/ingestionPipelines/createIngestionPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/ingestionPipelines/createIngestionPipeline.ts @@ -682,6 +682,10 @@ export interface Pipeline { * Optional configuration to search across databases for tables or not */ searchAcrossDatabases?: boolean; + /** + * Regex to only fetch tags that matches the pattern. + */ + tagFilterPattern?: FilterPattern; /** * Application configuration */ @@ -755,6 +759,8 @@ export interface Pipeline { * Regex to only fetch search indexes that matches the pattern. * * Regex to only fetch api collections with names matching the pattern. + * + * Regex to only fetch tags that matches the pattern. */ export interface FilterPattern { /** @@ -881,6 +887,11 @@ export interface CollateAIAppConfig { * Whether the AutoPilot Workflow should be active or not. */ active?: boolean; + /** + * Enter the retention period for Activity Threads of type = 'Conversation' records in days + * (e.g., 30 for one month, 60 for two months). + */ + activityThreadsRetentionPeriod?: number; /** * Enter the retention period for change event records in days (e.g., 7 for one week, 30 for * one month). @@ -2535,6 +2546,16 @@ export interface ConfigClass { * Matillion Auth Configuration */ connection?: ConfigConnection; + /** + * Tableau API version. If not provided, the version will be used from the tableau server. + * + * Sigma API version. + * + * OpenMetadata server API version to use. + * + * Airbyte API version. + */ + apiVersion?: string; /** * Types of methods used to authenticate to the tableau instance * @@ -2666,13 +2687,9 @@ export interface ConfigClass { */ spaceTypes?: SpaceType[]; /** - * Sigma API version. - * - * OpenMetadata server API version to use. - * - * Airbyte API version. + * Billing Project ID */ - apiVersion?: string; + billingProjectId?: string; /** * If using Metastore, Key-Value pairs that will be used to add configs to the SparkSession. */ @@ -2857,6 +2874,10 @@ export interface ConfigClass { * Table name to fetch the query history. */ queryHistoryTable?: string; + /** + * CLI Driver version to connect to DB2. If not provided, the latest version will be used. + */ + clidriverVersion?: string; /** * License to connect to DB2. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createTeam.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createTeam.ts index ac51a9fcfab..77eb3635132 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createTeam.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createTeam.ts @@ -180,6 +180,10 @@ export interface Webhook { * HTTP operation to send the webhook request. Supports POST or PUT. */ httpMethod?: HTTPMethod; + /** + * Query parameters to be added to the webhook request URL. + */ + queryParams?: { [key: string]: any }; /** * List of receivers to send mail to */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createUser.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createUser.ts index d2b991beebb..cdaf77a10a6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createUser.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createUser.ts @@ -467,6 +467,10 @@ export interface Webhook { * HTTP operation to send the webhook request. Supports POST or PUT. */ httpMethod?: HTTPMethod; + /** + * Query parameters to be added to the webhook request URL. + */ + queryParams?: { [key: string]: any }; /** * List of receivers to send mail to */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestDefinition.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestDefinition.ts index a12d4f98093..5a7e63dac7d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestDefinition.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestDefinition.ts @@ -190,9 +190,11 @@ export enum Rule { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/passwordResetToken.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/passwordResetToken.ts index 78fb4b24524..f79376d6ef2 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/passwordResetToken.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/passwordResetToken.ts @@ -50,4 +50,5 @@ export enum TokenType { PasswordReset = "PASSWORD_RESET", PersonalAccessToken = "PERSONAL_ACCESS_TOKEN", RefreshToken = "REFRESH_TOKEN", + SupportToken = "SUPPORT_TOKEN", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/personalAccessToken.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/personalAccessToken.ts index 56ac9e0d639..499bdffb829 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/personalAccessToken.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/personalAccessToken.ts @@ -50,4 +50,5 @@ export enum TokenType { PasswordReset = "PASSWORD_RESET", PersonalAccessToken = "PERSONAL_ACCESS_TOKEN", RefreshToken = "REFRESH_TOKEN", + SupportToken = "SUPPORT_TOKEN", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/refreshToken.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/refreshToken.ts index e4e98405745..85a365bf2db 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/refreshToken.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/refreshToken.ts @@ -50,4 +50,5 @@ export enum TokenType { PasswordReset = "PASSWORD_RESET", PersonalAccessToken = "PERSONAL_ACCESS_TOKEN", RefreshToken = "REFRESH_TOKEN", + SupportToken = "SUPPORT_TOKEN", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/supporToken.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/supporToken.ts deleted file mode 100644 index 33064e1ee36..00000000000 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/supporToken.ts +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright 2025 Collate. - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * http://www.apache.org/licenses/LICENSE-2.0 - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -/** - * This schema defines an access token used for support purposes. It is used only in Collate. - */ -export interface SupporToken { - /** - * Expiry Date-Time of the token - */ - expiryDate: number; - /** - * JWT Auth Token. - */ - jwtToken?: string; - /** - * Unique Refresh Token for user - */ - token: string; - /** - * Name of the token - */ - tokenName?: string; - /** - * Token Type - */ - tokenType?: TokenType; - /** - * User Id of the User this refresh token is given to - */ - userId: string; -} - -/** - * Token Type - * - * Different Type of User token - */ -export enum TokenType { - EmailVerification = "EMAIL_VERIFICATION", - PasswordReset = "PASSWORD_RESET", - PersonalAccessToken = "PERSONAL_ACCESS_TOKEN", - RefreshToken = "REFRESH_TOKEN", - SupportToken = "SUPPORT_TOKEN", -} diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/appsPrivateConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/appsPrivateConfiguration.ts index c216b3e39ac..20a5cc9afe7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/appsPrivateConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/appsPrivateConfiguration.ts @@ -53,7 +53,7 @@ export interface AppScheduleClass { */ export enum ScheduleTimeline { Custom = "Custom", - Daily = " Daily", + Daily = "Daily", Hourly = "Hourly", Monthly = "Monthly", None = "None", diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/app.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/app.ts index 7c7857eea59..b19bade4104 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/app.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/app.ts @@ -300,6 +300,11 @@ export interface CollateAIAppConfig { * Whether the AutoPilot Workflow should be active or not. */ active?: boolean; + /** + * Enter the retention period for Activity Threads of type = 'Conversation' records in days + * (e.g., 30 for one month, 60 for two months). + */ + activityThreadsRetentionPeriod?: number; /** * Enter the retention period for change event records in days (e.g., 7 for one week, 30 for * one month). @@ -1299,9 +1304,11 @@ export interface AppLimitsConfig { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/appRunRecord.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/appRunRecord.ts index 3adebcdf977..a4df7d0f67b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/appRunRecord.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/appRunRecord.ts @@ -130,7 +130,7 @@ export interface AppScheduleClass { */ export enum ScheduleTimeline { Custom = "Custom", - Daily = " Daily", + Daily = "Daily", Hourly = "Hourly", Monthly = "Monthly", None = "None", diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/createAppRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/createAppRequest.ts index 32452bde40b..231f9ee5efd 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/createAppRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/createAppRequest.ts @@ -62,7 +62,7 @@ export interface AppScheduleClass { */ export enum ScheduleTimeline { Custom = "Custom", - Daily = " Daily", + Daily = "Daily", Hourly = "Hourly", Monthly = "Monthly", None = "None", diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/marketplace/appMarketPlaceDefinition.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/marketplace/appMarketPlaceDefinition.ts index 828aba265fe..c824683b039 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/marketplace/appMarketPlaceDefinition.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/marketplace/appMarketPlaceDefinition.ts @@ -286,6 +286,11 @@ export interface CollateAIAppConfig { * Whether the AutoPilot Workflow should be active or not. */ active?: boolean; + /** + * Enter the retention period for Activity Threads of type = 'Conversation' records in days + * (e.g., 30 for one month, 60 for two months). + */ + activityThreadsRetentionPeriod?: number; /** * Enter the retention period for change event records in days (e.g., 7 for one week, 30 for * one month). @@ -1072,6 +1077,10 @@ export interface Webhook { * HTTP operation to send the webhook request. Supports POST or PUT. */ httpMethod?: HTTPMethod; + /** + * Query parameters to be added to the webhook request URL. + */ + queryParams?: { [key: string]: any }; /** * List of receivers to send mail to */ @@ -1288,9 +1297,11 @@ export enum PrefixCondition { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } @@ -1357,6 +1368,7 @@ export interface ExecutionContext { export enum ScheduleType { Live = "Live", NoSchedule = "NoSchedule", + OnlyManual = "OnlyManual", Scheduled = "Scheduled", ScheduledOrManual = "ScheduledOrManual", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/marketplace/createAppMarketPlaceDefinitionReq.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/marketplace/createAppMarketPlaceDefinitionReq.ts index a2e6de774ad..a04e819904e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/marketplace/createAppMarketPlaceDefinitionReq.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/marketplace/createAppMarketPlaceDefinitionReq.ts @@ -247,6 +247,11 @@ export interface CollateAIAppConfig { * Whether the AutoPilot Workflow should be active or not. */ active?: boolean; + /** + * Enter the retention period for Activity Threads of type = 'Conversation' records in days + * (e.g., 30 for one month, 60 for two months). + */ + activityThreadsRetentionPeriod?: number; /** * Enter the retention period for change event records in days (e.g., 7 for one week, 30 for * one month). @@ -965,6 +970,10 @@ export interface Webhook { * HTTP operation to send the webhook request. Supports POST or PUT. */ httpMethod?: HTTPMethod; + /** + * Query parameters to be added to the webhook request URL. + */ + queryParams?: { [key: string]: any }; /** * List of receivers to send mail to */ @@ -1181,9 +1190,11 @@ export enum PrefixCondition { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } @@ -1250,6 +1261,7 @@ export interface ExecutionContext { export enum ScheduleType { Live = "Live", NoSchedule = "NoSchedule", + OnlyManual = "OnlyManual", Scheduled = "Scheduled", ScheduledOrManual = "ScheduledOrManual", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/automations/testServiceConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/automations/testServiceConnection.ts index 3ac8c4bca11..f8f2d3ef853 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/automations/testServiceConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/automations/testServiceConnection.ts @@ -330,6 +330,10 @@ export interface ConfigClass { * Custom search service type */ type?: RESTType; + /** + * Billing Project ID + */ + billingProjectId?: string; /** * If using Metastore, Key-Value pairs that will be used to add configs to the SparkSession. */ @@ -791,6 +795,10 @@ export interface ConfigClass { * Table name to fetch the query history. */ queryHistoryTable?: string; + /** + * CLI Driver version to connect to DB2. If not provided, the latest version will be used. + */ + clidriverVersion?: string; /** * License to connect to DB2. */ @@ -1162,6 +1170,16 @@ export interface ConfigClass { * Version of the Redash instance */ redashVersion?: string; + /** + * Tableau API version. If not provided, the version will be used from the tableau server. + * + * Sigma API version. + * + * Airbyte API version. + * + * OpenMetadata server API version to use. + */ + apiVersion?: string; /** * Tableau Site Name. */ @@ -1237,14 +1255,6 @@ export interface ConfigClass { * Space types of Qlik Cloud to filter the dashboards ingested into the platform. */ spaceTypes?: SpaceType[]; - /** - * Sigma API version. - * - * Airbyte API version. - * - * OpenMetadata server API version to use. - */ - apiVersion?: string; /** * basic.auth.user.info schema registry config property, Client HTTP credentials in the form * of username:password. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/automations/workflow.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/automations/workflow.ts index 7461a49d374..23a687e71f9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/automations/workflow.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/automations/workflow.ts @@ -864,6 +864,10 @@ export interface ConfigClass { * Custom search service type */ type?: RESTType; + /** + * Billing Project ID + */ + billingProjectId?: string; /** * If using Metastore, Key-Value pairs that will be used to add configs to the SparkSession. */ @@ -1325,6 +1329,10 @@ export interface ConfigClass { * Table name to fetch the query history. */ queryHistoryTable?: string; + /** + * CLI Driver version to connect to DB2. If not provided, the latest version will be used. + */ + clidriverVersion?: string; /** * License to connect to DB2. */ @@ -1696,6 +1704,16 @@ export interface ConfigClass { * Version of the Redash instance */ redashVersion?: string; + /** + * Tableau API version. If not provided, the version will be used from the tableau server. + * + * Sigma API version. + * + * Airbyte API version. + * + * OpenMetadata server API version to use. + */ + apiVersion?: string; /** * Tableau Site Name. */ @@ -1771,14 +1789,6 @@ export interface ConfigClass { * Space types of Qlik Cloud to filter the dashboards ingested into the platform. */ spaceTypes?: SpaceType[]; - /** - * Sigma API version. - * - * Airbyte API version. - * - * OpenMetadata server API version to use. - */ - apiVersion?: string; /** * basic.auth.user.info schema registry config property, Client HTTP credentials in the form * of username:password. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/bot.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/bot.ts index 59137d94b93..4bdd7b52c21 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/bot.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/bot.ts @@ -200,9 +200,11 @@ export interface FieldChange { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/classification/classification.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/classification/classification.ts index 01a528dfbf7..525958da794 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/classification/classification.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/classification/classification.ts @@ -222,9 +222,11 @@ export interface EntityReference { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/classification/tag.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/classification/tag.ts index 607369c21df..ba6ccc09955 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/classification/tag.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/classification/tag.ts @@ -242,9 +242,11 @@ export interface EntityReference { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/glossary.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/glossary.ts index 82e965bb1d5..70ce88d03f7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/glossary.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/glossary.ts @@ -239,9 +239,11 @@ export interface EntityReference { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/glossaryTerm.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/glossaryTerm.ts index 745ca385935..48c96b7476c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/glossaryTerm.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/glossaryTerm.ts @@ -281,9 +281,11 @@ export interface EntityReference { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/policy.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/policy.ts index 0853faeef9f..84d9a80ad30 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/policy.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/policy.ts @@ -240,9 +240,11 @@ export interface EntityReference { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/serviceConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/serviceConnection.ts index c8001a90ec0..67c7cbb8ec0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/serviceConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/serviceConnection.ts @@ -683,6 +683,16 @@ export interface ConfigClass { * Matillion Auth Configuration */ connection?: ConfigConnection; + /** + * Tableau API version. If not provided, the version will be used from the tableau server. + * + * Sigma API version. + * + * OpenMetadata server API version to use. + * + * Airbyte API version. + */ + apiVersion?: string; /** * Types of methods used to authenticate to the tableau instance * @@ -814,13 +824,9 @@ export interface ConfigClass { */ spaceTypes?: SpaceType[]; /** - * Sigma API version. - * - * OpenMetadata server API version to use. - * - * Airbyte API version. + * Billing Project ID */ - apiVersion?: string; + billingProjectId?: string; /** * If using Metastore, Key-Value pairs that will be used to add configs to the SparkSession. */ @@ -1005,6 +1011,10 @@ export interface ConfigClass { * Table name to fetch the query history. */ queryHistoryTable?: string; + /** + * CLI Driver version to connect to DB2. If not provided, the latest version will be used. + */ + clidriverVersion?: string; /** * License to connect to DB2. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/dashboardService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/dashboardService.ts index 11182e8fcde..6469c1ee854 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/dashboardService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/dashboardService.ts @@ -345,6 +345,12 @@ export interface Connection { * Choose between API or database connection fetch metadata from superset. */ connection?: SupersetConnection; + /** + * Tableau API version. If not provided, the version will be used from the tableau server. + * + * Sigma API version. + */ + apiVersion?: string; /** * Types of methods used to authenticate to the tableau instance */ @@ -456,10 +462,6 @@ export interface Connection { * token to connect to Qlik Cloud. */ token?: string; - /** - * Sigma API version. - */ - apiVersion?: string; } /** diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/databaseService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/databaseService.ts index b4a17fa01e1..b91253c36eb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/databaseService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/databaseService.ts @@ -268,6 +268,10 @@ export interface DatabaseConnection { * Cockroach Database Connection Config */ export interface ConfigClass { + /** + * Billing Project ID + */ + billingProjectId?: string; /** * If using Metastore, Key-Value pairs that will be used to add configs to the SparkSession. */ @@ -660,6 +664,10 @@ export interface ConfigClass { * Generated Token to connect to Databricks. */ token?: string; + /** + * CLI Driver version to connect to DB2. If not provided, the latest version will be used. + */ + clidriverVersion?: string; /** * License to connect to DB2. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/ingestionPipelines/ingestionPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/ingestionPipelines/ingestionPipeline.ts index 1a83b1ecbe3..105bc483701 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/ingestionPipelines/ingestionPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/ingestionPipelines/ingestionPipeline.ts @@ -523,6 +523,8 @@ export enum AuthProvider { * Regex to only fetch search indexes that matches the pattern. * * Regex to only fetch api collections with names matching the pattern. + * + * Regex to only fetch tags that matches the pattern. */ export interface FilterPattern { /** @@ -764,9 +766,11 @@ export enum PipelineType { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } @@ -1237,6 +1241,10 @@ export interface Pipeline { * Optional configuration to search across databases for tables or not */ searchAcrossDatabases?: boolean; + /** + * Regex to only fetch tags that matches the pattern. + */ + tagFilterPattern?: FilterPattern; /** * Application configuration */ @@ -1387,6 +1395,11 @@ export interface CollateAIAppConfig { * Whether the AutoPilot Workflow should be active or not. */ active?: boolean; + /** + * Enter the retention period for Activity Threads of type = 'Conversation' records in days + * (e.g., 30 for one month, 60 for two months). + */ + activityThreadsRetentionPeriod?: number; /** * Enter the retention period for change event records in days (e.g., 7 for one week, 30 for * one month). @@ -3041,6 +3054,16 @@ export interface ConfigClass { * Matillion Auth Configuration */ connection?: ConfigConnection; + /** + * Tableau API version. If not provided, the version will be used from the tableau server. + * + * Sigma API version. + * + * OpenMetadata server API version to use. + * + * Airbyte API version. + */ + apiVersion?: string; /** * Types of methods used to authenticate to the tableau instance * @@ -3172,13 +3195,9 @@ export interface ConfigClass { */ spaceTypes?: SpaceType[]; /** - * Sigma API version. - * - * OpenMetadata server API version to use. - * - * Airbyte API version. + * Billing Project ID */ - apiVersion?: string; + billingProjectId?: string; /** * If using Metastore, Key-Value pairs that will be used to add configs to the SparkSession. */ @@ -3363,6 +3382,10 @@ export interface ConfigClass { * Table name to fetch the query history. */ queryHistoryTable?: string; + /** + * CLI Driver version to connect to DB2. If not provided, the latest version will be used. + */ + clidriverVersion?: string; /** * License to connect to DB2. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/metadataService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/metadataService.ts index a8b888cdf4e..7fce1829d78 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/metadataService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/metadataService.ts @@ -987,9 +987,11 @@ export interface EntityReference { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/role.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/role.ts index 289ed831439..da4cdb42a35 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/role.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/role.ts @@ -218,9 +218,11 @@ export interface EntityReference { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/team.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/team.ts index 19f8ff0a01b..c5dea9f0fe1 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/team.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/team.ts @@ -306,6 +306,10 @@ export interface Webhook { * HTTP operation to send the webhook request. Supports POST or PUT. */ httpMethod?: HTTPMethod; + /** + * Query parameters to be added to the webhook request URL. + */ + queryParams?: { [key: string]: any }; /** * List of receivers to send mail to */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/user.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/user.ts index 4aa1bda536c..2d0362081fc 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/user.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/user.ts @@ -570,6 +570,10 @@ export interface Webhook { * HTTP operation to send the webhook request. Supports POST or PUT. */ httpMethod?: HTTPMethod; + /** + * Query parameters to be added to the webhook request URL. + */ + queryParams?: { [key: string]: any }; /** * List of receivers to send mail to */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/api/createEventSubscription.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/api/createEventSubscription.ts index 972d5f2c0ab..2d7bb89611d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/api/createEventSubscription.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/api/createEventSubscription.ts @@ -148,6 +148,10 @@ export interface Webhook { * HTTP operation to send the webhook request. Supports POST or PUT. */ httpMethod?: HTTPMethod; + /** + * Query parameters to be added to the webhook request URL. + */ + queryParams?: { [key: string]: any }; /** * List of receivers to send mail to */ @@ -420,9 +424,11 @@ export interface EntityReference { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/api/testEventSubscriptionDestination.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/api/testEventSubscriptionDestination.ts index 4d77d2e7146..7276a44d1f0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/api/testEventSubscriptionDestination.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/api/testEventSubscriptionDestination.ts @@ -80,6 +80,10 @@ export interface Webhook { * HTTP operation to send the webhook request. Supports POST or PUT. */ httpMethod?: HTTPMethod; + /** + * Query parameters to be added to the webhook request URL. + */ + queryParams?: { [key: string]: any }; /** * List of receivers to send mail to */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/eventSubscription.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/eventSubscription.ts index 570d393b3d0..83609458365 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/eventSubscription.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/eventSubscription.ts @@ -254,6 +254,10 @@ export interface Webhook { * HTTP operation to send the webhook request. Supports POST or PUT. */ httpMethod?: HTTPMethod; + /** + * Query parameters to be added to the webhook request URL. + */ + queryParams?: { [key: string]: any }; /** * List of receivers to send mail to */ @@ -593,9 +597,11 @@ export interface Argument { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/triggers/periodicBatchEntityTrigger.ts b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/triggers/periodicBatchEntityTrigger.ts index 60f8c7bc1ec..cf30926bb78 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/triggers/periodicBatchEntityTrigger.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/triggers/periodicBatchEntityTrigger.ts @@ -54,7 +54,7 @@ export interface AppScheduleClass { */ export enum ScheduleTimeline { Custom = "Custom", - Daily = " Daily", + Daily = "Daily", Hourly = "Hourly", Monthly = "Monthly", None = "None", diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/application.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/application.ts index a7f373471d9..5f2316bb0e5 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/application.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/application.ts @@ -157,6 +157,11 @@ export interface CollateAIAppConfig { * Whether the AutoPilot Workflow should be active or not. */ active?: boolean; + /** + * Enter the retention period for Activity Threads of type = 'Conversation' records in days + * (e.g., 30 for one month, 60 for two months). + */ + activityThreadsRetentionPeriod?: number; /** * Enter the retention period for change event records in days (e.g., 7 for one week, 30 for * one month). diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/applicationPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/applicationPipeline.ts index 2e341264a83..99d2d6e03a3 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/applicationPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/applicationPipeline.ts @@ -146,6 +146,11 @@ export interface CollateAIAppConfig { * Whether the AutoPilot Workflow should be active or not. */ active?: boolean; + /** + * Enter the retention period for Activity Threads of type = 'Conversation' records in days + * (e.g., 30 for one month, 60 for two months). + */ + activityThreadsRetentionPeriod?: number; /** * Enter the retention period for change event records in days (e.g., 7 for one week, 30 for * one month). diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/testSuitePipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/testSuitePipeline.ts index 200dd5aaa6f..372ceb9ae83 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/testSuitePipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/testSuitePipeline.ts @@ -727,6 +727,16 @@ export interface ConfigClass { * Matillion Auth Configuration */ connection?: ConfigConnection; + /** + * Tableau API version. If not provided, the version will be used from the tableau server. + * + * Sigma API version. + * + * OpenMetadata server API version to use. + * + * Airbyte API version. + */ + apiVersion?: string; /** * Types of methods used to authenticate to the tableau instance * @@ -858,13 +868,9 @@ export interface ConfigClass { */ spaceTypes?: SpaceType[]; /** - * Sigma API version. - * - * OpenMetadata server API version to use. - * - * Airbyte API version. + * Billing Project ID */ - apiVersion?: string; + billingProjectId?: string; /** * If using Metastore, Key-Value pairs that will be used to add configs to the SparkSession. */ @@ -1049,6 +1055,10 @@ export interface ConfigClass { * Table name to fetch the query history. */ queryHistoryTable?: string; + /** + * CLI Driver version to connect to DB2. If not provided, the latest version will be used. + */ + clidriverVersion?: string; /** * License to connect to DB2. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/workflow.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/workflow.ts index 32e61b62153..7165897a443 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/workflow.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/workflow.ts @@ -763,6 +763,16 @@ export interface ConfigClass { * Matillion Auth Configuration */ connection?: ConfigConnection; + /** + * Tableau API version. If not provided, the version will be used from the tableau server. + * + * Sigma API version. + * + * OpenMetadata server API version to use. + * + * Airbyte API version. + */ + apiVersion?: string; /** * Types of methods used to authenticate to the tableau instance * @@ -894,13 +904,9 @@ export interface ConfigClass { */ spaceTypes?: SpaceType[]; /** - * Sigma API version. - * - * OpenMetadata server API version to use. - * - * Airbyte API version. + * Billing Project ID */ - apiVersion?: string; + billingProjectId?: string; /** * If using Metastore, Key-Value pairs that will be used to add configs to the SparkSession. */ @@ -1085,6 +1091,10 @@ export interface ConfigClass { * Table name to fetch the query history. */ queryHistoryTable?: string; + /** + * CLI Driver version to connect to DB2. If not provided, the latest version will be used. + */ + clidriverVersion?: string; /** * License to connect to DB2. */ @@ -1751,6 +1761,8 @@ export interface UsernamePasswordAuthentication { * * Regex to only compute metrics for table that matches the given tag, tiers, gloassary * pattern. + * + * Regex to only fetch tags that matches the pattern. */ export interface FilterPattern { /** @@ -4350,6 +4362,10 @@ export interface Pipeline { * Optional configuration to search across databases for tables or not */ searchAcrossDatabases?: boolean; + /** + * Regex to only fetch tags that matches the pattern. + */ + tagFilterPattern?: FilterPattern; /** * Application configuration */ @@ -4500,6 +4516,11 @@ export interface CollateAIAppConfig { * Whether the AutoPilot Workflow should be active or not. */ active?: boolean; + /** + * Enter the retention period for Activity Threads of type = 'Conversation' records in days + * (e.g., 30 for one month, 60 for two months). + */ + activityThreadsRetentionPeriod?: number; /** * Enter the retention period for change event records in days (e.g., 7 for one week, 30 for * one month). diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/tests/testDefinition.ts b/openmetadata-ui/src/main/resources/ui/src/generated/tests/testDefinition.ts index 8d42e3967e9..5c3fd3950ca 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/tests/testDefinition.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/tests/testDefinition.ts @@ -319,9 +319,11 @@ export enum Rule { /** * Type of provider of an entity. Some entities are provided by the `system`. Some are * entities created and provided by the `user`. Typically `system` provide entities can't be - * deleted and can only be disabled. + * deleted and can only be disabled. Some apps such as AutoPilot create entities with + * `automation` provider type. These entities can be deleted by the user. */ export enum ProviderType { + Automation = "automation", System = "system", User = "user", } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/profile.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/profile.ts index b5441124729..2b563c4b995 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/profile.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/profile.ts @@ -57,6 +57,10 @@ export interface Webhook { * HTTP operation to send the webhook request. Supports POST or PUT. */ httpMethod?: HTTPMethod; + /** + * Query parameters to be added to the webhook request URL. + */ + queryParams?: { [key: string]: any }; /** * List of receivers to send mail to */