diff --git a/openmetadata-ui/src/main/resources/ui/.licenseheaderignore b/openmetadata-ui/src/main/resources/ui/.licenseheaderignore index 628cfc3358e..f7456920b39 100644 --- a/openmetadata-ui/src/main/resources/ui/.licenseheaderignore +++ b/openmetadata-ui/src/main/resources/ui/.licenseheaderignore @@ -75,8 +75,8 @@ Thumbs.db # Sonar cloud "sonar-project.properties" -# Generated -src/generated +# ignore antlr generated source +src/generated/antlr # Snapshots *.snap diff --git a/openmetadata-ui/src/main/resources/ui/.licenseheaderrc.json b/openmetadata-ui/src/main/resources/ui/.licenseheaderrc.json index e2b6b467fd7..12264de83e6 100644 --- a/openmetadata-ui/src/main/resources/ui/.licenseheaderrc.json +++ b/openmetadata-ui/src/main/resources/ui/.licenseheaderrc.json @@ -2,7 +2,7 @@ "ignoreFile": ".licenseheaderignore", "license": "LICENSE", "trailingWhitespace": "TRIM", - "regexIdentifier": "@@", + "regexIdentifier": "@@@", "licenseFormats": { "sh|yml|yaml|^Dockerfile": { "eachLine": { diff --git a/openmetadata-ui/src/main/resources/ui/LICENSE b/openmetadata-ui/src/main/resources/ui/LICENSE index 25a90e50e89..72cc10a72fb 100644 --- a/openmetadata-ui/src/main/resources/ui/LICENSE +++ b/openmetadata-ui/src/main/resources/ui/LICENSE @@ -1,4 +1,4 @@ -Copyright @@[0-9]{4}@@ Collate. +Copyright @@@[0-9]{4}@@@ 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 diff --git a/openmetadata-ui/src/main/resources/ui/json2ts.sh b/openmetadata-ui/src/main/resources/ui/json2ts.sh index 85f6df1d0d0..bb7660c0e08 100755 --- a/openmetadata-ui/src/main/resources/ui/json2ts.sh +++ b/openmetadata-ui/src/main/resources/ui/json2ts.sh @@ -16,32 +16,13 @@ schema_directory='openmetadata-spec/src/main/resources/json/schema' om_ui_directory='openmetadata-ui/src/main/resources/ui/src/generated' -tmp_dir=$(mktemp -d) -addLicensing() { - dir=$1 - txt=$(cat openmetadata-ui/src/main/resources/ui/types-licensing.txt; cat "$dir") - echo "$txt" > "$dir" -} - -generateTmpSchemaFile() { - schema_file=$1 - tmp_schema_file=$2 - jq '(."$id" |= sub("https://open-metadata.org/schema";"";"i"))' "$schema_file" > "$tmp_schema_file" -} generateType() { tmp_schema_file=$1 output_file=$2 echo "Generating $output_file from specification at $tmp_schema_file" ./node_modules/.bin/quicktype -s schema "$tmp_schema_file" -o "$output_file" --just-types > /dev/null 2>&1 - - if [ -s "$output_file" ]; then - addLicensing "$output_file" - else - echo "Error: Could not generate $output_file" - rm -f "$output_file" - fi } processFile() { @@ -60,8 +41,7 @@ processFile() { output_file="$output_dir/$(basename "$schema_file" .json).ts" # Generate temporary schema and TypeScript file - generateTmpSchemaFile "$schema_file" "$tmp_schema_file" - generateType "$tmp_schema_file" "$output_file" + generateType "$schema_file" "$output_file" } getTypes() { @@ -88,7 +68,4 @@ fi # Process the schema files passed as arguments getTypes "$@" -# Clean up temporary files -rm -rf "$tmp_dir" - echo "TypeScript generation completed." \ No newline at end of file diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportData.ts b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportData.ts index bbc437479d6..443133fa932 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportData.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportData.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/aggregatedCostAnalysisReportData.ts b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/aggregatedCostAnalysisReportData.ts index 3c7104e047d..832b3d19f20 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/aggregatedCostAnalysisReportData.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/aggregatedCostAnalysisReportData.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Aggregated data for Cost Analysis Report. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/entityReportData.ts b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/entityReportData.ts index 9bc690597b1..80e90c957c1 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/entityReportData.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/entityReportData.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Refined data for Entity Report. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/rawCostAnalysisReportData.ts b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/rawCostAnalysisReportData.ts index 8b3eac17a62..ef7d3b78fc5 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/rawCostAnalysisReportData.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/rawCostAnalysisReportData.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Raw data for Cost Analysis Report. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/webAnalyticEntityViewReportData.ts b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/webAnalyticEntityViewReportData.ts index ea014d22e18..b9338ab1f6f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/webAnalyticEntityViewReportData.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/webAnalyticEntityViewReportData.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Refined data for overview report */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/webAnalyticUserActivityReportData.ts b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/webAnalyticUserActivityReportData.ts index c3980ba76a1..f953154a642 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/webAnalyticUserActivityReportData.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/reportDataType/webAnalyticUserActivityReportData.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Refined data for overview report */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEvent.ts b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEvent.ts index b73c4ee670f..6d579baa89c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEvent.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEvent.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Web Analytic Event */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEventData.ts b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEventData.ts index 23d6904ace2..dfa7d5e400b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEventData.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEventData.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * web analytics event data */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEventType/customEvent.ts b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEventType/customEvent.ts index b6ae9dbf406..903d4bed54a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEventType/customEvent.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEventType/customEvent.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Event tracker (e.g. clicks, etc.) */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEventType/pageViewEvent.ts b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEventType/pageViewEvent.ts index 98f19612787..21aab8ec631 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEventType/pageViewEvent.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/analytics/webAnalyticEventType/pageViewEvent.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Page view data event */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/EntityLinkLexer.js b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/EntityLinkLexer.js index f7c00742791..cc46450cda8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/EntityLinkLexer.js +++ b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/EntityLinkLexer.js @@ -1,4 +1,4 @@ -// Generated from /Users/harsha/Code/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/EntityLink.g4 by ANTLR 4.9.2 +// Generated from /Users/chiragmadlani/deuex/openmetadata-collate/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/EntityLink.g4 by ANTLR 4.9.2 // jshint ignore: start import antlr4 from 'antlr4'; diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/EntityLinkListener.js b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/EntityLinkListener.js index 280ed1fe41f..444823a466f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/EntityLinkListener.js +++ b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/EntityLinkListener.js @@ -1,4 +1,4 @@ -// Generated from /Users/harsha/Code/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/EntityLink.g4 by ANTLR 4.9.2 +// Generated from /Users/chiragmadlani/deuex/openmetadata-collate/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/EntityLink.g4 by ANTLR 4.9.2 // jshint ignore: start import antlr4 from 'antlr4'; diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/EntityLinkParser.js b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/EntityLinkParser.js index 78d268777fa..76d90476f77 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/EntityLinkParser.js +++ b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/EntityLinkParser.js @@ -1,4 +1,4 @@ -// Generated from /Users/harsha/Code/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/EntityLink.g4 by ANTLR 4.9.2 +// Generated from /Users/chiragmadlani/deuex/openmetadata-collate/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/EntityLink.g4 by ANTLR 4.9.2 // jshint ignore: start import antlr4 from 'antlr4'; import EntityLinkListener from './EntityLinkListener.js'; diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/FqnLexer.js b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/FqnLexer.js index d49bbc8ea47..4a2f46128e2 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/FqnLexer.js +++ b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/FqnLexer.js @@ -1,4 +1,4 @@ -// Generated from /Users/harsha/Code/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/Fqn.g4 by ANTLR 4.9.2 +// Generated from /Users/chiragmadlani/deuex/openmetadata-collate/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/Fqn.g4 by ANTLR 4.9.2 // jshint ignore: start import antlr4 from 'antlr4'; diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/FqnListener.js b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/FqnListener.js index ff586e013bf..bb4bfe6cf4e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/FqnListener.js +++ b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/FqnListener.js @@ -1,4 +1,4 @@ -// Generated from /Users/harsha/Code/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/Fqn.g4 by ANTLR 4.9.2 +// Generated from /Users/chiragmadlani/deuex/openmetadata-collate/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/Fqn.g4 by ANTLR 4.9.2 // jshint ignore: start import antlr4 from 'antlr4'; diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/FqnParser.js b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/FqnParser.js index 4aa5c35fb48..63604bf293b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/FqnParser.js +++ b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/FqnParser.js @@ -1,4 +1,4 @@ -// Generated from /Users/harsha/Code/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/Fqn.g4 by ANTLR 4.9.2 +// Generated from /Users/chiragmadlani/deuex/openmetadata-collate/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/Fqn.g4 by ANTLR 4.9.2 // jshint ignore: start import antlr4 from 'antlr4'; import FqnListener from './FqnListener.js'; diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/JdbcUriLexer.js b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/JdbcUriLexer.js index 02fab549d79..f4c4203fabb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/JdbcUriLexer.js +++ b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/JdbcUriLexer.js @@ -1,4 +1,4 @@ -// Generated from /Users/harsha/Code/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/JdbcUri.g4 by ANTLR 4.9.2 +// Generated from /Users/chiragmadlani/deuex/openmetadata-collate/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/JdbcUri.g4 by ANTLR 4.9.2 // jshint ignore: start import antlr4 from 'antlr4'; diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/JdbcUriListener.js b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/JdbcUriListener.js index 18e5416f7e9..3ef1803fb8d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/JdbcUriListener.js +++ b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/JdbcUriListener.js @@ -1,4 +1,4 @@ -// Generated from /Users/harsha/Code/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/JdbcUri.g4 by ANTLR 4.9.2 +// Generated from /Users/chiragmadlani/deuex/openmetadata-collate/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/JdbcUri.g4 by ANTLR 4.9.2 // jshint ignore: start import antlr4 from 'antlr4'; diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/JdbcUriParser.js b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/JdbcUriParser.js index a951a26de85..4b9005dd842 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/antlr/JdbcUriParser.js +++ b/openmetadata-ui/src/main/resources/ui/src/generated/antlr/JdbcUriParser.js @@ -1,4 +1,4 @@ -// Generated from /Users/harsha/Code/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/JdbcUri.g4 by ANTLR 4.9.2 +// Generated from /Users/chiragmadlani/deuex/openmetadata-collate/OpenMetadata/openmetadata-ui/src/main/resources/ui/../../../../../openmetadata-spec/src/main/antlr4/org/openmetadata/schema/JdbcUri.g4 by ANTLR 4.9.2 // jshint ignore: start import antlr4 from 'antlr4'; import JdbcUriListener from './JdbcUriListener.js'; diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/addGlossaryToAssetsRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/addGlossaryToAssetsRequest.ts index 79fb2d2d58e..88d5d308ac7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/addGlossaryToAssetsRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/addGlossaryToAssetsRequest.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Request for adding a glossary to assets */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/addTagToAssetsRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/addTagToAssetsRequest.ts index d5597cf922c..4131c6ca775 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/addTagToAssetsRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/addTagToAssetsRequest.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Request for adding a tag to assets */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/analytics/createWebAnalyticEvent.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/analytics/createWebAnalyticEvent.ts index bbd4a09ffef..84ce3f5102c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/analytics/createWebAnalyticEvent.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/analytics/createWebAnalyticEvent.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Payload to create a web analytic event */ 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 f43c7ccf606..37f76c5d424 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A unit of work that will be triggered as an API call to the OpenMetadata server. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/bulkAssets.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/bulkAssets.ts index b31dbdaf323..488e5e8c44e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/bulkAssets.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/bulkAssets.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Represents schema for adding bulk relationships to an entity. */ 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 003849c664c..65dfe16a4ac 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create classification request */ 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 b9a92049bfd..4f2cfa0cd5a 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create tag API request */ 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 ee14c1102ea..458512d7f83 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Load classifications and tags */ 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 2ec4c8b65a3..b16802eda79 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create bot API request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/createEventPublisherJob.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/createEventPublisherJob.ts index 0698e72122b..f33e0e078b6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/createEventPublisherJob.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/createEventPublisherJob.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Event Publisher Run Result. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/createType.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/createType.ts index 8d94642e11f..4c86414960c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/createType.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/createType.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create a Type to be used for extending entities. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createAPICollection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createAPICollection.ts index 6003ec1ae44..72db71e3ccd 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createAPICollection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createAPICollection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create API Collection entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createAPIEndpoint.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createAPIEndpoint.ts index 6709ba6a75c..bc635817b03 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createAPIEndpoint.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createAPIEndpoint.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create a APIEndpoint entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createChart.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createChart.ts index 7fa87ee60a9..783b8fe9edf 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createChart.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createChart.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Chart entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createContainer.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createContainer.ts index 2d9c6cd1da1..14fda468e94 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createContainer.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createContainer.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Container Model entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createCustomProperty.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createCustomProperty.ts index ca85eb8c89d..983b139c7ec 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createCustomProperty.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createCustomProperty.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Custom Property Model entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDashboard.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDashboard.ts index 95fbee5d7c1..e133f3a4753 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDashboard.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDashboard.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Dashboard entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDashboardDataModel.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDashboardDataModel.ts index dcc37c39737..05c4ed4a54f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDashboardDataModel.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDashboardDataModel.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Dashboard Data Model entity request. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDatabase.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDatabase.ts index e75f46156fc..c808e1f9fd3 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDatabase.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDatabase.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Database entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDatabaseSchema.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDatabaseSchema.ts index d719f675630..1340f0c41c9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDatabaseSchema.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createDatabaseSchema.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Database Schema entity request */ 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 8b316785a4a..80111b1a903 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Glossary entity request */ 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 d30ef4356a8..c91413d07aa 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Glossary term entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createMetric.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createMetric.ts index 95541d18f12..442c0297bf4 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createMetric.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createMetric.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Metric entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createMlModel.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createMlModel.ts index 70b543a7080..6b9e64b2891 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createMlModel.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createMlModel.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Ml Model entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createPipeline.ts index a8caca8a53c..68908d0301f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Pipeline entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createQuery.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createQuery.ts index 3f66d27d658..df96d98c687 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createQuery.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createQuery.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Query Request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createSearchIndex.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createSearchIndex.ts index 66e45a7417f..fa6aa223d85 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createSearchIndex.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createSearchIndex.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create a SearchIndex entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createStoredProcedure.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createStoredProcedure.ts index 0f4fe9aabaa..5f25afeba28 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createStoredProcedure.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createStoredProcedure.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Stored Procedure Request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createTable.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createTable.ts index 8b74e7ff8da..bc14e8b3d9f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createTable.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createTable.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema corresponding to a table that belongs to a database */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createTableProfile.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createTableProfile.ts index 9771b20d689..0fb4fe1057b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createTableProfile.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createTableProfile.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema corresponding to a table profile that belongs to a table */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createTopic.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createTopic.ts index dffa245160f..7b89505e5b9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createTopic.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/createTopic.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create a topic entity request */ 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 b0f366bd019..7efd13c7f5a 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Load a glossary */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/restoreEntity.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/restoreEntity.ts index 73922767767..7bcd6b536bf 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/data/restoreEntity.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/data/restoreEntity.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Restore Entity API request to restore soft deleted entity. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/dataInsight/createDataInsightChart.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/dataInsight/createDataInsightChart.ts index ec8c2a885b3..83be5a89b2b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/dataInsight/createDataInsightChart.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/dataInsight/createDataInsightChart.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Payload to create a data insight chart */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/dataInsight/custom/createDataInsightCustomChart.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/dataInsight/custom/createDataInsightCustomChart.ts index 83ed7c40c3f..872b85f5d09 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/dataInsight/custom/createDataInsightCustomChart.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/dataInsight/custom/createDataInsightCustomChart.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Payload to create a data insight custom chart */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/dataInsight/kpi/createKpiRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/dataInsight/kpi/createKpiRequest.ts index d22f87669a8..e087cb39f60 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/dataInsight/kpi/createKpiRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/dataInsight/kpi/createKpiRequest.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema corresponding to a Kpi. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/docStore/createDocument.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/docStore/createDocument.ts index 6594dd4f6b0..6bdda84376b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/docStore/createDocument.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/docStore/createDocument.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Document. A Generic entity to capture any kind of Json Payload. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/domains/createDataProduct.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/domains/createDataProduct.ts index 39e9be94bac..c3cb7930eb7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/domains/createDataProduct.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/domains/createDataProduct.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create DataProduct API request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/domains/createDomain.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/domains/createDomain.ts index 3d97dbeca81..22e6ec2b090 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/domains/createDomain.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/domains/createDomain.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Domain API request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/closeTask.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/closeTask.ts index 2b15c0e153c..93f02522366 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/closeTask.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/closeTask.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Close Task request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/createPost.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/createPost.ts index f8f176b4c01..af637c9f4ed 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/createPost.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/createPost.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create post request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/createSuggestion.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/createSuggestion.ts index a250284cbc9..c18ea2053d0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/createSuggestion.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/createSuggestion.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Suggestion request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/createThread.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/createThread.ts index cce6bcc2a94..29c96999031 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/createThread.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/createThread.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create thread request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/resolveTask.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/resolveTask.ts index 6cbb785a3da..78c109186ac 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/resolveTask.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/resolveTask.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Resolve Task request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/threadCount.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/threadCount.ts index 2508f4fbf93..1ba0eb76fe6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/threadCount.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/feed/threadCount.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the type for reporting the count of threads related to an entity. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/governance/createWorkflowInstanceState.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/governance/createWorkflowInstanceState.ts index 652605a52f8..047bcff8078 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/governance/createWorkflowInstanceState.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/governance/createWorkflowInstanceState.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Workflow Instance State Request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/lineage/addLineage.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/lineage/addLineage.ts index f9b1d89fcdc..a846cb53ee7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/lineage/addLineage.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/lineage/addLineage.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Add lineage details between two entities */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/openMetadataServerVersion.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/openMetadataServerVersion.ts index 0cffbc6b9a8..40a923b5024 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/openMetadataServerVersion.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/openMetadataServerVersion.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * OpenMetadata Server application software version */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/policies/createPolicy.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/policies/createPolicy.ts index 8477c20057d..91ee0d853c8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/policies/createPolicy.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/policies/createPolicy.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Policy Entity Request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createApiService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createApiService.ts index 417f03929f6..0148ef7c281 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createApiService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createApiService.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create API Service entity request */ 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 9d2252802c5..3fd2d1dc142 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Dashboard service entity request */ 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 258a45fe5e4..115aa8276ee 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Database service entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createMessagingService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createMessagingService.ts index 372df897090..1b0bb73c450 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createMessagingService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createMessagingService.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Messaging service entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createMetadataService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createMetadataService.ts index 7a2540be7cf..760586cdbe1 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createMetadataService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createMetadataService.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Metadata Service entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createMlModelService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createMlModelService.ts index 98381710556..832a3c139e2 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createMlModelService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createMlModelService.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create MlModel service entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createPipelineService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createPipelineService.ts index 58e1419594b..4d25ae15b9e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createPipelineService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createPipelineService.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Pipeline service entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createSearchService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createSearchService.ts index 75d062c0ce6..dc24d297f6e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createSearchService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createSearchService.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Search Service entity request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createStorageService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createStorageService.ts index e360f2f04ed..19ad5552052 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createStorageService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/services/createStorageService.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Storage Service entity request */ 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 1b9144621e0..ccde4de5a9b 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Ingestion Pipeline Config is used to set up an Airflow DAG. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/setOwner.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/setOwner.ts index b065f7f1aa9..2fe11c504b1 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/setOwner.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/setOwner.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Set ownership for a given entity */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createPersona.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createPersona.ts index 0b1468b2cb4..ebcd41c2c83 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createPersona.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createPersona.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Persona entity */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createRole.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createRole.ts index 5ff6bda04dc..46fbe0a13a9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createRole.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/teams/createRole.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Request for creating a Role entity */ 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 a1bf316a2b0..9b60d31c141 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Team entity */ 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 e09a042810e..6d5ee44c41c 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Request to create User entity */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createCustomMetric.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createCustomMetric.ts index 09e1460fdda..bac8b955905 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createCustomMetric.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createCustomMetric.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Custom Metric definition that we will associate with a column. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createLogicalTestCases.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createLogicalTestCases.ts index 3438066ae49..6b634ab6a19 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createLogicalTestCases.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createLogicalTestCases.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Object used to create logical test cases. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestCase.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestCase.ts index 40aad5d76de..280ff1007e9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestCase.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestCase.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Test is a test definition to capture data quality tests. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestCaseResolutionStatus.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestCaseResolutionStatus.ts index c3af51af4b1..16cc0c585e7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestCaseResolutionStatus.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestCaseResolutionStatus.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema to create a new test case result resolution status. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestCaseResult.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestCaseResult.ts index 935d7418da3..80dae91b90f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestCaseResult.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestCaseResult.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema to create a new test case result . */ 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 c136f6c570b..e8770bce951 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema corresponding to a Test Definition */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestSuite.ts b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestSuite.ts index 975616f8bc3..2b393503b01 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestSuite.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/api/tests/createTestSuite.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema corresponding to a Test Suite */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/basicAuth.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/basicAuth.ts index 8e581c7833c..8b06785e6e6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/basicAuth.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/basicAuth.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * User basic Auth Mechanism. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/basicLoginRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/basicLoginRequest.ts index 1617723bec0..b38231f1c04 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/basicLoginRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/basicLoginRequest.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Login Request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/changePasswordRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/changePasswordRequest.ts index aed0c52c7a8..3f616acdd44 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/changePasswordRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/changePasswordRequest.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Change Password Request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/createPersonalToken.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/createPersonalToken.ts index ac99caff4cc..c037354be82 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/createPersonalToken.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/createPersonalToken.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Create Personal Access Token Request */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/emailRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/emailRequest.ts index d38ddc33440..b3eaa1c5366 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/emailRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/emailRequest.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Email Request containing only Email */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/generateToken.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/generateToken.ts index 23a1fbcdd79..b33eff322c9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/generateToken.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/generateToken.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Generate JWT Token Request. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/jwtAuth.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/jwtAuth.ts index df465164a54..6acb7826a41 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/jwtAuth.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/jwtAuth.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * User/Bot JWTAuthMechanism. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/loginRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/loginRequest.ts index 251ed3034a3..dfcd8ac1ef8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/loginRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/loginRequest.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Email Verification Token Schema. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/logoutRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/logoutRequest.ts index cdf73c1940b..94120f757a9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/logoutRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/logoutRequest.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Logout Request. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/passwordResetRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/passwordResetRequest.ts index 8bc35184027..e75cdda925c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/passwordResetRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/passwordResetRequest.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Email Verification Token Schema. */ 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 b462a9ec38d..69e8eecef97 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Password Verification Token Schema. */ 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 63e843974ae..ebc2af8b6c1 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Personal Access Token Schema. */ 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 e33f6925c3a..cb634c35d26 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Refresh Token Schema. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/registrationRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/registrationRequest.ts index f7920890532..b8eb6e2e794 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/registrationRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/registrationRequest.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the SMTP Settings for sending Email */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/revokePersonalToken.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/revokePersonalToken.ts index 5edee367a37..4f60b5b2a79 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/revokePersonalToken.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/revokePersonalToken.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Generate JWT Token Request. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/revokeToken.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/revokeToken.ts index f1d4af8284c..cbac67b123a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/revokeToken.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/revokeToken.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Generate JWT Token Request. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/serviceTokenEnum.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/serviceTokenEnum.ts index bc4f2f0530f..533bca79502 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/serviceTokenEnum.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/serviceTokenEnum.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Different Type of OpenMetadata Service tokens */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/ssoAuth.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/ssoAuth.ts index a00d1e323a8..601ee563b38 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/ssoAuth.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/ssoAuth.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * User/Bot SSOAuthN. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/auth/tokenRefreshRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/auth/tokenRefreshRequest.ts index 52a0c374e7e..90ff32d6852 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/auth/tokenRefreshRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/auth/tokenRefreshRequest.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Token Refresh Request */ 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 dd05eeec897..65b195c3434 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines a list of configurations for the Application Framework */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/assetCertificationSettings.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/assetCertificationSettings.ts index 1155e81649e..6e020d42ca7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/assetCertificationSettings.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/assetCertificationSettings.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Asset Certification Settings. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/authConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/authConfig.ts index a87babf762b..9b6b57da335 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/authConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/authConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Auth Config. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/authenticationConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/authenticationConfiguration.ts index e6b408483e1..c21521c1562 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/authenticationConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/authenticationConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Authentication Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/authorizerConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/authorizerConfiguration.ts index 2e110329d3d..908ee8a9561 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/authorizerConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/authorizerConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Authorization Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/changeEventConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/changeEventConfiguration.ts index ad7b8fc993c..db7894ae077 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/changeEventConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/changeEventConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the ChangeEvent Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/dataQualityConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/dataQualityConfiguration.ts index 0feb6a55859..a1d04511ee8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/dataQualityConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/dataQualityConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Data Quality Configuration */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/elasticSearchConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/elasticSearchConfiguration.ts index 0571e923a14..eb69a735348 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/elasticSearchConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/elasticSearchConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Elastic Search Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/eventHandlerConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/eventHandlerConfiguration.ts index 7386f2295be..e1a2c35e159 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/eventHandlerConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/eventHandlerConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Event Handler Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/fernetConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/fernetConfiguration.ts index bab28494f4a..a0a7e0a9c86 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/fernetConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/fernetConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Fernet Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/jwtTokenConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/jwtTokenConfiguration.ts index 2750a14bd39..0917955cede 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/jwtTokenConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/jwtTokenConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the JWT Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/kafkaEventConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/kafkaEventConfiguration.ts index 6859214ec36..97b7b8d2c20 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/kafkaEventConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/kafkaEventConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Kafka Event Publisher Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapConfiguration.ts index 50748cfb3c7..41949a54c90 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * LDAP Configuration */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/customTrustManagerConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/customTrustManagerConfig.ts index 9fb8d611a39..26a3abda184 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/customTrustManagerConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/customTrustManagerConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * CustomTrust Configuration */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/hostNameConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/hostNameConfig.ts index 598eeecfea8..ce9186db9ca 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/hostNameConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/hostNameConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * HostName Configuration */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/jvmDefaultConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/jvmDefaultConfig.ts index d2af1f94198..008a94f05a8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/jvmDefaultConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/jvmDefaultConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * JVMDefault Configuration */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/trustAllConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/trustAllConfig.ts index 73de3523f44..d4e553c2671 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/trustAllConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/trustAllConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * TrustAll Configuration */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/truststoreConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/truststoreConfig.ts index 380103214f7..cfb64b0ec05 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/truststoreConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/ldapTrustStoreConfig/truststoreConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Truststore Configuration */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/limitsConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/limitsConfiguration.ts index 2314a5f5ab0..f7c24aabab9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/limitsConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/limitsConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Limits Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/lineageSettings.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/lineageSettings.ts index b0e2b87d182..7c83d2da160 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/lineageSettings.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/lineageSettings.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Lineage Settings. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/loginConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/loginConfiguration.ts index befa8d6d6bd..5099d366796 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/loginConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/loginConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Login Configuration */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/logoConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/logoConfiguration.ts index dda3a1c6a3f..5ba63e5811a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/logoConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/logoConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Logo Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/pipelineServiceClientConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/pipelineServiceClientConfiguration.ts index 8d70e2f6726..8773ce083f9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/pipelineServiceClientConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/pipelineServiceClientConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Pipeline Service Client Configuration */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/profilerConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/profilerConfiguration.ts index 284a7795e02..c060d101088 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/profilerConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/profilerConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the profiler configuration. It is used to configure globally the * metrics to compute for specific data types. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/searchSettings.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/searchSettings.ts index 4ab0a3e6be0..d856cd7c064 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/searchSettings.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/searchSettings.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Rbac Search Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/slackAppConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/slackAppConfiguration.ts index 5a58fc5f9c6..7ba2384d17a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/slackAppConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/slackAppConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Slack App Information */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/taskNotificationConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/taskNotificationConfiguration.ts index cfe6d650894..6052102abf0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/taskNotificationConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/taskNotificationConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the SSL Config. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/testResultNotificationConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/testResultNotificationConfiguration.ts index acea051f4b8..f9fab195383 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/testResultNotificationConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/testResultNotificationConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the SSL Config. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/themeConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/themeConfiguration.ts index 76c924f8761..51e8cce5f68 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/themeConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/themeConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Theme Configuration for UI elements. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/uiThemePreference.ts b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/uiThemePreference.ts index 80ce69a17de..fd50a4c6829 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/configuration/uiThemePreference.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/configuration/uiThemePreference.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines UI related configuration and settings. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/dataInsightCustomChart.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/dataInsightCustomChart.ts index f1ca7717cbc..c1cbb708ffb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/dataInsightCustomChart.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/dataInsightCustomChart.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DI Chart Entity */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/dataInsightCustomChartResult.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/dataInsightCustomChartResult.ts index 16db0161c17..cd8e93f3163 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/dataInsightCustomChartResult.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/dataInsightCustomChartResult.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Data Insight Custom Chart Result */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/dataInsightCustomChartResultList.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/dataInsightCustomChartResultList.ts index 3a09d02b151..c91fc755c6d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/dataInsightCustomChartResultList.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/dataInsightCustomChartResultList.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Data Insight Custom Chart Result List */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/formulaHolder.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/formulaHolder.ts index 8601e8e8bd1..8dc722b22a8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/formulaHolder.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/formulaHolder.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * formulaHolder */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/lineChart.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/lineChart.ts index 73850b8f3b0..f0f3fab23dc 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/lineChart.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/lineChart.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Line Chart */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/summaryCard.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/summaryCard.ts index 75a44fa3fbf..efc6bdf3fd7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/summaryCard.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/custom/summaryCard.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Summary Card */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/dataInsightChart.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/dataInsightChart.ts index 8fb1ba6f1b9..2a076c3c606 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/dataInsightChart.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/dataInsightChart.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DataInsightChart represents the definition of a chart with its parameters */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/dataInsightChartResult.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/dataInsightChartResult.ts index de157d582d2..c68fcf7a82a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/dataInsightChartResult.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/dataInsightChartResult.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DataInsightChartResult represents data that will be consumed by a specific chart */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/kpi/kpi.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/kpi/kpi.ts index 18d7bbfce80..54e3549daeb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/kpi/kpi.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/kpi/kpi.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A `KIP` entity defines a metric and a target. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUnusedAssetsCount.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUnusedAssetsCount.ts index d53314a9b2d..7f210dccc88 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUnusedAssetsCount.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUnusedAssetsCount.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * AggregatedUnusedAssetsCount data blob */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUnusedAssetsSize.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUnusedAssetsSize.ts index fa8273e0d63..6ed726f8a60 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUnusedAssetsSize.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUnusedAssetsSize.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * AggregatedUnusedAssetsSize data blob */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUsedVsUnusedAssetsCount.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUsedVsUnusedAssetsCount.ts index 575b3837df5..3fe856179bb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUsedVsUnusedAssetsCount.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUsedVsUnusedAssetsCount.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * AggregatedUsedVsUnusedAssetsCount data blob */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUsedVsUnusedAssetsSize.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUsedVsUnusedAssetsSize.ts index 3700aad84d8..b275602d089 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUsedVsUnusedAssetsSize.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/aggregatedUsedVsUnusedAssetsSize.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * AggregatedUsedVsUnusedAssetsSize data blob */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/dailyActiveUsers.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/dailyActiveUsers.ts index 9221e59621f..a9f9b4b4fb6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/dailyActiveUsers.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/dailyActiveUsers.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * dailyActiveUsers data blob */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/mostActiveUsers.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/mostActiveUsers.ts index 51273478e8b..f4429d21c7b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/mostActiveUsers.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/mostActiveUsers.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * pageViewsByEntities data blob */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/mostViewedEntities.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/mostViewedEntities.ts index 8636141c467..d7363d60ff3 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/mostViewedEntities.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/mostViewedEntities.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * pageViewsByEntities data blob */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/pageViewsByEntities.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/pageViewsByEntities.ts index b05ca2edcd0..9f8c905427f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/pageViewsByEntities.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/pageViewsByEntities.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * pageViewsByEntities data blob */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/unusedAssets.ts b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/unusedAssets.ts index a2279a4653b..067971af78d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/unusedAssets.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/dataInsight/type/unusedAssets.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * UnusedAssets data blob */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/email/emailRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/email/emailRequest.ts index af4055923b6..19f1266f918 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/email/emailRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/email/emailRequest.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Email Request for creating Email */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/email/emailTemplate.ts b/openmetadata-ui/src/main/resources/ui/src/generated/email/emailTemplate.ts index e9ddd0b23ef..25c35625421 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/email/emailTemplate.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/email/emailTemplate.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema defining email templates. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/email/emailTemplatePlaceholder.ts b/openmetadata-ui/src/main/resources/ui/src/generated/email/emailTemplatePlaceholder.ts index 7fd51b156a0..b387d82f966 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/email/emailTemplatePlaceholder.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/email/emailTemplatePlaceholder.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema defining placeholders used in email templates. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/email/smtpSettings.ts b/openmetadata-ui/src/main/resources/ui/src/generated/email/smtpSettings.ts index f872c47ea65..6a78e223848 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/email/smtpSettings.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/email/smtpSettings.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the SMTP Settings for sending Email */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/email/templateValidationReponse.ts b/openmetadata-ui/src/main/resources/ui/src/generated/email/templateValidationReponse.ts index 55c9fe5d02d..8f17da7951a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/email/templateValidationReponse.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/email/templateValidationReponse.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema defining email templates. */ 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 d1424da5680..fc014f1bd1f 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the applications for Open-Metadata. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/appExtension.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/appExtension.ts index 5958d1612f7..fcac51b7fcb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/appExtension.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/appExtension.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * App Extension Object. */ 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 80d9380528d..e346197a6b4 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * App Run Record. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addDescriptionAction.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addDescriptionAction.ts index f2abd143f0f..2f03001336d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addDescriptionAction.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addDescriptionAction.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Apply Tags to the selected assets. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addDomainAction.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addDomainAction.ts index b7fd679fd53..9ab31421b2b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addDomainAction.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addDomainAction.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Add an owner to the selected assets. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addOwnerAction.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addOwnerAction.ts index 78be58b0000..5393717ff2a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addOwnerAction.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addOwnerAction.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Add owners to the selected assets. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addTagsAction.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addTagsAction.ts index dbba86b42f5..025be612bbe 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addTagsAction.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addTagsAction.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Apply Tags to the selected assets. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addTierAction.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addTierAction.ts index 5df19709c0d..722448e1493 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addTierAction.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/addTierAction.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Add an owner to the selected assets. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/lineagePropagationAction.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/lineagePropagationAction.ts index a49e465515f..5c54c47c9d9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/lineagePropagationAction.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/lineagePropagationAction.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Propagate description, tags and glossary terms via lineage */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/mlTaggingAction.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/mlTaggingAction.ts index fb8730612a7..05fa327aa14 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/mlTaggingAction.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/mlTaggingAction.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * ML Tagging action configuration for external automator. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeDescriptionAction.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeDescriptionAction.ts index 93de962a292..cfb7260c39d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeDescriptionAction.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeDescriptionAction.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Remove Owner Action Type */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeDomainAction.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeDomainAction.ts index 9c131bf2770..215ce9ea65b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeDomainAction.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeDomainAction.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Remove Owner Action Type */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeOwnerAction.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeOwnerAction.ts index 9a9796d9a1f..2aeba7f8185 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeOwnerAction.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeOwnerAction.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Remove Owner Action Type */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeTagsAction.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeTagsAction.ts index 0975bf662a1..336565b491f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeTagsAction.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeTagsAction.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Remove Tags Action Type */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeTierAction.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeTierAction.ts index 3a7fc5f2857..9370d72dd63 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeTierAction.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automator/removeTierAction.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Remove Owner Action Type */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automatorAppConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automatorAppConfig.ts index 4c879bb5cf5..5085ffc7370 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automatorAppConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/automatorAppConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Configuration for the Automator External Application. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/collateAIAppConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/collateAIAppConfig.ts index 7f3bdb1400a..d4cd51cc9b7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/collateAIAppConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/collateAIAppConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Configuration for the CollateAI External Application. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/slackAppTokenConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/slackAppTokenConfiguration.ts index eca464f8fe4..11193ffb7dd 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/slackAppTokenConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/external/slackAppTokenConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Slack App Token Configuration */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/internal/dataInsightsAppConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/internal/dataInsightsAppConfig.ts index ab3b6338185..576736360c3 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/internal/dataInsightsAppConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/internal/dataInsightsAppConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * No configuration needed to instantiate the Data Insights Pipeline. The logic is handled * in the backend. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/internal/dataInsightsReportAppConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/internal/dataInsightsReportAppConfig.ts index 6ec32d30cc5..85e75790842 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/internal/dataInsightsReportAppConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/internal/dataInsightsReportAppConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + export interface DataInsightsReportAppConfigClass { sendToAdmins?: boolean; sendToTeams?: boolean; diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/internal/searchIndexingAppConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/internal/searchIndexingAppConfig.ts index 6cd169b8459..b441d6f531a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/internal/searchIndexingAppConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/internal/searchIndexingAppConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Search Indexing App. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/private/external/collateAIAppPrivateConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/private/external/collateAIAppPrivateConfig.ts index 03c416aff44..598fa661cf3 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/private/external/collateAIAppPrivateConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/configuration/private/external/collateAIAppPrivateConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * PRivate Configuration for the CollateAI External Application. */ 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 11416bff80e..baff3dedee6 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the create applications request for Open-Metadata. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/liveExecutionContext.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/liveExecutionContext.ts index a50aa692b5d..d683d1e9307 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/liveExecutionContext.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/liveExecutionContext.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Live Execution object. */ 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 3c65309e680..50aefad7e2a 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the applications for Open-Metadata. */ 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 8d50dceb6f6..2d86c739d4c 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the applications for Open-Metadata. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/scheduledExecutionContext.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/scheduledExecutionContext.ts index deb25d2f333..33c0c906fef 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/scheduledExecutionContext.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/applications/scheduledExecutionContext.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Scheduled Execution Context Configuration. */ 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 3d2864d145b..2cc91740fdf 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Test Service Connection to test user provided configuration is valid or not. */ 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 1e8ceac2c93..ee1b567d438 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A unit of work that will be triggered as an API call to the OpenMetadata server. */ 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 3b503139a32..aeaf150ba82 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines a Bot entity. A bot automates tasks, such as adding description, * identifying the importance of data. It performs this task as a special user in the system. 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 571587bc224..67874faf137 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A `Classification` entity contains hierarchical terms called tags used for categorizing * and classifying data assets and other entities. 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 c7e03d9f9f6..c0e1a7d45be 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A `Tag` entity is used for classification or categorization. It is a term defined under * `Classification` entity. Tags are used to label the entities and entity fields, such as diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/apiCollection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/apiCollection.ts index a3089acd51d..c549fe2a466 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/apiCollection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/apiCollection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the APICollection entity. API Collection allows user to group * multiple APIs together. In OpenAPI specification its marked as a Tag. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/apiEndpoint.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/apiEndpoint.ts index 0878eab96f6..f0c68ea2bf6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/apiEndpoint.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/apiEndpoint.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the APIEndpoint entity. An APIEndpoint is a specific endpoint of an * API that is part of an API Collection. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/chart.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/chart.ts index 885aa4a61bc..15df32d2f0d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/chart.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/chart.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A `Chart` presents data visually. Charts can be part of `Dashboards`. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/container.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/container.ts index 170fe2e15eb..ec15f54d2e5 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/container.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/container.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Container entity. A Container is an abstraction for any * path(including the top level eg. bucket in S3) storing data in an Object store such as diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/dashboard.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/dashboard.ts index 98957c42f4f..7a25f7605d6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/dashboard.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/dashboard.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Dashboard entity. Dashboards are computed from data and visually * present data, metrics, and KPIs. They are typically updated in real-time and allow diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/dashboardDataModel.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/dashboardDataModel.ts index 769f0f53a9e..0c5c8e6a159 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/dashboardDataModel.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/dashboardDataModel.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Dashboard Data Model entity definition. Data models are the schemas used to build * dashboards, charts, or other data assets. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/database.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/database.ts index 4fe708fc304..39fc323a6e7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/database.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/database.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Database entity. A database also referred to as Database Catalog * is a collection of schemas. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/databaseSchema.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/databaseSchema.ts index 327af264fff..ba6233416b2 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/databaseSchema.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/databaseSchema.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Database Schema entity. A `Database Schema` is collection of * tables, views, stored procedures, and other database objects. 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 daaf5e795de..1fcce8e6d32 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Glossary entity. A Glossary is collection of hierarchical * GlossaryTerms. 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 c55dc9e15d4..e61fa0e6491 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines te Glossary term entities. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/metric.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/metric.ts index d8cdda8e65a..1860e89f459 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/metric.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/metric.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Metrics entity. `Metrics` are measurements computed from data * such as `Monthly Active Users`. Some of the metrics that measures used to determine diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/mlmodel.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/mlmodel.ts index 3a71ae29035..371adecc75a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/mlmodel.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/mlmodel.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Model entity. `Machine Learning Models` are algorithms trained on * data to find patterns or make predictions. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/pipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/pipeline.ts index a45074651dc..63ddd16edc6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/pipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/pipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Pipeline entity. A pipeline enables the flow of data from source * to destination through a series of processing steps. ETL is a type of pipeline where the diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/query.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/query.ts index ed68269bec5..a2e8ada5ca3 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/query.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/query.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the type to capture any data asset's queries. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/report.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/report.ts index 4353c57b234..c5ecb223d4b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/report.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/report.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Report entity. `Reports` are static information computed from * data periodically that includes data in text, table, and visual form. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/searchIndex.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/searchIndex.ts index 0cd053dc713..92d3e1642d3 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/searchIndex.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/searchIndex.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A `SearchIndex` is a index mapping definition in ElasticSearch or OpenSearch */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/storedProcedure.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/storedProcedure.ts index f40d178caeb..a65d17b01c8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/storedProcedure.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/storedProcedure.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A `StoredProcedure` entity that contains the set of code statements with an assigned * name and is defined in a `Database Schema`." diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/table.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/table.ts index 41424ff664e..2211947c4ef 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/table.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/table.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A `Table` entity organizes data in rows and columns and is defined in a `Database Schema`. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/topic.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/topic.ts index 1a86bd2a8a3..7bc44d8dfbd 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/topic.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/topic.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A `Topic` is a feed or an event stream in a `Messaging Service` into which publishers * publish messages and consumed by consumers. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/docStore/document.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/docStore/document.ts index 38ba0a8858b..8e047c4bca8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/docStore/document.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/docStore/document.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Document. A Generic entity to capture any kind of Json Payload. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/domains/dataProduct.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/domains/dataProduct.ts index 67b58401729..9b9fff248ae 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/domains/dataProduct.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/domains/dataProduct.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A `Data Product` or `Data as a Product` is a logical unit that contains all components to * process and store data for analytical or data-intensive use cases made available to data diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/domains/domain.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/domains/domain.ts index b44add2d0ca..10e907f8361 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/domains/domain.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/domains/domain.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A `Domain` is a bounded context that is aligned with a Business Unit or a function within * an organization. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/events/webhook.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/events/webhook.ts index c6fd487ff33..4edd23518e6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/events/webhook.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/events/webhook.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines webhook for receiving events from OpenMetadata. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/assets.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/assets.ts index 42528fdfcdb..d8498d27105 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/assets.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/assets.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the schema for Assets addition/deletion Updates. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/customProperty.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/customProperty.ts index a9e0ac96be0..fee07e7602d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/customProperty.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/customProperty.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the custom properties addition/deltion schema on feed. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/description.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/description.ts index 5b1ac613d30..cb6fae45a6d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/description.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/description.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the schema for Description Updates. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/domain.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/domain.ts index 2d1826d2b5c..534645b82d2 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/domain.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/domain.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the schema for Assets addition/deletion Updates. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/entityInfo.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/entityInfo.ts index 3cef96824d9..e32165c84d2 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/entityInfo.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/entityInfo.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * EntityInfo In case of Entity Created, Updated Or Deleted. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/owner.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/owner.ts index ec2ae6001c1..bcf8fb4d653 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/owner.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/owner.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the schema for Ownership Updates for Feed. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/suggestion.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/suggestion.ts index 6b0018051a5..5e601df4486 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/suggestion.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/suggestion.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Suggestion entity. A suggestion can be applied to an asset to * give the owner context about possible changes or improvements to descriptions, tags,... diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/tag.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/tag.ts index c32b9340af9..38a3b9ffdea 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/tag.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/tag.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the schema for Tag Updates for Feed. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/testCaseResult.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/testCaseResult.ts index 4b6795a070d..cf67d495ead 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/testCaseResult.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/testCaseResult.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the schema for Test Case Result Updates for Feed. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/thread.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/thread.ts index ba2c030309f..3676fda4984 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/thread.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/feed/thread.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Thread entity. A Thread is a collection of posts made by the * users. The first post that starts a thread is **about** a data asset **from** a user. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/accessControl/resourceDescriptor.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/accessControl/resourceDescriptor.ts index 83b8cace615..79fdbf9cd89 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/accessControl/resourceDescriptor.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/accessControl/resourceDescriptor.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Resource descriptor */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/accessControl/resourcePermission.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/accessControl/resourcePermission.ts index d273d371d40..e9f7f6965d8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/accessControl/resourcePermission.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/accessControl/resourcePermission.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A set of permissions for a user that shows what operation is denied, allowed, or not * allowed for all the resources. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/accessControl/rule.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/accessControl/rule.ts index 87503a1b2a5..1ca4d0d61ad 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/accessControl/rule.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/policies/accessControl/rule.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Describes an Access Control Rule for OpenMetadata Metadata Operations. All non-null user * (subject) and entity (object) attributes are evaluated with logical AND. 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 3ca8b0a0cfb..5f3cc846a8b 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A `Policy` defines control that needs to be applied across different Data Entities. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/apiService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/apiService.ts index 6a6b4ef8f41..48d680ff72d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/apiService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/apiService.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the API Service entity, to capture metadata from any REST API * Services. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/api/restConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/api/restConnection.ts index 7c33fa7b5c7..b033e7e6082 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/api/restConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/api/restConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * REST Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/common/sslCertPaths.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/common/sslCertPaths.ts index f07e950da6e..cfbd7408deb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/common/sslCertPaths.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/common/sslCertPaths.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * SSL Certificates By Path */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/common/sslCertValues.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/common/sslCertValues.ts index 53c7823cde9..48eef4b510d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/common/sslCertValues.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/common/sslCertValues.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * SSL Certificates By Values */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/common/sslConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/common/sslConfig.ts index 63ca2556f8b..3aa01b47d05 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/common/sslConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/common/sslConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * SSL Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/customDashboardConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/customDashboardConnection.ts index 7aa9a40d1fb..f566b8967d1 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/customDashboardConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/customDashboardConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Custom Dashboard Service connection to build a source that is not supported by * OpenMetadata yet. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/domoDashboardConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/domoDashboardConnection.ts index 56cdf1703be..326803d34bd 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/domoDashboardConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/domoDashboardConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Domo Dashboard Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/lightdashConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/lightdashConnection.ts index 78fc2e7fadb..8d005507cae 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/lightdashConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/lightdashConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Lightdash Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/lookerConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/lookerConnection.ts index 2743c3127a8..fde91cda61a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/lookerConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/lookerConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Looker Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/metabaseConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/metabaseConnection.ts index 4161b7f5c17..fcfbf3bb1e9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/metabaseConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/metabaseConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Metabase Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/microStrategyConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/microStrategyConnection.ts index 29869300cca..9be26e3730a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/microStrategyConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/microStrategyConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * MicroStrategy Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/modeConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/modeConnection.ts index 6e0c7ff180a..d07e65ee1e7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/modeConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/modeConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Mode Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerBIConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerBIConnection.ts index f4055d117dc..cde5e40b52b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerBIConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerBIConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * PowerBI Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerBIReportServerConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerBIReportServerConnection.ts index e5fbd11ce69..cd9500abd09 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerBIReportServerConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerBIReportServerConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * PowerBIReportServer Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/azureConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/azureConfig.ts index b7a09306926..6e9c38b0fd9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/azureConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/azureConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Azure storage config for pbit files */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/bucketDetails.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/bucketDetails.ts index b7eaaf6fba2..40c12617033 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/bucketDetails.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/bucketDetails.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Details of the bucket where the .pbit files are stored */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/gcsConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/gcsConfig.ts index 91138d8c465..bd52bac44a0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/gcsConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/gcsConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * GCS storage config for pbit files */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/s3Config.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/s3Config.ts index 86714820f14..b75ec8bab46 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/s3Config.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/powerbi/s3Config.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * S3 storage config for pbit files */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/qlikCloudConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/qlikCloudConnection.ts index e6ae506618a..d06ae76a3ad 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/qlikCloudConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/qlikCloudConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Qlik Cloud Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/qlikSenseConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/qlikSenseConnection.ts index 10e70fad606..bd322da7659 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/qlikSenseConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/qlikSenseConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Qlik Sense Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/quickSightConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/quickSightConnection.ts index 2f49ee64db3..fb7c3ea1af8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/quickSightConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/quickSightConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * QuickSight Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/redashConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/redashConnection.ts index ac8f06c6223..6e07f8d7cbb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/redashConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/redashConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Redash Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/sigmaConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/sigmaConnection.ts index 92028af0fa8..7e04e20fa22 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/sigmaConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/sigmaConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Sigma Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/supersetConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/supersetConnection.ts index 7adeec5cd72..ad5a4a3776f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/supersetConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/supersetConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Superset Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/tableauConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/tableauConnection.ts index 473bfd00616..b1c7e2090ed 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/tableauConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/dashboard/tableauConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Tableau Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/athenaConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/athenaConnection.ts index 4273466a6fc..e403f304422 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/athenaConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/athenaConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * AWS Athena Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/azureSQLConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/azureSQLConnection.ts index 1728aeeb1b1..d4e4d8ba9b7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/azureSQLConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/azureSQLConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Azure SQL Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/bigQueryConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/bigQueryConnection.ts index 3ae5002adbc..696b51e2141 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/bigQueryConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/bigQueryConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Google BigQuery Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/bigTableConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/bigTableConnection.ts index eeba4b69041..76e745ab587 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/bigTableConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/bigTableConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Google BigTable Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/clickhouseConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/clickhouseConnection.ts index 4c4e32d2b0e..cfa3bf06fbf 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/clickhouseConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/clickhouseConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Clickhouse Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/azureConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/azureConfig.ts index c11258c90c0..b352c658c21 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/azureConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/azureConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Azure Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/basicAuth.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/basicAuth.ts index c905ebb156d..e052b5a4820 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/basicAuth.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/basicAuth.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Common Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/iamAuthConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/iamAuthConfig.ts index 6a201b466ba..5eaadfcbfe6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/iamAuthConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/iamAuthConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * IAM Auth Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/jwtAuth.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/jwtAuth.ts index cb7773826eb..ad1979ad93c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/jwtAuth.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/jwtAuth.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Common Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/noConfigAuthenticationTypes.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/noConfigAuthenticationTypes.ts index ea42ede06db..a02968108ca 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/noConfigAuthenticationTypes.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/common/noConfigAuthenticationTypes.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Database Authentication types not requiring config. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/couchbaseConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/couchbaseConnection.ts index bf634e63af9..200a029e8e8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/couchbaseConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/couchbaseConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Couchbase Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/customDatabaseConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/customDatabaseConnection.ts index 97d34d648cd..0077cadbc59 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/customDatabaseConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/customDatabaseConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Custom Database Service connection to build a source that is not supported by * OpenMetadata yet. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/databricksConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/databricksConnection.ts index aa93f5804f9..09d254d0284 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/databricksConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/databricksConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Databricks Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalake/azureConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalake/azureConfig.ts index 4d08369b399..c050c2785ea 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalake/azureConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalake/azureConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Azure Datalake Storage will ingest files in container */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalake/gcsConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalake/gcsConfig.ts index 000c696e9ad..157ea142b61 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalake/gcsConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalake/gcsConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DataLake GCS storage will ingest metadata of files */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalake/s3Config.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalake/s3Config.ts index e4e2265dbd8..dea5f26d7a8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalake/s3Config.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalake/s3Config.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DataLake S3 bucket will ingest metadata of files in bucket */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalakeConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalakeConnection.ts index 2463fe79e29..80a74535c43 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalakeConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/datalakeConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Datalake Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/db2Connection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/db2Connection.ts index ad0c4e962a3..a30308439b5 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/db2Connection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/db2Connection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Db2 Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/deltaLakeConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/deltaLakeConnection.ts index 83503f03499..a4da649f806 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/deltaLakeConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/deltaLakeConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DeltaLake Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/deltalake/metastoreConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/deltalake/metastoreConfig.ts index 374fa3939f6..9fcf4335205 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/deltalake/metastoreConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/deltalake/metastoreConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Deltalake Metastore configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/deltalake/storageConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/deltalake/storageConfig.ts index 408992417e3..15269ab5966 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/deltalake/storageConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/deltalake/storageConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DeltaLake Storage Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/domoDatabaseConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/domoDatabaseConnection.ts index 9d99dac450d..a0d21695c2e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/domoDatabaseConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/domoDatabaseConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Domo Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/dorisConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/dorisConnection.ts index b3a83b4e900..9b3fa3e66a3 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/dorisConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/dorisConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Doris Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/druidConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/druidConnection.ts index 703a4d5d6f0..bbc16026652 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/druidConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/druidConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Druid Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/dynamoDBConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/dynamoDBConnection.ts index fc181a3dc7b..c77207b42ad 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/dynamoDBConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/dynamoDBConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DynamoDB Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/exasolConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/exasolConnection.ts index f6cca2feb75..f098f9db9ef 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/exasolConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/exasolConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Exasol Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/glueConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/glueConnection.ts index c5a11aaac5f..e6ca0533edd 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/glueConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/glueConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Glue Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/greenplumConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/greenplumConnection.ts index 49b76090b41..2a1dd1d44d1 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/greenplumConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/greenplumConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Greenplum Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/hiveConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/hiveConnection.ts index 267f5e8cf9e..ff96c4db004 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/hiveConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/hiveConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Hive SQL Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/dynamoDbCatalogConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/dynamoDbCatalogConnection.ts index 1274bcc6caf..c9a280073f2 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/dynamoDbCatalogConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/dynamoDbCatalogConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Iceberg DynamoDB Catalog configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/glueCatalogConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/glueCatalogConnection.ts index 87c502342fa..19fc59752bf 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/glueCatalogConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/glueCatalogConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Iceberg Glue Catalog configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/hiveCatalogConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/hiveCatalogConnection.ts index 510eb5c9404..0f450f3e253 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/hiveCatalogConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/hiveCatalogConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Iceberg Hive Catalog configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/icebergCatalog.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/icebergCatalog.ts index 27257b3afea..abb0e38d427 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/icebergCatalog.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/icebergCatalog.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Iceberg Catalog configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/icebergFileSystem.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/icebergFileSystem.ts index 96505076f96..3c001095bfb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/icebergFileSystem.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/icebergFileSystem.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Iceberg File System configuration, based on where the Iceberg Warehouse is located. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/restCatalogConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/restCatalogConnection.ts index 5739f7463f1..4e04761c3c5 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/restCatalogConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/iceberg/restCatalogConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Iceberg REST Catalog configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/icebergConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/icebergConnection.ts index 6c9e8c14c23..750c4244921 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/icebergConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/icebergConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Iceberg Catalog Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/impalaConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/impalaConnection.ts index 77d6eb7045f..5761916298d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/impalaConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/impalaConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Impala SQL Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mariaDBConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mariaDBConnection.ts index 0dc37cffdfa..820d9b0a844 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mariaDBConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mariaDBConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * MariaDB Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mongoDBConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mongoDBConnection.ts index df44df442da..f092b86c30d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mongoDBConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mongoDBConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * MongoDB Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mssqlConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mssqlConnection.ts index 4519c874ec0..00b41ff3a47 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mssqlConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mssqlConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Mssql Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mysqlConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mysqlConnection.ts index aa8d58a6790..4aab7d80f0f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mysqlConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/mysqlConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Mysql Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/oracleConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/oracleConnection.ts index 98c313c8a1e..61ba3333579 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/oracleConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/oracleConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Oracle Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/pinotDBConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/pinotDBConnection.ts index d93083fce67..fdc8cf9f4ca 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/pinotDBConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/pinotDBConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * PinotDB Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/postgresConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/postgresConnection.ts index e1de59e1985..c681b859806 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/postgresConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/postgresConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Postgres Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/prestoConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/prestoConnection.ts index 89a5c8d5191..a0ea3ed7815 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/prestoConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/prestoConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Presto Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/redshiftConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/redshiftConnection.ts index ec6fb2a650e..9c0dc773cd0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/redshiftConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/redshiftConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Redshift Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/salesforceConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/salesforceConnection.ts index a448a117495..3c9f9480937 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/salesforceConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/salesforceConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Salesforce Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapErpConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapErpConnection.ts index 3f2d6fc4eb8..6cc5c992b0d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapErpConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapErpConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Sap ERP Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapHana/sapHanaHDBConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapHana/sapHanaHDBConnection.ts index 996072034fa..696ec7af17f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapHana/sapHanaHDBConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapHana/sapHanaHDBConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Sap Hana Database HDB User Store Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapHana/sapHanaSQLConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapHana/sapHanaSQLConnection.ts index 99bfc4feb3b..603f8892783 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapHana/sapHanaSQLConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapHana/sapHanaSQLConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Sap Hana Database SQL Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapHanaConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapHanaConnection.ts index a330caa8b59..56389d7965a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapHanaConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sapHanaConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Sap Hana Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sasConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sasConnection.ts index bab65e03420..fbdce0d3268 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sasConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sasConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * SAS Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/singleStoreConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/singleStoreConnection.ts index 40cfccfd090..245f1e495bb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/singleStoreConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/singleStoreConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * SingleStore Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/snowflakeConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/snowflakeConnection.ts index 98b6321c552..5d7cf7decd1 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/snowflakeConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/snowflakeConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Snowflake Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sqliteConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sqliteConnection.ts index edfd5ec072e..59c11d980a6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sqliteConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/sqliteConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * SQLite Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/synapseConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/synapseConnection.ts index 3a68aa0d673..c1ab6a1ab5f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/synapseConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/synapseConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Synapse Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/teradataConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/teradataConnection.ts index 6793fc68868..5e5b5dac1e7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/teradataConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/teradataConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Teradata Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/trinoConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/trinoConnection.ts index 021ca4e2559..845cf4885dc 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/trinoConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/trinoConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Trino Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/unityCatalogConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/unityCatalogConnection.ts index 79d6589563a..8e316ed963a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/unityCatalogConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/unityCatalogConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * UnityCatalog Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/verticaConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/verticaConnection.ts index 4fdac634247..e6c4bb22dde 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/verticaConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/database/verticaConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Vertica Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/customMessagingConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/customMessagingConnection.ts index f1e36718c5b..91ecaacebf1 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/customMessagingConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/customMessagingConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Custom Messaging Service Connection to build a source that is not supported by * OpenMetadata yet. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/kafkaConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/kafkaConnection.ts index 2e66b243f33..e5290501e77 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/kafkaConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/kafkaConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Kafka Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/kinesisConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/kinesisConnection.ts index 1eab107246f..bdd83aa8591 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/kinesisConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/kinesisConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Kinesis Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/pulsarConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/pulsarConnection.ts index 3546e81ae60..df6c8042032 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/pulsarConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/pulsarConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Pulsar Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/redpandaConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/redpandaConnection.ts index 56aeda84df1..bf88fceea65 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/redpandaConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/redpandaConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Redpanda Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/saslMechanismType.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/saslMechanismType.ts index e397cf41d36..f8e6709c475 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/saslMechanismType.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/saslMechanismType.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * SASL Mechanism consumer config property */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/alationConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/alationConnection.ts index 89846a06626..447c5566dee 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/alationConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/alationConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Alation Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/alationSinkConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/alationSinkConnection.ts index 6df2b25bac0..aa87c45b12d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/alationSinkConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/alationSinkConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Alation Sink Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/amundsenConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/amundsenConnection.ts index d5415b58485..81d2caa0a1a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/amundsenConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/amundsenConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Amundsen Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/atlasConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/atlasConnection.ts index 0ab05f607cc..6f5c0776d4b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/atlasConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/atlasConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Atlas Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/metadataESConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/metadataESConnection.ts index dd5a2209a6f..ec0ed1c4496 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/metadataESConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/metadataESConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Metadata to ElasticSearch Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/openMetadataConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/openMetadataConnection.ts index 9370d12e737..b605ae59a86 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/openMetadataConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/metadata/openMetadataConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * OpenMetadata Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/customMlModelConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/customMlModelConnection.ts index f9f4a03c777..bf5da4da1c1 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/customMlModelConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/customMlModelConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Custom MlModel Service connection to build a source that is not supported by OpenMetadata * yet. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/mlflowConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/mlflowConnection.ts index f3afc9dc6b1..36739ba629a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/mlflowConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/mlflowConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * MlFlow Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/sageMakerConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/sageMakerConnection.ts index 3bc63b2f666..3ae40f1381c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/sageMakerConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/sageMakerConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * SageMaker Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/sklearnConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/sklearnConnection.ts index ba90353b962..cd0716902a3 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/sklearnConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/sklearnConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Sklearn Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/vertexaiConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/vertexaiConnection.ts index 3f32c43fe3a..056a31857e9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/vertexaiConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/mlmodel/vertexaiConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Google VertexAI Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/airbyteConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/airbyteConnection.ts index 848f999c9fd..e257fdcd17d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/airbyteConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/airbyteConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Airbyte Metadata Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/airflowConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/airflowConnection.ts index 2b68ee5d1b6..fb0d7f790a0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/airflowConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/airflowConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Airflow Metadata Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/backendConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/backendConnection.ts index e2a4728918b..a5a246efc7d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/backendConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/backendConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Lineage Backend Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/customPipelineConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/customPipelineConnection.ts index 8d61d97acd9..456e7e0c869 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/customPipelineConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/customPipelineConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Custom Pipeline Service connection to build a source that is not supported by * OpenMetadata yet. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/dagsterConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/dagsterConnection.ts index b1bc1c185b9..ebf6be9e9ea 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/dagsterConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/dagsterConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Dagster Metadata Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/databricksPipelineConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/databricksPipelineConnection.ts index 7bffdb98a15..8111e8d45ed 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/databricksPipelineConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/databricksPipelineConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Databricks Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/datafactoryConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/datafactoryConnection.ts index e8cf0428133..37890ccdcc7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/datafactoryConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/datafactoryConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Azure Data Factory Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/dbtCloudConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/dbtCloudConnection.ts index e579a4b7abd..0ded80cda8d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/dbtCloudConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/dbtCloudConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DBTCloud Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/domoPipelineConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/domoPipelineConnection.ts index 543d4fd80d3..971505f1a54 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/domoPipelineConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/domoPipelineConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Domo Pipeline Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/fivetranConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/fivetranConnection.ts index cb80b67484d..f91de74424a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/fivetranConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/fivetranConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Fivetran Metadata Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/flinkConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/flinkConnection.ts index 8c848305d10..633a5b7ec28 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/flinkConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/flinkConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Flink Metadata Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/gluePipelineConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/gluePipelineConnection.ts index 1438907c0a5..e3616ab48c7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/gluePipelineConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/gluePipelineConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Glue Pipeline Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/kafkaConnectConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/kafkaConnectConnection.ts index a0c8198824b..c7208cff77f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/kafkaConnectConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/kafkaConnectConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * KafkaConnect Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/matillionConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/matillionConnection.ts index 21d62cf22f4..48280c913af 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/matillionConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/matillionConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Matillion Connection */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/nifiConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/nifiConnection.ts index 619f12a4cb2..bc1539b644b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/nifiConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/nifiConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Nifi Metadata Pipeline Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/openLineageConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/openLineageConnection.ts index 5e77b15a703..69bd73ff670 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/openLineageConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/openLineageConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * OpenLineage Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/sparkConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/sparkConnection.ts index 3115fb4ea58..d2374382165 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/sparkConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/sparkConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Spark Metadata Pipeline Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/splineConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/splineConnection.ts index 669b476d300..39ce64b34b4 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/splineConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/splineConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Spline Metadata Database Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/stitchConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/stitchConnection.ts index 7c30014889c..50bdc65406e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/stitchConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/pipeline/stitchConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Stitch Connection */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/customSearchConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/customSearchConnection.ts index 9822b508240..59f45be5cca 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/customSearchConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/customSearchConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Custom Search Service connection to build a source that is not supported by OpenMetadata * yet. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/elasticSearch/apiAuth.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/elasticSearch/apiAuth.ts index 3d0c580b1bc..2b3735ff755 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/elasticSearch/apiAuth.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/elasticSearch/apiAuth.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * API Key Authentication for ElasticSearch */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/elasticSearch/basicAuth.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/elasticSearch/basicAuth.ts index 477a61dcf1b..1c76e24d631 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/elasticSearch/basicAuth.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/elasticSearch/basicAuth.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Basic Auth Configuration for ElasticSearch */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/elasticSearchConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/elasticSearchConnection.ts index 193515355bb..8b04a0dd9af 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/elasticSearchConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/elasticSearchConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * ElasticSearch Connection. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/openSearchConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/openSearchConnection.ts index 9bec2590273..aeac31e2bfe 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/openSearchConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/search/openSearchConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * OpenSearch Connection. */ 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 3975eef26b8..f465acf866b 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Groups source connection configurations. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/adlsConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/adlsConnection.ts index c3670cb2e61..fbff3c5fedb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/adlsConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/adlsConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * ADLS Connection. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/customStorageConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/customStorageConnection.ts index b7ee9cc68d1..363f94902d5 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/customStorageConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/customStorageConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Custom Storage Service connection to build a source that is not supported by OpenMetadata * yet. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/gcsConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/gcsConnection.ts index 6fa1d967dce..ea3c597f855 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/gcsConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/gcsConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * GCS Connection. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/s3Connection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/s3Connection.ts index 8ee9d807245..9ad6665f5ad 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/s3Connection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/storage/s3Connection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * S3 Connection. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/testConnectionDefinition.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/testConnectionDefinition.ts index 155b63c077a..087b3c17edc 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/testConnectionDefinition.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/testConnectionDefinition.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * TestConnection is the definition that will encapsulate the steps required to test a * connection to a specific service. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/testConnectionResult.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/testConnectionResult.ts index ea7287a96d6..c6e62bc2268 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/testConnectionResult.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/testConnectionResult.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * TestConnectionResult is the definition that will encapsulate result of running the test * connection steps. 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 322bbbde51a..8491652a7fb 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Dashboard Service entity, such as Looker and Superset. */ 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 9e559e4a139..a8b81b25784 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the `Database Service` is a service such as MySQL, BigQuery, * Redshift, Postgres, or Snowflake. Alternative terms such as Database Cluster, Database 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 f99ae8769a2..168d2bd2239 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Ingestion Pipeline Config is used to set up a DAG and deploy. This entity is used to * setup metadata/quality pipelines on Apache Airflow. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/ingestionPipelines/pipelineServiceClientResponse.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/ingestionPipelines/pipelineServiceClientResponse.ts index 6fd4090a5ac..01a0ea4917d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/ingestionPipelines/pipelineServiceClientResponse.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/ingestionPipelines/pipelineServiceClientResponse.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Object to send Status responses about your Ingestion Pipelines ops. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/ingestionPipelines/status.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/ingestionPipelines/status.ts index aabf6c9eb0a..391e4a20f00 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/ingestionPipelines/status.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/ingestionPipelines/status.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,5 +11,6 @@ * limitations under the License. */ + export interface StatusClass { } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/messagingService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/messagingService.ts index a11173008e5..ba7ca838711 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/messagingService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/messagingService.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Messaging Service entity, such as Kafka and Pulsar. */ 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 d70978f4988..4711e342302 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Metadata Service entity, such as Amundsen, Atlas etc. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/mlmodelService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/mlmodelService.ts index 8828be31ca0..de881d12c5f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/mlmodelService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/mlmodelService.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * MlModel Service Entity, such as MlFlow. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/pipelineService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/pipelineService.ts index 67cc2f1b4c5..85c0e355f1a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/pipelineService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/pipelineService.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Pipeline Service entity, such as Airflow and Prefect. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/searchService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/searchService.ts index dfd75d35f93..2ba5662a5bc 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/searchService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/searchService.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Search Service entity, such as ElasticSearch, OpenSearch. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/serviceType.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/serviceType.ts index 4bb60fe92f2..d08a73e95fd 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/serviceType.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/serviceType.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the service types entities which requires a connection. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/storageService.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/storageService.ts index 85d4130037b..68d54681432 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/storageService.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/storageService.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Storage Service entity, such as S3, GCS or AZURE. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/persona.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/persona.ts index 1b7197a20fe..9bbc34d2b47 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/persona.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/persona.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Persona entity. A `Persona` is a job function associated with a * user. An Example, Data Engineer or Data Consumer is a Persona of a user in Metadata world. 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 e5191b65ace..9d93095cff0 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A `Role` is a collection of `Policies` that provides access control. A user or a team can * be assigned one or multiple roles that provide privileges to a user and members of a team 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 cc206fa0708..edfb6d94dac 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Team entity. A `Team` is a group of zero or more users and/or * other teams. Teams can own zero or more data assets. Hierarchical teams are supported diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/teamHierarchy.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/teamHierarchy.ts index 15558778a38..2992aacadee 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/teamHierarchy.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/teams/teamHierarchy.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Team entity with Hierarchy. Hierarchical teams are supported * `Organization` -> `BusinessUnit` -> `Division` -> `Department` -> `Group`. 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 571a415e5e2..9a178c94ba4 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * A `User` represents a user of OpenMetadata. A user can be part of 0 or more teams. A * special type of user called Bot is used for automation. A user can be an owner of zero or diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/type.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/type.ts index 8c737849f52..5bc9fd78af9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/type.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/type.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines a type as an entity. Types includes property types and entity types. * Custom types can also be defined by the users to extend the metadata system. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/utils/entitiesCount.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/utils/entitiesCount.ts index 59c1c729d48..586dddbd4d6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/utils/entitiesCount.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/utils/entitiesCount.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Entities Count. This contains aggregated entities count. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/utils/servicesCount.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/utils/servicesCount.ts index 5fed1a0f150..64a9aa22ea5 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/utils/servicesCount.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/utils/servicesCount.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Services Count. This contains aggregated services count. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/utils/supersetApiConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/utils/supersetApiConnection.ts index 24bdeb7ec3e..2e11ddbb8d4 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/utils/supersetApiConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/utils/supersetApiConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Superset API Connection Config */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/alertMetrics.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/alertMetrics.ts index d1333583239..b46de8a633c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/alertMetrics.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/alertMetrics.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Alert Metrics Schema */ 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 a6a6f1e02c9..21a6ccd700e 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This defines schema for sending alerts for OpenMetadata */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/api/eventSubscriptionDiagnosticInfo.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/api/eventSubscriptionDiagnosticInfo.ts index 9489bef8268..d45b8a2ee9c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/api/eventSubscriptionDiagnosticInfo.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/api/eventSubscriptionDiagnosticInfo.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema defining the response for event subscription diagnostics, including details about * processed and unprocessed events. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/api/eventsRecord.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/api/eventsRecord.ts index 2f236052a52..2b077ae1471 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/api/eventsRecord.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/api/eventsRecord.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema defining the response for event subscription events record, including total, * pending, successful, and failed event counts for a specific alert. 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 9f6386b25a4..6c06480ee0d 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema defining eventSubscription test API. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/api/typedEvent.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/api/typedEvent.ts index 5209ba74c3a..ebc5b533c4c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/api/typedEvent.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/api/typedEvent.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema defining a Typed Event with its status, data, and timestamp. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/emailAlertConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/emailAlertConfig.ts index 6072313da7f..3f898a292ea 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/emailAlertConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/emailAlertConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines email config for receiving events from OpenMetadata. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/eventFilterRule.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/eventFilterRule.ts index a4e653d1b84..2d1ede96e70 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/eventFilterRule.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/eventFilterRule.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Describes an Event Filter Rule */ 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 461f6de3176..01dbd8d71ed 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the EventSubscription entity. An Event Subscription has trigger, * filters and Subscription diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/eventSubscriptionOffset.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/eventSubscriptionOffset.ts index 6ec24b95a70..6d4669c0a50 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/eventSubscriptionOffset.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/eventSubscriptionOffset.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Represents the offsets for an event subscription, tracking the starting point and current * position of events processed. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/failedEvent.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/failedEvent.ts index 5d16baed334..bb77e68789c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/failedEvent.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/failedEvent.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Failed Events Schema */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/failedEventResponse.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/failedEventResponse.ts index c60b2c17399..04ba7550158 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/failedEventResponse.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/failedEventResponse.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Failed Events Schema */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/filterResourceDescriptor.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/filterResourceDescriptor.ts index f007c783138..d4dc08cc9d5 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/filterResourceDescriptor.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/filterResourceDescriptor.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Filter descriptor */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/statusContext.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/statusContext.ts index e723d5ff5a2..5f4907d03b0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/statusContext.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/statusContext.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Status Context */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/subscriptionResourceDescriptor.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/subscriptionResourceDescriptor.ts index b6c989b12be..b061a6f8d91 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/subscriptionResourceDescriptor.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/subscriptionResourceDescriptor.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Subscription descriptor */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/subscriptionStatus.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/subscriptionStatus.ts index 7797f3a3b3b..b0277252c75 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/subscriptionStatus.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/subscriptionStatus.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Current status of the subscription, including details on the last successful and failed * attempts, and retry information. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/events/testDestinationStatus.ts b/openmetadata-ui/src/main/resources/ui/src/generated/events/testDestinationStatus.ts index 9221a8aa233..aa32f89bf47 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/events/testDestinationStatus.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/events/testDestinationStatus.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Detailed status of the destination during a test operation, including HTTP response * information. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/edge.ts b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/edge.ts index 5ffd51f64e7..dfad1581687 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/edge.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/edge.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Governance Workflow Edge. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodeSubType.ts b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodeSubType.ts index 01c6ffad7ee..b197909a190 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodeSubType.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodeSubType.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * SubType of the Node. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodeType.ts b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodeType.ts index 83d1fb42b7d..392abe685f4 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodeType.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodeType.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Type of the Node. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/automatedTask/checkEntityAttributesTask.ts b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/automatedTask/checkEntityAttributesTask.ts index 6fc3f8a1783..8b05a87818e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/automatedTask/checkEntityAttributesTask.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/automatedTask/checkEntityAttributesTask.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Checks if an Entity attributes fit given rules. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/automatedTask/setEntityCertificationTask.ts b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/automatedTask/setEntityCertificationTask.ts index 1786e8c2d40..17576a5eef0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/automatedTask/setEntityCertificationTask.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/automatedTask/setEntityCertificationTask.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Sets the Entity Certification to the configured value. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/endEvent/endEvent.ts b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/endEvent/endEvent.ts index 5a1351d7f97..d8fe36f365d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/endEvent/endEvent.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/endEvent/endEvent.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * EndEvent. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/startEvent/startEvent.ts b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/startEvent/startEvent.ts index bce5b54dd3e..02f234cf1de 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/startEvent/startEvent.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/startEvent/startEvent.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * StartEvent. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/userTask/userApprovalTask.ts b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/userTask/userApprovalTask.ts index 65f1ec22df5..5cab66f590e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/userTask/userApprovalTask.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/nodes/userTask/userApprovalTask.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Defines a Task for a given User to approve. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/triggers/eventBasedEntityTrigger.ts b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/triggers/eventBasedEntityTrigger.ts index 92985f420f8..187c728aea9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/triggers/eventBasedEntityTrigger.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/elements/triggers/eventBasedEntityTrigger.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Event Based Entity Trigger. */ 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 6ee038d64a2..6780fa7b461 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Periodic Batch Entity Trigger. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/workflowDefinition.ts b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/workflowDefinition.ts index 4d57386c68a..5877619314f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/workflowDefinition.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/workflowDefinition.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Defines a workflow, having all the different pieces and attributes. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/workflowInstance.ts b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/workflowInstance.ts index a4b3f6b1ded..88798135a16 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/workflowInstance.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/workflowInstance.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Defines a workflow instance. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/workflowInstanceState.ts b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/workflowInstanceState.ts index 49a6aab435f..5610a514141 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/workflowInstanceState.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/governance/workflows/workflowInstanceState.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Defines a workflow instance. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/apiServiceMetadataPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/apiServiceMetadataPipeline.ts index 8973947f8f7..246ea61d4d9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/apiServiceMetadataPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/apiServiceMetadataPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * ApiService Metadata Pipeline Configuration. */ 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 ef91f77fb93..e3b79f7823b 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * OpenMetadata Ingestion Framework definition for Applications, i.e., the YAML shape we * require. 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 a6dc98d5f91..af5bf454106 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Application Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dashboardServiceMetadataPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dashboardServiceMetadataPipeline.ts index e43d3e870ae..6d705684a62 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dashboardServiceMetadataPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dashboardServiceMetadataPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DashboardService Metadata Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dataInsightPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dataInsightPipeline.ts index 2f8c04fd35a..26f32f0be94 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dataInsightPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dataInsightPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Data Insight Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceAutoClassificationPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceAutoClassificationPipeline.ts index c93d3b3ac10..abef5ad0458 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceAutoClassificationPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceAutoClassificationPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DatabaseService AutoClassification & Auto Classification Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceMetadataPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceMetadataPipeline.ts index 9455924e60c..b5728a78e19 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceMetadataPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceMetadataPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DatabaseService Metadata Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceProfilerPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceProfilerPipeline.ts index 9b376eee6e9..afa3c8ba93f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceProfilerPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceProfilerPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DatabaseService Profiler Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceQueryLineagePipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceQueryLineagePipeline.ts index ab6d709b9f6..a3724f17d15 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceQueryLineagePipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceQueryLineagePipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DatabaseService Query Lineage Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceQueryUsagePipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceQueryUsagePipeline.ts index 766085980b3..b724c45f18f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceQueryUsagePipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/databaseServiceQueryUsagePipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DatabaseService Query Usage Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtPipeline.ts index 54eb630e127..7374438ec42 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DBT Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtAzureConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtAzureConfig.ts index 22101bf9dd3..f434ecd7f7f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtAzureConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtAzureConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DBT Catalog, Manifest and Run Results files in Azure bucket. We will search for * catalog.json, manifest.json and run_results.json. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtBucketDetails.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtBucketDetails.ts index 1b6d5ab1e8e..10d9adc2100 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtBucketDetails.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtBucketDetails.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Details of the bucket where the dbt files are stored */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtCloudConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtCloudConfig.ts index e461f4a039c..b3cebefd62f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtCloudConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtCloudConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * dbt Cloud configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtGCSConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtGCSConfig.ts index 994ca70a013..6f34a17f02c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtGCSConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtGCSConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DBT Catalog, Manifest and Run Results files in GCS storage. We will search for * catalog.json, manifest.json and run_results.json. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtHttpConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtHttpConfig.ts index b82aed6cbf9..a3c6dc93419 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtHttpConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtHttpConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DBT Catalog, Manifest and Run Results HTTP path configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtLocalConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtLocalConfig.ts index f3844e69097..396bc8a040b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtLocalConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtLocalConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DBT Catalog, Manifest and Run Results file path config. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtS3Config.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtS3Config.ts index 828ebdd78dc..00f3979ddfe 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtS3Config.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/dbtconfig/dbtS3Config.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * DBT Catalog, Manifest and Run Results files in S3 bucket. We will search for * catalog.json, manifest.json and run_results.json. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/messagingServiceMetadataPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/messagingServiceMetadataPipeline.ts index fc9f039f7d4..17500dfa8af 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/messagingServiceMetadataPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/messagingServiceMetadataPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * MessagingService Metadata Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/metadataToElasticSearchPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/metadataToElasticSearchPipeline.ts index 080196cb7b4..6e72826b33d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/metadataToElasticSearchPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/metadataToElasticSearchPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Data Insight Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/mlmodelServiceMetadataPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/mlmodelServiceMetadataPipeline.ts index f1ea9d764cf..77439d8438d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/mlmodelServiceMetadataPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/mlmodelServiceMetadataPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * MlModelService Metadata Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/pipelineServiceMetadataPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/pipelineServiceMetadataPipeline.ts index 3852a39044a..0d29ef2ca01 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/pipelineServiceMetadataPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/pipelineServiceMetadataPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * PipelineService Metadata Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/searchServiceMetadataPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/searchServiceMetadataPipeline.ts index 93743d5d117..19631a6e59b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/searchServiceMetadataPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/searchServiceMetadataPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * SearchService Metadata Pipeline Configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/containerMetadataConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/containerMetadataConfig.ts index 086c6376d51..0d872a3154e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/containerMetadataConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/containerMetadataConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Definition of the properties contained by an object store container template config file */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/manifestMetadataConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/manifestMetadataConfig.ts index 71caa73d074..b752253171d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/manifestMetadataConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/manifestMetadataConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + export interface ManifestMetadataConfigClass { /** * List of metadata entries for the bucket containing information about where data resides diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageBucketDetails.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageBucketDetails.ts index c6c153f01f0..7ab4a3c4838 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageBucketDetails.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageBucketDetails.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Details of the bucket where the storage metadata manifest file is stored */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataADLSConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataADLSConfig.ts index 42f4458102c..5e743fae664 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataADLSConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataADLSConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Storage Metadata Manifest file ADLS path config. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataGCSConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataGCSConfig.ts index 70bc80b90f0..129dbe6e21a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataGCSConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataGCSConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Storage Metadata Manifest file GCS path config. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataHttpConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataHttpConfig.ts index 7f4d9a73913..30563ffd688 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataHttpConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataHttpConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Storage Metadata Manifest file HTTP path config. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataLocalConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataLocalConfig.ts index cf71a01e439..e9d9346157e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataLocalConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataLocalConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Storage Metadata Manifest file path config. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataS3Config.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataS3Config.ts index 15554945812..ff71595467c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataS3Config.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storage/storageMetadataS3Config.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Storage Metadata Manifest file S3 path config. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storageServiceMetadataPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storageServiceMetadataPipeline.ts index 8bd844a7157..ecede21b6a3 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storageServiceMetadataPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/storageServiceMetadataPipeline.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * StorageService Metadata Pipeline Configuration. */ 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 8f066b4555f..edb969120ae 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * TestSuite Pipeline Configuration. */ 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 7c9e7c386d4..bc2a95dcdda 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * OpenMetadata Ingestion Framework definition. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/monitoring/eventMonitorProvider.ts b/openmetadata-ui/src/main/resources/ui/src/generated/monitoring/eventMonitorProvider.ts index 1d693bb0cdb..5f1e88fb3e0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/monitoring/eventMonitorProvider.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/monitoring/eventMonitorProvider.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * OpenMetadata Event Monitor Provider. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/auth0SSOClientConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/auth0SSOClientConfig.ts index 074b84e31f3..2131f3d897b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/auth0SSOClientConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/auth0SSOClientConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Auth0 SSO client security configs. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/azureSSOClientConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/azureSSOClientConfig.ts index 6cf658ee2ee..859cc8e57b2 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/azureSSOClientConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/azureSSOClientConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Azure SSO Client security config to connect to OpenMetadata. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/customOidcSSOClientConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/customOidcSSOClientConfig.ts index 422dc5f90cb..052a30dc30e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/customOidcSSOClientConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/customOidcSSOClientConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Custom OIDC SSO client security configs. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/googleSSOClientConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/googleSSOClientConfig.ts index c92cc05e943..dcc7884e006 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/googleSSOClientConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/googleSSOClientConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Google SSO client security configs. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/oidcClientConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/oidcClientConfig.ts index aa5182da0eb..f300508a455 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/oidcClientConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/oidcClientConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Oidc client security configs. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/oktaSSOClientConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/oktaSSOClientConfig.ts index eccc7c556a2..64ab3447cee 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/oktaSSOClientConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/oktaSSOClientConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Okta SSO client security configs. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/openMetadataJWTClientConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/openMetadataJWTClientConfig.ts index 68f4ec9de39..b35a77322d2 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/openMetadataJWTClientConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/openMetadataJWTClientConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * openMetadataJWTClientConfig security configs. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/samlSSOClientConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/samlSSOClientConfig.ts index aa071f158d3..8e2fc7cbb7d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/client/samlSSOClientConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/client/samlSSOClientConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * SAML SSO client security configs. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/accessTokenAuth.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/accessTokenAuth.ts index 6febd10cedc..0b102f4a6d4 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/accessTokenAuth.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/accessTokenAuth.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Access Token Auth Credentials */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/apiAccessTokenAuth.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/apiAccessTokenAuth.ts index 5af8764155d..6105331a98e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/apiAccessTokenAuth.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/apiAccessTokenAuth.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * API Access Token Auth Credentials */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/awsCredentials.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/awsCredentials.ts index 84034865254..2e32b699155 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/awsCredentials.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/awsCredentials.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * AWS credentials configs. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/azureCredentials.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/azureCredentials.ts index 30994b5cf99..a81685f1bb8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/azureCredentials.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/azureCredentials.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Azure Cloud Credentials */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/basicAuth.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/basicAuth.ts index c606769edcf..81a42b3cb22 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/basicAuth.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/basicAuth.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Basic Auth Credentials */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/bitbucketCredentials.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/bitbucketCredentials.ts index 9e561653e0d..0f3935179d8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/bitbucketCredentials.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/bitbucketCredentials.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Credentials for a BitBucket repository */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gcpCredentials.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gcpCredentials.ts index b7d06bcc550..84862eb97d1 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gcpCredentials.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gcpCredentials.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * GCP credentials configs. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gcpExternalAccount.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gcpExternalAccount.ts index bcebc76656e..5e02673c399 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gcpExternalAccount.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gcpExternalAccount.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Pass the raw credential values provided by GCP */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gcpValues.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gcpValues.ts index b19554e397c..a83feebde65 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gcpValues.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gcpValues.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Pass the raw credential values provided by GCP */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/githubCredentials.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/githubCredentials.ts index 08d2ec72079..18e1fe9d3b2 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/githubCredentials.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/githubCredentials.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Credentials for a GitHub repository */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gitlabCredentials.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gitlabCredentials.ts index 88a33a85641..409c9c6e3d4 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gitlabCredentials.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/credentials/gitlabCredentials.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Credentials for a Gitlab repository */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/sasl/saslClientConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/sasl/saslClientConfig.ts index f403961cbdd..08394226db2 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/sasl/saslClientConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/sasl/saslClientConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * SASL client configuration. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/secrets/secretsManagerClientLoader.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/secrets/secretsManagerClientLoader.ts index 27117bbeb5a..af1d8b58e42 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/secrets/secretsManagerClientLoader.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/secrets/secretsManagerClientLoader.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * OpenMetadata Secrets Manager Client Loader. Lets the client know how the Secrets Manager * Credentials should be loaded from the environment. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/secrets/secretsManagerConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/secrets/secretsManagerConfiguration.ts index 70b7de8c989..2ef93bdae15 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/secrets/secretsManagerConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/secrets/secretsManagerConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * OpenMetadata server configuration for the Secrets Manager feature. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/secrets/secretsManagerProvider.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/secrets/secretsManagerProvider.ts index d1888273fa3..c1aa38c8f3a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/secrets/secretsManagerProvider.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/secrets/secretsManagerProvider.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * OpenMetadata Secrets Manager Provider. Make sure to configure the same secrets manager * providers as the ones configured on the OpenMetadata server. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/securityConfiguration.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/securityConfiguration.ts index 14fc03d1d67..bdfbb0441b8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/securityConfiguration.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/securityConfiguration.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Security configuration for the OpenMetadata server. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/ssl/validateSSLClientConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/ssl/validateSSLClientConfig.ts index 56ccdb996c4..045d416a7f8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/ssl/validateSSLClientConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/ssl/validateSSLClientConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * OpenMetadata Client configured to validate SSL certificates. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/security/ssl/verifySSLConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/security/ssl/verifySSLConfig.ts index 37f1b06f966..69fc1ce4a18 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/security/ssl/verifySSLConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/security/ssl/verifySSLConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,5 +11,6 @@ * limitations under the License. */ + export interface VerifySSLConfigClass { } diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/settings/settings.ts b/openmetadata-ui/src/main/resources/ui/src/generated/settings/settings.ts index ea4bce1ad74..a4e56026470 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/settings/settings.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/settings/settings.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Settings. A Settings represents a generic Setting. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/system/entityError.ts b/openmetadata-ui/src/main/resources/ui/src/generated/system/entityError.ts index 3a9b4c45387..1e2dbd5294c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/system/entityError.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/system/entityError.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Entity And Message Scehma in case of failures. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/system/eventPublisherJob.ts b/openmetadata-ui/src/main/resources/ui/src/generated/system/eventPublisherJob.ts index 6869ea2d362..1c8eb0c6baa 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/system/eventPublisherJob.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/system/eventPublisherJob.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Event Publisher Job. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/system/indexingError.ts b/openmetadata-ui/src/main/resources/ui/src/generated/system/indexingError.ts index 12143e08705..59469a45d61 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/system/indexingError.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/system/indexingError.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Event Publisher Job Error Schema. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/system/limitsResponse.ts b/openmetadata-ui/src/main/resources/ui/src/generated/system/limitsResponse.ts index e199feb62dc..2c8ae6c00ee 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/system/limitsResponse.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/system/limitsResponse.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Limits Config schema */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/knowledgePanel.ts b/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/knowledgePanel.ts index 973bf6bc66f..6a7e891e8b9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/knowledgePanel.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/knowledgePanel.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the KnowledgePanel entity. A Knowledge panel is an information box * used for UX customization in OpenMetadata. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/navigationItem.ts b/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/navigationItem.ts index 5101443e694..9242819033c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/navigationItem.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/navigationItem.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Defines a navigation item in the UI navigation menu. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/page.ts b/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/page.ts index a4ba598f6ed..53465458618 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/page.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/page.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Page entity. A Page is a landing page, schema page to customize * in OpenMetadata. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/tab.ts b/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/tab.ts index 69f4cecc5c7..7afa1a62a00 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/tab.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/tab.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines a Tab within a Page. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/uiCustomization.ts b/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/uiCustomization.ts index 562f4bbdf4a..d3d73211d44 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/uiCustomization.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/system/ui/uiCustomization.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Contains UI customization details for a Persona. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/system/validationResponse.ts b/openmetadata-ui/src/main/resources/ui/src/generated/system/validationResponse.ts index 4e580fe16a1..610dbea352b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/system/validationResponse.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/system/validationResponse.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Define the system validation response */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/tests/assigned.ts b/openmetadata-ui/src/main/resources/ui/src/generated/tests/assigned.ts index db96712dbd9..80768365e11 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/tests/assigned.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/tests/assigned.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * test case failure details for assigned failures */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/tests/customMetric.ts b/openmetadata-ui/src/main/resources/ui/src/generated/tests/customMetric.ts index 8e086c1e444..1835d4beb4c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/tests/customMetric.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/tests/customMetric.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Custom Metric definition that we will associate with a column. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/tests/dataQualityReport.ts b/openmetadata-ui/src/main/resources/ui/src/generated/tests/dataQualityReport.ts index 72c754a2539..dccd2356be0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/tests/dataQualityReport.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/tests/dataQualityReport.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Data Quality report and aggregation model. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/tests/resolved.ts b/openmetadata-ui/src/main/resources/ui/src/generated/tests/resolved.ts index 12ac3533674..b049b5bdc16 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/tests/resolved.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/tests/resolved.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * test case failure details for resolved failures */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/tests/testCase.ts b/openmetadata-ui/src/main/resources/ui/src/generated/tests/testCase.ts index 91a5853eb56..7c26892b2a4 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/tests/testCase.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/tests/testCase.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Test case is a test definition to capture data quality tests against tables, columns, and * other data assets. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/tests/testCaseResolutionStatus.ts b/openmetadata-ui/src/main/resources/ui/src/generated/tests/testCaseResolutionStatus.ts index d228d99246b..08371d4d021 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/tests/testCaseResolutionStatus.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/tests/testCaseResolutionStatus.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Schema to capture test case resolution status. */ 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 8c9ce273d83..19cefeedc6f 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Test Definition is a type of test using which test cases are created to capture data * quality tests against data entities. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/tests/testSuite.ts b/openmetadata-ui/src/main/resources/ui/src/generated/tests/testSuite.ts index 7cbaa47c52a..c80982499b2 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/tests/testSuite.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/tests/testSuite.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * TestSuite is a set of test cases grouped together to capture data quality tests against * data entities. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/apiSchema.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/apiSchema.ts index 88b7d025200..6ceb3108329 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/apiSchema.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/apiSchema.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the API Endpoint entity's request/response schema. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/assetCertification.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/assetCertification.ts index 1bfa9bee35e..89aae03b14a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/assetCertification.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/assetCertification.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Defines the Asset Certification schema. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/auditLog.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/auditLog.ts index 0a4bafe7e17..c99d388d49f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/auditLog.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/auditLog.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Audit Log type to capture the audit trail of POST, PUT, and PATCH * API operations. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/bulkOperationResult.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/bulkOperationResult.ts index 1dd00b7df5a..34e95fc231f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/bulkOperationResult.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/bulkOperationResult.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Represents result of bulk Operation performed on entities. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/changeEvent.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/changeEvent.ts index 86140910b76..2a1caa52d81 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/changeEvent.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/changeEvent.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the change event type to capture the changes to entities. Entities * change due to user activity, such as updating description of a dataset, changing diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/changeEventType.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/changeEventType.ts index 321b6b22171..3959641e233 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/changeEventType.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/changeEventType.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Type of event. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/collectionDescriptor.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/collectionDescriptor.ts index 749cae96918..5b10deb7891 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/collectionDescriptor.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/collectionDescriptor.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Type used for capturing the details of a collection. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/csvDocumentation.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/csvDocumentation.ts index ed48f9192fc..e43fbf7ebc6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/csvDocumentation.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/csvDocumentation.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Documentation for CSV file that describes headers and example values. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/csvErrorType.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/csvErrorType.ts index 2cdcc0dfb3d..3480f9be800 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/csvErrorType.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/csvErrorType.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * What type of error occurred when importing a CSV file. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/csvFile.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/csvFile.ts index 121cc0f2298..9973a8b9a54 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/csvFile.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/csvFile.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Represents a CSV file. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/csvImportResult.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/csvImportResult.ts index d7f93b693aa..a71413eec5c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/csvImportResult.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/csvImportResult.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Represents result of importing a CSV file. Detailed error is provided on if the CSV file * is conformant and failure to load any of the records in the CSV file. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperties/complexTypes.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperties/complexTypes.ts index 574e8681499..feebf8c228c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperties/complexTypes.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperties/complexTypes.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + export interface ComplexTypesObject { "table-cp"?: Table; [property: string]: any; diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperties/enumConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperties/enumConfig.ts index 5ceb583759e..62e100580b0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperties/enumConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperties/enumConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Applies to Enum type, this config is used to define list of enum values */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperties/tableConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperties/tableConfig.ts index c8a16fdadf4..d00cb0af273 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperties/tableConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperties/tableConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Custom property configuration for table-type property where all column data types are * strings. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperty.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperty.ts index 93090a601e7..e808cd64d1e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperty.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/customProperty.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the custom property to an entity to extend it. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/dailyCount.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/dailyCount.ts index 7decdd05514..8dffbc888be 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/dailyCount.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/dailyCount.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the type for reporting the daily count of some measurement. For * example, you might use this schema for the number of times a table is queried each day. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/databaseConnectionConfig.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/databaseConnectionConfig.ts index c27913d0668..f279a1b3d7a 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/databaseConnectionConfig.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/databaseConnectionConfig.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Database Connection Config to capture connection details to a database service. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityHierarchy.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityHierarchy.ts index 372497aa549..14ec82f949f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityHierarchy.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityHierarchy.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the entity hierarchy structure. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityHistory.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityHistory.ts index 24b1ec18eb4..340950215fe 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityHistory.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityHistory.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the type used for capturing version of history of entity. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityLineage.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityLineage.ts index ca2125c9abc..2977b3c059e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityLineage.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityLineage.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -11,8 +10,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - - /** +/** * The `Lineage` for a given data asset, has information of the input datasets used and the * ETL pipeline that created it. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityReference.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityReference.ts index 1899cee68cf..5719f00a74c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityReference.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityReference.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the EntityReference type used for referencing an entity. * EntityReference is used for capturing relationships from one entity to another. For diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityReferenceList.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityReferenceList.ts index c8ae66db975..b04ea0d2f2e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityReferenceList.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityReferenceList.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the EntityReferenceList type used for referencing an entity. * EntityReference is used for capturing relationships from one entity to another. For diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityRelationship.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityRelationship.ts index a1fa7a80bc7..76827eed041 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityRelationship.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityRelationship.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the EntityRelationship type used for establishing relationship * between two entities. EntityRelationship is used for capturing relationships from one diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityUsage.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityUsage.ts index c3f89c26fb0..6c2b7aa4bb0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/entityUsage.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/entityUsage.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the type used for capturing usage details of an entity. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/function.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/function.ts index 66345fdbf6a..fad2ee43788 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/function.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/function.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Functions used for writing SpEL expression based conditions */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/include.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/include.ts index ccd91fe4794..ed61ca0450b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/include.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/include.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * GET entity by id, GET entity by name, and LIST entities can include deleted or * non-deleted entities using the parameter include. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/jdbcConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/jdbcConnection.ts index d25ba18256e..0a6ddf2af66 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/jdbcConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/jdbcConnection.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the type used for JDBC connection information. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/lifeCycle.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/lifeCycle.ts index fbd86385f05..db1d7e37785 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/lifeCycle.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/lifeCycle.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines Life Cycle Properties. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/paging.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/paging.ts index 9d94854db5b..3e3baca6315 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/paging.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/paging.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * Type used for cursor based pagination information in GET list responses. */ 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 faf5b6b501d..4d30a0a968e 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 @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the type for a profile of a user, team, or organization. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/queryParserData.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/queryParserData.ts index 15e61c6ec01..ed7346f5326 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/queryParserData.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/queryParserData.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines type of query parser data */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/reaction.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/reaction.ts index 79cea0ddf9a..dd97bbf2fcf 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/reaction.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/reaction.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the reaction to an entity or a conversation in the activity feeds. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/schedule.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/schedule.ts index 3bb1a8f6f60..b0cc11c92ba 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/schedule.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/schedule.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the type used for the schedule. The schedule has a start time and * repeat frequency. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/schema.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/schema.ts index 8950bdb1fb4..d68e40c7263 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/schema.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/schema.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Topic entity. A topic is a feed into which message are published * to by publishers and read from by consumers in a messaging service. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/tableQuery.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/tableQuery.ts index 72ffe9c3f8e..fb334c8e5a3 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/tableQuery.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/tableQuery.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines structure of table query */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/tableUsageCount.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/tableUsageCount.ts index da7e404c29c..295626c8f3d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/tableUsageCount.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/tableUsageCount.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This model is the linking between the usage stage and bulk sink steps */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/tagLabel.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/tagLabel.ts index 0a62115af9d..31d080131ec 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/tagLabel.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/tagLabel.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the type for labeling an entity with a Tag. */ diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/usageDetails.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/usageDetails.ts index 54f655f9b42..298cbc8f69d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/usageDetails.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/usageDetails.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the type for usage details. Daily, weekly, and monthly aggregation of * usage is computed along with the percentile rank based on the usage for a given day. diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/usageRequest.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/usageRequest.ts index c61936e6239..9767defecc9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/usageRequest.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/usageRequest.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines type of table usage request used to publish the usage count on a * particular date diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/type/votes.ts b/openmetadata-ui/src/main/resources/ui/src/generated/type/votes.ts index 08d98471765..01949b72866 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/type/votes.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/type/votes.ts @@ -1,6 +1,5 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ /* - * Copyright 2021 Collate + * Copyright 2024 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 @@ -12,6 +11,7 @@ * limitations under the License. */ + /** * This schema defines the Votes for a Data Asset. */ diff --git a/openmetadata-ui/src/main/resources/ui/types-licensing.txt b/openmetadata-ui/src/main/resources/ui/types-licensing.txt deleted file mode 100644 index 571f0e2b643..00000000000 --- a/openmetadata-ui/src/main/resources/ui/types-licensing.txt +++ /dev/null @@ -1,15 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -/* - * Copyright 2021 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. - */ - - \ No newline at end of file