// PURPOSE: // Get all customer records // REQ0006 // // RULES: // error handled by caller // contain definition to collection only // import { pb } from '@/lib/pb'; import { COL_CUSTOMERS } from '@/constants'; import type { RecordModel } from 'pocketbase'; export async function getAllCustomers(options = {}): Promise { return pb.collection(COL_CUSTOMERS).getFullList(options); }