Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Ship numeric knobs and JSON payloads beside boolean and variant flags.
max-retries
checkout-payload
"max-retries": { type: "number", default: 3, description: "Max retries for outbound API calls", },
const retries = shipd.getNumber("max-retries"); await fetchInvoice(id, { retries });
const retries = useNumber("max-retries");
"checkout-payload": { type: "json", default: { mode: "strict", showPromo: true }, description: "Checkout UI payload", },
const ui = shipd.getJson("checkout-payload"); // typed as the default object shape from FlagDefinitions
const ui = useJson("checkout-payload");
shipd.config.ts
shipd push --project web-app --env production --yes