/** * MISP Node - Version 1 * Discriminator: resource=organisation, operation=update */ interface Credentials { mispApi: CredentialReference; } export type MispV1OrganisationUpdateParams = { resource: 'organisation'; operation: 'update'; /** * ID of the organisation to update */ organisationId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Description */ description?: string | Expression | PlaceholderValue; /** Name */ name?: string | Expression | PlaceholderValue; /** Nationality */ nationality?: string | Expression | PlaceholderValue; /** Sector */ sector?: string | Expression | PlaceholderValue; /** Type */ type?: string | Expression | PlaceholderValue; }; }; export type MispV1OrganisationUpdateNode = { type: 'n8n-nodes-base.misp'; version: 1; credentials?: Credentials; config: NodeConfig; };