/** * 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; };