AI agents: fetch the documentation index at llms.txt. Markdown versions are available by appending .md to any page URL, including this page's markdown.
Transactions
Create, serialize, and batch transactions for offline-first mutations in Strata Sync.
Every local change becomes a Transaction that flows through the outbox, travels to the server, and gets confirmed by the sync protocol.
Transaction interface
Every mutation conforms to this structure:
interface Transaction {
clientTxId: string;
clientId: string;
modelName: string;
modelId: string;
action: TransactionAction;