UNPKG

quickbooks-api

Version:

A modular TypeScript SDK for seamless integration with Intuit QuickBooks APIs. Provides robust authentication handling and future-ready foundation for accounting, payments, and commerce operations.

20 lines (19 loc) 587 B
import { type Customer, type Query } from '../../../types/types.js'; import { BaseQueryBuilder } from '../common/base-query-builder.js'; /** * The Invoice Query Builder */ export declare class CustomerQueryBuilder extends BaseQueryBuilder<Customer> { /** * Constructor * @param endpoint - The Endpoint * @param baseQuery - The Base Query */ constructor(endpoint: string, baseQuery: Query); /** * Where Customer ID * @param customerId - The customer ID * @returns The Query Builder */ whereCustomerId(customerId: string): this; }