n8n-workflow 1.75.0 → 1.75.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Interfaces.d.ts +2 -2
- package/dist/build.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/Interfaces.d.ts
CHANGED
|
@@ -1898,8 +1898,8 @@ export type ResourceMapperValue = {
|
|
|
1898
1898
|
} | null;
|
|
1899
1899
|
matchingColumns: string[];
|
|
1900
1900
|
schema: ResourceMapperField[];
|
|
1901
|
-
attemptToConvertTypes
|
|
1902
|
-
convertFieldsToString
|
|
1901
|
+
attemptToConvertTypes?: boolean;
|
|
1902
|
+
convertFieldsToString?: boolean;
|
|
1903
1903
|
};
|
|
1904
1904
|
export type FilterOperatorType = 'string' | 'number' | 'boolean' | 'array' | 'object' | 'dateTime' | 'any';
|
|
1905
1905
|
export interface FilterOperatorValue {
|