interface

MutationLocaleOptions

interface MutationLocaleOptions<Locale extends string = string> { ... }

Locale and transport options shared by mutations without an optimistic-concurrency contract.

Source packages/sdk/src/index.ts:45

revisionnever
This method has no optimistic-concurrency transport contract.
localeLocale
Mutations target one locale; `"all"` is read-only.
fallbackLocale[Locale] extends [never] ? never : false | Locale | readonly Locale[]
Explicit fallback chain, or false to require an exact locale value.
signalAbortSignal
The signal value.
headersHeadersInit | undefined
The headers value.
keepaliveboolean
The keepalive value.

Mutations target one locale, so locale: "all" is excluded. revision?: never also rejects a revision-bearing options variable instead of only catching fresh object literals.