/** * Webflow Node - Version 1 * Discriminator: resource=item, operation=update */ interface Credentials { webflowApi: CredentialReference; webflowOAuth2Api: CredentialReference; } export type WebflowV1ItemUpdateParams = { resource: 'item'; operation: 'update'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * ID of the site containing the collection whose items to update. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ siteId?: string | Expression; /** * ID of the collection whose items to update. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ collectionId?: string | Expression; /** * ID of the item to update */ itemId?: string | Expression | PlaceholderValue; /** * Whether the item should be published on the live site * @default false */ live?: boolean | Expression; /** * Fields * @default {} */ fieldsUi?: { /** Field */ fieldValues?: Array<{ /** Field to set for the item to update. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ fieldId?: string | Expression; /** Value to set for the item to update */ fieldValue?: string | Expression | PlaceholderValue; }>; }; }; export type WebflowV1ItemUpdateNode = { type: 'n8n-nodes-base.webflow'; version: 1; credentials?: Credentials; config: NodeConfig; };