From 19890fbdd0d6dd019cee720b4b8343867b34df40 Mon Sep 17 00:00:00 2001 From: Evan O'Brien Date: Thu, 30 Apr 2026 20:29:55 -0700 Subject: [PATCH] Allow readonly array for Value type --- packages/typescript-client/src/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/typescript-client/src/types.ts b/packages/typescript-client/src/types.ts index a4cff5bee5..4f5e3b3d44 100644 --- a/packages/typescript-client/src/types.ts +++ b/packages/typescript-client/src/types.ts @@ -10,6 +10,7 @@ export type Value = | null | Extensions | Value[] + | readonly Value[] | { [key: string]: Value } export type Row = Record>