/** * QuickBooks Online Node - Version 1 * Discriminator: resource=vendor, operation=get */ interface Credentials { quickBooksOAuth2Api: CredentialReference; } export type QuickbooksV1VendorGetParams = { resource: 'vendor'; operation: 'get'; /** * The ID of the vendor to retrieve */ vendorId?: string | Expression | PlaceholderValue; }; export type QuickbooksV1VendorGetNode = { type: 'n8n-nodes-base.quickbooks'; version: 1; credentials?: Credentials; config: NodeConfig; };