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) • 593 B
TypeScript
import type { Preferences, Query } from '../../../types/types.js';
import { BaseQueryBuilder } from '../common/base-query-builder.js';
/**
* The Preference Query Builder
*/
export declare class PreferenceQueryBuilder extends BaseQueryBuilder<Preferences> {
/**
* 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;
}