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.
15 lines (14 loc) • 371 B
JavaScript
import { BaseQueryBuilder } from '../common/base-query-builder.js';
/**
* The Company Info Query Builder
*/
export class CompanyInfoQueryBuilder extends BaseQueryBuilder {
/**
* Constructor
* @param endpoint - The Endpoint
* @param baseQuery - The Base Query
*/
constructor(endpoint, baseQuery) {
super(endpoint, baseQuery);
}
}