OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
Source Definition
export const listTransactions = defineQuery({
meta: {
name: "ListTransactions",
version: "1.0.0",
stability: "Stable",
},
io: {
input: z.object({
accountId: z.string().uuid(),
from: z.date().optional(),
to: z.date().optional(),
limit: z.number().default(50),
}),
output: z.object({
transactions: z.array(transactionSchema),
total: z.number(),
hasMore: z.boolean(),
}),
},
});