//#region src/types.d.ts /** * BD Logistics Area Types * * Unified types with multi-provider support * Generated: 2025-12-14T14:06:57.656Z */ interface Division { id: string; name: string; nameLocal: string; } interface District { id: string; name: string; divisionId: string; divisionName: string; } type ProviderName = 'redx' | 'pathao' | 'steadfast'; interface ProviderAreaIds { redx?: number; pathao?: number; steadfast?: number; } /** * Unified area with internal ID and provider mappings */ interface Area { /** Internal ID for your system (currently = RedX ID) */ internalId: number; name: string; postCode: number | null; zoneId: number; districtId: string; districtName: string; divisionId: string; divisionName: string; /** Provider-specific area IDs */ providers: ProviderAreaIds; } interface AreaResolved extends Area { division: Division; district: District; } //#endregion export { ProviderAreaIds as a, Division as i, AreaResolved as n, ProviderName as o, District as r, Area as t }; //# sourceMappingURL=types-CYfHyMEC.d.mts.map