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.
40 lines (31 loc) • 1.18 kB
text/typescript
// Import the Query Builder
import type { Bill, BillOptions, SearchResponse } from '../../../../types/types';
import { BillAPI } from '../bill-api';
/**
* Get Updated Bills
* @param this - The Bill API
* @param lastUpdatedDate - The last updated date
* @returns The Bills
*/
export async function getUpdatedBills(this: BillAPI, lastUpdatedDate: Date, options: BillOptions = {}): Promise<SearchResponse<Bill>> {
// Get the Query Builder
const queryBuilder = await this.getQueryBuilder();
// Setup the Last Updated Date Filter
queryBuilder.whereLastUpdatedAfter(lastUpdatedDate);
// Setup the Search Options (if provided)
if (options.searchOptions) queryBuilder.setSearchOptions(options.searchOptions);
// Setup the URL
const url = queryBuilder.build();
// Get the Bills
const { responseData, intuitTID } = await this.apiClient.runRequest(url, { method: 'GET' });
// Format the Response
const bills = await this.formatResponse(responseData);
// Setup the Search Response
const searchResponse: SearchResponse<Bill> = {
results: bills,
hasNextPage: await this.hasNextPage(queryBuilder),
intuitTID,
};
// Return the Bills
return searchResponse;
}