mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor(core): Introduce overload for record-type node parameter (no-changelog) (#4648)
* 📘 Set up overload * 🔥 Remove inferrable record assertions * 👕 Fix semicolon * 👕 Fix another semicolon
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { INodeProperties } from 'n8n-workflow';
|
||||
import type { IDataObject, INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export const collectionOperations: INodeProperties[] = [
|
||||
{
|
||||
@@ -130,7 +130,7 @@ export const collectionFields: INodeProperties[] = [
|
||||
},
|
||||
];
|
||||
|
||||
export interface CollectionUpdateFields {
|
||||
export type CollectionUpdateFields = IDataObject & {
|
||||
groups: string[];
|
||||
externalId: string;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user