fix(core): Only use new resource mapper type validation when it is enabled (#13099)

This commit is contained in:
Elias Meire
2025-02-06 13:21:13 +01:00
committed by GitHub
parent ef87da4c19
commit a37c8e8fb8
3 changed files with 94 additions and 28 deletions

View File

@@ -2723,8 +2723,8 @@ export type ResourceMapperValue = {
value: { [key: string]: string | number | boolean | null } | null;
matchingColumns: string[];
schema: ResourceMapperField[];
attemptToConvertTypes?: boolean;
convertFieldsToString?: boolean;
attemptToConvertTypes: boolean;
convertFieldsToString: boolean;
};
export type FilterOperatorType =