n8n-workflow 1.76.1 → 1.76.2
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
|
@@ -1907,8 +1907,8 @@ export type ResourceMapperValue = {
|
|
|
1907
1907
|
} | null;
|
|
1908
1908
|
matchingColumns: string[];
|
|
1909
1909
|
schema: ResourceMapperField[];
|
|
1910
|
-
attemptToConvertTypes
|
|
1911
|
-
convertFieldsToString
|
|
1910
|
+
attemptToConvertTypes: boolean;
|
|
1911
|
+
convertFieldsToString: boolean;
|
|
1912
1912
|
};
|
|
1913
1913
|
export type FilterOperatorType = 'string' | 'number' | 'boolean' | 'array' | 'object' | 'dateTime' | 'any';
|
|
1914
1914
|
export interface FilterOperatorValue {
|