UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

26 lines (22 loc) 599 B
/** * Affinity Node - Version 1 * Discriminator: resource=organization, operation=delete */ interface Credentials { affinityApi: CredentialReference; } /** Delete a list entry */ export type AffinityV1OrganizationDeleteParams = { resource: 'organization'; operation: 'delete'; /** * Unique identifier for the organization */ organizationId?: string | Expression<string> | PlaceholderValue; }; export type AffinityV1OrganizationDeleteNode = { type: 'n8n-nodes-base.affinity'; version: 1; credentials?: Credentials; config: NodeConfig<AffinityV1OrganizationDeleteParams>; };