BILLING_NOT_CONFIGURED
Billing isn't configured for this environment.
HTTP status: 503
Why this happens
Billing isn't configured for this environment.
How to recover
Contact support if you see this in production; it indicates a deployment misconfiguration.
Branching on this code
TypeScript
import { ApiError } from "@firecase/sdk";
try {
await firecase.someCall();
} catch (e) {
if (e instanceof ApiError && e.code === "BILLING_NOT_CONFIGURED") {
// recover here
}
throw e;
}