pub const SERVICE_ERROR_CODES: &[&str] = &[
"credit-exhausted",
"app-budget-exhausted",
"app-rate-limited",
"principal-rate-limited",
"edge-rate-limited",
"provider-safety-paused",
"usage-price-stale",
"relay-budget-exhausted",
"room-capacity-exceeded",
];
pub const LEGACY_SERVICE_ERROR_ALIASES: &[(&str, &str, &str)] = &[
("edge-rate-exceeded", "edge-rate-limited", "ip"),
("route-rate-exceeded", "edge-rate-limited", "avenue"),
];
pub const ERROR_DOCUMENTATION_URL: &str = "https://openrtc-docs.web.app/openrtc/api/errors";