Bowmark AIdocs

Allied Van Lines

Runs Allied Van Lines' own Packing Calculator — takes which rooms are moving (no name, email or phone) and returns a real, server-computed whole-house and…

Runs Allied Van Lines' own Packing Calculator — takes which rooms are moving (no name, email or phone) and returns a real, server-computed whole-house and per-room packing-supply estimate (cartons, tape, paper). Allied's separate 'quote' flow is a sales-lead form with no computed price and is out of scope; this is the one part of allied.com that answers a question with a number.

Domain: allied.com

Also known as: Allied, Allied Van Lines, allied.com

Call it directly

bowmark.providers.allied.estimatePackingSupplies(input: AlliedPackingCalculatorInput): Promise<AlliedPackingEstimate>

Functions

FunctionWhat it does
estimatePackingSuppliesAllied Van Lines' own Packing Calculator: pass which rooms are moving (kitchen, bedrooms count, garage bays, etc — no identity required) and get back a real per-room and whole-house…

Types

interface AlliedSupplyLine {
  item: string;
  quantity: number | null;
}
interface AlliedRoomSupplies {
  room: string;
  supplies: AlliedSupplyLine[];
}
interface AlliedPackingEstimate {
  totalSupplies: AlliedSupplyLine[];
  byRoom: AlliedRoomSupplies[];
}
interface AlliedPackingCalculatorInput {
  yearsInHome?: "lessThan5" | "5to10" | "over10";
  cabinetsClosets?: "clutterFree" | "packRat";
  kitchen?: boolean;
  pantry?: boolean;
  diningRoom?: boolean;
  livingRoom?: boolean;
  familyRoom?: boolean;
  homeOffice?: boolean;
  bedrooms?: number;
  garageBays?: number;
  storedAttic?: boolean;
  storageFacility?: boolean;
  otherRooms?: number;
}