fix(core): Do not enable strict type validation by default for resource mapper (#13037)

This commit is contained in:
Elias Meire
2025-02-04 12:31:59 +01:00
committed by GitHub
parent 3a908aca17
commit fdcff9082b
3 changed files with 144 additions and 54 deletions

View File

@@ -2722,8 +2722,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 =