UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

22 lines (18 loc) 465 B
/** * Onfleet Node - Version 1 * Discriminator: resource=organization, operation=get */ interface Credentials { onfleetApi: CredentialReference; } /** Get container information */ export type OnfleetV1OrganizationGetParams = { resource: 'organization'; operation: 'get'; }; export type OnfleetV1OrganizationGetNode = { type: 'n8n-nodes-base.onfleet'; version: 1; credentials?: Credentials; config: NodeConfig<OnfleetV1OrganizationGetParams>; };