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.
16 lines (15 loc) • 553 B
JavaScript
/**
* The type of query to run
*/
export var Query;
(function (Query) {
Query["Invoice"] = "select * from invoice";
Query["Estimate"] = "select * from estimate";
Query["Customer"] = "select * from customer";
Query["Payment"] = "select * from payment";
Query["CreditMemo"] = "select * from creditmemo";
Query["Preferences"] = "select * from Preferences";
Query["Account"] = "select * from account";
Query["CompanyInfo"] = "select * from companyinfo";
Query["Bill"] = "select * from Bill";
})(Query || (Query = {}));