You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
532 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/** Flock 内部 API抓包 POC 2026-07-14 */
export const FLOCK_API_ORIGIN = "https://api.flockfreight.com";
export const FLOCK_APP_ORIGIN = "https://app.flockfreight.com";
export const FLOCK_QUOTES_URL = `${FLOCK_API_ORIGIN}/user/quotes`;
export const FLOCK_GEOLOCATIONS_URL = `${FLOCK_API_ORIGIN}/geolocations`;
export const DEFAULT_FLOCK_USER_AGENT =
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36";
export const FLOCK_DIRECT_QUOTE_TIMEOUT_MS = 60_000;