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.

15 lines (14 loc) 436 B
/** * The type of query to run */ export declare enum Query { Invoice = "select * from invoice", Estimate = "select * from estimate", Customer = "select * from customer", Payment = "select * from payment", CreditMemo = "select * from creditmemo", Preferences = "select * from Preferences", Account = "select * from account", CompanyInfo = "select * from companyinfo", Bill = "select * from Bill" }