From 043bed48f36131cc226464c27b335a3c3f92cea1 Mon Sep 17 00:00:00 2001 From: Shailesh Parmar Date: Fri, 4 Oct 2024 14:37:03 +0530 Subject: [PATCH] Minor: mark params optional for test case reports end point --- openmetadata-ui/src/main/resources/ui/src/rest/testAPI.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openmetadata-ui/src/main/resources/ui/src/rest/testAPI.ts b/openmetadata-ui/src/main/resources/ui/src/rest/testAPI.ts index 818894455d2f..9294e3bfb4e6 100644 --- a/openmetadata-ui/src/main/resources/ui/src/rest/testAPI.ts +++ b/openmetadata-ui/src/main/resources/ui/src/rest/testAPI.ts @@ -107,8 +107,8 @@ export type ListTestCaseSearchResultsParams = { testCaseFQN?: string; testSuiteId?: string; latest?: boolean; - testCaseType: TestCaseType; - dataQualityDimension: DataQualityDimensions; + testCaseType?: TestCaseType; + dataQualityDimension?: DataQualityDimensions; }; export type AddTestCaseToLogicalTestSuiteType = {