feat(Google Sheets Node): Option how to combine filters when reading rows (#8652)

This commit is contained in:
Michael Kret
2024-02-21 09:59:59 +02:00
committed by GitHub
parent ad82f0c0c8
commit a5e522e536
9 changed files with 236 additions and 21 deletions

View File

@@ -2175,7 +2175,7 @@ export type PropertiesOf<M extends { resource: string; operation: string }> = Ar
[key in 'show' | 'hide']?: {
resource?: Array<M['resource']>;
operation?: Array<M['operation']>;
[otherKey: string]: NodeParameterValue[] | undefined;
[otherKey: string]: Array<NodeParameterValue | DisplayCondition> | undefined;
};
};
}