@ai-matrx/records 0.3.0 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +29 -0
- package/dist/core/index.cjs +16 -1
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.js +16 -1
- package/dist/core/index.js.map +1 -1
- package/dist/index.cjs +16 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +67 -1
- package/dist/index.d.ts +67 -1
- package/dist/index.js +16 -1
- package/dist/index.js.map +1 -1
- package/dist/react/index.cjs +16 -1
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.d.cts +67 -1
- package/dist/react/index.d.ts +67 -1
- package/dist/react/index.js +16 -1
- package/dist/react/index.js.map +1 -1
- package/package.json +1 -1
package/dist/react/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/react/index.ts","../../src/react/context.tsx","../../src/results.ts","../../src/store.generated.ts","../../src/core/doors.ts","../../src/core/pgError.ts","../../src/core/query.ts","../../src/core/client.ts","../../src/react/hooks.ts","../../src/vocabulary.ts","../../src/aggregate.ts"],"sourcesContent":["\"use client\";\n\n// src/react/index.ts — @ai-matrx/records\nexport { RecordsProvider, useRecordsClient, useRecordsActor, type RecordsProviderProps } from \"./context\";\nexport {\n useTable,\n useTables,\n useFields,\n useRecords,\n useRecord,\n useRecordMutation,\n useMergeField,\n type UseRecordsOptions,\n type UseRecordsState,\n type UseRecordMutation,\n} from \"./hooks\";\nexport * from \"../index\";\n","\"use client\";\n\n// src/react/context.tsx — @ai-matrx/records\n//\n// The one binding point. A host mounts `<RecordsProvider config={...}>` once and\n// every hook below reads the client from it. There is no module-level client and\n// no singleton: module-level mutable state is banned in these packages because a\n// dual-loader graph splits it, and because two organizations in two tabs must\n// never share one.\n\nimport {\n createContext,\n createElement,\n useContext,\n useMemo,\n type ReactNode,\n} from \"react\";\n\nimport type { RecordsConfig } from \"../ports\";\nimport { createRecordsClient, type RecordsClient } from \"../core/client\";\n\nconst RecordsContext = createContext<RecordsClient | null>(null);\n\nexport interface RecordsProviderProps {\n config: RecordsConfig;\n children: ReactNode;\n}\n\nexport function RecordsProvider({ config, children }: RecordsProviderProps) {\n const client = useMemo(\n () => createRecordsClient(config),\n // The identity of the organization and the actor is what makes a client a\n // different client. Rebuilding on those is the point, not a cost.\n [\n config.dataSource,\n config.organizationId,\n config.actor.actor,\n config.actor.user_id,\n config.actor.on_behalf_of,\n config.realtime,\n config.resolver,\n config.onError,\n config.schema,\n ],\n );\n return createElement(RecordsContext.Provider, { value: client }, children);\n}\n\n/**\n * The client, or a loud failure. A hook that quietly did nothing because nobody\n * mounted the provider is the silent failure this throws instead of.\n */\nexport function useRecordsClient(): RecordsClient {\n const client = useContext(RecordsContext);\n if (!client) {\n throw new Error(\n \"useRecordsClient was called outside <RecordsProvider>. Mount it once, high, with the \" +\n \"supabase client that already carries this person's session, the actor word and the \" +\n \"organization id — the store is keyed (organization_id, id) and this package never guesses \" +\n \"which organization you meant.\",\n );\n }\n return client;\n}\n\n/** For a screen that wants to show who it is acting as (AGT-N-4). */\nexport function useRecordsActor() {\n return useRecordsClient().config.actor;\n}\n","// src/results.ts — @ai-matrx/records\n//\n// THE NEVER-THROW RESULT ENVELOPE, and the refusal vocabulary behind it.\n//\n// This package's whole posture toward the store is in one sentence: THE CLIENT\n// MIRRORS THE STORE'S CONTRACT AND NEVER RE-IMPLEMENTS A RULE THE STORE\n// ENFORCES. When the store refuses, the client hands back the store's OWN\n// message, the store's OWN hint and the store's OWN SQLSTATE, under a code a\n// screen can branch on. It never rewrites the sentence, never swallows it, and\n// never invents a friendlier one — the store's refusals were written to be read\n// by a person, and a client that paraphrases them is lying about what happened.\n\nimport type { PerValueAccessWord } from \"./vocabulary\";\nimport type { Uuid } from \"./record\";\n\n/**\n * What KIND of refusal it was. The mapping from SQLSTATE to code lives in\n * `/core`, and it is checked against `STORE_REFUSAL_CODES` — the list of every\n * SQLSTATE the store's own bodies raise, generated from the live catalogue. A\n * code the store can raise and this union cannot name is a hole, and the\n * real-door suite fails on it.\n */\nexport type RecordsErrorCode =\n /** `PT409` — somebody else's write won. The record clock moved under you. */\n | \"stale_write\"\n /** `42501` — a door. Either the schema is revoked, or the store is switched off, or this principal may not pass. */\n | \"door\"\n /** `23514` — a Rule, a shape guard, or a validation the store enforces refused it. */\n | \"refused_by_rule\"\n /** `22004` / `22023` — the call itself was malformed: a missing id, a patch that is not an object. */\n | \"invalid_argument\"\n /** `02000` — the record is not here (deleted, never existed, or another organization's). */\n | \"not_found\"\n /** `23503` — something it points at is not there. */\n | \"missing_reference\"\n /** `23505` — that thing is already here. */\n | \"already_exists\"\n /** `0A000` — the store does not do this yet, and says which part. */\n | \"not_supported\"\n /** `53400` / `22012` — the store ran out of something, or the arithmetic could not be done. */\n | \"store_limit\"\n /**\n * `40001` — the visibility snapshot this connection carries is older than a\n * write the reader has already observed, so the store refused to answer at\n * all rather than hand back something they just lost. Retry on a fresh\n * connection; it is the one refusal in this list that is worth repeating.\n */\n | \"stale_read\"\n /**\n * THE DOOR THAT DOES NOT EXIST YET. Not an error condition in the database —\n * this package asked for a door that is not in the live catalogue, so it\n * refused to guess. `door_absent` always names the door and the lane that\n * owns it; it is never a silent no-op and never an empty list.\n */\n | \"door_absent\"\n /**\n * `PGRST202` / `PGRST205` — PostgREST could not find the function or the\n * schema. The database this client is pointed at is not serving the record\n * store: the schema is not exposed, or the grants are not there.\n */\n | \"store_not_served\"\n /** Anything the mapper could not place. It still carries the store's own words. */\n | \"internal\";\n\n/** A refusal, in the store's own words. */\nexport interface RecordsError {\n code: RecordsErrorCode;\n /** THE STORE'S message, verbatim. Never paraphrased. */\n message: string;\n /** THE STORE'S hint, verbatim — this is where the remedy is written. */\n hint?: string;\n /** The SQLSTATE, so a caller can be exact when a code is not exact enough. */\n sqlstate?: string;\n /** Whatever the store put in DETAIL, parsed when it was json. */\n detail?: unknown;\n}\n\nexport type RecordsResult<T> = { ok: true; data: T } | { ok: false; error: RecordsError };\n\n/** Narrowing helper for hosts compiled without `strictNullChecks`. */\nexport function isRecordsErr<T>(\n result: RecordsResult<T>,\n): result is { ok: false; error: RecordsError } {\n return result.ok === false;\n}\n\nexport const ok = <T>(data: T): RecordsResult<T> => ({ ok: true, data });\nexport const err = <T>(error: RecordsError): RecordsResult<T> => ({ ok: false, error });\n\n/**\n * A `stale_write` carries everything the screen needs to show the conflict\n * rather than a toast: which version you wrote against, which one won, and the\n * value of every field you touched as it stands now. The store builds this and\n * this type is its shape — nothing is reconstructed on the client.\n */\nexport interface StaleWriteDetail {\n expected_version: number;\n current_version: number;\n contested_fields: Record<string, unknown>;\n}\n\n/** The parsed form of a `stale_write`, for `useRecordMutation`'s conflict state. */\nexport interface WriteConflict extends StaleWriteDetail {\n record_id: Uuid;\n /** The store's own sentence — what the screen shows. */\n message: string;\n /** The store's own remedy. */\n hint: string;\n}\n\n/**\n * The structural shape of a PostgREST failure as supabase-js resolves it: a\n * PLAIN OBJECT parsed from the response body, NOT an `Error`. Reading\n * `.message` off `instanceof Error` discards the real database message on every\n * genuine failure.\n */\nexport interface PgError {\n code?: string | null;\n message: string;\n details?: string | null;\n hint?: string | null;\n}\n\n/** What the validation mirror answers: the same sentence the trigger would raise. */\nexport interface PredictedRefusal {\n /** The field key the store would name, when it names one. */\n field_key?: string;\n /** The message the store's own body would raise, word for word. */\n message: string;\n hint?: string;\n sqlstate: string;\n /**\n * Which of the store's bodies would raise it, so a reader can go and check\n * that this mirror still tells the truth.\n */\n predicted_by: string;\n}\n\n/** VAL-5 / VAL-6, named so a caller can say which word was the problem. */\nexport interface ForbiddenEnvelopeWord {\n field_key: string;\n word: PerValueAccessWord;\n}\n","// src/store.generated.ts — @ai-matrx/records\n//\n// GENERATED. Do not edit by hand: `pnpm records:generate` rewrites it from the\n// live record store, and `pnpm check:store-registry` fails the build when this\n// file and the store disagree. Every literal below was read from the database's\n// own catalogue — the vocabularies from the store's vocabulary functions, the\n// parity types from `custom.parity_field_types()`, the doors from `pg_proc`,\n// the kernel ids from the kernel rows themselves, the tokens from\n// `platform.entity_types`.\n//\n// Counts at generation: 3 actor words, 4 absence\n// reasons, 13 parity field types, 21 rule node kinds,\n// 9 kernel Tables, 232 doors, 23 knobs,\n// 1018 entity tokens.\n\nexport const ACTOR_VOCABULARY = [\"user\", \"agent\", \"system\"] as const;\n\n/** The three words the store still accepts and rewrites, and what each becomes. */\nexport const RETIRED_ACTOR_WORDS = {\"ai\": \"agent\", \"code\": \"system\", \"human\": \"user\"} as const;\n\nexport const ABSENCE_REASONS = [\"never asked\", \"none\", \"refused\", \"conflicting\"] as const;\n\nexport const VALUE_ENVELOPE_KEYS = [\"ver\", \"src\", \"actor\", \"on_behalf_of\", \"at\", \"absent\", \"alternates\", \"dated\"] as const;\n\nexport const VALUE_ALTERNATE_KEYS = [\"value\", \"src\", \"rank\"] as const;\n\nexport const STORAGE_MODES = [\"light\", \"heavy\"] as const;\n\nexport const RULE_USES = [\"validate\", \"compute\", \"membership\", \"applicability\"] as const;\n\nexport const PER_VALUE_ACCESS_WORDS = [\"visibility\", \"access\", \"share\", \"acl\", \"permission\", \"permissions\", \"secret\"] as const;\n\n/** FLD-11's parity floor, each with the behaviour it is MADE OF (FLD-1). */\nexport const PARITY_FIELD_TYPES = [\n { parity_type: \"attachment\", behavior: \"relation\", made_of: \"REC-31: a File record reached through a relation, target the kernel `File` Table\" },\n { parity_type: \"currency\", behavior: \"range\", made_of: \"FLD-N-1: a number whose UNIT is the currency and whose format is currency — on the Field, never in presentation\" },\n { parity_type: \"datetime\", behavior: \"range\", made_of: \"a range of kind date or datetime — the dated modifier says the VALUES are dated, which is a different question\" },\n { parity_type: \"email\", behavior: \"text\", made_of: \"text whose format is email\" },\n { parity_type: \"formula\", behavior: \"formula\", made_of: \"FLD-9: a declared computation, on read or on write, evaluated by custom.rule_eval\" },\n { parity_type: \"lookup\", behavior: \"formula\", made_of: \"a Value read THROUGH a relation — config.via names the relation field, config.pick the Value on the far side\" },\n { parity_type: \"member\", behavior: \"relation\", made_of: \"a person: a relation whose target is the kernel `Person` Table\" },\n { parity_type: \"multi_select\", behavior: \"list\", made_of: \"many choices from the same Table — the multi modifier, never a second behaviour\" },\n { parity_type: \"percent\", behavior: \"range\", made_of: \"a number whose unit is % and whose format is percent\" },\n { parity_type: \"phone\", behavior: \"text\", made_of: \"text whose format is phone\" },\n { parity_type: \"rollup\", behavior: \"formula\", made_of: \"an aggregate ALONG a relation — config.via, config.of, config.agg; far-side ids are taken DISTINCT, so nothing is counted twice\" },\n { parity_type: \"select\", behavior: \"list\", made_of: \"one choice from a Table shown as a list (FLD-5/FLD-6)\" },\n { parity_type: \"url\", behavior: \"text\", made_of: \"text whose format is url, with the pattern Rule that makes the format enforceable\" },\n] as const;\n\n/** The node kinds `custom.rule_eval` evaluates, and the lane that owns each. */\nexport const RULE_NODE_KINDS = [\n { node: \"add\", evaluated_by: \"W1-RULE\" },\n { node: \"and\", evaluated_by: \"W1-RULE\" },\n { node: \"concat\", evaluated_by: \"W1-RULE\" },\n { node: \"const\", evaluated_by: \"W1-RULE\" },\n { node: \"div\", evaluated_by: \"W1-RULE\" },\n { node: \"eq\", evaluated_by: \"W1-RULE\" },\n { node: \"field\", evaluated_by: \"W1-RULE\" },\n { node: \"gt\", evaluated_by: \"W1-RULE\" },\n { node: \"gte\", evaluated_by: \"W1-RULE\" },\n { node: \"length\", evaluated_by: \"W1-RULE\" },\n { node: \"lt\", evaluated_by: \"W1-RULE\" },\n { node: \"lte\", evaluated_by: \"W1-RULE\" },\n { node: \"matches\", evaluated_by: \"W1-RULE\" },\n { node: \"merge_field\", evaluated_by: \"W5-MERGE-B\" },\n { node: \"mul\", evaluated_by: \"W1-RULE\" },\n { node: \"ne\", evaluated_by: \"W1-RULE\" },\n { node: \"not\", evaluated_by: \"W1-RULE\" },\n { node: \"or\", evaluated_by: \"W1-RULE\" },\n { node: \"parent_field\", evaluated_by: \"W1-RULE-APPLY\" },\n { node: \"present\", evaluated_by: \"W1-RULE\" },\n { node: \"sub\", evaluated_by: \"W1-RULE\" },\n] as const;\n\n/** REC-27. The kernel, by name and by id, as the store holds it. */\nexport const KERNEL_TABLES = [\n { id: \"11111111-0000-4000-8000-000000000002\", name: \"Field\" },\n { id: \"11111111-0000-4000-8000-000000000006\", name: \"File\" },\n { id: \"11111111-0000-4000-8000-000000000009\", name: \"Merge Field\" },\n { id: \"11111111-0000-4000-8000-000000000004\", name: \"Organization\" },\n { id: \"11111111-0000-4000-8000-000000000005\", name: \"Person\" },\n { id: \"11111111-0000-4000-8000-000000000007\", name: \"Presentation\" },\n { id: \"11111111-0000-4000-8000-000000000003\", name: \"Rule\" },\n { id: \"11111111-0000-4000-8000-000000000001\", name: \"Table\" },\n { id: \"11111111-0000-4000-8000-000000000008\", name: \"Widget\" },\n] as const;\n\n/**\n * Every door the store actually has, with the argument list and the result the\n * catalogue reports. A client call whose door is not in this list is answered\n * `door_absent` by name — never a guess, never a silent no-op.\n */\nexport const STORE_DOORS = [\n { name: \"absence_reasons\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"actor_vocabulary\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"actor_word\", args: \"p_declared text\", returns: \"text\", security: \"invoker\" },\n { name: \"agent_context\", args: \"p_organization_id uuid, p_table_id uuid, p_limit integer DEFAULT 50\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"agg_assert_key\", args: \"p_key text\", returns: \"text\", security: \"invoker\" },\n { name: \"agg_buckets\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"agg_deliver\", args: \"p_organization_id uuid, p_rule_id uuid, p_record_id uuid, p_channel text, p_recipient_user_id uuid, p_event_key text, p_subject text, p_body text, p_payload jsonb DEFAULT '{}'::jsonb\", returns: \"uuid\", security: \"invoker\" },\n { name: \"agg_digest_run\", args: \"p_organization_id uuid, p_rule_id uuid DEFAULT NULL::uuid, p_since timestamp with time zone DEFAULT NULL::timestamp with time zone\", returns: \"integer\", security: \"invoker\" },\n { name: \"agg_explain\", args: \"p_organization_id uuid, p_table_id uuid, p_group_by jsonb DEFAULT '[]'::jsonb, p_measures jsonb DEFAULT '[]'::jsonb, p_bucket jsonb DEFAULT NULL::jsonb, p_filter jsonb DEFAULT '{}'::jsonb, p_required text DEFAULT 'viewer'::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"agg_operations\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"agg_sql\", args: \"p_organization_id uuid, p_table_id uuid, p_group_by jsonb DEFAULT '[]'::jsonb, p_measures jsonb DEFAULT '[]'::jsonb, p_bucket jsonb DEFAULT NULL::jsonb, p_filter jsonb DEFAULT '{}'::jsonb, p_limit integer DEFAULT 200, p_required text DEFAULT 'viewer'::text\", returns: \"text\", security: \"invoker\" },\n { name: \"agg_subscription_cadences\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"agg_subscription_fire\", args: \"p_organization_id uuid, p_record_id uuid, p_table_id uuid DEFAULT NULL::uuid, p_changed_field_ids jsonb DEFAULT '[]'::jsonb\", returns: \"integer\", security: \"invoker\" },\n { name: \"agg_subscriptions\", args: \"p_organization_id uuid, p_saved_view_id uuid DEFAULT NULL::uuid, p_cadence text DEFAULT NULL::text\", returns: \"TABLE(rule_id uuid, saved_view_id uuid, cadence text, schedule text, channel text, recipient_user_id uuid, event_key text, name text)\", security: \"invoker\" },\n { name: \"agg_value_sql\", args: \"p_key text\", returns: \"text\", security: \"invoker\" },\n { name: \"agg_view_admits\", args: \"p_organization_id uuid, p_saved_view_id uuid, p_record_id uuid\", returns: \"boolean\", security: \"invoker\" },\n { name: \"anon_capture\", args: \"p_organization_id uuid, p_client_key text, p_table_id uuid, p_payload jsonb, p_device text DEFAULT NULL::text, p_captured_at timestamp with time zone DEFAULT NULL::timestamp with time zone\", returns: \"uuid\", security: \"definer\" },\n { name: \"anon_clear\", args: \"p_organization_id uuid, p_submission_id uuid\", returns: \"uuid\", security: \"definer\" },\n { name: \"anon_inbound_land\", args: \"p_address text, p_secret text, p_payload jsonb, p_raw_payload jsonb DEFAULT '{}'::jsonb, p_client_key text DEFAULT NULL::text\", returns: \"uuid\", security: \"definer\" },\n { name: \"anon_publish\", args: \"p_organization_id uuid, p_form_id uuid, p_published boolean DEFAULT true\", returns: \"timestamp with time zone\", security: \"definer\" },\n { name: \"anon_rate_take\", args: \"p_organization_id uuid, p_form_id uuid, p_bucket text, p_token_id uuid DEFAULT NULL::uuid\", returns: \"integer\", security: \"definer\" },\n { name: \"anon_token_issue\", args: \"p_organization_id uuid, p_mode text, p_allowed_origins jsonb, p_form_id uuid DEFAULT NULL::uuid, p_saved_view_id uuid DEFAULT NULL::uuid, p_record_id uuid DEFAULT NULL::uuid, p_expires_at timestamp with time zone DEFAULT NULL::timestamp with time zone\", returns: \"TABLE(token_id uuid, secret text)\", security: \"definer\" },\n { name: \"anon_token_revoke\", args: \"p_organization_id uuid, p_token_id uuid\", returns: \"boolean\", security: \"definer\" },\n { name: \"anon_token_verify\", args: \"p_secret text, p_origin text, p_required_mode text\", returns: \"TABLE(token_id uuid, organization_id uuid, form_id uuid, saved_view_id uuid, record_id uuid, mode text)\", security: \"definer\" },\n { name: \"anon_write\", args: \"p_secret text, p_origin text, p_payload jsonb, p_client_key text DEFAULT NULL::text, p_raw_payload jsonb DEFAULT '{}'::jsonb\", returns: \"uuid\", security: \"definer\" },\n { name: \"applicable_fields\", args: \"p_organization_id uuid, p_table_id uuid, p_record_type text DEFAULT NULL::text\", returns: \"SETOF custom.record\", security: \"definer\" },\n { name: \"assert_client_may_reach\", args: \"p_organization_id uuid, p_door text\", returns: \"void\", security: \"invoker\" },\n { name: \"assert_organization_wall\", args: \"p_kind text, p_organization_id uuid, p_row jsonb\", returns: \"void\", security: \"invoker\" },\n { name: \"assert_store_door\", args: \"p_organization_id uuid, p_door text\", returns: \"void\", security: \"invoker\" },\n { name: \"bump_epoch\", args: \"p_entity_type text, p_entity_id uuid, p_organization_id uuid DEFAULT NULL::uuid\", returns: \"bigint\", security: \"definer\" },\n { name: \"cache_lookup\", args: \"p_container_type text, p_container_id uuid, p_item_type text, p_item_id uuid\", returns: \"permission_level\", security: \"definer\" },\n { name: \"caller_role\", args: \"\", returns: \"name\", security: \"invoker\" },\n { name: \"client_write_grants\", args: \"\", returns: \"TABLE(role_name text, object_name text, privilege text)\", security: \"invoker\" },\n { name: \"computed_provenance\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"TABLE(field_key text, field_id uuid, value jsonb, rule_id uuid, rule_version integer, computed_at timestamp with time zone)\", security: \"invoker\" },\n { name: \"containment_chain\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"TABLE(ancestor_id uuid, depth integer)\", security: \"invoker\" },\n { name: \"containment_depth_ceiling\", args: \"p_organization_id uuid DEFAULT NULL::uuid\", returns: \"integer\", security: \"invoker\" },\n { name: \"containment_edges\", args: \"p_organization_id uuid\", returns: \"TABLE(parent_id uuid, child_id uuid, via text)\", security: \"invoker\" },\n { name: \"containment_parent\", args: \"p_data jsonb\", returns: \"uuid\", security: \"invoker\" },\n { name: \"custom_fields_tables\", args: \"\", returns: \"TABLE(token text, schema_name text, table_name text)\", security: \"invoker\" },\n { name: \"dependency_cycle\", args: \"p_organization_id uuid, p_row custom.record\", returns: \"text[]\", security: \"invoker\" },\n { name: \"dependency_label\", args: \"p_organization_id uuid, p_node text\", returns: \"text\", security: \"invoker\" },\n { name: \"derive_visibility\", args: \"p_container_type text, p_container_id uuid\", returns: \"TABLE(item_type text, item_id uuid, depth integer, max_level permission_level)\", security: \"definer\" },\n { name: \"derived_value\", args: \"p_organization_id uuid, p_record_id uuid, p_field_data jsonb, p_values jsonb DEFAULT NULL::jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"derived_values\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"doc_content_hash\", args: \"p_body text\", returns: \"text\", security: \"invoker\" },\n { name: \"doc_format_value\", args: \"p_field_data jsonb, p_value jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"doc_render_body\", args: \"p_organization_id uuid, p_template_id uuid, p_record_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"doc_render_document\", args: \"p_organization_id uuid, p_template_id uuid, p_record_id uuid\", returns: \"uuid\", security: \"definer\" },\n { name: \"doc_render_write\", args: \"p_organization_id uuid, p_template_id uuid, p_record_id uuid, p_table_id uuid, p_template_version integer, p_body text, p_content_hash text\", returns: \"uuid\", security: \"definer\" },\n { name: \"doc_sign\", args: \"p_organization_id uuid, p_render_id uuid, p_field_key text, p_signer_name text, p_signer_user_id uuid DEFAULT NULL::uuid\", returns: \"uuid\", security: \"definer\" },\n { name: \"doc_signature_field_ok\", args: \"p_field_data jsonb\", returns: \"boolean\", security: \"invoker\" },\n { name: \"doc_signature_intact\", args: \"p_organization_id uuid, p_signature_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"doc_signature_write\", args: \"p_organization_id uuid, p_render_id uuid, p_record_id uuid, p_field_key text, p_signer_name text, p_signer_user_id uuid, p_document_hash text, p_document_version integer\", returns: \"uuid\", security: \"definer\" },\n { name: \"doc_template_save\", args: \"p_organization_id uuid, p_table_id uuid, p_name text, p_body text, p_template_id uuid DEFAULT NULL::uuid\", returns: \"uuid\", security: \"definer\" },\n { name: \"doc_token_pattern\", args: \"\", returns: \"text\", security: \"invoker\" },\n { name: \"doc_tokens\", args: \"p_body text\", returns: \"TABLE(ordinal integer, raw text, field_id uuid)\", security: \"invoker\" },\n { name: \"doc_unresolved_tokens\", args: \"p_organization_id uuid, p_table_id uuid, p_body text\", returns: \"TABLE(raw text, field_id uuid, why text)\", security: \"invoker\" },\n { name: \"export_records\", args: \"p_organization_id uuid, p_table_id uuid, p_limit integer DEFAULT 1000\", returns: \"TABLE(id uuid, document jsonb)\", security: \"invoker\" },\n { name: \"external_foreign_table_findings\", args: \"\", returns: \"SETOF text\", security: \"definer\" },\n { name: \"external_history_event\", args: \"p_organization_id uuid, p_link_id uuid, p_operation text\", returns: \"bigint\", security: \"definer\" },\n { name: \"external_rows\", args: \"p_organization_id uuid, p_source_id uuid\", returns: \"SETOF jsonb\", security: \"definer\" },\n { name: \"external_source_declare\", args: \"p_organization_id uuid, p_tier text, p_connection_token text, p_external_schema text, p_external_table text, p_link_template text\", returns: \"uuid\", security: \"definer\" },\n { name: \"external_stub_upsert\", args: \"p_organization_id uuid, p_source_id uuid, p_table_id uuid, p_external_key text, p_link_url text, p_cached_title text\", returns: \"uuid\", security: \"definer\" },\n { name: \"external_tier_contract\", args: \"\", returns: \"jsonb\", security: \"definer\" },\n { name: \"external_write_through\", args: \"p_organization_id uuid, p_record_id uuid, p_patch jsonb\", returns: \"void\", security: \"definer\" },\n { name: \"external_writes_set\", args: \"p_organization_id uuid, p_source_id uuid, p_enabled boolean\", returns: \"boolean\", security: \"definer\" },\n { name: \"field_dependants\", args: \"p_organization_id uuid, p_field_id uuid\", returns: \"TABLE(kind text, dependant_id uuid, label text, how text)\", security: \"invoker\" },\n { name: \"field_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"field_options\", args: \"p_organization_id uuid, p_field_id uuid\", returns: \"SETOF custom.record\", security: \"invoker\" },\n { name: \"field_rules\", args: \"p_field_data jsonb\", returns: \"TABLE(kind text, spec jsonb)\", security: \"invoker\" },\n { name: \"file_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"formula_value\", args: \"p_organization_id uuid, p_record_id uuid, p_field_data jsonb, p_values jsonb DEFAULT NULL::jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"has_visibility\", args: \"p_user_id uuid, p_type text, p_id uuid, p_required permission_level DEFAULT 'viewer'::permission_level\", returns: \"boolean\", security: \"definer\" },\n { name: \"has_visibility_at\", args: \"p_user_id uuid, p_type text, p_id uuid, p_required permission_level DEFAULT 'viewer'::permission_level, p_organization_id uuid DEFAULT NULL::uuid, p_min_version bigint DEFAULT NULL::bigint\", returns: \"boolean\", security: \"definer\" },\n { name: \"hidden_field_notice\", args: \"p_field custom.record, p_action text DEFAULT 'read'::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"home_add\", args: \"p_organization_id uuid, p_table_id uuid, p_home_record_id uuid\", returns: \"uuid\", security: \"invoker\" },\n { name: \"home_relations\", args: \"\", returns: \"TABLE(table_id uuid, home_record_id uuid, organization_id uuid, relation_id uuid)\", security: \"invoker\" },\n { name: \"index_payload\", args: \"p_organization_id uuid, p_table_id uuid, p_limit integer DEFAULT 1000\", returns: \"TABLE(id uuid, searchable text)\", security: \"invoker\" },\n { name: \"intern_provenance\", args: \"p_data jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"io_changed_field_ids\", args: \"p_organization_id uuid, p_table_id uuid, p_old jsonb, p_new jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"io_changed_keys\", args: \"p_old jsonb, p_new jsonb\", returns: \"text[]\", security: \"invoker\" },\n { name: \"io_comment_resolve\", args: \"p_organization_id uuid, p_comment_id uuid, p_resolved boolean DEFAULT true\", returns: \"boolean\", security: \"definer\" },\n { name: \"io_comment_write\", args: \"p_organization_id uuid, p_record_id uuid, p_body text, p_anchor jsonb DEFAULT '{}'::jsonb, p_parent_comment_id uuid DEFAULT NULL::uuid\", returns: \"uuid\", security: \"definer\" },\n { name: \"io_comments\", args: \"p_organization_id uuid, p_record_id uuid, p_include_resolved boolean DEFAULT false\", returns: \"TABLE(id uuid, body text, anchor jsonb, parent_comment_id uuid, created_by uuid, created_at timestamp with time zone, resolved_at timestamp with time zone, resolved_by uuid)\", security: \"definer\" },\n { name: \"io_csv_escape\", args: \"p_value text, p_delimiter text DEFAULT ','::text\", returns: \"text\", security: \"invoker\" },\n { name: \"io_csv_parse\", args: \"p_text text, p_delimiter text DEFAULT NULL::text\", returns: \"TABLE(row_number integer, cells text[])\", security: \"invoker\" },\n { name: \"io_export\", args: \"p_organization_id uuid, p_table_id uuid, p_columns text[] DEFAULT NULL::text[], p_limit integer DEFAULT 10000, p_required text DEFAULT 'viewer'::text\", returns: \"jsonb\", security: \"definer\" },\n { name: \"io_export_csv\", args: \"p_organization_id uuid, p_table_id uuid, p_columns text[] DEFAULT NULL::text[], p_limit integer DEFAULT 10000, p_delimiter text DEFAULT ','::text, p_required text DEFAULT 'viewer'::text\", returns: \"text\", security: \"definer\" },\n { name: \"io_import_open\", args: \"p_organization_id uuid, p_table_id uuid, p_format text DEFAULT 'csv'::text, p_source_name text DEFAULT NULL::text, p_source_columns jsonb DEFAULT '[]'::jsonb\", returns: \"uuid\", security: \"definer\" },\n { name: \"io_import_rows\", args: \"p_organization_id uuid, p_import_id uuid, p_rows jsonb, p_mapping jsonb DEFAULT '{}'::jsonb\", returns: \"jsonb\", security: \"definer\" },\n { name: \"io_infer_type\", args: \"p_samples jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"io_outbox_announce\", args: \"\", returns: \"trigger\", security: \"definer\" },\n { name: \"io_outbox_drain\", args: \"p_organization_id uuid, p_consumer text, p_limit integer DEFAULT 100, p_event_key text DEFAULT 'records.changed'::text\", returns: \"TABLE(outbox_id uuid, record_id uuid, table_id uuid, operation text, changed_field_ids jsonb, actor jsonb, occurred_at timestamp with time zone)\", security: \"definer\" },\n { name: \"io_outbox_release\", args: \"p_organization_id uuid, p_consumer text, p_older_than interval DEFAULT '00:15:00'::interval\", returns: \"integer\", security: \"definer\" },\n { name: \"io_proposal_accept\", args: \"p_organization_id uuid, p_import_id uuid, p_column text, p_type text DEFAULT NULL::text, p_label text DEFAULT NULL::text\", returns: \"uuid\", security: \"definer\" },\n { name: \"io_proposal_reject\", args: \"p_organization_id uuid, p_import_id uuid, p_column text\", returns: \"boolean\", security: \"definer\" },\n { name: \"io_record_changed\", args: \"\", returns: \"trigger\", security: \"definer\" },\n { name: \"io_restore\", args: \"p_organization_id uuid, p_record_id uuid, p_version integer\", returns: \"integer\", security: \"definer\" },\n { name: \"io_revisions\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"TABLE(version integer, changed_at timestamp with time zone, changed_by uuid, summary text)\", security: \"definer\" },\n { name: \"lookup_value\", args: \"p_organization_id uuid, p_record_id uuid, p_field_data jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"mask_document\", args: \"p_document jsonb, p_visible_keys text[], p_notices jsonb, p_by_id boolean DEFAULT false, p_key_ids jsonb DEFAULT '{}'::jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"mask_document\", args: \"p_document jsonb, p_visible_keys text[], p_notices jsonb, p_by_id boolean DEFAULT false, p_key_ids jsonb DEFAULT '{}'::jsonb, p_declared_keys text[] DEFAULT NULL::text[]\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"merge_field_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"migrate_delete\", args: \"p_organization_id uuid, p_record_id uuid, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_demote\", args: \"p_organization_id uuid, p_table_id uuid, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_extract_parent\", args: \"p_organization_id uuid, p_id uuid, p_parent_table_id uuid, p_moved_keys text[], p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_merge\", args: \"p_organization_id uuid, p_winner_id uuid, p_loser_id uuid, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_promote\", args: \"p_organization_id uuid, p_table_id uuid, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_purge\", args: \"p_organization_id uuid, p_table_id uuid DEFAULT NULL::uuid, p_dry_run boolean DEFAULT true\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_rename\", args: \"p_organization_id uuid, p_id uuid, p_to text, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_reparent\", args: \"p_organization_id uuid, p_id uuid, p_parent_id uuid, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_retype\", args: \"p_organization_id uuid, p_id uuid, p_to text, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_split\", args: \"p_organization_id uuid, p_record_id uuid, p_moved_keys text[], p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"organization_references\", args: \"p_kind text, p_organization_id uuid, p_row jsonb\", returns: \"TABLE(site text, what text, ref_id uuid, openable boolean)\", security: \"invoker\" },\n { name: \"parity_field_types\", args: \"\", returns: \"TABLE(parity_type text, behavior text, made_of text)\", security: \"invoker\" },\n { name: \"parity_type\", args: \"p_field_data jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"parity_values\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"TABLE(field_key text, field_id uuid, parity_type text, behavior text, unit text, format text, value jsonb, value_version integer, actor text, written_at timestamp with time zone)\", security: \"invoker\" },\n { name: \"per_value_access_words\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"person_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"promote_field\", args: \"p_organization_id uuid, p_table_id uuid, p_field_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"promote_table\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"jsonb\", security: \"definer\" },\n { name: \"promoted_field_cap\", args: \"\", returns: \"integer\", security: \"invoker\" },\n { name: \"promoted_fields\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"TABLE(field_id uuid, field_key text, parity_type text, is_unique boolean, value_path text, index_arm text, index_expr text, index_name text, indexable boolean, why_not text)\", security: \"invoker\" },\n { name: \"promoted_index_arm\", args: \"p_field_data jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"promoted_index_ddl\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"TABLE(step integer, purpose text, statement text)\", security: \"invoker\" },\n { name: \"promoted_index_expr\", args: \"p_field_data jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"promoted_index_name\", args: \"p_table_id uuid, p_field_key text, p_unique boolean\", returns: \"text\", security: \"invoker\" },\n { name: \"promoted_query_sql\", args: \"p_organization_id uuid, p_table_id uuid, p_field_key text\", returns: \"text\", security: \"invoker\" },\n { name: \"promoted_read\", args: \"p_organization_id uuid, p_table_id uuid, p_field_key text, p_value text\", returns: \"SETOF uuid\", security: \"invoker\" },\n { name: \"promoted_value_path\", args: \"p_field_data jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"promotion_inline_ceiling\", args: \"\", returns: \"integer\", security: \"invoker\" },\n { name: \"query_access_ids\", args: \"p_organization_id uuid, p_required text DEFAULT 'viewer'::text\", returns: \"uuid[]\", security: \"invoker\" },\n { name: \"query_across_homes\", args: \"p_organization_id uuid, p_table_id uuid, p_limit integer DEFAULT 50, p_offset integer DEFAULT 0, p_required text DEFAULT 'viewer'::text\", returns: \"TABLE(record_id uuid, home_record_id uuid, data jsonb, created_at timestamp with time zone)\", security: \"invoker\" },\n { name: \"query_by_coordinates\", args: \"p_organization_id uuid, p_table_id uuid DEFAULT NULL::uuid, p_coordinates jsonb DEFAULT '[]'::jsonb, p_limit integer DEFAULT 50, p_offset integer DEFAULT 0, p_required text DEFAULT 'viewer'::text\", returns: \"TABLE(record_id uuid, table_id uuid, data jsonb, coordinates_matched integer)\", security: \"invoker\" },\n { name: \"query_can_see\", args: \"p_organization_id uuid, p_record_id uuid, p_required text DEFAULT 'viewer'::text\", returns: \"boolean\", security: \"invoker\" },\n { name: \"query_hot_paths\", args: \"\", returns: \"TABLE(name text, statement text)\", security: \"invoker\" },\n { name: \"query_hot_paths_prepared\", args: \"\", returns: \"TABLE(name text, prepared boolean, generic_plans bigint)\", security: \"invoker\" },\n { name: \"query_is_store_owner\", args: \"\", returns: \"boolean\", security: \"invoker\" },\n { name: \"query_prepare_hot\", args: \"\", returns: \"integer\", security: \"invoker\" },\n { name: \"query_principal\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"query_record_as_of\", args: \"p_organization_id uuid, p_record_id uuid, p_recorded_at timestamp with time zone DEFAULT NULL::timestamp with time zone, p_world_on date DEFAULT NULL::date, p_required text DEFAULT 'viewer'::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"query_relation_edges\", args: \"p_organization_id uuid, p_flavor text DEFAULT NULL::text, p_role text DEFAULT NULL::text\", returns: \"TABLE(parent_id uuid, child_id uuid, role text, flavor text)\", security: \"invoker\" },\n { name: \"query_rollup\", args: \"p_organization_id uuid, p_roots uuid[], p_flavor text DEFAULT NULL::text, p_role text DEFAULT NULL::text, p_max_depth integer DEFAULT 33, p_required text DEFAULT 'viewer'::text\", returns: \"TABLE(record_id uuid, depth integer)\", security: \"invoker\" },\n { name: \"query_rollup_sum\", args: \"p_organization_id uuid, p_roots uuid[], p_field_key text, p_flavor text DEFAULT NULL::text, p_role text DEFAULT NULL::text, p_max_depth integer DEFAULT 33, p_required text DEFAULT 'viewer'::text\", returns: \"numeric\", security: \"invoker\" },\n { name: \"query_table_as_of\", args: \"p_organization_id uuid, p_table_id uuid, p_recorded_at timestamp with time zone DEFAULT NULL::timestamp with time zone, p_world_on date DEFAULT NULL::date, p_limit integer DEFAULT 50, p_offset integer DEFAULT 0, p_required text DEFAULT 'viewer'::text\", returns: \"TABLE(record_id uuid, data jsonb)\", security: \"invoker\" },\n { name: \"query_table_homes\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"SETOF uuid\", security: \"invoker\" },\n { name: \"query_visible_ids\", args: \"p_organization_id uuid, p_table_id uuid DEFAULT NULL::uuid, p_required text DEFAULT 'viewer'::text\", returns: \"SETOF uuid\", security: \"invoker\" },\n { name: \"reachable_from\", args: \"p_organization_id uuid, p_roots uuid[]\", returns: \"TABLE(record_id uuid, depth integer, via text)\", security: \"invoker\" },\n { name: \"read_paths_outside_the_door\", args: \"\", returns: \"TABLE(object_name text, why text)\", security: \"invoker\" },\n { name: \"read_record\", args: \"p_organization_id uuid, p_record_id uuid, p_by_id boolean DEFAULT false\", returns: \"jsonb\", security: \"definer\" },\n { name: \"read_records\", args: \"p_organization_id uuid, p_table_id uuid, p_by_id boolean DEFAULT false, p_limit integer DEFAULT 200, p_offset integer DEFAULT 0\", returns: \"TABLE(id uuid, document jsonb, level permission_level)\", security: \"definer\" },\n { name: \"record_aggregate\", args: \"p_organization_id uuid, p_table_id uuid, p_group_by jsonb DEFAULT '[]'::jsonb, p_measures jsonb DEFAULT '[]'::jsonb, p_bucket jsonb DEFAULT NULL::jsonb, p_filter jsonb DEFAULT '{}'::jsonb, p_limit integer DEFAULT 200, p_required text DEFAULT 'viewer'::text\", returns: \"TABLE(groups jsonb, measures jsonb, row_count bigint)\", security: \"invoker\" },\n { name: \"record_applicability\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"TABLE(rule_id uuid, rule_name text, rule_version integer, applies boolean, answer jsonb)\", security: \"invoker\" },\n { name: \"record_delete\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"timestamp with time zone\", security: \"definer\" },\n { name: \"record_reparent\", args: \"p_organization_id uuid, p_record_id uuid, p_parent_id uuid\", returns: \"void\", security: \"invoker\" },\n { name: \"record_restore\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"void\", security: \"definer\" },\n { name: \"record_update\", args: \"p_organization_id uuid, p_record_id uuid, p_patch jsonb, p_expected_version integer DEFAULT NULL::integer\", returns: \"integer\", security: \"definer\" },\n { name: \"record_values\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"record_values_versioned\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"TABLE(field_key text, field_id uuid, value jsonb, value_version integer, source jsonb, absent_reason text, actor text, on_behalf_of text, written_at timestamp with time zone, alternates jsonb)\", security: \"invoker\" },\n { name: \"record_write\", args: \"p_organization_id uuid, p_table_id uuid, p_data jsonb\", returns: \"uuid\", security: \"definer\" },\n { name: \"relation_own\", args: \"p_organization_id uuid, p_owner_id uuid, p_target_id uuid\", returns: \"uuid\", security: \"invoker\" },\n { name: \"relation_target_external\", args: \"p_connection_token text, p_external_table text, p_external_key text\", returns: \"jsonb\", security: \"definer\" },\n { name: \"relation_target_ours\", args: \"p_entity_token text, p_row_id uuid\", returns: \"jsonb\", security: \"definer\" },\n { name: \"relation_targets\", args: \"p_organization_id uuid, p_record_id uuid, p_via_key text\", returns: \"SETOF uuid\", security: \"invoker\" },\n { name: \"reopen_declared_doors\", args: \"\", returns: \"TABLE(reopened text)\", security: \"definer\" },\n { name: \"required_epoch\", args: \"p_container_type text, p_container_id uuid, p_item_type text, p_item_id uuid\", returns: \"bigint\", security: \"definer\" },\n { name: \"resolve_first_match\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"resolve_id\", args: \"p_organization_id uuid, p_id uuid\", returns: \"uuid\", security: \"invoker\" },\n { name: \"retired_actor_words\", args: \"\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rollup_value\", args: \"p_organization_id uuid, p_record_id uuid, p_field_data jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rule_applies\", args: \"p_organization_id uuid, p_rule_id uuid, p_record_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rule_context\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rule_dependency_edges\", args: \"p_organization_id uuid, p_row custom.record DEFAULT NULL::custom.record\", returns: \"TABLE(needs text, needed text)\", security: \"invoker\" },\n { name: \"rule_eval\", args: \"p_organization_id uuid, p_expr jsonb, p_values jsonb, p_context jsonb DEFAULT '{}'::jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rule_field_key\", args: \"p_organization_id uuid, p_field_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"rule_field_label\", args: \"p_organization_id uuid, p_field_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"rule_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"rule_members\", args: \"p_organization_id uuid, p_rule_id uuid\", returns: \"SETOF custom.record\", security: \"invoker\" },\n { name: \"rule_membership\", args: \"p_organization_id uuid, p_rule_id uuid, p_record_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rule_node_kinds\", args: \"\", returns: \"TABLE(node text, evaluated_by text, note text)\", security: \"invoker\" },\n { name: \"rule_run\", args: \"p_organization_id uuid, p_rule_id uuid, p_values jsonb, p_context jsonb DEFAULT '{}'::jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rule_truth\", args: \"p_answer jsonb\", returns: \"boolean\", security: \"invoker\" },\n { name: \"rule_uses\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"rule_version\", args: \"p_organization_id uuid, p_rule_id uuid\", returns: \"integer\", security: \"invoker\" },\n { name: \"size_refusal\", args: \"p_organization_id uuid, p_data jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"source_next_pointer\", args: \"p_sources jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"source_pointer\", args: \"p_sources jsonb, p_source jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"stamp_value_envelopes\", args: \"p_data jsonb, p_actor text, p_on_behalf_of text, p_at timestamp with time zone\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"storage_modes\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"store_is_open\", args: \"p_organization_id uuid DEFAULT NULL::uuid\", returns: \"boolean\", security: \"invoker\" },\n { name: \"table_capacity\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"jsonb\", security: \"definer\" },\n { name: \"table_declare\", args: \"p_organization_id uuid, p_spec jsonb\", returns: \"uuid\", security: \"definer\" },\n { name: \"table_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"table_record_ceiling\", args: \"\", returns: \"integer\", security: \"invoker\" },\n { name: \"table_record_ceiling\", args: \"p_organization_id uuid\", returns: \"integer\", security: \"invoker\" },\n { name: \"table_rules\", args: \"p_organization_id uuid, p_table_id uuid, p_use text, p_record_type text DEFAULT NULL::text\", returns: \"SETOF custom.record\", security: \"invoker\" },\n { name: \"table_storage\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"table_type_field\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"tables_at_home\", args: \"p_organization_id uuid, p_home_ids uuid[]\", returns: \"TABLE(table_id uuid, home_record_id uuid, kind text)\", security: \"invoker\" },\n { name: \"trg_associations_bump_visibility\", args: \"\", returns: \"trigger\", security: \"definer\" },\n { name: \"validate_custom_fields\", args: \"p_token text, p_organization_id uuid, p_values jsonb\", returns: \"void\", security: \"invoker\" },\n { name: \"validate_value_envelope\", args: \"p_organization_id uuid, p_fields custom.record[], p_data jsonb\", returns: \"void\", security: \"invoker\" },\n { name: \"validate_values\", args: \"p_organization_id uuid, p_fields custom.record[], p_values jsonb, p_record_type text DEFAULT NULL::text\", returns: \"void\", security: \"invoker\" },\n { name: \"value_alternate_keys\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"value_envelope_keys\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"value_envelope_ok\", args: \"p_data jsonb\", returns: \"boolean\", security: \"invoker\" },\n { name: \"value_envelope_refusal\", args: \"p_data jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"value_read\", args: \"p_organization_id uuid, p_record_id uuid, p_key text\", returns: \"TABLE(field_key text, field_id uuid, value jsonb, value_version integer, source jsonb, absent_reason text, actor text, on_behalf_of text, written_at timestamp with time zone, alternates jsonb)\", security: \"invoker\" },\n { name: \"value_versions\", args: \"p_old jsonb, p_new jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"visibility_ancestors\", args: \"p_item_type text, p_item_id uuid\", returns: \"TABLE(container_type text, container_id uuid, depth integer, max_level permission_level)\", security: \"definer\" },\n { name: \"visibility_cache_rebuild\", args: \"\", returns: \"integer\", security: \"definer\" },\n { name: \"visibility_parity\", args: \"\", returns: \"TABLE(side text, container_type text, container_id uuid, item_type text, item_id uuid, stored_level permission_level, derived_level permission_level, reason text)\", security: \"definer\" },\n { name: \"visibility_warm\", args: \"p_container_type text, p_container_id uuid\", returns: \"integer\", security: \"definer\" },\n { name: \"visible_record_ids\", args: \"p_user_id uuid, p_required permission_level DEFAULT 'viewer'::permission_level\", returns: \"TABLE(id uuid)\", security: \"definer\" },\n { name: \"work_assignment_fields\", args: \"p_options_table_id uuid DEFAULT NULL::uuid\", returns: \"TABLE(key text, label text, spec jsonb)\", security: \"invoker\" },\n { name: \"work_has_assignment\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"boolean\", security: \"invoker\" },\n { name: \"work_instantiation_shape\", args: \"p_organization_id uuid, p_instantiation_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"work_relation_kinds\", args: \"\", returns: \"TABLE(kind text, available boolean, why text)\", security: \"invoker\" },\n { name: \"work_slot_expire\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"integer\", security: \"invoker\" },\n { name: \"work_slot_hold\", args: \"p_organization_id uuid, p_table_id uuid, p_slot_key text, p_holder text, p_ttl interval DEFAULT '00:15:00'::interval\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"work_slot_holds\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"TABLE(hold_id uuid, slot_key text, holder text, expires_at timestamp with time zone, expired boolean)\", security: \"invoker\" },\n { name: \"work_slot_index_name\", args: \"p_table_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"work_slot_release\", args: \"p_organization_id uuid, p_hold_id uuid\", returns: \"boolean\", security: \"invoker\" },\n { name: \"work_slots_declare\", args: \"p_organization_id uuid, p_name text, p_slug text, p_home_id uuid DEFAULT NULL::uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"work_states\", args: \"\", returns: \"TABLE(sort integer, name text, terminal boolean, next text[])\", security: \"invoker\" },\n { name: \"work_take_assignment\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"work_template_declare\", args: \"p_organization_id uuid, p_name text, p_graph jsonb\", returns: \"uuid\", security: \"invoker\" },\n { name: \"work_template_instantiate\", args: \"p_organization_id uuid, p_template_id uuid, p_overrides jsonb DEFAULT '{}'::jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"work_template_refusal\", args: \"p_graph jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"work_template_shape\", args: \"p_organization_id uuid, p_template_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"work_transition_refusal\", args: \"p_organization_id uuid, p_from_state_id uuid, p_to_state_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"work_whose_turn\", args: \"p_organization_id uuid, p_table_id uuid, p_include_finished boolean DEFAULT false\", returns: \"TABLE(record_id uuid, title text, assignee_id uuid, turn text, due_on timestamp with time zone, state text, status text, terminal boolean)\", security: \"invoker\" },\n] as const;\n\n/** The campaign's own knobs, with the value the store resolves them to today. */\nexport const STORE_KNOBS = [\n { key: \"accessible_entity_ids_guard\", value: \"false\", type: \"boolean\" },\n { key: \"associations_guard\", value: \"false\", type: \"boolean\" },\n { key: \"code_paths_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"containment_depth_ceiling\", value: \"16\", type: \"integer\" },\n { key: \"document_max_bytes\", value: \"1048576\", type: \"integer\" },\n { key: \"emergency_door_guard\", value: \"false\", type: \"boolean\" },\n { key: \"emergency_door_sweep_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"entity_custom_fields_guard\", value: \"false\", type: \"boolean\" },\n { key: \"entity_types_guard\", value: \"false\", type: \"boolean\" },\n { key: \"external_principal_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"field_index_guard\", value: \"false\", type: \"boolean\" },\n { key: \"field_sensitivity_levels\", value: \"{\\\"edit\\\": {\\\"public\\\": \\\"editor\\\", \\\"internal\\\": \\\"editor\\\", \\\"restricted\\\": \\\"admin\\\", \\\"confidential\\\": \\\"admin\\\"}, \\\"read\\\": {\\\"public\\\": \\\"viewer\\\", \\\"internal\\\": \\\"viewer\\\", \\\"restricted\\\": \\\"admin\\\", \\\"confidential\\\": \\\"editor\\\"}}\", type: \"json\" },\n { key: \"member_default_level\", value: \"\\\"viewer\\\"\", type: \"string\" },\n { key: \"row_versions_guard\", value: \"false\", type: \"boolean\" },\n { key: \"sandbox_expanded_frame_height_px\", value: \"20000\", type: \"integer\" },\n { key: \"sandbox_frame_height_px\", value: \"4000\", type: \"integer\" },\n { key: \"sandbox_message_bytes\", value: \"65536\", type: \"integer\" },\n { key: \"sandbox_org_components\", value: \"true\", type: \"boolean\" },\n { key: \"signup_provisioning_guard\", value: \"false\", type: \"boolean\" },\n { key: \"system_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"table_record_ceiling\", value: \"150000\", type: \"integer\" },\n { key: \"value_max_bytes\", value: \"100000\", type: \"integer\" },\n { key: \"world_publish_enabled\", value: \"false\", type: \"boolean\" },\n] as const;\n\n/**\n * Every SQLSTATE the store's own function bodies raise, with the functions that\n * raise it. This is the list the client's refusal mapper is checked against: a\n * code the store can raise and the package cannot name is a hole, and the\n * real-door suite says so by name.\n */\nexport const STORE_REFUSAL_CODES = [\n { code: \"02000\", raised_by: \"doc_render_body,doc_render_document,doc_sign,doc_signature_intact,doc_template_save,external_history_event,external_rows,external_stub_upsert,external_writes_set,migrate_delete,migrate_extract_parent,migrate_merge,migrate_rename,migrate_reparent,migrate_retype,migrate_split,read_record,record_delete,record_restore,record_update\" },\n { code: \"0A000\", raised_by: \"external_rows,external_source_declare,external_write_through,promote_field,promoted_index_expr,promoted_query_sql,promoted_read,rule_eval,work_slots_declare\" },\n { code: \"22004\", raised_by: \"_value_envelope,actor_word,agg_assert_key,agg_sql,anon_capture,anon_token_issue,anon_write,assert_client_may_reach,doc_render_write,doc_sign,doc_signature_write,doc_template_save,external_history_event,external_rows,external_source_declare,external_stub_upsert,external_write_through,external_writes_set,home_add,io_comment_write,io_import_open,io_outbox_drain,io_restore,migrate_purge,migrate_split,query_across_homes,query_by_coordinates,query_rollup,record_delete,record_reparent,record_restore,record_update,record_write,relation_own,table_declare,work_template_declare\" },\n { code: \"22012\", raised_by: \"rule_eval\" },\n { code: \"22023\", raised_by: \"_value_envelope,_work_shape_guard,actor_word,agg_assert_key,agg_sql,anon_token_issue,containment_parent,doc_render_body,doc_render_write,doc_signature_write,external_history_event,external_source_declare,external_stub_upsert,external_write_through,io_import_open,io_proposal_accept,migrate_merge,query_by_coordinates,query_rollup,record_update,rule_eval,rule_members,table_rules,work_slot_hold\" },\n { code: \"23503\", raised_by: \"_containment_guard,_record_rule_uses,anon_publish,anon_rate_take,anon_token_issue,anon_write,assert_organization_wall,doc_sign,doc_template_save,home_add,io_comment_write,io_import_rows,io_proposal_accept,migrate_delete,migrate_demote,migrate_promote,promote_field,promote_table,record_applicability,record_reparent,relation_own,resolve_first_match,rule_applies,rule_eval,rule_members,rule_run,work_take_assignment,work_template_instantiate\" },\n { code: \"23505\", raised_by: \"doc_sign,doc_signature_write,home_add,io_proposal_accept,work_slot_hold\" },\n { code: \"23514\", raised_by: \"_containment_guard,_dated_values_guard,_derived_fields,_field_shape_guard,_field_type_parity_guard,_merge_field_shape_guard,_merge_field_temporal_guard,_promoted_field_cap_guard,_record_rule_uses,_rule_shape_guard,_rule_topology_guard,_table_shape_guard,_value_envelope,_work_shape_guard,doc_sign,doc_signature_write,doc_template_save,home_add,validate_value_envelope,validate_values,work_slots_declare,work_take_assignment,work_template_instantiate\" },\n { code: \"40001\", raised_by: \"has_visibility_at\" },\n { code: \"42501\", raised_by: \"_doc_render_immutable,_doc_signature_immutable,_field_definition_write,_field_write_door,_rule_definition_write,_store_door,anon_capture,anon_inbound_land,anon_publish,anon_token_issue,anon_token_verify,anon_write,assert_client_may_reach,assert_store_door,external_write_through,io_comment_resolve,io_comment_write,io_restore,migrate_purge,promote_table,read_record,read_records\" },\n { code: \"53400\", raised_by: \"anon_rate_take,promote_field\" },\n { code: \"PT409\", raised_by: \"record_update\" },\n] as const;\n\n/** `platform.entity_types` — the registered tokens a Table or relation may name. */\nexport const ENTITY_TOKENS = [\n \"access_delta_probe\",\n \"access_delta_run\",\n \"access_request\",\n \"account_addon\",\n \"acquisition_block\",\n \"activity\",\n \"admin_audit_log\",\n \"admin_email_log\",\n \"admin_markdown_sample\",\n \"admin_user\",\n \"admission_config\",\n \"agent\",\n \"agent_card\",\n \"agent_definition_version\",\n \"agent_drift_alert\",\n \"agent_exemplar\",\n \"agent_mandate_note\",\n \"agent_prompt_remediation\",\n \"agent_provision_legacy\",\n \"agent_run\",\n \"agent_run_stage\",\n \"agent_schedule\",\n \"agent_schedule_claim\",\n \"agent_shortcut\",\n \"agent_surface_binding\",\n \"agent_template\",\n \"agent_usage\",\n \"agent_user_kv\",\n \"ai_api\",\n \"ai_endpoint\",\n \"ai_model\",\n \"ai_model_alias\",\n \"ai_offering\",\n \"ai_provider\",\n \"ai_setting\",\n \"analysis_result\",\n \"anon_form\",\n \"anon_function_birth_grandfather\",\n \"anon_hit\",\n \"anon_inbound\",\n \"anon_replay\",\n \"anon_submission\",\n \"anon_token\",\n \"api_field_warning\",\n \"api_request_log\",\n \"app\",\n \"app_config\",\n \"app_config_history\",\n \"app_definition_version\",\n \"app_error\",\n \"app_execution\",\n \"app_instance\",\n \"app_log\",\n \"app_log_muted_pattern\",\n \"app_log_norm_exception\",\n \"app_rate_limit\",\n \"app_setting\",\n \"app_sync_status\",\n \"approach\",\n \"artifact\",\n \"assessment\",\n \"assessment_item\",\n \"assessment_result\",\n \"assignment_session\",\n \"assist\",\n \"assist_producer_policy\",\n \"assist_producer_policy_history\",\n \"association_type\",\n \"assurance_level\",\n \"attempt\",\n \"audit_broken_functions\",\n \"audit_canonical_findings\",\n \"audit_exemption\",\n \"audit_function_deps\",\n \"audit_function_runtime_probe\",\n \"audit_m2m_candidates\",\n \"audit_refresh_log\",\n \"audit_stale_registry\",\n \"audit_unregistered_candidates\",\n \"bak_assoc_file_processed_document_20260812\",\n \"bak_assoc_type_file_processed_document_20260812\",\n \"bak_organization_name_dd043\",\n \"base_entity_template\",\n \"batch_cost_event\",\n \"batch_provider_batch\",\n \"batch_work_item\",\n \"billing_capability\",\n \"billing_capability_limit\",\n \"billing_connect_account\",\n \"billing_customer\",\n \"billing_plan\",\n \"billing_plan_limit\",\n \"billing_price\",\n \"billing_product\",\n \"billing_spend_guardrail\",\n \"billing_stripe_event\",\n \"billing_subscription\",\n \"billing_usage_ledger\",\n \"billing_user_plan\",\n \"browser_account_binding\",\n \"browser_action_event\",\n \"browser_authenticator_window\",\n \"browser_capture\",\n \"browser_control_request\",\n \"browser_handoff\",\n \"browser_login_attempt\",\n \"browser_login_recipe\",\n \"browser_profile\",\n \"browser_profile_checkpoint\",\n \"browser_run\",\n \"browser_site_observation\",\n \"browser_site_policy\",\n \"browser_stream_ticket\",\n \"build_lock\",\n \"calendar_event\",\n \"canvas_comment\",\n \"canvas_comment_like\",\n \"canvas_item\",\n \"canvas_item_state\",\n \"canvas_like\",\n \"canvas_score\",\n \"canvas_view\",\n \"capture_window\",\n \"carrying_rule\",\n \"catalog_entries_history\",\n \"catalog_entry\",\n \"category\",\n \"change_type_default\",\n \"chat_user_usage_summary\",\n \"citations\",\n \"class_purchase\",\n \"classifier_revision_ledger\",\n \"client_callable_door\",\n \"client_callable_door_retirement\",\n \"client_excluded_column_unregistered\",\n \"cmp_entry\",\n \"cmp_feedback\",\n \"code_file\",\n \"code_folder\",\n \"code_repository\",\n \"coding_session\",\n \"coding_session_entry\",\n \"comment\",\n \"commerce_asset_allocation\",\n \"commerce_asset_grading\",\n \"commerce_asset_identifier\",\n \"commerce_asset_lot_event\",\n \"commerce_asset_mandate_result\",\n \"commerce_asset_price_factor\",\n \"commerce_asset_reshoot_request\",\n \"commerce_asset_review\",\n \"commerce_asset_unknown\",\n \"commerce_certified_printer\",\n \"commerce_cloud_sync_connection\",\n \"commerce_ebay_business_policy\",\n \"commerce_ebay_category\",\n \"commerce_ebay_category_aspect\",\n \"commerce_ebay_category_tree\",\n \"commerce_ebay_custom_policy\",\n \"commerce_ebay_inventory_item\",\n \"commerce_ebay_inventory_item_group\",\n \"commerce_ebay_inventory_item_group_member\",\n \"commerce_ebay_inventory_location\",\n \"commerce_ebay_listing\",\n \"commerce_ebay_marketplace_policy\",\n \"commerce_ebay_media_asset\",\n \"commerce_ebay_notification_destination\",\n \"commerce_ebay_notification_event\",\n \"commerce_ebay_notification_subscription\",\n \"commerce_ebay_notification_topic\",\n \"commerce_ebay_offer\",\n \"commerce_ebay_order\",\n \"commerce_ebay_order_line_item\",\n \"commerce_ebay_shipping_fulfillment\",\n \"commerce_ebay_store_category\",\n \"commerce_human_correction\",\n \"commerce_intake_artifact\",\n \"commerce_intake_asset\",\n \"commerce_intake_batch\",\n \"commerce_label_batch\",\n \"commerce_label_code\",\n \"commerce_marketplace_account\",\n \"commerce_marketplace_account_deletion_audit\",\n \"commerce_marketplace_api_call\",\n \"commerce_marketplace_rate_budget\",\n \"commerce_marketplace_site\",\n \"commerce_marketplace_sync_run\",\n \"commerce_prediction_outcome\",\n \"commerce_print_order\",\n \"commerce_product\",\n \"commerce_product_channel_ref\",\n \"commerce_product_media\",\n \"commerce_product_variant\",\n \"commerce_recall_audit\",\n \"comparison_set\",\n \"component_group\",\n \"contact_medium\",\n \"contact_submission\",\n \"content_certification\",\n \"content_ir_kind\",\n \"content_ir_kind_component\",\n \"content_ir_kind_component_incident\",\n \"content_ir_kind_conformance\",\n \"content_ir_kind_edge\",\n \"content_ir_kind_example\",\n \"content_ir_kind_instance\",\n \"content_ir_kind_surface\",\n \"context_access_log\",\n \"context_item\",\n \"context_item_suggestion\",\n \"context_item_value\",\n \"context_value_refs\",\n \"conversation\",\n \"conversation_value\",\n \"courts\",\n \"credential_attachment\",\n \"credential_item\",\n \"credential_mutation_receipt\",\n \"crm_address\",\n \"crm_affiliation\",\n \"crm_blocklist_entry\",\n \"crm_contact_candidate\",\n \"crm_deal\",\n \"crm_deal_stage_event\",\n \"crm_enrichment_call\",\n \"crm_interaction\",\n \"crm_merge_candidate\",\n \"crm_outreach_list\",\n \"crm_outreach_list_member\",\n \"crm_party_merge\",\n \"crm_registry_ingest_run\",\n \"crm_registry_source\",\n \"crm_saved_view\",\n \"crm_sending_event\",\n \"crm_sending_identity\",\n \"crm_sending_identity_check\",\n \"crm_sending_policy\",\n \"custom_entity_definition\",\n \"custom_field_definition\",\n \"custom_field_target\",\n \"custom_record\",\n \"cx_agent_memory\",\n \"cx_agent_plan\",\n \"cx_agent_task\",\n \"cx_code_edit\",\n \"cx_code_message_file\",\n \"cx_conversation_documents\",\n \"cx_media\",\n \"cx_observational_memory\",\n \"cx_observational_memory_event\",\n \"cx_pending_injection\",\n \"cx_request\",\n \"cx_request_snapshot\",\n \"cx_tool_trace\",\n \"cx_user_request\",\n \"cx_user_todo\",\n \"dashboard_saved_view\",\n \"data_rights_event\",\n \"data_store\",\n \"data_store_members\",\n \"dataset\",\n \"dd171_containment_baseline\",\n \"dd175_cast\",\n \"dd175_component_lane_baseline\",\n \"ddl_guard_log\",\n \"deck_suggestion\",\n \"definer_class_exemption\",\n \"definer_client_grant_grandfather\",\n \"definer_grant_baseline\",\n \"deprecated_relation\",\n \"derive_run\",\n \"dev_login_audit\",\n \"dict_entry\",\n \"dict_provider_publication\",\n \"dict_setting\",\n \"dm_conversation\",\n \"dm_message\",\n \"dm_participant\",\n \"doc_render\",\n \"doc_signature\",\n \"dockets\",\n \"domain_classification\",\n \"edge_payload_kind\",\n \"egress_device\",\n \"egress_pairing\",\n \"egress_ticket\",\n \"emails\",\n \"embedding_cache\",\n \"embeddings_google_gemini_2_1536\",\n \"embeddings_oai_3_small_1536\",\n \"embeddings_voyage_4_large_1024\",\n \"embeddings_voyage_code_3_1024\",\n \"endpoint_family_sweep_state\",\n \"engine_owner_task\",\n \"entity_grant\",\n \"entity_relationship\",\n \"entity_type\",\n \"esign_campaign\",\n \"esign_campaign_member\",\n \"esign_consent_disclosure\",\n \"esign_envelope\",\n \"esign_envelope_certificate\",\n \"esign_envelope_document\",\n \"esign_envelope_event\",\n \"esign_envelope_external_ref\",\n \"esign_envelope_signer\",\n \"esign_provider\",\n \"esign_provider_binding\",\n \"esign_signing_key\",\n \"execution_event_cursor\",\n \"extension_auth_code\",\n \"external_link\",\n \"external_source\",\n \"extract_sweep_state\",\n \"fc_card\",\n \"fc_detail\",\n \"fc_set\",\n \"feature_doc\",\n \"feature_knob\",\n \"feedback_comments\",\n \"feedback_user_messages\",\n \"field_component\",\n \"file\",\n \"file_analysis\",\n \"file_entities\",\n \"file_overrides\",\n \"file_page_annotations\",\n \"file_pages\",\n \"file_rag_job\",\n \"file_version\",\n \"files_account_tier\",\n \"files_machine_written_prefix\",\n \"files_sync_mapping\",\n \"files_user_account\",\n \"flashcard_data\",\n \"flashcard_history\",\n \"flashcard_review\",\n \"flashcard_set\",\n \"flashcard_sets\",\n \"flexible_data\",\n \"folder\",\n \"function_contract\",\n \"game_badge\",\n \"game_result\",\n \"game_room\",\n \"global_execution\",\n \"global_execution_checkpoint\",\n \"global_execution_control\",\n \"global_execution_event\",\n \"global_meter_entry\",\n \"global_origin\",\n \"global_request\",\n \"google_document\",\n \"growth_loop_event\",\n \"growth_loop_run\",\n \"growth_loop_stage_run\",\n \"guardian_link\",\n \"guest_conversion_audit\",\n \"guest_execution_log\",\n \"guest_executions\",\n \"guided_checklist_run\",\n \"heatmap_save\",\n \"hindsight_enrollment\",\n \"hindsight_finding\",\n \"hindsight_regression_case\",\n \"hindsight_replay\",\n \"hindsight_replay_step\",\n \"hindsight_review\",\n \"hr_access_audit\",\n \"hr_access_role\",\n \"hr_accommodation_request\",\n \"hr_ai_evidence\",\n \"hr_alert_routing_rule\",\n \"hr_application\",\n \"hr_approval_authority\",\n \"hr_approval_delegation\",\n \"hr_asset\",\n \"hr_asset_assignment\",\n \"hr_attendance_exception\",\n \"hr_auto_close_rule\",\n \"hr_availability\",\n \"hr_background_check\",\n \"hr_benefits_event\",\n \"hr_calculation_snapshot\",\n \"hr_candidate\",\n \"hr_candidate_conversion\",\n \"hr_candidate_message\",\n \"hr_careers_portal\",\n \"hr_checklist_item\",\n \"hr_checklist_run\",\n \"hr_checklist_template\",\n \"hr_checklist_template_item\",\n \"hr_compensation\",\n \"hr_corrective_action\",\n \"hr_course\",\n \"hr_course_version\",\n \"hr_credential\",\n \"hr_crew\",\n \"hr_deduction_code\",\n \"hr_department\",\n \"hr_derived_grant\",\n \"hr_disposition_event\",\n \"hr_earning_code\",\n \"hr_eeo_response\",\n \"hr_emergency_contact\",\n \"hr_employee\",\n \"hr_employee_private\",\n \"hr_employer_profile\",\n \"hr_employment\",\n \"hr_employment_pin\",\n \"hr_engagement\",\n \"hr_establishment\",\n \"hr_external_identity\",\n \"hr_field_policy\",\n \"hr_holiday\",\n \"hr_holiday_calendar\",\n \"hr_i9\",\n \"hr_i9_document\",\n \"hr_incident\",\n \"hr_incident_party\",\n \"hr_interview\",\n \"hr_interview_kit\",\n \"hr_job_title\",\n \"hr_jurisdiction\",\n \"hr_jurisdiction_rule\",\n \"hr_jurisdiction_rule_class\",\n \"hr_jurisdiction_rule_org_decision\",\n \"hr_jurisdiction_rule_test\",\n \"hr_kiosk_device\",\n \"hr_kiosk_session\",\n \"hr_labor_target\",\n \"hr_leave_case\",\n \"hr_leave_enrollment\",\n \"hr_leave_ledger\",\n \"hr_leave_policy\",\n \"hr_leave_request\",\n \"hr_legal_hold\",\n \"hr_legal_hold_item\",\n \"hr_location\",\n \"hr_new_hire_report\",\n \"hr_offer\",\n \"hr_opening\",\n \"hr_overtime_alert\",\n \"hr_overtime_alert_rule\",\n \"hr_overtime_preapproval\",\n \"hr_pay_group\",\n \"hr_pay_period\",\n \"hr_pay_period_employment\",\n \"hr_payroll_export\",\n \"hr_payroll_export_line\",\n \"hr_position_assignment\",\n \"hr_posting\",\n \"hr_posting_publication\",\n \"hr_provider_binding\",\n \"hr_provider_event\",\n \"hr_provisioning_result\",\n \"hr_punch\",\n \"hr_recalculation_batch\",\n \"hr_record_class\",\n \"hr_records_request\",\n \"hr_reference_check\",\n \"hr_reporting_line\",\n \"hr_requisition\",\n \"hr_restricted_note\",\n \"hr_retention_rule\",\n \"hr_role_assignment\",\n \"hr_schedule\",\n \"hr_schedule_change\",\n \"hr_schedule_guidance\",\n \"hr_schedule_template\",\n \"hr_schedule_template_shift\",\n \"hr_scorecard\",\n \"hr_separation\",\n \"hr_shift\",\n \"hr_shift_claim\",\n \"hr_staffing_requirement\",\n \"hr_survey\",\n \"hr_survey_invitation\",\n \"hr_survey_question\",\n \"hr_survey_response\",\n \"hr_tax_registration\",\n \"hr_tax_withholding\",\n \"hr_time_adjustment\",\n \"hr_training_assignment\",\n \"hr_training_attempt\",\n \"hr_transcript_entry\",\n \"hr_verification_letter_request\",\n \"hr_work_interval\",\n \"hr_workflow_binding\",\n \"hr_workflow_decision\",\n \"hr_workflow_definition\",\n \"hr_workflow_event\",\n \"hr_workflow_failure\",\n \"hr_workflow_flow_type\",\n \"hr_workflow_instance\",\n \"hr_workflow_step\",\n \"hr_workflow_step_definition\",\n \"hr_workweek\",\n \"html_extraction\",\n \"iam_access_audit\",\n \"iam_api_key\",\n \"iam_emergency_door_request\",\n \"idempotency\",\n \"industry\",\n \"industry_curator\",\n \"infra_status\",\n \"ingest_runs\",\n \"integration_connection\",\n \"integration_connection_resource\",\n \"interview_decision_interview\",\n \"interview_decision_question\",\n \"interview_document_revision\",\n \"interview_hole\",\n \"interview_question\",\n \"interview_session\",\n \"interview_turn\",\n \"invitation\",\n \"invitation_code\",\n \"invitation_request\",\n \"io_comment\",\n \"io_contract\",\n \"io_import\",\n \"io_outbox\",\n \"item\",\n \"item_mastery\",\n \"judge_verdict\",\n \"jurisdiction_policy\",\n \"keyword_classification_queue\",\n \"kg_alert\",\n \"kg_chunk_entities\",\n \"kg_chunks\",\n \"kg_clusters\",\n \"kg_edges\",\n \"kg_entities\",\n \"kg_entity_aliases\",\n \"kg_suggestion_ack\",\n \"kg_sweep_queue\",\n \"kg_sweep_run\",\n \"kg_sweep_state\",\n \"kg_value_match\",\n \"knob_override\",\n \"knob_override_audit\",\n \"knob_rung_lock\",\n \"knob_scope_kind\",\n \"knob_write_door\",\n \"league_membership\",\n \"learn_doc\",\n \"library_doc\",\n \"lifecycle_archive\",\n \"lifecycle_archive_row\",\n \"lifecycle_audit\",\n \"lifecycle_entity_plan\",\n \"lifecycle_map_build\",\n \"lifecycle_reference_map\",\n \"lifecycle_run\",\n \"lifecycle_tier_ledger\",\n \"location\",\n \"mandate\",\n \"mandate_advance_batch_row\",\n \"mandate_binding\",\n \"mandate_binding_legacy\",\n \"mandate_legacy\",\n \"mandate_observation\",\n \"mandate_reference\",\n \"mandate_scan\",\n \"mandate_treatment\",\n \"marketing_initiative\",\n \"masterwork_corpus_item\",\n \"masterwork_run\",\n \"masterwork_run_kind\",\n \"masterwork_source\",\n \"math_course_structure\",\n \"math_problem\",\n \"matrx_action_ledger\",\n \"mcp_config\",\n \"mcp_server\",\n \"mcp_user_conn\",\n \"media_capture_handoff\",\n \"media_catalog_setting\",\n \"media_library_item\",\n \"media_selection_item\",\n \"media_selection_job\",\n \"media_source_library\",\n \"meet_call_invite\",\n \"meet_meeting\",\n \"meet_note\",\n \"meet_participant\",\n \"meet_recording\",\n \"meet_transcript_segment\",\n \"membership\",\n \"membership_grant\",\n \"merge_field_provenance\",\n \"message\",\n \"message_template\",\n \"meta_excluded_schema\",\n \"meta_table_stats_history\",\n \"metadata_reserved_keys\",\n \"microservice_project\",\n \"migration_log\",\n \"mtx_media_heal_queue\",\n \"mtx_public_url_guard\",\n \"ner_shadow\",\n \"note\",\n \"note_folder\",\n \"notification\",\n \"notification_channel_preference\",\n \"notification_event_override\",\n \"notification_event_type\",\n \"notification_preference\",\n \"notify_outsider_door_baseline\",\n \"oauth_handoff_claim\",\n \"opinion_clusters\",\n \"opinions\",\n \"ops_issue_class\",\n \"ops_issue_event\",\n \"ops_proof_check\",\n \"ops_proof_run\",\n \"ops_proof_scenario\",\n \"org_admin_audit\",\n \"org_change_policy\",\n \"org_context_ledger\",\n \"org_industries\",\n \"org_member_control\",\n \"org_module_config\",\n \"org_plan\",\n \"org_repair_0253_backup\",\n \"organization\",\n \"organization_preferences\",\n \"organization_visibility_version\",\n \"output_feedback\",\n \"outreach_acceptance\",\n \"page_extraction_job\",\n \"page_extraction_page_run\",\n \"page_extraction_results\",\n \"page_extraction_runs\",\n \"page_intent_queue\",\n \"page_mapping_queue\",\n \"part_config\",\n \"part_config_sub\",\n \"party\",\n \"party_contact_point\",\n \"path_drift_repair_2026_09\",\n \"pc_article\",\n \"pc_episode\",\n \"pc_show\",\n \"pc_studio_run\",\n \"pc_studio_run_asset\",\n \"pdf_consolidation_log\",\n \"pdf_redaction_audit\",\n \"pdf_redaction_key_escrow\",\n \"permission_grant\",\n \"plan_cms_fill_item\",\n \"plan_cms_fill_job\",\n \"plan_entity\",\n \"plan_node\",\n \"plan_node_artifact\",\n \"plan_node_step\",\n \"plan_profile\",\n \"platform_actor_session\",\n \"platform_actor_token\",\n \"platform_actor_token_event\",\n \"platform_continued_access\",\n \"platform_org_knob_override\",\n \"platform_outcome_event\",\n \"platform_outsider_consumer\",\n \"platform_reachability\",\n \"platform_reference_category\",\n \"platform_reference_declaration\",\n \"platform_repo\",\n \"platform_saved_view\",\n \"platform_schema\",\n \"platform_share_link\",\n \"platform_user_knob_override\",\n \"podcast_race\",\n \"policy_overlap_backup\",\n \"policy_overlap_probe\",\n \"processed_document\",\n \"processed_document_page\",\n \"product_capture_file\",\n \"product_capture_item\",\n \"product_capture_payload\",\n \"product_capture_product\",\n \"product_capture_question\",\n \"profile\",\n \"project\",\n \"prompt\",\n \"provider_account\",\n \"provider_account_credential\",\n \"provision\",\n \"provision_generate_target\",\n \"provision_grant\",\n \"provision_marker\",\n \"provision_rule_message\",\n \"provision_schema\",\n \"provision_shape_debt\",\n \"provision_spec\",\n \"provision_spec_grandfather\",\n \"provision_vocabulary\",\n \"purpose\",\n \"quiz_session\",\n \"rag_ingest_run\",\n \"rag_library_audit_log\",\n \"rate_limit_buckets\",\n \"recompute_queue\",\n \"record\",\n \"record_alias\",\n \"redaction_mapping\",\n \"research_analysis\",\n \"research_content\",\n \"research_context_bundle\",\n \"research_document\",\n \"research_intent\",\n \"research_keyword\",\n \"research_media\",\n \"research_source\",\n \"research_synthesis\",\n \"research_tag\",\n \"research_template\",\n \"research_topic\",\n \"retention_policy\",\n \"retrieval_audit\",\n \"review_queue\",\n \"route_manifest_entry\",\n \"row_version\",\n \"rulebook\",\n \"runtime_operation_stream\",\n \"runtime_operation_stream_batch\",\n \"sandbox_instance\",\n \"sch_agent_task\",\n \"sch_run\",\n \"sch_task\",\n \"sch_trigger\",\n \"schema_client_exposure\",\n \"schema_migration_ledger\",\n \"schema_migration_legacy\",\n \"schema_migration_slot_grandfather\",\n \"schema_templates\",\n \"scope\",\n \"scope_association_suggestion\",\n \"scope_dataset_instance\",\n \"scope_door_registry\",\n \"scope_item_value_suggestion\",\n \"scope_suggestion\",\n \"scope_type\",\n \"scrape_domain\",\n \"scrape_domain_settings\",\n \"scrape_failure_log\",\n \"scrape_parsed_page\",\n \"scrape_path_override\",\n \"scrape_path_pattern\",\n \"scrape_retry_queue\",\n \"seo_ai_capability\",\n \"seo_ai_visibility_citation\",\n \"seo_ai_visibility_claim\",\n \"seo_ai_visibility_panel\",\n \"seo_ai_visibility_response\",\n \"seo_ai_visibility_signal\",\n \"seo_backlink\",\n \"seo_backlink_change_event\",\n \"seo_backlink_dimension_snapshot\",\n \"seo_backlink_observation\",\n \"seo_backlink_snapshot\",\n \"seo_change_assessment\",\n \"seo_change_event\",\n \"seo_change_item\",\n \"seo_change_metric\",\n \"seo_change_set\",\n \"seo_change_theory\",\n \"seo_collection_run\",\n \"seo_competitor\",\n \"seo_competitor_observation\",\n \"seo_competitor_opportunity\",\n \"seo_coverage_mention\",\n \"seo_coverage_tracker\",\n \"seo_dimension_value_matcher\",\n \"seo_engine_schedule\",\n \"seo_geo_place\",\n \"seo_gsc_dig_rule\",\n \"seo_keyword\",\n \"seo_keyword_class_rule\",\n \"seo_keyword_edge\",\n \"seo_keyword_facet\",\n \"seo_keyword_market\",\n \"seo_keyword_market_observation\",\n \"seo_keyword_place\",\n \"seo_keyword_saved_view\",\n \"seo_keyword_topic\",\n \"seo_landscape_brief\",\n \"seo_link_gap_domain\",\n \"seo_link_gap_match\",\n \"seo_map_facet\",\n \"seo_map_facet_value\",\n \"seo_map_topic\",\n \"seo_page_measurement_health\",\n \"seo_page_performance\",\n \"seo_provider_call\",\n \"seo_provider_task\",\n \"seo_rank_observation\",\n \"seo_rank_target\",\n \"seo_raw_payload\",\n \"seo_referring_domain_profile\",\n \"seo_reputation_case\",\n \"seo_search_performance_daily\",\n \"seo_serp_mention\",\n \"seo_serp_opportunity\",\n \"seo_serp_result\",\n \"seo_serp_snapshot\",\n \"seo_site_geo_area\",\n \"seo_site_keyword_offering\",\n \"seo_site_keyword_value\",\n \"seo_site_offering_value\",\n \"seo_site_topic_value\",\n \"seo_site_value_combo\",\n \"seo_site_value_worth\",\n \"seo_site_vocabulary\",\n \"seo_source_request\",\n \"seo_starter_pack\",\n \"seo_starter_pack_item\",\n \"seo_story_angle\",\n \"seo_topic\",\n \"seo_topical_map\",\n \"seo_web_analytics_daily\",\n \"share_link\",\n \"shareable_resource_registry\",\n \"shared_canvas_item\",\n \"short_link\",\n \"shortcut_category\",\n \"skill\",\n \"skill_category\",\n \"skill_render_definition\",\n \"sms_consent\",\n \"sms_conversation\",\n \"sms_message\",\n \"sms_message_media\",\n \"sms_notification\",\n \"sms_notification_preference\",\n \"sms_phone_number\",\n \"sms_rate_limits\",\n \"sms_webhook_logs\",\n \"soft_delete_edge\",\n \"source_authority\",\n \"stage_dockets_966c18eca7\",\n \"stage_ref_kind\",\n \"stamped_write_table\",\n \"structure\",\n \"structured_list\",\n \"studio_cleaned_segments\",\n \"studio_concept_items\",\n \"studio_documents\",\n \"studio_module_segments\",\n \"studio_raw_segments\",\n \"studio_recording_chunks\",\n \"studio_recording_segments\",\n \"studio_run\",\n \"studio_session\",\n \"studio_session_settings\",\n \"study_attempt\",\n \"study_goal\",\n \"study_media\",\n \"study_plan\",\n \"study_plan_block\",\n \"study_plan_day\",\n \"study_reminder_context\",\n \"study_reminder_delivery\",\n \"study_session\",\n \"study_source_chunk\",\n \"study_streak\",\n \"study_structured_section\",\n \"superseded_policy\",\n \"surface\",\n \"system_announcement\",\n \"system_context_item\",\n \"system_error\",\n \"system_orgs\",\n \"system_personal_org_failure\",\n \"system_write_failure\",\n \"task\",\n \"task_user_state\",\n \"taxonomy_node\",\n \"template_context_items\",\n \"template_scope_types\",\n \"templates\",\n \"thread\",\n \"tool\",\n \"tool_binding\",\n \"tool_bundle\",\n \"tool_call\",\n \"tool_definition_version\",\n \"tool_executor\",\n \"tool_surface_defaults\",\n \"tool_test_sample\",\n \"tool_ui\",\n \"tool_ui_incident\",\n \"tool_ui_version\",\n \"topic_placement_queue\",\n \"transcript\",\n \"trigger_event\",\n \"udt_dataset_fields\",\n \"udt_dataset_row_versions\",\n \"udt_dataset_rows\",\n \"udt_dataset_template\",\n \"udt_dataset_template_fields\",\n \"udt_document\",\n \"udt_document_snapshot\",\n \"udt_structured_list_items\",\n \"udt_workbook_snapshot\",\n \"ui_client\",\n \"ui_surface_agent_pref\",\n \"ui_surface_agent_role\",\n \"ui_surface_client_tool\",\n \"ui_surface_config\",\n \"ui_surface_value\",\n \"ui_surface_write_target\",\n \"unsubscribe_token\",\n \"uploads_inflight\",\n \"user_achievement\",\n \"user_active_context\",\n \"user_analysis_preference\",\n \"user_bookmark\",\n \"user_email_preference\",\n \"user_entity_state\",\n \"user_feedback\",\n \"user_follows\",\n \"user_form_profile\",\n \"user_markdown_sample\",\n \"user_memory\",\n \"user_preference\",\n \"user_profile\",\n \"user_secret\",\n \"user_secret_audit\",\n \"user_secret_grant\",\n \"user_stat\",\n \"user_storage_usage\",\n \"user_surface_state\",\n \"visibility_cache\",\n \"visibility_epoch\",\n \"voice\",\n \"war_room\",\n \"wbx_capture\",\n \"wbx_demo\",\n \"wbx_guidance\",\n \"wbx_highlight\",\n \"wbx_pattern\",\n \"wbx_recipe\",\n \"wbx_screenshot\",\n \"wbx_seo_audit\",\n \"wc_claim\",\n \"wc_impairment_definition\",\n \"wc_injury\",\n \"wc_report\",\n \"web_analysis_item\",\n \"web_brand\",\n \"web_brand_asset\",\n \"web_brand_offering\",\n \"web_business_fact\",\n \"web_business_location\",\n \"web_channel_analytics_daily\",\n \"web_crawl_event\",\n \"web_crawl_preset\",\n \"web_crawl_schedule\",\n \"web_crawl_session\",\n \"web_crawl_url\",\n \"web_discovered_item\",\n \"web_finding\",\n \"web_gsc_page_stat\",\n \"web_link_edge\",\n \"web_listing_publisher\",\n \"web_location_listing\",\n \"web_offering_template\",\n \"web_page\",\n \"web_page_content\",\n \"web_page_evidence\",\n \"web_page_sitemap\",\n \"web_property\",\n \"web_provider\",\n \"web_result\",\n \"web_screenshot\",\n \"web_site\",\n \"web_site_endpoint_rule\",\n \"web_site_item_config\",\n \"web_site_offering\",\n \"web_sitemap\",\n \"web_snapshot\",\n \"web_tag_manager_snapshot\",\n \"web_youtube_video\",\n \"webhook_deliveries\",\n \"webhook_dispatch_state\",\n \"webhooks\",\n \"wf_node_data_slot\",\n \"work_claim\",\n \"work_item\",\n \"workbook\",\n \"worker_heartbeat\",\n \"workflow\",\n \"workflow_card\",\n \"workflow_checkpoint\",\n \"workflow_comparison\",\n \"workflow_definition_version\",\n \"workflow_idempotency\",\n \"workflow_job\",\n \"workflow_node_events\",\n \"workflow_node_outcome\",\n \"workflow_plan\",\n \"workflow_plan_event\",\n \"workflow_plan_sample\",\n \"workflow_recovery_audit\",\n \"workflow_run\",\n \"workflow_run_log\",\n \"workflow_runtime_surface\",\n \"workflow_template\",\n \"workflow_trigger\",\n \"workflow_trigger_fire\",\n \"workflow_work_item\",\n \"working_document\",\n \"write_guard_key\",\n \"youtube_quota_day\",\n \"youtube_search\",\n \"youtube_video\",\n] as const;\n\nexport type StoreRefusalCode = (typeof STORE_REFUSAL_CODES)[number][\"code\"];\nexport type StoreDoorName = (typeof STORE_DOORS)[number][\"name\"];\nexport type EntityToken = (typeof ENTITY_TOKENS)[number];\nexport type KernelTableName = (typeof KERNEL_TABLES)[number][\"name\"];\n","// src/core/doors.ts — @ai-matrx/records\n//\n// THE DOOR TABLE. Every call this package can make names a door, and every door\n// it names is checked against `STORE_DOORS` — which is generated from `pg_proc`\n// on the live store, not written by a person.\n//\n// A door that is not there yet is answered `door_absent`, naming the door AND\n// the lane that owns it. That is the whole of \"nothing fails silently\" for this\n// package: there is no empty array standing in for a search nobody built, and\n// no `true` standing in for a proposal nobody can approve.\n\nimport { STORE_DOORS } from \"../store.generated\";\nimport type { RecordsError } from \"../results\";\n\n/** Which lane owes each door that does not exist yet (BUILD-BOOK \"Packages\"). */\nconst OWED_BY: Record<string, string> = {\n metadata_search: \"W5-SRV / W5-AGENT — the agent surface's eight verbs\",\n record_aggregate: \"W5-SRV / W5-AGENT — `record_aggregate` is one of the eight verbs\",\n field_propose: \"W5-AGENT — AGT-4/AGT-8, the proposal and its approvers\",\n table_propose: \"W5-AGENT — AGT-8, the proposal and its approvers\",\n merge_field_resolve: \"W5-MERGE-B — the resolver's server half\",\n record_query: \"W1-INDEX / W5-SRV — the promoted-field query path\",\n rule_declare:\n \"W1-RULE — `custom.record_write` writes `data_class = 'record'`, so the ONE write door cannot \" +\n \"make a Rule record; declaring a Rule (and therefore a DOOR-18 subscription) needs a door of its own\",\n};\n\n/**\n * THE TRUST DOORS, AND WHY THEY ARE A SEPARATE TABLE.\n *\n * `iam.is_external_principal`, the publish binding and the world lane are NOT\n * the record store's. They are the platform's answer to \"who is this person to\n * us?\" and \"does this thing have a public address?\", and W2-TRUST owns them.\n * They live in schema `iam`, so `pnpm records:generate` — which reads `custom`\n * and only `custom` — does not and should not see them.\n *\n * They are therefore named here by hand, once, with the schema they belong to\n * said out loud. A client that pretended they were store doors would be lying\n * about which system answered it: when the world lane is closed, the sentence a\n * person reads is `iam`'s, not the store's.\n */\nexport const TRUST_SCHEMA = \"iam\";\n\nexport const TRUST_DOORS = {\n /** VIS-31. A signed-in outsider: an account with no NON-personal organization. */\n isExternalPrincipal: \"is_external_principal\",\n /** The same answer with the plain-English reason attached. */\n externalPrincipalCard: \"external_principal_card\",\n /** EXACTLY the resources Visibility gave that outsider — never \"their organization's\". */\n externalPrincipalReach: \"external_principal_reach\",\n /** VIS-32. A record or a view bound to a public address with a declared render mode. */\n publishBindingCreate: \"publish_binding_create\",\n publishBindingRevoke: \"publish_binding_revoke\",\n /** What a SIGNED-OUT visitor resolves. Returns nothing for an invented or revoked address. */\n resolvePublishBinding: \"resolve_publish_binding\",\n /** D-15. The one sentence that admits nothing was scanned — one function, so it cannot drift. */\n worldPublishGapNotice: \"world_publish_gap_notice\",\n publishToWorld: \"publish_to_world\",\n worldPublishAdmit: \"world_publish_admit\",\n claimWorldNamespace: \"claim_world_namespace\",\n} as const;\n\nexport type TrustDoorKey = keyof typeof TRUST_DOORS;\n\nconst DOOR_NAMES = new Set<string>(STORE_DOORS.map((d) => d.name));\n\nexport function doorExists(name: string): boolean {\n return DOOR_NAMES.has(name);\n}\n\n/** The refusal a missing door gets. It always says who owes it. */\nexport function doorAbsent(name: string): RecordsError {\n const owed = OWED_BY[name];\n return {\n code: \"door_absent\",\n message:\n `The record store has no door \\`custom.${name}\\` yet, so this call was not made. ` +\n `Nothing was read and nothing was written.`,\n hint: owed\n ? `That door is ${owed}. Until it lands, this call refuses rather than guessing: ` +\n `an empty answer here would read like \"there is nothing\", which is a different sentence.`\n : `No lane in the build book claims this door. Either the name is wrong, or the door was ` +\n `removed from the store and this package has not been regenerated — run \\`pnpm records:generate\\`.`,\n };\n}\n\n/** The doors this package calls, one place, so the suite can walk them. */\nexport const DOORS = {\n // THE READ DOOR (DOOR-1). Every read of a record's values goes through these\n // two and nothing else: they resolve the reader from the session, ask\n // visibility once per set, and mask the fields this reader may not see with a\n // notice under `_hidden`. Selecting `custom.record` directly is the thing\n // they exist to replace — it returns rows and fields the store never agreed\n // this person could see.\n readRecord: \"read_record\",\n readRecords: \"read_records\",\n // DOOR-8, the two clocks. `p_recorded_at` is what the store SAID then;\n // `p_world_on` is what was TRUE of the world on that date, read out of dated\n // values. A client that answered either one itself would be guessing.\n queryRecordAsOf: \"query_record_as_of\",\n queryTableAsOf: \"query_table_as_of\",\n recordWrite: \"record_write\",\n recordUpdate: \"record_update\",\n recordDelete: \"record_delete\",\n recordRestore: \"record_restore\",\n recordValues: \"record_values\",\n recordValuesVersioned: \"record_values_versioned\",\n valueRead: \"value_read\",\n computedProvenance: \"computed_provenance\",\n recordApplicability: \"record_applicability\",\n applicableFields: \"applicable_fields\",\n fieldOptions: \"field_options\",\n parityValues: \"parity_values\",\n tableDeclare: \"table_declare\",\n tableCapacity: \"table_capacity\",\n tableStorage: \"table_storage\",\n promoteTable: \"promote_table\",\n promoteField: \"promote_field\",\n promotedFields: \"promoted_fields\",\n promotedRead: \"promoted_read\",\n relationTargets: \"relation_targets\",\n relationOwn: \"relation_own\",\n homeAdd: \"home_add\",\n recordReparent: \"record_reparent\",\n containmentChain: \"containment_chain\",\n storeIsOpen: \"store_is_open\",\n // DOOR-11. The record's own revision list. A screen that offers an optimistic\n // save needs the version it LOADED, and the read door answers documents, not\n // versions — so the version comes from here, once, for the one record being\n // edited, and never for a whole list.\n ioRevisions: \"io_revisions\",\n resolveFirstMatch: \"resolve_first_match\",\n // The kernels a package-owned Table needs to exist at all: a Home is a record\n // in the person kernel, a Field is a record in the field kernel (REC-1).\n personKernelId: \"person_kernel_id\",\n fieldKernelId: \"field_kernel_id\",\n ruleKernelId: \"rule_kernel_id\",\n // And the Table kernel, which is how `tableList` asks the READ DOOR for this\n // organization's Tables: a Table is a record like any other, so listing them\n // is `read_records(org, table_kernel_id())` and never a select on a table.\n tableKernelId: \"table_kernel_id\",\n // A saved view references its membership Rule, and the STORE decides who is\n // in it — the screen never re-implements the predicate.\n ruleMembers: \"rule_members\",\n ruleMembership: \"rule_membership\",\n ruleRun: \"rule_run\",\n ruleEval: \"rule_eval\",\n // The eighth verb (AGT-N-8): a grouped, bucketed, filtered count/sum/avg/\n // min/max computed INSIDE the read door's own query, so a chart shows exactly\n // the rows this person may see and never fetches the ones they may not.\n recordAggregate: \"record_aggregate\",\n aggOperations: \"agg_operations\",\n aggBuckets: \"agg_buckets\",\n // DOOR-18: a subscription is a Rule record carrying a `subscription` block\n // over a saved view. There is no subscription TABLE and no second notifier.\n aggSubscriptions: \"agg_subscriptions\",\n aggSubscriptionCadences: \"agg_subscription_cadences\",\n // The doc doors: a template is saved, a render is written once and frozen,\n // and a signature is checked against the exact bytes that were signed.\n docTemplateSave: \"doc_template_save\",\n docRenderBody: \"doc_render_body\",\n docRenderDocument: \"doc_render_document\",\n docTokens: \"doc_tokens\",\n docUnresolvedTokens: \"doc_unresolved_tokens\",\n docSign: \"doc_sign\",\n docSignatureIntact: \"doc_signature_intact\",\n // THE ANONYMOUS LANE (W4-ANON). It landed, and it landed as SEVEN doors\n // rather than the one this package had guessed at: a token is issued and\n // verified separately from the write it authorises, a form is published\n // separately from being declared, and an offline capture by a SIGNED-IN\n // person is a different door from a write by a stranger.\n //\n // This package used to name a door `anon_record_write`, which never existed —\n // so `FormRunner` told every person that the public link was \"pending\" for a\n // lane that had already shipped. A screen calling a live feature pending is\n // the same silent failure as a screen calling a missing one live, and the fix\n // is to name the doors the store actually has.\n anonTokenIssue: \"anon_token_issue\",\n anonTokenVerify: \"anon_token_verify\",\n anonTokenRevoke: \"anon_token_revoke\",\n /** The stranger's write. The TOKEN names the organization; a caller never does. */\n anonWrite: \"anon_write\",\n /** SCR-30. The signed-in OFFLINE path: the client mints the key, the store dedupes on it. */\n anonCapture: \"anon_capture\",\n anonPublish: \"anon_publish\",\n\n // WORK (W4-WORK): a template instantiated as real records, whose turn it is,\n // and a slot somebody is holding. `ChecklistRunner` and `BookingSlots` are\n // screens over these and hold no state of their own.\n workStates: \"work_states\",\n workTemplateDeclare: \"work_template_declare\",\n workTemplateInstantiate: \"work_template_instantiate\",\n workTemplateShape: \"work_template_shape\",\n /** Why a graph would be refused — asked BEFORE it is written, never after. */\n workTemplateRefusal: \"work_template_refusal\",\n workWhoseTurn: \"work_whose_turn\",\n workTakeAssignment: \"work_take_assignment\",\n workHasAssignment: \"work_has_assignment\",\n workAssignmentFields: \"work_assignment_fields\",\n workTransitionRefusal: \"work_transition_refusal\",\n workInstantiationShape: \"work_instantiation_shape\",\n workSlotsDeclare: \"work_slots_declare\",\n workSlotHold: \"work_slot_hold\",\n workSlotRelease: \"work_slot_release\",\n workSlotHolds: \"work_slot_holds\",\n workSlotExpire: \"work_slot_expire\",\n\n // Declared here BECAUSE they do not exist yet: naming them is what makes the\n // absence visible to `pnpm check:store-registry` and to the suite.\n metadataSearch: \"metadata_search\",\n ruleDeclare: \"rule_declare\",\n fieldPropose: \"field_propose\",\n tablePropose: \"table_propose\",\n mergeFieldResolve: \"merge_field_resolve\",\n} as const;\n\nexport type DoorKey = keyof typeof DOORS;\n\n/** Which of this package's doors the live store actually has, and which it does not. */\nexport function doorCensus(): { present: string[]; absent: string[] } {\n const present: string[] = [];\n const absent: string[] = [];\n for (const name of Object.values(DOORS)) {\n (doorExists(name) ? present : absent).push(name);\n }\n return { present: present.sort(), absent: absent.sort() };\n}\n","// src/core/pgError.ts — @ai-matrx/records\n//\n// THE ONE FUNNEL from what the database said to what a caller reads. Every\n// method in this package's client goes through it, and it does exactly three\n// things: it classifies the SQLSTATE, it carries the store's message and hint\n// VERBATIM, and it parses the DETAIL when the store put json there.\n//\n// It never writes a sentence of its own about a refusal the store already\n// explained. The store's messages were written to be read by the person who hit\n// them — \"Someone else changed this record while you were working on it\" is the\n// screen's text, not a code the screen has to translate.\n\nimport type { PgError, RecordsError, RecordsErrorCode, StaleWriteDetail } from \"../results\";\n\n/**\n * SQLSTATE -> code. Every entry here answers one of the codes\n * `STORE_REFUSAL_CODES` reports the store raising; the real-door suite asserts\n * that this map covers all of them, so a new refusal class in the store shows\n * up as a red test rather than an `internal` in somebody's console.\n */\nconst BY_SQLSTATE: Record<string, RecordsErrorCode> = {\n PT409: \"stale_write\",\n \"42501\": \"door\",\n \"23514\": \"refused_by_rule\",\n \"22004\": \"invalid_argument\",\n \"22023\": \"invalid_argument\",\n \"02000\": \"not_found\",\n \"23503\": \"missing_reference\",\n \"23505\": \"already_exists\",\n \"0A000\": \"not_supported\",\n \"53400\": \"store_limit\",\n \"22012\": \"store_limit\",\n // VIS: `custom.has_visibility_at` refuses to answer from a snapshot older\n // than a write this reader has already seen, rather than returning something\n // they just lost access to. It is retryable on a fresher connection, which is\n // a different instruction from every other refusal here.\n \"40001\": \"stale_read\",\n // PostgREST's own two: the store is not being SERVED, which is a different\n // thing from the store refusing. `custom` absent from `pgrst.db_schemas`, or\n // the grants not copied, land here.\n PGRST202: \"store_not_served\",\n PGRST205: \"store_not_served\",\n PGRST301: \"door\",\n};\n\n/** The SQLSTATEs this package claims to understand. Exported for the guard. */\nexport const MAPPED_SQLSTATES = Object.keys(BY_SQLSTATE);\n\nfunction parseDetail(details: string | null | undefined): unknown {\n if (!details) return undefined;\n const trimmed = details.trim();\n if (!trimmed.startsWith(\"{\") && !trimmed.startsWith(\"[\")) return details;\n try {\n return JSON.parse(trimmed) as unknown;\n } catch {\n return details;\n }\n}\n\n/** Map a PostgREST/supabase-js failure into the package's refusal shape. */\nexport function mapPgError(error: PgError, where: string): RecordsError {\n const sqlstate = error.code ?? undefined;\n const code: RecordsErrorCode = (sqlstate ? BY_SQLSTATE[sqlstate] : undefined) ?? \"internal\";\n const mapped: RecordsError = {\n code,\n message: error.message,\n ...(error.hint ? { hint: error.hint } : {}),\n ...(sqlstate ? { sqlstate } : {}),\n };\n const detail = parseDetail(error.details);\n if (detail !== undefined) mapped.detail = detail;\n if (code === \"internal\") {\n // Still the store's own words — but say out loud that this package did not\n // recognise the class, so nobody reads the silence as \"handled\".\n mapped.hint =\n (mapped.hint ? `${mapped.hint} ` : \"\") +\n `(@ai-matrx/records did not recognise SQLSTATE ${sqlstate ?? \"(none)\"} from ${where}; ` +\n `the message above is the store's own and is the thing to act on.)`;\n }\n return mapped;\n}\n\n/** Pull the conflict out of a `stale_write`, when the store sent one. */\nexport function staleWriteDetail(error: RecordsError): StaleWriteDetail | null {\n if (error.code !== \"stale_write\") return null;\n const detail = error.detail as Partial<StaleWriteDetail> | undefined;\n if (\n !detail ||\n typeof detail.expected_version !== \"number\" ||\n typeof detail.current_version !== \"number\"\n ) {\n return null;\n }\n return {\n expected_version: detail.expected_version,\n current_version: detail.current_version,\n contested_fields: detail.contested_fields ?? {},\n };\n}\n","// src/core/query.ts — @ai-matrx/records\n//\n// THE QUERY. DOOR-6 … DOOR-10.\n//\n// Query by any combination of relation coordinates and any subset of them; as-of\n// a date on EITHER clock; promoted-field predicates. DOOR-10 is the one that\n// shapes this module: every query is filtered by Visibility INSIDE the query,\n// never post-filtered — which is why nothing here ever reads rows and then drops\n// some. The filtering happens in the store's own policies and in the doors; this\n// builder only describes what to ask for.\n//\n// DOOR-N-3: every hot read runs as a PREPARED statement. A client cannot prepare\n// anything itself, so the builder never concatenates a value into SQL: relation\n// coordinates resolve through `custom.relation_targets`, promoted predicates\n// through `custom.promoted_read`, and both are functions with typed parameters —\n// which is what \"prepared\" means on this side of the wire.\n\nimport type { RelationCoordinate } from \"../relation\";\nimport type { Timestamp, Uuid } from \"../record\";\n\n/**\n * DOOR-8. As-of on EITHER clock, and they are different questions:\n * · `record` — the record clock: what this record looked like at version time.\n * · `world` — the world clock: which values were true of the world then\n * (the Field's `dated` modifier).\n */\nexport interface AsOf {\n clock: \"record\" | \"world\";\n at: Timestamp;\n}\n\n/** A predicate over a PROMOTED field (REC-5: promotion light -> heavy). */\nexport interface PromotedPredicate {\n field_key: string;\n /** The value as text, exactly as `custom.promoted_read` takes it. */\n equals: string;\n}\n\nexport interface RecordQuery {\n table_id: Uuid;\n /** DOOR-6. Any combination, any subset. An empty list means \"no relation constraint\". */\n relations?: RelationCoordinate[];\n /** Predicates the store can answer from an index. */\n promoted?: PromotedPredicate[];\n /** DOOR-8. */\n asOf?: AsOf;\n /** DOOR-9. Ask across EVERY Home of this Table in one answer. */\n acrossHomes?: boolean;\n /** REC-23. Soft-deleted rows are out unless you say otherwise. */\n includeDeleted?: boolean;\n /** FLD-10. */\n recordType?: string;\n orderBy?: { column: \"created_at\" | \"updated_at\"; ascending?: boolean };\n limit?: number;\n offset?: number;\n}\n\n/**\n * What a query decomposes into: a set of door calls whose answers INTERSECT,\n * then one filtered read. Kept as data rather than hidden inside the client so\n * the suite can assert the plan as well as the answer — a query that quietly\n * stopped applying one of its coordinates is otherwise invisible.\n */\nexport interface QueryPlan {\n /** One `relation_targets` call per coordinate; the id sets are intersected. */\n relationCalls: Array<{ door: \"relation_targets\"; record_id: Uuid; via_key: string | null }>;\n /** One `promoted_read` call per predicate; intersected with the above. */\n promotedCalls: Array<{ door: \"promoted_read\"; field_key: string; value: string }>;\n /** The filtered read over `custom.record`, which the store's policies gate. */\n read: {\n table_id: Uuid;\n includeDeleted: boolean;\n recordType: string | null;\n asOf: AsOf | null;\n acrossHomes: boolean;\n orderBy: { column: string; ascending: boolean };\n limit: number;\n offset: number;\n };\n /**\n * Stated so nobody has to guess: when this is true the answer is the\n * intersection of the id sets above, and when it is false the read stands\n * alone.\n */\n intersects: boolean;\n}\n\nexport const DEFAULT_PAGE_SIZE = 50;\n\nexport function planQuery(query: RecordQuery): QueryPlan {\n const relationCalls = (query.relations ?? []).map((coordinate) => ({\n door: \"relation_targets\" as const,\n record_id: coordinate.record_id,\n via_key: coordinate.role ?? null,\n }));\n const promotedCalls = (query.promoted ?? []).map((predicate) => ({\n door: \"promoted_read\" as const,\n field_key: predicate.field_key,\n value: predicate.equals,\n }));\n return {\n relationCalls,\n promotedCalls,\n read: {\n table_id: query.table_id,\n includeDeleted: query.includeDeleted ?? false,\n recordType: query.recordType ?? null,\n asOf: query.asOf ?? null,\n acrossHomes: query.acrossHomes ?? false,\n orderBy: {\n column: query.orderBy?.column ?? \"created_at\",\n ascending: query.orderBy?.ascending ?? false,\n },\n limit: query.limit ?? DEFAULT_PAGE_SIZE,\n offset: query.offset ?? 0,\n },\n intersects: relationCalls.length + promotedCalls.length > 0,\n };\n}\n\n/** The intersection of the id sets a plan's calls produced. Order is preserved from the first set. */\nexport function intersectIds(sets: Uuid[][]): Uuid[] {\n if (sets.length === 0) return [];\n const [first, ...rest] = sets as [Uuid[], ...Uuid[][]];\n const others = rest.map((s) => new Set(s));\n return first.filter((id) => others.every((set) => set.has(id)));\n}\n","// src/core/client.ts — @ai-matrx/records\n//\n// THE TYPED CLIENT OVER THE STORE'S DOORS, AND NOTHING ELSE.\n//\n// Every write in this file goes through `custom.record_write`,\n// `custom.record_update`, `custom.record_delete` or `custom.record_restore`.\n// There is no `insert`, no `update` and no `delete` against `custom.record`\n// anywhere in this package, and there is no code path that adds one: DOOR-N-1\n// says there is exactly one write door and `authenticated` holds no direct\n// INSERT, UPDATE or DELETE grant on the store — a client that tried would be\n// refused, and a client that TRIES is a defect even when it is refused.\n//\n// Reads go through the read door too (DOOR-1, DOOR-10): the filtered select over\n// `custom.record` is gated by the store's own policies, and this file never\n// takes rows and then drops some of them. Where it needs an id set it asks a\n// door for one.\n//\n// Nothing here throws. Every method answers `RecordsResult`, and every refusal\n// carries the store's own sentence.\n\nimport type { AggregateBucket, AggregateMeasure, AggregateRow } from \"../aggregate\";\nimport type { DocRenderRow, DocSignatureRow, DocTemplateRow, DocToken, DocUnresolvedToken } from \"../doc\";\nimport type { Subscription } from \"../subscription\";\nimport type {\n AnonTokenBinding,\n WorkAssignmentField,\n WorkGraph,\n WorkInstantiation,\n WorkSlotHold,\n WorkState,\n WorkTurn,\n} from \"../work\";\nimport type { ExternalPrincipalCard, PublishBinding, ResolvedPublishBinding } from \"../trust\";\nimport type { Field } from \"../field\";\nimport type { FieldProposal, TableProposal } from \"../field\";\nimport type {\n HiddenFieldNotice,\n ReadRow,\n RecordRevision,\n ReadValue,\n RecordDocument,\n RecordRead,\n StoredRecord,\n Timestamp,\n Uuid,\n} from \"../record\";\nimport type { RecordsConfig, RecordsErrorSink } from \"../ports\";\nimport type { RecordsError, RecordsResult, WriteConflict } from \"../results\";\nimport { err, ok } from \"../results\";\nimport type { Table, TableCapacity } from \"../table\";\nimport { DOORS, TRUST_DOORS, TRUST_SCHEMA, doorAbsent, doorExists } from \"./doors\";\nimport { mapPgError, staleWriteDetail } from \"./pgError\";\nimport { intersectIds, planQuery, type RecordQuery } from \"./query\";\n\nconst DEFAULT_SCHEMA = \"custom\";\n\nfunction sink(config: RecordsConfig): RecordsErrorSink {\n return (\n config.onError ??\n ((e) =>\n // The defined degradation, stated: loud, with the store's own words, and\n // naming where it happened. Never silence.\n console.error(`[@ai-matrx/records] ${e.where}: ${e.code} — ${e.message}${e.hint ? ` (${e.hint})` : \"\"}`))\n );\n}\n\nexport interface RecordsClient {\n /** The config this client was built with, so a screen can show who it is acting as. */\n readonly config: RecordsConfig;\n\n // ── writes: the one door each ────────────────────────────────────────────\n recordWrite(args: { table_id: Uuid; data: RecordDocument }): Promise<RecordsResult<Uuid>>;\n recordUpdate(args: {\n record_id: Uuid;\n patch: Record<string, unknown>;\n /** Leave it out and the last writer wins; supply it and a loser is TOLD. */\n expectedVersion?: number;\n }): Promise<RecordsResult<number>>;\n /** REC-23. Soft, and reversible within `retention`. */\n recordDelete(args: { record_id: Uuid }): Promise<RecordsResult<Timestamp>>;\n recordRestore(args: { record_id: Uuid }): Promise<RecordsResult<void>>;\n\n // ── reads ────────────────────────────────────────────────────────────────\n recordRead(args: { record_id: Uuid; withComputed?: boolean }): Promise<RecordsResult<RecordRead>>;\n /**\n * DOOR-1. A page of one Table's records THROUGH `custom.read_records`: the\n * store decides which rows this reader may see and which fields of them, and\n * a field it masked comes back present-and-null with its reason in `hidden`.\n * `total` is null because the door counts nothing it has not read — a count\n * of rows a person may not see is a leak with a number on it.\n */\n list(args: {\n table_id: Uuid;\n limit?: number;\n offset?: number;\n }): Promise<RecordsResult<{ rows: ReadRow[]; total: number | null }>>;\n query(query: RecordQuery): Promise<RecordsResult<{ rows: ReadRow[]; total: number | null }>>;\n tableList(): Promise<RecordsResult<Table[]>>;\n fields(args: { table_id: Uuid; recordType?: string }): Promise<RecordsResult<Field[]>>;\n /**\n * FLD-5 / FLD-6: a list field stores the id of an option RECORD, because\n * every pick-list is already a Table. These are that Table's records — the\n * store resolves which Table from the Field's own config, so no caller has to\n * know it.\n */\n fieldOptions(args: { field_id: Uuid }): Promise<RecordsResult<StoredRecord[]>>;\n tableCapacity(args: { table_id: Uuid }): Promise<RecordsResult<TableCapacity>>;\n\n // ── declaring a Table, and the kernels a Table needs to exist ────────────\n /**\n * REC-1: a Table has to live somewhere, so a Home comes first — and a Home is\n * an ordinary record in the person kernel. `homeId` is therefore required and\n * `personKernelId()` is how a caller gets a Table to write one into.\n */\n tableDeclare(args: { spec: Record<string, unknown>; homeId: Uuid }): Promise<RecordsResult<Uuid>>;\n /** The kernel Tables a caller writes a Home, a Field or a Rule into. */\n personKernelId(): Promise<RecordsResult<Uuid>>;\n fieldKernelId(): Promise<RecordsResult<Uuid>>;\n ruleKernelId(): Promise<RecordsResult<Uuid>>;\n\n // ── Rules: the STORE decides membership, never a screen ──────────────────\n /** Every record the Rule says is a member. A saved view's list is this, not a filter a screen ran. */\n ruleMembers(args: { rule_id: Uuid }): Promise<RecordsResult<StoredRecord[]>>;\n /** Is this one record a member, and WHY — the store's own answer. */\n ruleMembership(args: { rule_id: Uuid; record_id: Uuid }): Promise<RecordsResult<unknown>>;\n /** Run a stored Rule against a document. */\n ruleRun(args: { rule_id: Uuid; values: Record<string, unknown>; context?: Record<string, unknown> }): Promise<RecordsResult<unknown>>;\n /** Evaluate a Rule expression that has not been stored — the conditional logic a form runner asks about. */\n ruleEval(args: { expr: unknown; values: Record<string, unknown>; context?: Record<string, unknown> }): Promise<RecordsResult<unknown>>;\n\n // ── the eighth verb (AGT-N-8): the aggregate, computed in the read door ──\n /**\n * Group, bucket, filter and measure INSIDE `custom.record_aggregate`. The\n * aggregate node sits above the visibility join, so what a chart draws is\n * exactly what this person may see — the rest is never fetched, let alone\n * summed and then hidden.\n */\n recordAggregate(args: {\n table_id: Uuid;\n /** Field keys whose values become the groups. */\n groupBy?: string[];\n /** `count` needs no key; every other operation reads one Field. */\n measures?: AggregateMeasure[];\n /** A date Field truncated to a period — a group whose expression is a date_trunc. */\n bucket?: { key: string; by: AggregateBucket } | null;\n /** Equality only, and it lands in the SAME WHERE as visibility. */\n filter?: Record<string, string>;\n limit?: number;\n }): Promise<RecordsResult<AggregateRow[]>>;\n /** The measures the store itself offers. Asked, never hardcoded in a picker. */\n aggOperations(): Promise<RecordsResult<string[]>>;\n /** The periods the store itself buckets by. */\n aggBuckets(): Promise<RecordsResult<string[]>>;\n\n // ── subscriptions (DOOR-18): a Rule record over a saved view ─────────────\n /**\n * Every subscription in this organization, optionally narrowed to one saved\n * view or one cadence. There is no subscription table: each one is a Rule\n * record carrying a `subscription` block, so a subscription is readable,\n * historied and agent-writable like anything else.\n */\n aggSubscriptions(args?: {\n saved_view_id?: Uuid | null;\n cadence?: string | null;\n }): Promise<RecordsResult<Subscription[]>>;\n /** The cadences the store itself offers. Asked, never hardcoded in a picker. */\n aggSubscriptionCadences(): Promise<RecordsResult<string[]>>;\n\n // ── documents (W3-DOC): save, render once, sign the exact bytes ──────────\n docTemplateSave(args: {\n table_id: Uuid;\n name: string;\n body: string;\n template_id?: Uuid | null;\n }): Promise<RecordsResult<Uuid>>;\n /** The body with every token resolved against one record. Read-only, no render row. */\n docRenderBody(args: { template_id: Uuid; record_id: Uuid }): Promise<RecordsResult<string>>;\n /** Write the render — frozen bytes a signature can be checked against. */\n docRenderDocument(args: { template_id: Uuid; record_id: Uuid }): Promise<RecordsResult<Uuid>>;\n /** Every token in a body, in order, with the Field id each one points at. */\n docTokens(args: { body: string }): Promise<RecordsResult<DocToken[]>>;\n /** The tokens this Table cannot answer, each with the store's own reason. */\n docUnresolvedTokens(args: { table_id: Uuid; body: string }): Promise<RecordsResult<DocUnresolvedToken[]>>;\n docSign(args: {\n render_id: Uuid;\n field_key: string;\n signer_name: string;\n signer_user_id?: Uuid | null;\n }): Promise<RecordsResult<Uuid>>;\n /** Is what was signed still what is there? The store answers, never the screen. */\n docSignatureIntact(args: { signature_id: Uuid }): Promise<RecordsResult<unknown>>;\n /** Every template that renders one Table. */\n docTemplates(args: { table_id: Uuid }): Promise<RecordsResult<DocTemplateRow[]>>;\n /** Every frozen render of one record, newest first. */\n docRenders(args: { record_id: Uuid }): Promise<RecordsResult<DocRenderRow[]>>;\n /** Every signature on one record. */\n docSignatures(args: { record_id: Uuid }): Promise<RecordsResult<DocSignatureRow[]>>;\n /**\n * DOOR-11. One record's revisions, newest first. The read door answers\n * documents and deliberately not versions, so a screen that wants to save\n * optimistically reads the version of the record it LOADED from here — for\n * the one record being edited, never for a list.\n */\n revisions(args: { record_id: Uuid }): Promise<RecordsResult<RecordRevision[]>>;\n /**\n * Every value of one record WITH its envelope — its own version, who wrote\n * it, who they were acting for and when. The timeline IS the record (REC-19);\n * there is no second history table.\n */\n recordValuesVersioned(args: { record_id: Uuid }): Promise<RecordsResult<ReadValue[]>>;\n\n // ── the doors that do not exist yet, named rather than faked ─────────────\n metadataSearch(args: { text: string }): Promise<RecordsResult<never>>;\n // ── the anonymous lane (W4-ANON) ─────────────────────────────────────────\n /**\n * Mint an embed token. `mode` is `read` OR `write` and never both — the store\n * refuses a token carrying two decisions. The secret comes back ONCE, because\n * only its digest is stored: a database read cannot produce a working token.\n * `allowedOrigins` is required and matched EXACTLY, so `example.com.evil.test`\n * fails a check that a suffix match would pass.\n */\n anonTokenIssue(args: {\n mode: \"read\" | \"write\";\n allowedOrigins: string[];\n formId?: Uuid | null;\n savedViewId?: Uuid | null;\n recordId?: Uuid | null;\n expiresAt?: Timestamp | null;\n }): Promise<RecordsResult<{ token_id: Uuid; secret: string }>>;\n /** What a secret is good for, from an origin. The store's sentence when it is not. */\n anonTokenVerify(args: {\n secret: string;\n origin: string;\n requiredMode?: \"read\" | \"write\" | null;\n }): Promise<RecordsResult<AnonTokenBinding>>;\n anonTokenRevoke(args: { token_id: Uuid }): Promise<RecordsResult<boolean>>;\n /**\n * A STRANGER'S WRITE. The token supplies the organization, so this call names\n * none — and what it produces is a QUARANTINED SUBMISSION, not a record:\n * `custom.record` is never touched here. `clientKey` makes a replay free and\n * idempotent, which is what lets a flaky phone retry safely.\n */\n anonWrite(args: {\n secret: string;\n origin: string;\n payload: Record<string, unknown>;\n clientKey?: string | null;\n rawPayload?: Record<string, unknown>;\n }): Promise<RecordsResult<Uuid>>;\n /**\n * SCR-30, and it is the SIGNED-IN offline path, not the stranger's. The client\n * mints `clientKey` BEFORE the first attempt, offline, and the store's own\n * replay ledger dedupes on it — so a reconnect that fires the same capture\n * thirty times writes one record and returns the same id every time.\n */\n anonCapture(args: {\n table_id: Uuid;\n clientKey: string;\n payload: Record<string, unknown>;\n device?: string | null;\n capturedAt?: Timestamp | null;\n }): Promise<RecordsResult<Uuid>>;\n /** Open or close a form to strangers. An admin act on the Table, never an editor one. */\n anonPublish(args: { form_id: Uuid; published?: boolean }): Promise<RecordsResult<Timestamp | null>>;\n\n // ── work (W4-WORK): templates, turns and slots ───────────────────────────\n /** The five states and what each one may become. Asked, never hardcoded in a picker. */\n workStates(): Promise<RecordsResult<WorkState[]>>;\n /** Why this graph would be refused — asked BEFORE it is written. `null` means it is fine. */\n workTemplateRefusal(args: { graph: WorkGraph }): Promise<RecordsResult<string | null>>;\n workTemplateDeclare(args: { name: string; graph: WorkGraph }): Promise<RecordsResult<Uuid>>;\n /**\n * REC-70: the WHOLE graph is created in one act, judged before any of it is\n * written, so a half-made checklist is not a state this store can be in.\n */\n workTemplateInstantiate(args: {\n template_id: Uuid;\n overrides?: Record<string, Record<string, unknown>>;\n }): Promise<RecordsResult<WorkInstantiation>>;\n workTemplateShape(args: { template_id: Uuid }): Promise<RecordsResult<unknown>>;\n workInstantiationShape(args: { instantiation_id: Uuid }): Promise<RecordsResult<unknown>>;\n /** Whose turn each record is, with its state and whether that state is terminal. */\n workWhoseTurn(args: { table_id: Uuid; includeFinished?: boolean }): Promise<RecordsResult<WorkTurn[]>>;\n /** Does this Table carry assignment at all? A screen asks before it offers one. */\n workHasAssignment(args: { table_id: Uuid }): Promise<RecordsResult<boolean>>;\n /** The Fields assignment is made of, so nothing here invents a column name. */\n workAssignmentFields(args?: { options_table_id?: Uuid | null }): Promise<RecordsResult<WorkAssignmentField[]>>;\n /** Add assignment to a Table. */\n workTakeAssignment(args: { table_id: Uuid }): Promise<RecordsResult<unknown>>;\n /** Why this move would be refused. `null` means it is allowed. */\n workTransitionRefusal(args: { from_state_id: Uuid; to_state_id: Uuid }): Promise<RecordsResult<string | null>>;\n /** Declare the Table slots are held in. Idempotent — a second call finds the first. */\n workSlotsDeclare(args: { name: string; slug: string; homeId?: Uuid | null }): Promise<RecordsResult<unknown>>;\n /**\n * SCR-29. Take a slot for a while. THE STORE decides, under a unique index —\n * two people racing for the same slot do not both get it, whatever either\n * screen believed a moment earlier.\n */\n workSlotHold(args: {\n table_id: Uuid;\n slotKey: string;\n holder: string;\n ttl?: string;\n }): Promise<RecordsResult<unknown>>;\n workSlotRelease(args: { hold_id: Uuid }): Promise<RecordsResult<boolean>>;\n /** Every hold on this Table, with whether it has already lapsed. */\n workSlotHolds(args: { table_id: Uuid }): Promise<RecordsResult<WorkSlotHold[]>>;\n workSlotExpire(args: { table_id: Uuid }): Promise<RecordsResult<number>>;\n\n // ── the trust doors: `iam`'s, not the store's ────────────────────────────\n /** VIS-31. Is this account a signed-in outsider — no NON-personal organization? */\n isExternalPrincipal(args?: { user_id?: Uuid | null }): Promise<RecordsResult<boolean>>;\n /** The same answer WITH the plain-English reason a screen shows. */\n externalPrincipalCard(args?: { user_id?: Uuid | null }): Promise<RecordsResult<ExternalPrincipalCard>>;\n /** Exactly the resource ids Visibility gave that outsider. Never an organization's list. */\n externalPrincipalReach(args: {\n resourceType: string;\n user_id?: Uuid | null;\n }): Promise<RecordsResult<Array<{ resource_id: Uuid }>>>;\n /** VIS-32. Bind a record or a view to a public address with a declared render mode. */\n publishBindingCreate(args: {\n slug: string;\n resourceType: string;\n resource_id: Uuid;\n renderMode?: string;\n }): Promise<RecordsResult<PublishBinding>>;\n publishBindingRevoke(args: { slug: string }): Promise<RecordsResult<unknown>>;\n /** What a SIGNED-OUT visitor resolves. Empty for an invented, revoked or unpublished address. */\n resolvePublishBinding(args: { slug: string }): Promise<RecordsResult<ResolvedPublishBinding[]>>;\n /** D-15. The ONE sentence admitting nothing was scanned, so four surfaces cannot drift. */\n worldPublishGapNotice(): Promise<RecordsResult<string>>;\n /** Put a resource in the world lane. Refuses by name while the lane is closed. */\n publishToWorld(args: {\n resourceType: string;\n resource_id: Uuid;\n discoverable?: boolean;\n }): Promise<RecordsResult<unknown>>;\n /**\n * Declare a Rule. It is NOT `recordWrite` into the rule kernel, and that is\n * the whole point: `custom.record_write` inserts `data_class = 'record'`, so a\n * document written that way is not a Rule and the store's own rule doors\n * (`custom.rule_members`, `custom.agg_subscriptions`) never see it. Writing\n * one through the record door and calling it a Rule would be a silent\n * failure — a screen that looked like it had subscribed you to something.\n */\n ruleDeclare(args: { spec: Record<string, unknown> }): Promise<RecordsResult<never>>;\n fieldPropose(proposal: FieldProposal): Promise<RecordsResult<never>>;\n tablePropose(proposal: TableProposal): Promise<RecordsResult<never>>;\n\n // ── promotion (REC-5) ────────────────────────────────────────────────────\n promoteTable(args: { table_id: Uuid }): Promise<RecordsResult<unknown>>;\n promoteField(args: { table_id: Uuid; field_id: Uuid }): Promise<RecordsResult<unknown>>;\n\n /** Is the store switched on for this organization? A product switch, never the boundary. */\n storeIsOpen(): Promise<RecordsResult<boolean>>;\n}\n\nexport function createRecordsClient(config: RecordsConfig): RecordsClient {\n const schema = config.schema ?? DEFAULT_SCHEMA;\n const org = config.organizationId;\n const scream = sink(config);\n\n async function callDoor<T>(\n door: string,\n args: Record<string, unknown>,\n where: string,\n ): Promise<RecordsResult<T>> {\n if (!doorExists(door)) {\n const refusal = doorAbsent(door);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where });\n return err(refusal);\n }\n // THE SCHEMA IS SAID OUT LOUD. A door of the store is `custom.<name>`, and\n // a host's supabase client resolves an unqualified `rpc()` against its own\n // default PostgREST profile — `public` in every client we ship. Leaving it\n // off therefore asked `public.store_is_open`, which the browser extension\n // found for us on its first real turn (2026-09-18, W6-EXT): \"Could not find\n // the function public.store_is_open(p_organization_id) in the schema cache\".\n // The package knows which schema it lives in, so it is the package that\n // says so, once, here — never every host remembering to.\n const response = await config.dataSource.rpc(`${door}`, args, { schema });\n if (response.error) {\n const refusal = mapPgError(response.error, where);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where });\n return err(refusal);\n }\n return ok(response.data as T);\n }\n\n /**\n * A TRUST DOOR — `iam`'s, not the store's.\n *\n * There is no `doorExists` check here on purpose: the store's generated\n * catalogue reads `custom` and only `custom`, so a census of it says nothing\n * true about `iam`. A trust door that is not there answers with Postgres's\n * own `42883`, which arrives through the same refusal funnel carrying the\n * name that was called — an honest \"no such function\", never an empty array\n * standing in for \"there is nothing\".\n */\n async function trustDoor<T>(\n door: string,\n args: Record<string, unknown>,\n where: string,\n ): Promise<RecordsResult<T>> {\n const response = await config.dataSource.rpc(door, args, { schema: TRUST_SCHEMA });\n if (response.error) {\n const refusal = mapPgError(response.error, where);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where });\n return err(refusal);\n }\n return ok(response.data as T);\n }\n\n /**\n * The read door returns ONE masked document with the notices folded in under\n * `_hidden` (`custom.mask_document`). A screen wants them apart: the values it\n * draws, and the reasons it shows where a value is missing. This splits them\n * and nothing else — it never decides what is hidden, it only reads what the\n * store already decided.\n */\n function unfold(document: unknown): { document: RecordDocument; hidden: Record<string, HiddenFieldNotice> } {\n const raw = (document ?? {}) as Record<string, unknown>;\n const hidden = (raw._hidden ?? {}) as Record<string, HiddenFieldNotice>;\n const values: RecordDocument = {};\n for (const [key, value] of Object.entries(raw)) {\n if (key === \"_hidden\") continue;\n values[key] = value;\n }\n return { document: values, hidden };\n }\n\n async function readValues(recordId: Uuid): Promise<RecordsResult<ReadValue[]>> {\n return callDoor<ReadValue[]>(\n DOORS.recordValuesVersioned,\n { p_organization_id: org, p_record_id: recordId },\n \"recordRead\",\n );\n }\n\n const client: RecordsClient = {\n config,\n\n async recordWrite({ table_id, data }) {\n return callDoor<Uuid>(\n DOORS.recordWrite,\n { p_organization_id: org, p_table_id: table_id, p_data: data },\n \"recordWrite\",\n );\n },\n\n async recordUpdate({ record_id, patch, expectedVersion }) {\n const result = await callDoor<number>(\n DOORS.recordUpdate,\n {\n p_organization_id: org,\n p_record_id: record_id,\n p_patch: patch,\n ...(expectedVersion === undefined ? {} : { p_expected_version: expectedVersion }),\n },\n \"recordUpdate\",\n );\n return result;\n },\n\n async recordDelete({ record_id }) {\n return callDoor<Timestamp>(\n DOORS.recordDelete,\n { p_organization_id: org, p_record_id: record_id },\n \"recordDelete\",\n );\n },\n\n async recordRestore({ record_id }) {\n return callDoor<void>(\n DOORS.recordRestore,\n { p_organization_id: org, p_record_id: record_id },\n \"recordRestore\",\n );\n },\n\n async recordRead({ record_id, withComputed = false }) {\n // DOOR-1: `custom.read_record` resolves the reader from the session,\n // refuses a record they have no visibility on in the store's own sentence,\n // and masks the fields their level does not reach. This client no longer\n // selects `custom.record` for a read — that path returned rows and fields\n // the store had not agreed this person could see.\n const door = await callDoor<unknown>(\n DOORS.readRecord,\n { p_organization_id: org, p_record_id: record_id },\n \"recordRead\",\n );\n if (!door.ok) return err(door.error);\n const { document, hidden } = unfold(door.data);\n\n let computed: RecordRead[\"computed\"] = [];\n if (withComputed) {\n const provenance = await callDoor<RecordRead[\"computed\"]>(\n DOORS.computedProvenance,\n { p_organization_id: org, p_record_id: record_id },\n \"recordRead.computed\",\n );\n if (!provenance.ok) return err(provenance.error);\n computed = provenance.data ?? [];\n }\n return ok({ record_id, document, hidden, computed });\n },\n\n async list({ table_id, limit = 50, offset = 0 }) {\n const door = await callDoor<Array<{ id: Uuid; document: unknown; level: string }>>(\n DOORS.readRecords,\n {\n p_organization_id: org,\n p_table_id: table_id,\n p_limit: limit,\n p_offset: offset,\n },\n \"list\",\n );\n if (!door.ok) return err(door.error);\n const rows: ReadRow[] = (door.data ?? []).map((row) => {\n const { document, hidden } = unfold(row.document);\n return { id: row.id, document, level: row.level, hidden };\n });\n // The door reads live records only — a deleted record is not in its set —\n // and it counts nothing, so `total` is honestly null rather than a number\n // taken from a table this reader may not see all of.\n return ok({ rows, total: null });\n },\n\n async query(input) {\n const plan = planQuery(input);\n const sets: Uuid[][] = [];\n for (const call of plan.relationCalls) {\n const result = await callDoor<Array<{ relation_targets: Uuid } | Uuid>>(\n DOORS.relationTargets,\n { p_organization_id: org, p_record_id: call.record_id, p_via_key: call.via_key },\n \"query.relations\",\n );\n if (!result.ok) return err(result.error);\n sets.push(\n (result.data ?? []).map((row) =>\n typeof row === \"string\" ? row : (row as { relation_targets: Uuid }).relation_targets,\n ),\n );\n }\n for (const call of plan.promotedCalls) {\n const result = await callDoor<Array<{ promoted_read: Uuid } | Uuid>>(\n DOORS.promotedRead,\n {\n p_organization_id: org,\n p_table_id: plan.read.table_id,\n p_field_key: call.field_key,\n p_value: call.value,\n },\n \"query.promoted\",\n );\n if (!result.ok) return err(result.error);\n sets.push(\n (result.data ?? []).map((row) =>\n typeof row === \"string\" ? row : (row as { promoted_read: Uuid }).promoted_read,\n ),\n );\n }\n\n const ids = plan.intersects ? intersectIds(sets) : null;\n if (ids !== null && ids.length === 0) {\n return ok({ rows: [], total: 0 });\n }\n\n // DOOR-8: an as-of read is the STORE'S question, on the store's two\n // clocks — `p_recorded_at` is what the store said at that moment, and\n // `p_world_on` is what was true of the world on that date. This client\n // used to answer the record clock itself with `updated_at <= at` and\n // refuse the world clock by name; both were workarounds for doors that\n // now exist (`custom.query_table_as_of` / `custom.query_record_as_of`),\n // and neither ever looked at a dated value.\n if (plan.read.asOf) {\n const clock = plan.read.asOf.clock === \"world\"\n ? { p_world_on: plan.read.asOf.at.slice(0, 10) }\n : { p_recorded_at: plan.read.asOf.at };\n if (ids !== null) {\n const answers = await Promise.all(\n ids.slice(0, plan.read.limit).map((id) =>\n callDoor<unknown>(\n DOORS.queryRecordAsOf,\n { p_organization_id: org, p_record_id: id, ...clock },\n \"query.asOf\",\n ).then((result) => ({ id, result })),\n ),\n );\n const rows: ReadRow[] = [];\n for (const { id, result } of answers) {\n if (!result.ok) return err(result.error);\n // A null answer is the door saying \"not visible to you at that\n // time\", which is an absence, not an empty record.\n if (result.data === null) continue;\n const { document, hidden } = unfold(result.data);\n rows.push({ id, document, level: \"viewer\", hidden });\n }\n return ok({ rows, total: rows.length });\n }\n const page = await callDoor<Array<{ record_id: Uuid; data: unknown }>>(\n DOORS.queryTableAsOf,\n {\n p_organization_id: org,\n p_table_id: plan.read.table_id,\n ...clock,\n p_limit: plan.read.limit,\n p_offset: plan.read.offset,\n },\n \"query.asOf\",\n );\n if (!page.ok) return err(page.error);\n const rows: ReadRow[] = (page.data ?? [])\n .filter((row) => row.data !== null)\n .map((row) => {\n const { document, hidden } = unfold(row.data);\n return { id: row.record_id, document, level: \"viewer\", hidden };\n });\n return ok({ rows, total: null });\n }\n\n // The live read, through the read door and nothing else. With a planned\n // id set the door is asked one record at a time (it is keyed by record),\n // bounded by the page size; without one it is asked for the page.\n if (ids !== null) {\n const answers = await Promise.all(\n ids.slice(0, plan.read.limit).map((id) =>\n callDoor<unknown>(\n DOORS.readRecord,\n { p_organization_id: org, p_record_id: id },\n \"query\",\n ).then((result) => ({ id, result })),\n ),\n );\n const rows: ReadRow[] = [];\n for (const { id, result } of answers) {\n if (!result.ok) {\n // `02000` is \"that record is not here (any more)\" — a planned id\n // that has since been deleted is an absence, not a failed query.\n if (result.error.sqlstate === \"02000\") continue;\n return err(result.error);\n }\n const { document, hidden } = unfold(result.data);\n rows.push({ id, document, level: \"viewer\", hidden });\n }\n return ok({ rows, total: rows.length });\n }\n\n return client.list({\n table_id: plan.read.table_id,\n limit: plan.read.limit,\n offset: plan.read.offset,\n });\n },\n\n async tableList() {\n // THROUGH THE READ DOOR, like everything else. A Table is a RECORD in the\n // Table kernel, so listing this organization's Tables is\n // `read_records(org, table_kernel_id())` — the store decides which of them\n // this reader may see. Until 2026-09-18 this method selected\n // `custom.table` directly, which (a) is the raw table access this package\n // exists to make impossible and (b) could never have worked from a client:\n // `authenticated` holds no privilege on ANY table in `custom`, by design.\n // The browser extension found it on its first real turn (W6-EXT).\n const kernel = await callDoor<Uuid>(DOORS.tableKernelId, {}, \"tableList.kernel\");\n if (!kernel.ok) return err(kernel.error);\n const door = await callDoor<Array<{ id: Uuid; document: unknown; level: string }>>(\n DOORS.readRecords,\n { p_organization_id: org, p_table_id: kernel.data, p_limit: 500, p_offset: 0 },\n \"tableList\",\n );\n if (!door.ok) return err(door.error);\n const tables = (door.data ?? []).map((row) => {\n const { document } = unfold(row.document);\n // The kernel record IS the Table's declaration; `id` is the Table's id.\n return { ...(document as Record<string, unknown>), id: row.id, organization_id: org } as unknown as Table;\n });\n tables.sort((a, b) => (a.name ?? \"\").localeCompare(b.name ?? \"\"));\n return ok(tables);\n },\n\n async fields({ table_id, recordType }) {\n // FLD-10: the store decides which Fields APPLY, from the record type. The\n // client asks the door rather than filtering a full list, because the\n // applicability Rule reads Values this client has not got.\n const applicable = await callDoor<Array<{ id: Uuid; data: unknown }>>(\n DOORS.applicableFields,\n {\n p_organization_id: org,\n p_table_id: table_id,\n ...(recordType === undefined ? {} : { p_record_type: recordType }),\n },\n \"fields\",\n );\n if (!applicable.ok) return err(applicable.error);\n const rows = applicable.data ?? [];\n return ok(\n rows.map((row) => ({ id: row.id, ...(row.data as object) }) as Field),\n );\n },\n\n async fieldOptions({ field_id }) {\n return callDoor<StoredRecord[]>(\n DOORS.fieldOptions,\n { p_organization_id: org, p_field_id: field_id },\n \"fieldOptions\",\n );\n },\n\n async tableCapacity({ table_id }) {\n return callDoor<TableCapacity>(\n DOORS.tableCapacity,\n { p_organization_id: org, p_table_id: table_id },\n \"tableCapacity\",\n );\n },\n\n async tableDeclare({ spec, homeId }) {\n return callDoor<Uuid>(\n DOORS.tableDeclare,\n { p_organization_id: org, p_spec: { ...spec, parent_id: homeId } },\n \"tableDeclare\",\n );\n },\n\n async personKernelId() {\n return callDoor<Uuid>(DOORS.personKernelId, {}, \"personKernelId\");\n },\n\n async fieldKernelId() {\n return callDoor<Uuid>(DOORS.fieldKernelId, {}, \"fieldKernelId\");\n },\n\n async ruleKernelId() {\n return callDoor<Uuid>(DOORS.ruleKernelId, {}, \"ruleKernelId\");\n },\n\n async ruleMembers({ rule_id }) {\n return callDoor<StoredRecord[]>(\n DOORS.ruleMembers,\n { p_organization_id: org, p_rule_id: rule_id },\n \"ruleMembers\",\n );\n },\n\n async ruleMembership({ rule_id, record_id }) {\n return callDoor<unknown>(\n DOORS.ruleMembership,\n { p_organization_id: org, p_rule_id: rule_id, p_record_id: record_id },\n \"ruleMembership\",\n );\n },\n\n async ruleRun({ rule_id, values, context }) {\n return callDoor<unknown>(\n DOORS.ruleRun,\n {\n p_organization_id: org,\n p_rule_id: rule_id,\n p_values: values,\n ...(context === undefined ? {} : { p_context: context }),\n },\n \"ruleRun\",\n );\n },\n\n async ruleEval({ expr, values, context }) {\n return callDoor<unknown>(\n DOORS.ruleEval,\n {\n p_organization_id: org,\n p_expr: expr,\n p_values: values,\n ...(context === undefined ? {} : { p_context: context }),\n },\n \"ruleEval\",\n );\n },\n\n async recordAggregate({ table_id, groupBy, measures, bucket, filter, limit }) {\n return callDoor<AggregateRow[]>(\n DOORS.recordAggregate,\n {\n p_organization_id: org,\n p_table_id: table_id,\n p_group_by: groupBy ?? [],\n p_measures: measures ?? [],\n p_bucket: bucket ?? null,\n p_filter: filter ?? {},\n p_limit: limit ?? 200,\n },\n \"recordAggregate\",\n );\n },\n\n async aggOperations() {\n return callDoor<string[]>(DOORS.aggOperations, {}, \"aggOperations\");\n },\n\n async aggBuckets() {\n return callDoor<string[]>(DOORS.aggBuckets, {}, \"aggBuckets\");\n },\n\n async aggSubscriptions(args) {\n return callDoor<Subscription[]>(\n DOORS.aggSubscriptions,\n {\n p_organization_id: org,\n p_saved_view_id: args?.saved_view_id ?? null,\n p_cadence: args?.cadence ?? null,\n },\n \"aggSubscriptions\",\n );\n },\n\n async aggSubscriptionCadences() {\n return callDoor<string[]>(DOORS.aggSubscriptionCadences, {}, \"aggSubscriptionCadences\");\n },\n\n async docTemplateSave({ table_id, name, body, template_id }) {\n return callDoor<Uuid>(\n DOORS.docTemplateSave,\n {\n p_organization_id: org,\n p_table_id: table_id,\n p_name: name,\n p_body: body,\n p_template_id: template_id ?? null,\n },\n \"docTemplateSave\",\n );\n },\n\n async docRenderBody({ template_id, record_id }) {\n return callDoor<string>(\n DOORS.docRenderBody,\n { p_organization_id: org, p_template_id: template_id, p_record_id: record_id },\n \"docRenderBody\",\n );\n },\n\n async docRenderDocument({ template_id, record_id }) {\n return callDoor<Uuid>(\n DOORS.docRenderDocument,\n { p_organization_id: org, p_template_id: template_id, p_record_id: record_id },\n \"docRenderDocument\",\n );\n },\n\n async docTokens({ body }) {\n return callDoor<DocToken[]>(DOORS.docTokens, { p_body: body }, \"docTokens\");\n },\n\n async docUnresolvedTokens({ table_id, body }) {\n return callDoor<DocUnresolvedToken[]>(\n DOORS.docUnresolvedTokens,\n { p_organization_id: org, p_table_id: table_id, p_body: body },\n \"docUnresolvedTokens\",\n );\n },\n\n async docSign({ render_id, field_key, signer_name, signer_user_id }) {\n return callDoor<Uuid>(\n DOORS.docSign,\n {\n p_organization_id: org,\n p_render_id: render_id,\n p_field_key: field_key,\n p_signer_name: signer_name,\n p_signer_user_id: signer_user_id ?? null,\n },\n \"docSign\",\n );\n },\n\n async docTemplates({ table_id }) {\n const response = await config.dataSource\n .schema(schema)\n .from(\"doc_template\")\n .select(\"*\")\n .eq(\"organization_id\", org)\n .eq(\"renders_table_id\", table_id)\n .order(\"name\");\n if (response.error) {\n const refusal = mapPgError(response.error, \"docTemplates\");\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"docTemplates\" });\n return err(refusal);\n }\n return ok((response.data ?? []) as DocTemplateRow[]);\n },\n\n async docRenders({ record_id }) {\n const response = await config.dataSource\n .schema(schema)\n .from(\"doc_render\")\n .select(\"*\")\n .eq(\"organization_id\", org)\n .eq(\"record_id\", record_id)\n .is(\"deleted_at\", null)\n .order(\"rendered_at\", { ascending: false });\n if (response.error) {\n const refusal = mapPgError(response.error, \"docRenders\");\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"docRenders\" });\n return err(refusal);\n }\n return ok((response.data ?? []) as DocRenderRow[]);\n },\n\n async docSignatures({ record_id }) {\n const response = await config.dataSource\n .schema(schema)\n .from(\"doc_signature\")\n .select(\"*\")\n .eq(\"organization_id\", org)\n .eq(\"record_id\", record_id)\n .is(\"deleted_at\", null)\n .order(\"signed_at\", { ascending: false });\n if (response.error) {\n const refusal = mapPgError(response.error, \"docSignatures\");\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"docSignatures\" });\n return err(refusal);\n }\n return ok((response.data ?? []) as DocSignatureRow[]);\n },\n\n async recordValuesVersioned({ record_id }) {\n return readValues(record_id);\n },\n\n async revisions({ record_id }) {\n return callDoor<RecordRevision[]>(\n DOORS.ioRevisions,\n { p_organization_id: org, p_record_id: record_id },\n \"revisions\",\n );\n },\n\n async docSignatureIntact({ signature_id }) {\n return callDoor<unknown>(\n DOORS.docSignatureIntact,\n { p_organization_id: org, p_signature_id: signature_id },\n \"docSignatureIntact\",\n );\n },\n\n // ── the anonymous lane ───────────────────────────────────────────────\n async anonTokenIssue({ mode, allowedOrigins, formId, savedViewId, recordId, expiresAt }) {\n // The door answers a one-row TABLE, so the array is unwrapped here rather\n // than in every caller. An empty answer is impossible — the door either\n // returns the pair or raises — so `[0]` is not a guess.\n const answered = await callDoor<Array<{ token_id: Uuid; secret: string }>>(\n DOORS.anonTokenIssue,\n {\n p_organization_id: org,\n p_mode: mode,\n p_allowed_origins: allowedOrigins,\n p_form_id: formId ?? null,\n p_saved_view_id: savedViewId ?? null,\n p_record_id: recordId ?? null,\n p_expires_at: expiresAt ?? null,\n },\n \"anonTokenIssue\",\n );\n if (!answered.ok) return answered;\n const pair = answered.data[0];\n if (!pair) {\n return err({\n code: \"internal\",\n message: \"custom.anon_token_issue returned no token, which it cannot do — it either mints one or raises.\",\n hint: \"Nothing was issued. Do not retry blindly: something between this client and the store changed the answer's shape.\",\n });\n }\n return ok(pair);\n },\n\n async anonTokenVerify({ secret, origin, requiredMode }) {\n const answered = await callDoor<AnonTokenBinding[]>(\n DOORS.anonTokenVerify,\n { p_secret: secret, p_origin: origin, p_required_mode: requiredMode ?? null },\n \"anonTokenVerify\",\n );\n if (!answered.ok) return answered;\n const binding = answered.data[0];\n if (!binding) {\n return err({\n code: \"internal\",\n message: \"custom.anon_token_verify returned no binding, which it cannot do — it either answers or raises.\",\n hint: \"Treat this as unverified. It is reported rather than read as 'not valid', because those are different sentences.\",\n });\n }\n return ok(binding);\n },\n\n async anonTokenRevoke({ token_id }) {\n return callDoor<boolean>(\n DOORS.anonTokenRevoke,\n { p_organization_id: org, p_token_id: token_id },\n \"anonTokenRevoke\",\n );\n },\n\n async anonWrite({ secret, origin, payload, clientKey, rawPayload }) {\n // No `p_organization_id`: the TOKEN supplies the organization. A stranger\n // naming one would be choosing which tenant to write into.\n return callDoor<Uuid>(\n DOORS.anonWrite,\n {\n p_secret: secret,\n p_origin: origin,\n p_payload: payload,\n p_client_key: clientKey ?? null,\n p_raw_payload: rawPayload ?? {},\n },\n \"anonWrite\",\n );\n },\n\n async anonCapture({ table_id, clientKey, payload, device, capturedAt }) {\n return callDoor<Uuid>(\n DOORS.anonCapture,\n {\n p_organization_id: org,\n p_client_key: clientKey,\n p_table_id: table_id,\n p_payload: payload,\n p_device: device ?? null,\n p_captured_at: capturedAt ?? null,\n },\n \"anonCapture\",\n );\n },\n\n async anonPublish({ form_id, published = true }) {\n return callDoor<Timestamp | null>(\n DOORS.anonPublish,\n { p_organization_id: org, p_form_id: form_id, p_published: published },\n \"anonPublish\",\n );\n },\n\n // ── work ─────────────────────────────────────────────────────────────\n async workStates() {\n return callDoor<WorkState[]>(DOORS.workStates, {}, \"workStates\");\n },\n\n async workTemplateRefusal({ graph }) {\n return callDoor<string | null>(DOORS.workTemplateRefusal, { p_graph: graph }, \"workTemplateRefusal\");\n },\n\n async workTemplateDeclare({ name, graph }) {\n return callDoor<Uuid>(\n DOORS.workTemplateDeclare,\n { p_organization_id: org, p_name: name, p_graph: graph },\n \"workTemplateDeclare\",\n );\n },\n\n async workTemplateInstantiate({ template_id, overrides }) {\n return callDoor<WorkInstantiation>(\n DOORS.workTemplateInstantiate,\n { p_organization_id: org, p_template_id: template_id, p_overrides: overrides ?? {} },\n \"workTemplateInstantiate\",\n );\n },\n\n async workTemplateShape({ template_id }) {\n return callDoor<unknown>(\n DOORS.workTemplateShape,\n { p_organization_id: org, p_template_id: template_id },\n \"workTemplateShape\",\n );\n },\n\n async workInstantiationShape({ instantiation_id }) {\n return callDoor<unknown>(\n DOORS.workInstantiationShape,\n { p_organization_id: org, p_instantiation_id: instantiation_id },\n \"workInstantiationShape\",\n );\n },\n\n async workWhoseTurn({ table_id, includeFinished = false }) {\n return callDoor<WorkTurn[]>(\n DOORS.workWhoseTurn,\n { p_organization_id: org, p_table_id: table_id, p_include_finished: includeFinished },\n \"workWhoseTurn\",\n );\n },\n\n async workHasAssignment({ table_id }) {\n return callDoor<boolean>(\n DOORS.workHasAssignment,\n { p_organization_id: org, p_table_id: table_id },\n \"workHasAssignment\",\n );\n },\n\n async workAssignmentFields(args) {\n return callDoor<WorkAssignmentField[]>(\n DOORS.workAssignmentFields,\n { p_options_table_id: args?.options_table_id ?? null },\n \"workAssignmentFields\",\n );\n },\n\n async workTakeAssignment({ table_id }) {\n return callDoor<unknown>(\n DOORS.workTakeAssignment,\n { p_organization_id: org, p_table_id: table_id },\n \"workTakeAssignment\",\n );\n },\n\n async workTransitionRefusal({ from_state_id, to_state_id }) {\n return callDoor<string | null>(\n DOORS.workTransitionRefusal,\n { p_organization_id: org, p_from_state_id: from_state_id, p_to_state_id: to_state_id },\n \"workTransitionRefusal\",\n );\n },\n\n async workSlotsDeclare({ name, slug, homeId }) {\n return callDoor<unknown>(\n DOORS.workSlotsDeclare,\n { p_organization_id: org, p_name: name, p_slug: slug, p_home_id: homeId ?? null },\n \"workSlotsDeclare\",\n );\n },\n\n async workSlotHold({ table_id, slotKey, holder, ttl }) {\n return callDoor<unknown>(\n DOORS.workSlotHold,\n {\n p_organization_id: org,\n p_table_id: table_id,\n p_slot_key: slotKey,\n p_holder: holder,\n ...(ttl ? { p_ttl: ttl } : {}),\n },\n \"workSlotHold\",\n );\n },\n\n async workSlotRelease({ hold_id }) {\n return callDoor<boolean>(\n DOORS.workSlotRelease,\n { p_organization_id: org, p_hold_id: hold_id },\n \"workSlotRelease\",\n );\n },\n\n async workSlotHolds({ table_id }) {\n return callDoor<WorkSlotHold[]>(\n DOORS.workSlotHolds,\n { p_organization_id: org, p_table_id: table_id },\n \"workSlotHolds\",\n );\n },\n\n async workSlotExpire({ table_id }) {\n return callDoor<number>(\n DOORS.workSlotExpire,\n { p_organization_id: org, p_table_id: table_id },\n \"workSlotExpire\",\n );\n },\n\n // ── the trust doors ──────────────────────────────────────────────────\n async isExternalPrincipal(args) {\n return trustDoor<boolean>(\n TRUST_DOORS.isExternalPrincipal,\n { p_user_id: args?.user_id ?? null },\n \"isExternalPrincipal\",\n );\n },\n\n async externalPrincipalCard(args) {\n return trustDoor<ExternalPrincipalCard>(\n TRUST_DOORS.externalPrincipalCard,\n { p_user_id: args?.user_id ?? null },\n \"externalPrincipalCard\",\n );\n },\n\n async externalPrincipalReach({ resourceType, user_id }) {\n return trustDoor<Array<{ resource_id: Uuid }>>(\n TRUST_DOORS.externalPrincipalReach,\n { p_resource_type: resourceType, p_user_id: user_id ?? null },\n \"externalPrincipalReach\",\n );\n },\n\n async publishBindingCreate({ slug, resourceType, resource_id, renderMode = \"page\" }) {\n return trustDoor<PublishBinding>(\n TRUST_DOORS.publishBindingCreate,\n {\n p_slug: slug,\n p_resource_type: resourceType,\n p_resource_id: resource_id,\n p_organization_id: org,\n p_render_mode: renderMode,\n },\n \"publishBindingCreate\",\n );\n },\n\n async publishBindingRevoke({ slug }) {\n return trustDoor<unknown>(TRUST_DOORS.publishBindingRevoke, { p_slug: slug }, \"publishBindingRevoke\");\n },\n\n async resolvePublishBinding({ slug }) {\n return trustDoor<ResolvedPublishBinding[]>(\n TRUST_DOORS.resolvePublishBinding,\n { p_slug: slug },\n \"resolvePublishBinding\",\n );\n },\n\n async worldPublishGapNotice() {\n return trustDoor<string>(TRUST_DOORS.worldPublishGapNotice, {}, \"worldPublishGapNotice\");\n },\n\n async publishToWorld({ resourceType, resource_id, discoverable = false }) {\n return trustDoor<unknown>(\n TRUST_DOORS.publishToWorld,\n {\n p_resource_type: resourceType,\n p_resource_id: resource_id,\n p_organization_id: org,\n p_discoverable: discoverable,\n },\n \"publishToWorld\",\n );\n },\n\n async ruleDeclare() {\n const refusal = doorAbsent(DOORS.ruleDeclare);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"ruleDeclare\" });\n return err(refusal);\n },\n\n async metadataSearch() {\n const refusal = doorAbsent(DOORS.metadataSearch);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"metadataSearch\" });\n return err(refusal);\n },\n\n async fieldPropose() {\n const refusal = doorAbsent(DOORS.fieldPropose);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"fieldPropose\" });\n return err(refusal);\n },\n\n async tablePropose() {\n const refusal = doorAbsent(DOORS.tablePropose);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"tablePropose\" });\n return err(refusal);\n },\n\n async promoteTable({ table_id }) {\n return callDoor<unknown>(\n DOORS.promoteTable,\n { p_organization_id: org, p_table_id: table_id },\n \"promoteTable\",\n );\n },\n\n async promoteField({ table_id, field_id }) {\n return callDoor<unknown>(\n DOORS.promoteField,\n { p_organization_id: org, p_table_id: table_id, p_field_id: field_id },\n \"promoteField\",\n );\n },\n\n async storeIsOpen() {\n return callDoor<boolean>(DOORS.storeIsOpen, { p_organization_id: org }, \"storeIsOpen\");\n },\n };\n\n return client;\n}\n\n/**\n * Turn a refusal into the conflict a screen can SHOW: which version you wrote\n * against, which one won, and every field you touched as it stands now. Returns\n * null when the refusal was not a stale write.\n */\nexport function asWriteConflict(error: RecordsError, recordId: Uuid): WriteConflict | null {\n const detail = staleWriteDetail(error);\n if (!detail) return null;\n return {\n ...detail,\n record_id: recordId,\n message: error.message,\n hint: error.hint ?? \"\",\n };\n}\n","\"use client\";\n\n// src/react/hooks.ts — @ai-matrx/records\n//\n// The hooks. Each one is a thin, honest wrapper over `/core`: it holds loading,\n// data and REFUSAL, and it never converts a refusal into an empty answer. A\n// screen that rendered \"no records\" because the door refused would be the lie\n// this package exists to prevent, so every hook's state carries `error` with the\n// store's own sentence in it, and a UI that ignores it is the UI's defect, not\n// a hidden one.\n\nimport { useCallback, useEffect, useMemo, useRef, useState } from \"react\";\n\nimport type { Field } from \"../field\";\nimport type { MergeFieldResolution } from \"../merge-field\";\nimport type { ReadRow, RecordRead, Uuid } from \"../record\";\nimport type { RecordsError } from \"../results\";\nimport type { Table } from \"../table\";\nimport { asWriteConflict, type RecordsClient } from \"../core/client\";\nimport type { WriteConflict } from \"../results\";\nimport { useRecordsClient } from \"./context\";\n\ninterface Async<T> {\n data: T | null;\n loading: boolean;\n /** The store's own refusal. Never null-and-empty at the same time. */\n error: RecordsError | null;\n reload: () => void;\n}\n\nfunction useAsync<T>(\n run: (client: RecordsClient) => Promise<{ ok: true; data: T } | { ok: false; error: RecordsError }>,\n deps: unknown[],\n): Async<T> {\n const client = useRecordsClient();\n const [state, setState] = useState<{ data: T | null; loading: boolean; error: RecordsError | null }>(\n { data: null, loading: true, error: null },\n );\n const [nonce, setNonce] = useState(0);\n const alive = useRef(true);\n\n useEffect(() => {\n alive.current = true;\n return () => {\n alive.current = false;\n };\n }, []);\n\n useEffect(() => {\n let cancelled = false;\n setState((s) => ({ ...s, loading: true }));\n void run(client).then((result) => {\n if (cancelled || !alive.current) return;\n setState(\n result.ok\n ? { data: result.data, loading: false, error: null }\n : { data: null, loading: false, error: result.error },\n );\n });\n return () => {\n cancelled = true;\n };\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [client, nonce, ...deps]);\n\n const reload = useCallback(() => setNonce((n) => n + 1), []);\n return { ...state, reload };\n}\n\n/** One Table's declaration. */\nexport function useTable(tableId: Uuid | null): Async<Table | null> {\n return useAsync<Table | null>(\n async (client) => {\n if (!tableId) return { ok: true, data: null };\n const result = await client.tableList();\n if (!result.ok) return result;\n return { ok: true, data: result.data.find((t) => t.id === tableId) ?? null };\n },\n [tableId],\n );\n}\n\n/** Every Table this person can see in this organization. */\nexport function useTables(): Async<Table[]> {\n return useAsync((client) => client.tableList(), []);\n}\n\n/**\n * FLD-10. The Fields that APPLY — the store decides, from the record type, and\n * the client asks rather than filtering a list it has.\n */\nexport function useFields(tableId: Uuid | null, recordType?: string): Async<Field[]> {\n return useAsync<Field[]>(\n async (client) => {\n if (!tableId) return { ok: true, data: [] };\n return client.fields({ table_id: tableId, ...(recordType === undefined ? {} : { recordType }) });\n },\n [tableId, recordType],\n );\n}\n\nexport interface UseRecordsOptions {\n pageSize?: number;\n page?: number;\n}\n\nexport interface UseRecordsState extends Async<{ rows: ReadRow[]; total: number | null }> {\n /**\n * Whether this list is actually live. FALSE with a reason is an answer a\n * screen can print; a list that silently stopped updating is not.\n */\n live: boolean;\n liveReason: string;\n}\n\n/** A page of records, realtime-aware when the host bound the port. */\nexport function useRecords(tableId: Uuid | null, options: UseRecordsOptions = {}): UseRecordsState {\n const client = useRecordsClient();\n const pageSize = options.pageSize ?? 50;\n const page = options.page ?? 0;\n\n // DOOR-1: the door reads live records only. There is no `includeDeleted`\n // here any more because there is no door that answers it — a screen that\n // wants a deleted record asks the restore path by name.\n const base = useAsync<{ rows: ReadRow[]; total: number | null }>(\n async (c) => {\n if (!tableId) return { ok: true, data: { rows: [], total: null } };\n return c.list({\n table_id: tableId,\n limit: pageSize,\n offset: page * pageSize,\n });\n },\n [tableId, pageSize, page],\n );\n\n const realtime = client.config.realtime;\n const { reload } = base;\n useEffect(() => {\n if (!realtime || !tableId) return;\n // A realtime payload has NOT passed the read door, so it is used as a\n // NUDGE and never as data: the hook re-reads through the door.\n return realtime.subscribeRecords(\n { organization_id: client.config.organizationId, table_id: tableId },\n () => reload(),\n );\n }, [realtime, tableId, client.config.organizationId, reload]);\n\n const live = Boolean(realtime && tableId);\n const liveReason = realtime\n ? tableId\n ? \"Live: changes to this table re-read through the read door.\"\n : \"Not live: no table selected.\"\n : \"Not live: this host bound no realtime port, so this list updates when you reload it.\";\n\n return { ...base, live, liveReason };\n}\n\n/** One record, its values and (optionally) which Rule version computed each. */\nexport function useRecord(recordId: Uuid | null, withComputed = false): Async<RecordRead | null> {\n return useAsync<RecordRead | null>(\n async (client) => {\n if (!recordId) return { ok: true, data: null };\n return client.recordRead({ record_id: recordId, withComputed });\n },\n [recordId, withComputed],\n );\n}\n\nexport interface UseRecordMutation {\n write: (args: { table_id: Uuid; data: Record<string, unknown> }) => Promise<Uuid | null>;\n update: (args: {\n record_id: Uuid;\n patch: Record<string, unknown>;\n expectedVersion?: number;\n }) => Promise<number | null>;\n remove: (args: { record_id: Uuid }) => Promise<string | null>;\n restore: (args: { record_id: Uuid }) => Promise<boolean>;\n saving: boolean;\n error: RecordsError | null;\n /**\n * THE CONFLICT, as something a screen can SHOW rather than a toast it flashes:\n * the version you wrote against, the version that won, and every field you\n * touched as it stands now. Nothing was overwritten and nothing was lost —\n * which is exactly what the store's own hint says, and it is carried here.\n */\n conflict: WriteConflict | null;\n clearConflict: () => void;\n}\n\n/** Writes, with optimistic concurrency surfaced instead of swallowed. */\nexport function useRecordMutation(): UseRecordMutation {\n const client = useRecordsClient();\n const [saving, setSaving] = useState(false);\n const [error, setError] = useState<RecordsError | null>(null);\n const [conflict, setConflict] = useState<WriteConflict | null>(null);\n\n const run = useCallback(\n async <T,>(\n recordId: Uuid | null,\n call: () => Promise<{ ok: true; data: T } | { ok: false; error: RecordsError }>,\n ): Promise<T | null> => {\n setSaving(true);\n setError(null);\n try {\n const result = await call();\n if (result.ok) {\n setConflict(null);\n return result.data;\n }\n setError(result.error);\n setConflict(recordId ? asWriteConflict(result.error, recordId) : null);\n return null;\n } finally {\n setSaving(false);\n }\n },\n [],\n );\n\n return useMemo(\n () => ({\n write: (args) =>\n run(null, () => client.recordWrite({ table_id: args.table_id, data: args.data })),\n update: (args) =>\n run(args.record_id, () =>\n client.recordUpdate({\n record_id: args.record_id,\n patch: args.patch,\n ...(args.expectedVersion === undefined ? {} : { expectedVersion: args.expectedVersion }),\n }),\n ),\n remove: (args) => run(args.record_id, () => client.recordDelete({ record_id: args.record_id })),\n restore: async (args) => {\n const result = await run(args.record_id, () => client.recordRestore({ record_id: args.record_id }));\n return result !== null;\n },\n saving,\n error,\n conflict,\n clearConflict: () => setConflict(null),\n }),\n [client, run, saving, error, conflict],\n );\n}\n\n/**\n * DYN-14 / AGT-N-7. A merge field's value — and while the resolver's server half\n * does not exist, `pending` WITH THE REASON. Never a blank, never a leftover\n * `{{brace}}`, never an empty string that a prompt would carry into a model.\n */\nexport function useMergeField(key: string | null, state?: Record<string, unknown>) {\n const client = useRecordsClient();\n const [resolution, setResolution] = useState<MergeFieldResolution | null>(null);\n const resolver = client.config.resolver;\n\n useEffect(() => {\n if (!key) {\n setResolution(null);\n return;\n }\n if (!resolver) {\n setResolution({\n state: \"pending\",\n reason:\n `The merge field \"${key}\" cannot be resolved here yet: this host bound no resolver, and ` +\n `the resolver's server half is W5-MERGE-B's. Nothing is shown in its place — a blank would ` +\n `read as \"there is no value\", which is a different sentence.`,\n });\n return;\n }\n let cancelled = false;\n void resolver\n .resolve({\n organization_id: client.config.organizationId,\n merge_field_keys: [key],\n ...(state === undefined ? {} : { state }),\n })\n .then((answer) => {\n if (cancelled) return;\n const byKey = (answer as Record<string, MergeFieldResolution> | null) ?? {};\n setResolution(\n byKey[key] ?? {\n state: \"pending\",\n reason: `The resolver answered, and it said nothing about \"${key}\". Nothing is shown in its place.`,\n },\n );\n });\n return () => {\n cancelled = true;\n };\n }, [key, resolver, client.config.organizationId, state]);\n\n return resolution;\n}\n","// src/vocabulary.ts — @ai-matrx/records\n//\n// THE CLOSED VOCABULARIES. Every list here is a word set the STORE enforces,\n// and the store is the only place any of them is decided. The literal values\n// are not typed by hand: `src/store.generated.ts` is regenerated from the live\n// catalogue by `pnpm records:generate`, and `pnpm check:store-registry` fails\n// the build the moment this package and the database disagree. What lives HERE\n// is the type layer over those literals, so a wrong word is a compile error in\n// a consumer rather than a `23514` at three in the morning.\n\nimport {\n ACTOR_VOCABULARY,\n ABSENCE_REASONS,\n VALUE_ENVELOPE_KEYS,\n VALUE_ALTERNATE_KEYS,\n STORAGE_MODES,\n RULE_USES,\n PER_VALUE_ACCESS_WORDS,\n PARITY_FIELD_TYPES,\n RULE_NODE_KINDS,\n RETIRED_ACTOR_WORDS,\n} from \"./store.generated\";\n\n/**\n * VAL-8. Who wrote a value. `user`, `agent`, `system` — enforced by every write\n * door, and the three retired words (`human`, `ai`, `code`) are translated by\n * the store's own `custom.actor_word`, never by a caller.\n */\nexport type Actor = (typeof ACTOR_VOCABULARY)[number];\n\n/** The words the store still accepts and rewrites, mapped to what they become. */\nexport type RetiredActorWord = keyof typeof RETIRED_ACTOR_WORDS;\n\n/**\n * VAL-2. Why a value is missing. A value is never blank for an unexplained\n * reason: it either holds something or it says one of these four words.\n */\nexport type AbsenceReason = (typeof ABSENCE_REASONS)[number];\n\n/** The closed key set of one value envelope (VAL-1 … VAL-4). */\nexport type ValueEnvelopeKey = (typeof VALUE_ENVELOPE_KEYS)[number];\n\n/** The closed key set of one ranked alternate (VAL-3). */\nexport type ValueAlternateKey = (typeof VALUE_ALTERNATE_KEYS)[number];\n\n/**\n * REC-4. `heavy` is indexed storage with Rules on write; `light` is\n * whole-document storage with Rules on read. Per Table, one store.\n */\nexport type StorageMode = (typeof STORAGE_MODES)[number];\n\n/** REC-15. One Rule object, four uses. */\nexport type RuleUse = (typeof RULE_USES)[number];\n\n/**\n * VAL-5 / VAL-6. The words that may NOT appear inside a value envelope:\n * visibility and access belong to a Field and to a Record, never to a value.\n * The store refuses each of them by name and so does this package's mirror.\n */\nexport type PerValueAccessWord = (typeof PER_VALUE_ACCESS_WORDS)[number];\n\n/** FLD-11. The parity floor: the field type a person picks in the UI. */\nexport type ParityFieldType = (typeof PARITY_FIELD_TYPES)[number][\"parity_type\"];\n\n/** FLD-1. The five behaviours a Field can have. One, exactly, and closed. */\nexport type FieldBehavior = (typeof PARITY_FIELD_TYPES)[number][\"behavior\"];\n\n/** The node kinds `custom.rule_eval` evaluates. */\nexport type RuleNodeKind = (typeof RULE_NODE_KINDS)[number][\"node\"];\n\n/**\n * REC-32. The seven table types, closed. The parenthesised names are the\n * retired ones the doctrine records; never coin an eighth.\n */\nexport const TABLE_TYPES = [\n \"entity\",\n \"detail\",\n \"reference\",\n \"ledger\",\n \"restricted\",\n \"system\",\n \"deprecated\",\n] as const;\nexport type TableType = (typeof TABLE_TYPES)[number];\n\n/** REC-33. The two origins. A table we ship in schema `custom` is `standard`. */\nexport const TABLE_ORIGINS = [\"standard\", \"custom\"] as const;\nexport type TableOrigin = (typeof TABLE_ORIGINS)[number];\n\n/** REL-1. Ownership is one fact, stored once, read from the field's side. */\nexport const RELATION_FLAVORS = [\"owned\", \"referenced\"] as const;\nexport type RelationFlavor = (typeof RELATION_FLAVORS)[number];\n\n/** REL-2. What happens to the far side, separate from flavour. */\nexport const ON_DELETE = [\"cascade\", \"set_null\", \"restrict\"] as const;\nexport type OnDelete = (typeof ON_DELETE)[number];\n\n/** REL-3. A snapshot is a frozen copy in the relation's payload, never a pointer. */\nexport const RELATION_BINDINGS = [\"live\", \"snapshot\"] as const;\nexport type RelationBinding = (typeof RELATION_BINDINGS)[number];\n\n/** REL-7. */\nexport const RELATION_CARDINALITIES = [\"one\", \"many\"] as const;\nexport type RelationCardinality = (typeof RELATION_CARDINALITIES)[number];\n\n/** FLD-7. Where a Field's values come from. */\nexport const FIELD_SOURCES = [\"manual\", \"formula\", \"agent\", \"synced\"] as const;\nexport type FieldSource = (typeof FIELD_SOURCES)[number];\n\n/** FLD-9. A Formula declares whether it computes on read or on write. */\nexport const COMPUTE_ON = [\"read\", \"write\"] as const;\nexport type ComputeOn = (typeof COMPUTE_ON)[number];\n\n/**\n * AGT-7 / FLD-12. A Field's sensitivity sets a ceiling a merge field can never\n * widen — and these are THE STORE'S four words, checked against its own guard.\n *\n * This list used to read `standard · sensitive · secret`, which the store has\n * never accepted: writing a Field with `sensitivity: \"standard\"` is refused\n * with \"the field <name> has to say how sensitive its values are, and it says\n * standard\". The knob `custom/field_sensitivity_levels` keys off these same\n * four words to decide which level may read and edit each one, so a package\n * carrying three different words could never have agreed with it. Corrected\n * against the live store, 2026-09-18.\n */\nexport const FIELD_SENSITIVITIES = [\"public\", \"internal\", \"confidential\", \"restricted\"] as const;\nexport type FieldSensitivity = (typeof FIELD_SENSITIVITIES)[number];\n\n/** DYN-17 / §D. Which tier a MERGE FIELD's value is delivered in. */\nexport const DELIVERIES = [\"inline\", \"on_demand\", \"auto\"] as const;\nexport type Delivery = (typeof DELIVERIES)[number];\n\n/**\n * FLD-12. WHETHER AN AGENT MAY SEE A FIELD'S VALUES, and these are the STORE'S\n * four words — not the merge field's delivery tiers.\n *\n * `Field.context_policy` used to be typed as `Delivery` here, which is a\n * different question with a different vocabulary: writing a Field with\n * `context_policy: \"inline\"` is refused with \"the field <name> has to say\n * whether an agent may see its values, and it says inline\". Delivery is about\n * HOW MUCH of a value a merge field carries into a turn; this is about WHETHER\n * the value reaches an agent at all, and conflating them let a screen offer a\n * word the store has never accepted. Corrected against the live store,\n * 2026-09-18.\n */\nexport const CONTEXT_POLICIES = [\"include\", \"summarize\", \"exclude\", \"on_request\"] as const;\nexport type ContextPolicy = (typeof CONTEXT_POLICIES)[number];\n\n/** DYN-3. The eight sources, closed. Relationships and rules are not sources. */\nexport const MERGE_FIELD_SOURCES = [\n \"literal\",\n \"record\",\n \"state\",\n \"actor\",\n \"platform\",\n \"user_input\",\n \"tool\",\n \"derived\",\n] as const;\nexport type MergeFieldSource = (typeof MERGE_FIELD_SOURCES)[number];\n\n/** DYN-4. What a merge field resolves INTO. The consumer never learns which. */\nexport const MERGE_FIELD_SEMANTIC_TYPES = [\n \"value\",\n \"reference\",\n \"resolver\",\n \"computed\",\n \"collection\",\n] as const;\nexport type MergeFieldSemanticType = (typeof MERGE_FIELD_SEMANTIC_TYPES)[number];\n\n/** DYNAMIC-VALUES §A. Any number of these; never fused into the source. */\nexport const MERGE_FIELD_MODIFIERS = [\n \"scoped\",\n \"temporal\",\n \"collection\",\n \"live\",\n \"fallback\",\n \"formatted\",\n \"required\",\n] as const;\nexport type MergeFieldModifier = (typeof MERGE_FIELD_MODIFIERS)[number];\n\n/** DYN-12. The five override policies. Exactly one, and it outranks the ladder. */\nexport const OVERRIDE_POLICIES = [\n \"must_supply\",\n \"shown_overridable\",\n \"shown_locked\",\n \"server_fixed\",\n \"derived\",\n] as const;\nexport type OverridePolicy = (typeof OVERRIDE_POLICIES)[number];\n\n/** DYNAMIC-VALUES §C. What a resolved merge field's freshness was. */\nexport const FRESHNESS = [\"live\", \"cached\", \"snapshot\"] as const;\nexport type Freshness = (typeof FRESHNESS)[number];\n\n/** REC-1. How a Table shows itself. */\nexport const TABLE_DISPLAYS = [\"list\", \"grid\", \"board\", \"calendar\", \"timeline\"] as const;\nexport type TableDisplay = (typeof TABLE_DISPLAYS)[number];\n","// src/aggregate.ts — @ai-matrx/records\n//\n// THE EIGHTH VERB (AGT-N-8). `custom.record_aggregate` groups, buckets, filters\n// and measures INSIDE the read door's own query: the aggregate node sits above\n// the join to `custom.query_visible_ids`, so a chart is computed over the rows\n// this principal may see and the rest are never fetched at all.\n//\n// That is why a chart in this platform is not \"read everything, then sum in the\n// browser\". Summing in the browser would either read rows a person may not see\n// or quietly under-count them, and both of those are a screen telling a lie.\n\n/** The measures the store offers. Asked of `custom.agg_operations()` at run time too. */\nexport type AggregateOperation = \"count\" | \"sum\" | \"avg\" | \"min\" | \"max\";\n\n/** The periods a date Field can be bucketed into (`custom.agg_buckets()`). */\nexport type AggregateBucket = \"day\" | \"week\" | \"month\" | \"quarter\" | \"year\";\n\n/** One measure. `count` counts rows and needs no Field; the rest read one. */\nexport interface AggregateMeasure {\n op: AggregateOperation;\n /** The Field's key. Required for every operation except `count`. */\n key?: string;\n}\n\n/**\n * One row of an aggregate: which group it is, what each measure came to, and\n * how many records it was worked out from. The measure keys are the store's\n * own (`count`, `sum_amount`, `avg_amount`, …), never renamed on the way out.\n */\nexport interface AggregateRow {\n groups: Record<string, string | null>;\n measures: Record<string, number | null>;\n row_count: number;\n}\n\n/** The measure key the store answers with, so a chart can find its own series. */\nexport function measureKey(measure: AggregateMeasure): string {\n return measure.op === \"count\" ? \"count\" : `${measure.op}_${measure.key ?? \"\"}`;\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACUA,mBAMO;;;ACgEA,SAAS,aACd,QAC8C;AAC9C,SAAO,OAAO,OAAO;AACvB;AAEO,IAAM,KAAK,CAAI,UAA+B,EAAE,IAAI,MAAM,KAAK;AAC/D,IAAM,MAAM,CAAI,WAA2C,EAAE,IAAI,OAAO,MAAM;;;ACxE9E,IAAM,mBAAmB,CAAC,QAAQ,SAAS,QAAQ;AAGnD,IAAM,sBAAsB,EAAC,MAAM,SAAS,QAAQ,UAAU,SAAS,OAAM;AAE7E,IAAM,kBAAkB,CAAC,eAAe,QAAQ,WAAW,aAAa;AAExE,IAAM,sBAAsB,CAAC,OAAO,OAAO,SAAS,gBAAgB,MAAM,UAAU,cAAc,OAAO;AAEzG,IAAM,uBAAuB,CAAC,SAAS,OAAO,MAAM;AAEpD,IAAM,gBAAgB,CAAC,SAAS,OAAO;AAEvC,IAAM,YAAY,CAAC,YAAY,WAAW,cAAc,eAAe;AAEvE,IAAM,yBAAyB,CAAC,cAAc,UAAU,SAAS,OAAO,cAAc,eAAe,QAAQ;AAG7G,IAAM,qBAAqB;AAAA,EAChC,EAAE,aAAa,cAAc,UAAU,YAAY,SAAS,mFAAmF;AAAA,EAC/I,EAAE,aAAa,YAAY,UAAU,SAAS,SAAS,uHAAkH;AAAA,EACzK,EAAE,aAAa,YAAY,UAAU,SAAS,SAAS,sHAAiH;AAAA,EACxK,EAAE,aAAa,SAAS,UAAU,QAAQ,SAAS,6BAA6B;AAAA,EAChF,EAAE,aAAa,WAAW,UAAU,WAAW,SAAS,oFAAoF;AAAA,EAC5I,EAAE,aAAa,UAAU,UAAU,WAAW,SAAS,oHAA+G;AAAA,EACtK,EAAE,aAAa,UAAU,UAAU,YAAY,SAAS,iEAAiE;AAAA,EACzH,EAAE,aAAa,gBAAgB,UAAU,QAAQ,SAAS,uFAAkF;AAAA,EAC5I,EAAE,aAAa,WAAW,UAAU,SAAS,SAAS,uDAAuD;AAAA,EAC7G,EAAE,aAAa,SAAS,UAAU,QAAQ,SAAS,6BAA6B;AAAA,EAChF,EAAE,aAAa,UAAU,UAAU,WAAW,SAAS,uIAAkI;AAAA,EACzL,EAAE,aAAa,UAAU,UAAU,QAAQ,SAAS,wDAAwD;AAAA,EAC5G,EAAE,aAAa,OAAO,UAAU,QAAQ,SAAS,oFAAoF;AACvI;AAGO,IAAM,kBAAkB;AAAA,EAC7B,EAAE,MAAM,OAAO,cAAc,UAAU;AAAA,EACvC,EAAE,MAAM,OAAO,cAAc,UAAU;AAAA,EACvC,EAAE,MAAM,UAAU,cAAc,UAAU;AAAA,EAC1C,EAAE,MAAM,SAAS,cAAc,UAAU;AAAA,EACzC,EAAE,MAAM,OAAO,cAAc,UAAU;AAAA,EACvC,EAAE,MAAM,MAAM,cAAc,UAAU;AAAA,EACtC,EAAE,MAAM,SAAS,cAAc,UAAU;AAAA,EACzC,EAAE,MAAM,MAAM,cAAc,UAAU;AAAA,EACtC,EAAE,MAAM,OAAO,cAAc,UAAU;AAAA,EACvC,EAAE,MAAM,UAAU,cAAc,UAAU;AAAA,EAC1C,EAAE,MAAM,MAAM,cAAc,UAAU;AAAA,EACtC,EAAE,MAAM,OAAO,cAAc,UAAU;AAAA,EACvC,EAAE,MAAM,WAAW,cAAc,UAAU;AAAA,EAC3C,EAAE,MAAM,eAAe,cAAc,aAAa;AAAA,EAClD,EAAE,MAAM,OAAO,cAAc,UAAU;AAAA,EACvC,EAAE,MAAM,MAAM,cAAc,UAAU;AAAA,EACtC,EAAE,MAAM,OAAO,cAAc,UAAU;AAAA,EACvC,EAAE,MAAM,MAAM,cAAc,UAAU;AAAA,EACtC,EAAE,MAAM,gBAAgB,cAAc,gBAAgB;AAAA,EACtD,EAAE,MAAM,WAAW,cAAc,UAAU;AAAA,EAC3C,EAAE,MAAM,OAAO,cAAc,UAAU;AACzC;AAGO,IAAM,gBAAgB;AAAA,EAC3B,EAAE,IAAI,wCAAwC,MAAM,QAAQ;AAAA,EAC5D,EAAE,IAAI,wCAAwC,MAAM,OAAO;AAAA,EAC3D,EAAE,IAAI,wCAAwC,MAAM,cAAc;AAAA,EAClE,EAAE,IAAI,wCAAwC,MAAM,eAAe;AAAA,EACnE,EAAE,IAAI,wCAAwC,MAAM,SAAS;AAAA,EAC7D,EAAE,IAAI,wCAAwC,MAAM,eAAe;AAAA,EACnE,EAAE,IAAI,wCAAwC,MAAM,OAAO;AAAA,EAC3D,EAAE,IAAI,wCAAwC,MAAM,QAAQ;AAAA,EAC5D,EAAE,IAAI,wCAAwC,MAAM,SAAS;AAC/D;AAOO,IAAM,cAAc;AAAA,EACzB,EAAE,MAAM,mBAAmB,MAAM,IAAI,SAAS,UAAU,UAAU,UAAU;AAAA,EAC5E,EAAE,MAAM,oBAAoB,MAAM,IAAI,SAAS,UAAU,UAAU,UAAU;AAAA,EAC7E,EAAE,MAAM,cAAc,MAAM,mBAAmB,SAAS,QAAQ,UAAU,UAAU;AAAA,EACpF,EAAE,MAAM,iBAAiB,MAAM,uEAAuE,SAAS,SAAS,UAAU,UAAU;AAAA,EAC5I,EAAE,MAAM,kBAAkB,MAAM,cAAc,SAAS,QAAQ,UAAU,UAAU;AAAA,EACnF,EAAE,MAAM,eAAe,MAAM,IAAI,SAAS,UAAU,UAAU,UAAU;AAAA,EACxE,EAAE,MAAM,eAAe,MAAM,0LAA0L,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC5P,EAAE,MAAM,kBAAkB,MAAM,sIAAsI,SAAS,WAAW,UAAU,UAAU;AAAA,EAC9M,EAAE,MAAM,eAAe,MAAM,uOAAuO,SAAS,SAAS,UAAU,UAAU;AAAA,EAC1S,EAAE,MAAM,kBAAkB,MAAM,IAAI,SAAS,UAAU,UAAU,UAAU;AAAA,EAC3E,EAAE,MAAM,WAAW,MAAM,oQAAoQ,SAAS,QAAQ,UAAU,UAAU;AAAA,EAClU,EAAE,MAAM,6BAA6B,MAAM,IAAI,SAAS,UAAU,UAAU,UAAU;AAAA,EACtF,EAAE,MAAM,yBAAyB,MAAM,+HAA+H,SAAS,WAAW,UAAU,UAAU;AAAA,EAC9M,EAAE,MAAM,qBAAqB,MAAM,sGAAsG,SAAS,yIAAyI,UAAU,UAAU;AAAA,EAC/S,EAAE,MAAM,iBAAiB,MAAM,cAAc,SAAS,QAAQ,UAAU,UAAU;AAAA,EAClF,EAAE,MAAM,mBAAmB,MAAM,kEAAkE,SAAS,WAAW,UAAU,UAAU;AAAA,EAC3I,EAAE,MAAM,gBAAgB,MAAM,gMAAgM,SAAS,QAAQ,UAAU,UAAU;AAAA,EACnQ,EAAE,MAAM,cAAc,MAAM,gDAAgD,SAAS,QAAQ,UAAU,UAAU;AAAA,EACjH,EAAE,MAAM,qBAAqB,MAAM,iIAAiI,SAAS,QAAQ,UAAU,UAAU;AAAA,EACzM,EAAE,MAAM,gBAAgB,MAAM,4EAA4E,SAAS,4BAA4B,UAAU,UAAU;AAAA,EACnK,EAAE,MAAM,kBAAkB,MAAM,6FAA6F,SAAS,WAAW,UAAU,UAAU;AAAA,EACrK,EAAE,MAAM,oBAAoB,MAAM,+PAA+P,SAAS,qCAAqC,UAAU,UAAU;AAAA,EACnW,EAAE,MAAM,qBAAqB,MAAM,2CAA2C,SAAS,WAAW,UAAU,UAAU;AAAA,EACtH,EAAE,MAAM,qBAAqB,MAAM,sDAAsD,SAAS,2GAA2G,UAAU,UAAU;AAAA,EACjO,EAAE,MAAM,cAAc,MAAM,gIAAgI,SAAS,QAAQ,UAAU,UAAU;AAAA,EACjM,EAAE,MAAM,qBAAqB,MAAM,kFAAkF,SAAS,uBAAuB,UAAU,UAAU;AAAA,EACzK,EAAE,MAAM,2BAA2B,MAAM,uCAAuC,SAAS,QAAQ,UAAU,UAAU;AAAA,EACrH,EAAE,MAAM,4BAA4B,MAAM,oDAAoD,SAAS,QAAQ,UAAU,UAAU;AAAA,EACnI,EAAE,MAAM,qBAAqB,MAAM,uCAAuC,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC/G,EAAE,MAAM,cAAc,MAAM,mFAAmF,SAAS,UAAU,UAAU,UAAU;AAAA,EACtJ,EAAE,MAAM,gBAAgB,MAAM,gFAAgF,SAAS,oBAAoB,UAAU,UAAU;AAAA,EAC/J,EAAE,MAAM,eAAe,MAAM,IAAI,SAAS,QAAQ,UAAU,UAAU;AAAA,EACtE,EAAE,MAAM,uBAAuB,MAAM,IAAI,SAAS,2DAA2D,UAAU,UAAU;AAAA,EACjI,EAAE,MAAM,uBAAuB,MAAM,4CAA4C,SAAS,+HAA+H,UAAU,UAAU;AAAA,EAC7O,EAAE,MAAM,qBAAqB,MAAM,4CAA4C,SAAS,0CAA0C,UAAU,UAAU;AAAA,EACtJ,EAAE,MAAM,6BAA6B,MAAM,6CAA6C,SAAS,WAAW,UAAU,UAAU;AAAA,EAChI,EAAE,MAAM,qBAAqB,MAAM,0BAA0B,SAAS,kDAAkD,UAAU,UAAU;AAAA,EAC5I,EAAE,MAAM,sBAAsB,MAAM,gBAAgB,SAAS,QAAQ,UAAU,UAAU;AAAA,EACzF,EAAE,MAAM,wBAAwB,MAAM,IAAI,SAAS,wDAAwD,UAAU,UAAU;AAAA,EAC/H,EAAE,MAAM,oBAAoB,MAAM,+CAA+C,SAAS,UAAU,UAAU,UAAU;AAAA,EACxH,EAAE,MAAM,oBAAoB,MAAM,uCAAuC,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC9G,EAAE,MAAM,qBAAqB,MAAM,8CAA8C,SAAS,kFAAkF,UAAU,UAAU;AAAA,EAChM,EAAE,MAAM,iBAAiB,MAAM,oGAAoG,SAAS,SAAS,UAAU,UAAU;AAAA,EACzK,EAAE,MAAM,kBAAkB,MAAM,4CAA4C,SAAS,SAAS,UAAU,UAAU;AAAA,EAClH,EAAE,MAAM,oBAAoB,MAAM,eAAe,SAAS,QAAQ,UAAU,UAAU;AAAA,EACtF,EAAE,MAAM,oBAAoB,MAAM,qCAAqC,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC5G,EAAE,MAAM,mBAAmB,MAAM,gEAAgE,SAAS,QAAQ,UAAU,UAAU;AAAA,EACtI,EAAE,MAAM,uBAAuB,MAAM,gEAAgE,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC1I,EAAE,MAAM,oBAAoB,MAAM,+IAA+I,SAAS,QAAQ,UAAU,UAAU;AAAA,EACtN,EAAE,MAAM,YAAY,MAAM,4HAA4H,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC3L,EAAE,MAAM,0BAA0B,MAAM,sBAAsB,SAAS,WAAW,UAAU,UAAU;AAAA,EACtG,EAAE,MAAM,wBAAwB,MAAM,+CAA+C,SAAS,SAAS,UAAU,UAAU;AAAA,EAC3H,EAAE,MAAM,uBAAuB,MAAM,6KAA6K,SAAS,QAAQ,UAAU,UAAU;AAAA,EACvP,EAAE,MAAM,qBAAqB,MAAM,4GAA4G,SAAS,QAAQ,UAAU,UAAU;AAAA,EACpL,EAAE,MAAM,qBAAqB,MAAM,IAAI,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC5E,EAAE,MAAM,cAAc,MAAM,eAAe,SAAS,mDAAmD,UAAU,UAAU;AAAA,EAC3H,EAAE,MAAM,yBAAyB,MAAM,wDAAwD,SAAS,4CAA4C,UAAU,UAAU;AAAA,EACxK,EAAE,MAAM,kBAAkB,MAAM,yEAAyE,SAAS,kCAAkC,UAAU,UAAU;AAAA,EACxK,EAAE,MAAM,mCAAmC,MAAM,IAAI,SAAS,cAAc,UAAU,UAAU;AAAA,EAChG,EAAE,MAAM,0BAA0B,MAAM,4DAA4D,SAAS,UAAU,UAAU,UAAU;AAAA,EAC3I,EAAE,MAAM,iBAAiB,MAAM,4CAA4C,SAAS,eAAe,UAAU,UAAU;AAAA,EACvH,EAAE,MAAM,2BAA2B,MAAM,qIAAqI,SAAS,QAAQ,UAAU,UAAU;AAAA,EACnN,EAAE,MAAM,wBAAwB,MAAM,wHAAwH,SAAS,QAAQ,UAAU,UAAU;AAAA,EACnM,EAAE,MAAM,0BAA0B,MAAM,IAAI,SAAS,SAAS,UAAU,UAAU;AAAA,EAClF,EAAE,MAAM,0BAA0B,MAAM,2DAA2D,SAAS,QAAQ,UAAU,UAAU;AAAA,EACxI,EAAE,MAAM,uBAAuB,MAAM,+DAA+D,SAAS,WAAW,UAAU,UAAU;AAAA,EAC5I,EAAE,MAAM,oBAAoB,MAAM,2CAA2C,SAAS,6DAA6D,UAAU,UAAU;AAAA,EACvK,EAAE,MAAM,mBAAmB,MAAM,IAAI,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC1E,EAAE,MAAM,iBAAiB,MAAM,2CAA2C,SAAS,uBAAuB,UAAU,UAAU;AAAA,EAC9H,EAAE,MAAM,eAAe,MAAM,sBAAsB,SAAS,gCAAgC,UAAU,UAAU;AAAA,EAChH,EAAE,MAAM,kBAAkB,MAAM,IAAI,SAAS,QAAQ,UAAU,UAAU;AAAA,EACzE,EAAE,MAAM,iBAAiB,MAAM,oGAAoG,SAAS,SAAS,UAAU,UAAU;AAAA,EACzK,EAAE,MAAM,kBAAkB,MAAM,0GAA0G,SAAS,WAAW,UAAU,UAAU;AAAA,EAClL,EAAE,MAAM,qBAAqB,MAAM,gMAAgM,SAAS,WAAW,UAAU,UAAU;AAAA,EAC3Q,EAAE,MAAM,uBAAuB,MAAM,6DAA6D,SAAS,SAAS,UAAU,UAAU;AAAA,EACxI,EAAE,MAAM,YAAY,MAAM,kEAAkE,SAAS,QAAQ,UAAU,UAAU;AAAA,EACjI,EAAE,MAAM,kBAAkB,MAAM,IAAI,SAAS,qFAAqF,UAAU,UAAU;AAAA,EACtJ,EAAE,MAAM,iBAAiB,MAAM,yEAAyE,SAAS,mCAAmC,UAAU,UAAU;AAAA,EACxK,EAAE,MAAM,qBAAqB,MAAM,gBAAgB,SAAS,SAAS,UAAU,UAAU;AAAA,EACzF,EAAE,MAAM,wBAAwB,MAAM,qEAAqE,SAAS,SAAS,UAAU,UAAU;AAAA,EACjJ,EAAE,MAAM,mBAAmB,MAAM,4BAA4B,SAAS,UAAU,UAAU,UAAU;AAAA,EACpG,EAAE,MAAM,sBAAsB,MAAM,8EAA8E,SAAS,WAAW,UAAU,UAAU;AAAA,EAC1J,EAAE,MAAM,oBAAoB,MAAM,0IAA0I,SAAS,QAAQ,UAAU,UAAU;AAAA,EACjN,EAAE,MAAM,eAAe,MAAM,sFAAsF,SAAS,iLAAiL,UAAU,UAAU;AAAA,EACjU,EAAE,MAAM,iBAAiB,MAAM,oDAAoD,SAAS,QAAQ,UAAU,UAAU;AAAA,EACxH,EAAE,MAAM,gBAAgB,MAAM,oDAAoD,SAAS,2CAA2C,UAAU,UAAU;AAAA,EAC1J,EAAE,MAAM,aAAa,MAAM,yJAAyJ,SAAS,SAAS,UAAU,UAAU;AAAA,EAC1N,EAAE,MAAM,iBAAiB,MAAM,6LAA6L,SAAS,QAAQ,UAAU,UAAU;AAAA,EACjQ,EAAE,MAAM,kBAAkB,MAAM,iKAAiK,SAAS,QAAQ,UAAU,UAAU;AAAA,EACtO,EAAE,MAAM,kBAAkB,MAAM,+FAA+F,SAAS,SAAS,UAAU,UAAU;AAAA,EACrK,EAAE,MAAM,iBAAiB,MAAM,mBAAmB,SAAS,QAAQ,UAAU,UAAU;AAAA,EACvF,EAAE,MAAM,sBAAsB,MAAM,IAAI,SAAS,WAAW,UAAU,UAAU;AAAA,EAChF,EAAE,MAAM,mBAAmB,MAAM,0HAA0H,SAAS,oJAAoJ,UAAU,UAAU;AAAA,EAC5U,EAAE,MAAM,qBAAqB,MAAM,+FAA+F,SAAS,WAAW,UAAU,UAAU;AAAA,EAC1K,EAAE,MAAM,sBAAsB,MAAM,4HAA4H,SAAS,QAAQ,UAAU,UAAU;AAAA,EACrM,EAAE,MAAM,sBAAsB,MAAM,2DAA2D,SAAS,WAAW,UAAU,UAAU;AAAA,EACvI,EAAE,MAAM,qBAAqB,MAAM,IAAI,SAAS,WAAW,UAAU,UAAU;AAAA,EAC/E,EAAE,MAAM,cAAc,MAAM,+DAA+D,SAAS,WAAW,UAAU,UAAU;AAAA,EACnI,EAAE,MAAM,gBAAgB,MAAM,4CAA4C,SAAS,8FAA8F,UAAU,UAAU;AAAA,EACrM,EAAE,MAAM,gBAAgB,MAAM,gEAAgE,SAAS,SAAS,UAAU,UAAU;AAAA,EACpI,EAAE,MAAM,iBAAiB,MAAM,gIAAgI,SAAS,SAAS,UAAU,UAAU;AAAA,EACrM,EAAE,MAAM,iBAAiB,MAAM,6KAA6K,SAAS,SAAS,UAAU,UAAU;AAAA,EAClP,EAAE,MAAM,yBAAyB,MAAM,IAAI,SAAS,QAAQ,UAAU,UAAU;AAAA,EAChF,EAAE,MAAM,kBAAkB,MAAM,4EAA4E,SAAS,SAAS,UAAU,UAAU;AAAA,EAClJ,EAAE,MAAM,kBAAkB,MAAM,2EAA2E,SAAS,SAAS,UAAU,UAAU;AAAA,EACjJ,EAAE,MAAM,0BAA0B,MAAM,kHAAkH,SAAS,SAAS,UAAU,UAAU;AAAA,EAChM,EAAE,MAAM,iBAAiB,MAAM,6FAA6F,SAAS,SAAS,UAAU,UAAU;AAAA,EAClK,EAAE,MAAM,mBAAmB,MAAM,2EAA2E,SAAS,SAAS,UAAU,UAAU;AAAA,EAClJ,EAAE,MAAM,iBAAiB,MAAM,8FAA8F,SAAS,SAAS,UAAU,UAAU;AAAA,EACnK,EAAE,MAAM,kBAAkB,MAAM,gFAAgF,SAAS,SAAS,UAAU,UAAU;AAAA,EACtJ,EAAE,MAAM,oBAAoB,MAAM,uFAAuF,SAAS,SAAS,UAAU,UAAU;AAAA,EAC/J,EAAE,MAAM,kBAAkB,MAAM,gFAAgF,SAAS,SAAS,UAAU,UAAU;AAAA,EACtJ,EAAE,MAAM,iBAAiB,MAAM,iGAAiG,SAAS,SAAS,UAAU,UAAU;AAAA,EACtK,EAAE,MAAM,2BAA2B,MAAM,oDAAoD,SAAS,8DAA8D,UAAU,UAAU;AAAA,EACxL,EAAE,MAAM,sBAAsB,MAAM,IAAI,SAAS,wDAAwD,UAAU,UAAU;AAAA,EAC7H,EAAE,MAAM,eAAe,MAAM,sBAAsB,SAAS,QAAQ,UAAU,UAAU;AAAA,EACxF,EAAE,MAAM,iBAAiB,MAAM,4CAA4C,SAAS,sLAAsL,UAAU,UAAU;AAAA,EAC9R,EAAE,MAAM,0BAA0B,MAAM,IAAI,SAAS,UAAU,UAAU,UAAU;AAAA,EACnF,EAAE,MAAM,oBAAoB,MAAM,IAAI,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC3E,EAAE,MAAM,iBAAiB,MAAM,4DAA4D,SAAS,SAAS,UAAU,UAAU;AAAA,EACjI,EAAE,MAAM,iBAAiB,MAAM,2CAA2C,SAAS,SAAS,UAAU,UAAU;AAAA,EAChH,EAAE,MAAM,sBAAsB,MAAM,IAAI,SAAS,WAAW,UAAU,UAAU;AAAA,EAChF,EAAE,MAAM,mBAAmB,MAAM,2CAA2C,SAAS,iLAAiL,UAAU,UAAU;AAAA,EAC1R,EAAE,MAAM,sBAAsB,MAAM,sBAAsB,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC/F,EAAE,MAAM,sBAAsB,MAAM,2CAA2C,SAAS,qDAAqD,UAAU,UAAU;AAAA,EACjK,EAAE,MAAM,uBAAuB,MAAM,sBAAsB,SAAS,QAAQ,UAAU,UAAU;AAAA,EAChG,EAAE,MAAM,uBAAuB,MAAM,uDAAuD,SAAS,QAAQ,UAAU,UAAU;AAAA,EACjI,EAAE,MAAM,sBAAsB,MAAM,6DAA6D,SAAS,QAAQ,UAAU,UAAU;AAAA,EACtI,EAAE,MAAM,iBAAiB,MAAM,2EAA2E,SAAS,cAAc,UAAU,UAAU;AAAA,EACrJ,EAAE,MAAM,uBAAuB,MAAM,sBAAsB,SAAS,QAAQ,UAAU,UAAU;AAAA,EAChG,EAAE,MAAM,4BAA4B,MAAM,IAAI,SAAS,WAAW,UAAU,UAAU;AAAA,EACtF,EAAE,MAAM,oBAAoB,MAAM,kEAAkE,SAAS,UAAU,UAAU,UAAU;AAAA,EAC3I,EAAE,MAAM,sBAAsB,MAAM,2IAA2I,SAAS,+FAA+F,UAAU,UAAU;AAAA,EAC3S,EAAE,MAAM,wBAAwB,MAAM,uMAAuM,SAAS,iFAAiF,UAAU,UAAU;AAAA,EAC3V,EAAE,MAAM,iBAAiB,MAAM,oFAAoF,SAAS,WAAW,UAAU,UAAU;AAAA,EAC3J,EAAE,MAAM,mBAAmB,MAAM,IAAI,SAAS,oCAAoC,UAAU,UAAU;AAAA,EACtG,EAAE,MAAM,4BAA4B,MAAM,IAAI,SAAS,4DAA4D,UAAU,UAAU;AAAA,EACvI,EAAE,MAAM,wBAAwB,MAAM,IAAI,SAAS,WAAW,UAAU,UAAU;AAAA,EAClF,EAAE,MAAM,qBAAqB,MAAM,IAAI,SAAS,WAAW,UAAU,UAAU;AAAA,EAC/E,EAAE,MAAM,mBAAmB,MAAM,IAAI,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC1E,EAAE,MAAM,sBAAsB,MAAM,uMAAuM,SAAS,SAAS,UAAU,UAAU;AAAA,EACjR,EAAE,MAAM,wBAAwB,MAAM,4FAA4F,SAAS,gEAAgE,UAAU,UAAU;AAAA,EAC/N,EAAE,MAAM,gBAAgB,MAAM,oLAAoL,SAAS,wCAAwC,UAAU,UAAU;AAAA,EACvR,EAAE,MAAM,oBAAoB,MAAM,sMAAsM,SAAS,WAAW,UAAU,UAAU;AAAA,EAChR,EAAE,MAAM,qBAAqB,MAAM,8PAA8P,SAAS,qCAAqC,UAAU,UAAU;AAAA,EACnW,EAAE,MAAM,qBAAqB,MAAM,2CAA2C,SAAS,cAAc,UAAU,UAAU;AAAA,EACzH,EAAE,MAAM,qBAAqB,MAAM,sGAAsG,SAAS,cAAc,UAAU,UAAU;AAAA,EACpL,EAAE,MAAM,kBAAkB,MAAM,0CAA0C,SAAS,kDAAkD,UAAU,UAAU;AAAA,EACzJ,EAAE,MAAM,+BAA+B,MAAM,IAAI,SAAS,qCAAqC,UAAU,UAAU;AAAA,EACnH,EAAE,MAAM,eAAe,MAAM,2EAA2E,SAAS,SAAS,UAAU,UAAU;AAAA,EAC9I,EAAE,MAAM,gBAAgB,MAAM,mIAAmI,SAAS,0DAA0D,UAAU,UAAU;AAAA,EACxP,EAAE,MAAM,oBAAoB,MAAM,oQAAoQ,SAAS,yDAAyD,UAAU,UAAU;AAAA,EAC5X,EAAE,MAAM,wBAAwB,MAAM,4CAA4C,SAAS,4FAA4F,UAAU,UAAU;AAAA,EAC3M,EAAE,MAAM,iBAAiB,MAAM,4CAA4C,SAAS,4BAA4B,UAAU,UAAU;AAAA,EACpI,EAAE,MAAM,mBAAmB,MAAM,8DAA8D,SAAS,QAAQ,UAAU,UAAU;AAAA,EACpI,EAAE,MAAM,kBAAkB,MAAM,4CAA4C,SAAS,QAAQ,UAAU,UAAU;AAAA,EACjH,EAAE,MAAM,iBAAiB,MAAM,6GAA6G,SAAS,WAAW,UAAU,UAAU;AAAA,EACpL,EAAE,MAAM,iBAAiB,MAAM,4CAA4C,SAAS,SAAS,UAAU,UAAU;AAAA,EACjH,EAAE,MAAM,2BAA2B,MAAM,4CAA4C,SAAS,oMAAoM,UAAU,UAAU;AAAA,EACtT,EAAE,MAAM,gBAAgB,MAAM,yDAAyD,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC5H,EAAE,MAAM,gBAAgB,MAAM,6DAA6D,SAAS,QAAQ,UAAU,UAAU;AAAA,EAChI,EAAE,MAAM,4BAA4B,MAAM,uEAAuE,SAAS,SAAS,UAAU,UAAU;AAAA,EACvJ,EAAE,MAAM,wBAAwB,MAAM,sCAAsC,SAAS,SAAS,UAAU,UAAU;AAAA,EAClH,EAAE,MAAM,oBAAoB,MAAM,4DAA4D,SAAS,cAAc,UAAU,UAAU;AAAA,EACzI,EAAE,MAAM,yBAAyB,MAAM,IAAI,SAAS,wBAAwB,UAAU,UAAU;AAAA,EAChG,EAAE,MAAM,kBAAkB,MAAM,gFAAgF,SAAS,UAAU,UAAU,UAAU;AAAA,EACvJ,EAAE,MAAM,uBAAuB,MAAM,4CAA4C,SAAS,SAAS,UAAU,UAAU;AAAA,EACvH,EAAE,MAAM,cAAc,MAAM,qCAAqC,SAAS,QAAQ,UAAU,UAAU;AAAA,EACtG,EAAE,MAAM,uBAAuB,MAAM,IAAI,SAAS,SAAS,UAAU,UAAU;AAAA,EAC/E,EAAE,MAAM,gBAAgB,MAAM,gEAAgE,SAAS,SAAS,UAAU,UAAU;AAAA,EACpI,EAAE,MAAM,gBAAgB,MAAM,4DAA4D,SAAS,SAAS,UAAU,UAAU;AAAA,EAChI,EAAE,MAAM,gBAAgB,MAAM,4CAA4C,SAAS,SAAS,UAAU,UAAU;AAAA,EAChH,EAAE,MAAM,yBAAyB,MAAM,2EAA2E,SAAS,kCAAkC,UAAU,UAAU;AAAA,EACjL,EAAE,MAAM,aAAa,MAAM,6FAA6F,SAAS,SAAS,UAAU,UAAU;AAAA,EAC9J,EAAE,MAAM,kBAAkB,MAAM,2CAA2C,SAAS,QAAQ,UAAU,UAAU;AAAA,EAChH,EAAE,MAAM,oBAAoB,MAAM,2CAA2C,SAAS,QAAQ,UAAU,UAAU;AAAA,EAClH,EAAE,MAAM,kBAAkB,MAAM,IAAI,SAAS,QAAQ,UAAU,UAAU;AAAA,EACzE,EAAE,MAAM,gBAAgB,MAAM,0CAA0C,SAAS,uBAAuB,UAAU,UAAU;AAAA,EAC5H,EAAE,MAAM,mBAAmB,MAAM,4DAA4D,SAAS,SAAS,UAAU,UAAU;AAAA,EACnI,EAAE,MAAM,mBAAmB,MAAM,IAAI,SAAS,kDAAkD,UAAU,UAAU;AAAA,EACpH,EAAE,MAAM,YAAY,MAAM,+FAA+F,SAAS,SAAS,UAAU,UAAU;AAAA,EAC/J,EAAE,MAAM,cAAc,MAAM,kBAAkB,SAAS,WAAW,UAAU,UAAU;AAAA,EACtF,EAAE,MAAM,aAAa,MAAM,IAAI,SAAS,UAAU,UAAU,UAAU;AAAA,EACtE,EAAE,MAAM,gBAAgB,MAAM,0CAA0C,SAAS,WAAW,UAAU,UAAU;AAAA,EAChH,EAAE,MAAM,gBAAgB,MAAM,wCAAwC,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC3G,EAAE,MAAM,uBAAuB,MAAM,mBAAmB,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC7F,EAAE,MAAM,kBAAkB,MAAM,mCAAmC,SAAS,QAAQ,UAAU,UAAU;AAAA,EACxG,EAAE,MAAM,yBAAyB,MAAM,kFAAkF,SAAS,SAAS,UAAU,UAAU;AAAA,EAC/J,EAAE,MAAM,iBAAiB,MAAM,IAAI,SAAS,UAAU,UAAU,UAAU;AAAA,EAC1E,EAAE,MAAM,iBAAiB,MAAM,6CAA6C,SAAS,WAAW,UAAU,UAAU;AAAA,EACpH,EAAE,MAAM,kBAAkB,MAAM,2CAA2C,SAAS,SAAS,UAAU,UAAU;AAAA,EACjH,EAAE,MAAM,iBAAiB,MAAM,wCAAwC,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC5G,EAAE,MAAM,mBAAmB,MAAM,IAAI,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC1E,EAAE,MAAM,wBAAwB,MAAM,IAAI,SAAS,WAAW,UAAU,UAAU;AAAA,EAClF,EAAE,MAAM,wBAAwB,MAAM,0BAA0B,SAAS,WAAW,UAAU,UAAU;AAAA,EACxG,EAAE,MAAM,eAAe,MAAM,8FAA8F,SAAS,uBAAuB,UAAU,UAAU;AAAA,EAC/K,EAAE,MAAM,iBAAiB,MAAM,2CAA2C,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC/G,EAAE,MAAM,oBAAoB,MAAM,2CAA2C,SAAS,QAAQ,UAAU,UAAU;AAAA,EAClH,EAAE,MAAM,kBAAkB,MAAM,6CAA6C,SAAS,wDAAwD,UAAU,UAAU;AAAA,EAClK,EAAE,MAAM,oCAAoC,MAAM,IAAI,SAAS,WAAW,UAAU,UAAU;AAAA,EAC9F,EAAE,MAAM,0BAA0B,MAAM,wDAAwD,SAAS,QAAQ,UAAU,UAAU;AAAA,EACrI,EAAE,MAAM,2BAA2B,MAAM,kEAAkE,SAAS,QAAQ,UAAU,UAAU;AAAA,EAChJ,EAAE,MAAM,mBAAmB,MAAM,2GAA2G,SAAS,QAAQ,UAAU,UAAU;AAAA,EACjL,EAAE,MAAM,wBAAwB,MAAM,IAAI,SAAS,UAAU,UAAU,UAAU;AAAA,EACjF,EAAE,MAAM,uBAAuB,MAAM,IAAI,SAAS,UAAU,UAAU,UAAU;AAAA,EAChF,EAAE,MAAM,qBAAqB,MAAM,gBAAgB,SAAS,WAAW,UAAU,UAAU;AAAA,EAC3F,EAAE,MAAM,0BAA0B,MAAM,gBAAgB,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC7F,EAAE,MAAM,cAAc,MAAM,wDAAwD,SAAS,oMAAoM,UAAU,UAAU;AAAA,EACrT,EAAE,MAAM,kBAAkB,MAAM,4BAA4B,SAAS,SAAS,UAAU,UAAU;AAAA,EAClG,EAAE,MAAM,wBAAwB,MAAM,oCAAoC,SAAS,4FAA4F,UAAU,UAAU;AAAA,EACnM,EAAE,MAAM,4BAA4B,MAAM,IAAI,SAAS,WAAW,UAAU,UAAU;AAAA,EACtF,EAAE,MAAM,qBAAqB,MAAM,IAAI,SAAS,sKAAsK,UAAU,UAAU;AAAA,EAC1O,EAAE,MAAM,mBAAmB,MAAM,8CAA8C,SAAS,WAAW,UAAU,UAAU;AAAA,EACvH,EAAE,MAAM,sBAAsB,MAAM,kFAAkF,SAAS,kBAAkB,UAAU,UAAU;AAAA,EACrK,EAAE,MAAM,0BAA0B,MAAM,8CAA8C,SAAS,2CAA2C,UAAU,UAAU;AAAA,EAC9J,EAAE,MAAM,uBAAuB,MAAM,2CAA2C,SAAS,WAAW,UAAU,UAAU;AAAA,EACxH,EAAE,MAAM,4BAA4B,MAAM,mDAAmD,SAAS,SAAS,UAAU,UAAU;AAAA,EACnI,EAAE,MAAM,uBAAuB,MAAM,IAAI,SAAS,iDAAiD,UAAU,UAAU;AAAA,EACvH,EAAE,MAAM,oBAAoB,MAAM,2CAA2C,SAAS,WAAW,UAAU,UAAU;AAAA,EACrH,EAAE,MAAM,kBAAkB,MAAM,wHAAwH,SAAS,SAAS,UAAU,UAAU;AAAA,EAC9L,EAAE,MAAM,mBAAmB,MAAM,2CAA2C,SAAS,yGAAyG,UAAU,UAAU;AAAA,EAClN,EAAE,MAAM,wBAAwB,MAAM,mBAAmB,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC9F,EAAE,MAAM,qBAAqB,MAAM,0CAA0C,SAAS,WAAW,UAAU,UAAU;AAAA,EACrH,EAAE,MAAM,sBAAsB,MAAM,uFAAuF,SAAS,SAAS,UAAU,UAAU;AAAA,EACjK,EAAE,MAAM,eAAe,MAAM,IAAI,SAAS,iEAAiE,UAAU,UAAU;AAAA,EAC/H,EAAE,MAAM,wBAAwB,MAAM,2CAA2C,SAAS,SAAS,UAAU,UAAU;AAAA,EACvH,EAAE,MAAM,yBAAyB,MAAM,sDAAsD,SAAS,QAAQ,UAAU,UAAU;AAAA,EAClI,EAAE,MAAM,6BAA6B,MAAM,qFAAqF,SAAS,SAAS,UAAU,UAAU;AAAA,EACtK,EAAE,MAAM,yBAAyB,MAAM,iBAAiB,SAAS,QAAQ,UAAU,UAAU;AAAA,EAC7F,EAAE,MAAM,uBAAuB,MAAM,8CAA8C,SAAS,SAAS,UAAU,UAAU;AAAA,EACzH,EAAE,MAAM,2BAA2B,MAAM,oEAAoE,SAAS,QAAQ,UAAU,UAAU;AAAA,EAClJ,EAAE,MAAM,mBAAmB,MAAM,qFAAqF,SAAS,8IAA8I,UAAU,UAAU;AACnS;AAGO,IAAM,cAAc;AAAA,EACzB,EAAE,KAAK,+BAA+B,OAAO,SAAS,MAAM,UAAU;AAAA,EACtE,EAAE,KAAK,sBAAsB,OAAO,SAAS,MAAM,UAAU;AAAA,EAC7D,EAAE,KAAK,sBAAsB,OAAO,SAAS,MAAM,UAAU;AAAA,EAC7D,EAAE,KAAK,6BAA6B,OAAO,MAAM,MAAM,UAAU;AAAA,EACjE,EAAE,KAAK,sBAAsB,OAAO,WAAW,MAAM,UAAU;AAAA,EAC/D,EAAE,KAAK,wBAAwB,OAAO,SAAS,MAAM,UAAU;AAAA,EAC/D,EAAE,KAAK,gCAAgC,OAAO,SAAS,MAAM,UAAU;AAAA,EACvE,EAAE,KAAK,8BAA8B,OAAO,SAAS,MAAM,UAAU;AAAA,EACrE,EAAE,KAAK,sBAAsB,OAAO,SAAS,MAAM,UAAU;AAAA,EAC7D,EAAE,KAAK,8BAA8B,OAAO,SAAS,MAAM,UAAU;AAAA,EACrE,EAAE,KAAK,qBAAqB,OAAO,SAAS,MAAM,UAAU;AAAA,EAC5D,EAAE,KAAK,4BAA4B,OAAO,6MAAiP,MAAM,OAAO;AAAA,EACxS,EAAE,KAAK,wBAAwB,OAAO,YAAc,MAAM,SAAS;AAAA,EACnE,EAAE,KAAK,sBAAsB,OAAO,SAAS,MAAM,UAAU;AAAA,EAC7D,EAAE,KAAK,oCAAoC,OAAO,SAAS,MAAM,UAAU;AAAA,EAC3E,EAAE,KAAK,2BAA2B,OAAO,QAAQ,MAAM,UAAU;AAAA,EACjE,EAAE,KAAK,yBAAyB,OAAO,SAAS,MAAM,UAAU;AAAA,EAChE,EAAE,KAAK,0BAA0B,OAAO,QAAQ,MAAM,UAAU;AAAA,EAChE,EAAE,KAAK,6BAA6B,OAAO,SAAS,MAAM,UAAU;AAAA,EACpE,EAAE,KAAK,kBAAkB,OAAO,SAAS,MAAM,UAAU;AAAA,EACzD,EAAE,KAAK,wBAAwB,OAAO,UAAU,MAAM,UAAU;AAAA,EAChE,EAAE,KAAK,mBAAmB,OAAO,UAAU,MAAM,UAAU;AAAA,EAC3D,EAAE,KAAK,yBAAyB,OAAO,SAAS,MAAM,UAAU;AAClE;AAQO,IAAM,sBAAsB;AAAA,EACjC,EAAE,MAAM,SAAS,WAAW,4UAA4U;AAAA,EACxW,EAAE,MAAM,SAAS,WAAW,+JAA+J;AAAA,EAC3L,EAAE,MAAM,SAAS,WAAW,gkBAAgkB;AAAA,EAC5lB,EAAE,MAAM,SAAS,WAAW,YAAY;AAAA,EACxC,EAAE,MAAM,SAAS,WAAW,4YAA4Y;AAAA,EACxa,EAAE,MAAM,SAAS,WAAW,2bAA2b;AAAA,EACvd,EAAE,MAAM,SAAS,WAAW,0EAA0E;AAAA,EACtG,EAAE,MAAM,SAAS,WAAW,ocAAoc;AAAA,EAChe,EAAE,MAAM,SAAS,WAAW,oBAAoB;AAAA,EAChD,EAAE,MAAM,SAAS,WAAW,6XAA6X;AAAA,EACzZ,EAAE,MAAM,SAAS,WAAW,+BAA+B;AAAA,EAC3D,EAAE,MAAM,SAAS,WAAW,gBAAgB;AAC9C;AAGO,IAAM,gBAAgB;AAAA,EAC3B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;;;ACp2CA,IAAM,UAAkC;AAAA,EACtC,iBAAiB;AAAA,EACjB,kBAAkB;AAAA,EAClB,eAAe;AAAA,EACf,eAAe;AAAA,EACf,qBAAqB;AAAA,EACrB,cAAc;AAAA,EACd,cACE;AAEJ;AAgBO,IAAM,eAAe;AAErB,IAAM,cAAc;AAAA;AAAA,EAEzB,qBAAqB;AAAA;AAAA,EAErB,uBAAuB;AAAA;AAAA,EAEvB,wBAAwB;AAAA;AAAA,EAExB,sBAAsB;AAAA,EACtB,sBAAsB;AAAA;AAAA,EAEtB,uBAAuB;AAAA;AAAA,EAEvB,uBAAuB;AAAA,EACvB,gBAAgB;AAAA,EAChB,mBAAmB;AAAA,EACnB,qBAAqB;AACvB;AAIA,IAAM,aAAa,IAAI,IAAY,YAAY,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC;AAE1D,SAAS,WAAW,MAAuB;AAChD,SAAO,WAAW,IAAI,IAAI;AAC5B;AAGO,SAAS,WAAW,MAA4B;AACrD,QAAM,OAAO,QAAQ,IAAI;AACzB,SAAO;AAAA,IACL,MAAM;AAAA,IACN,SACE,yCAAyC,IAAI;AAAA,IAE/C,MAAM,OACF,gBAAgB,IAAI,sJAEpB;AAAA,EAEN;AACF;AAGO,IAAM,QAAQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOnB,YAAY;AAAA,EACZ,aAAa;AAAA;AAAA;AAAA;AAAA,EAIb,iBAAiB;AAAA,EACjB,gBAAgB;AAAA,EAChB,aAAa;AAAA,EACb,cAAc;AAAA,EACd,cAAc;AAAA,EACd,eAAe;AAAA,EACf,cAAc;AAAA,EACd,uBAAuB;AAAA,EACvB,WAAW;AAAA,EACX,oBAAoB;AAAA,EACpB,qBAAqB;AAAA,EACrB,kBAAkB;AAAA,EAClB,cAAc;AAAA,EACd,cAAc;AAAA,EACd,cAAc;AAAA,EACd,eAAe;AAAA,EACf,cAAc;AAAA,EACd,cAAc;AAAA,EACd,cAAc;AAAA,EACd,gBAAgB;AAAA,EAChB,cAAc;AAAA,EACd,iBAAiB;AAAA,EACjB,aAAa;AAAA,EACb,SAAS;AAAA,EACT,gBAAgB;AAAA,EAChB,kBAAkB;AAAA,EAClB,aAAa;AAAA;AAAA;AAAA;AAAA;AAAA,EAKb,aAAa;AAAA,EACb,mBAAmB;AAAA;AAAA;AAAA,EAGnB,gBAAgB;AAAA,EAChB,eAAe;AAAA,EACf,cAAc;AAAA;AAAA;AAAA;AAAA,EAId,eAAe;AAAA;AAAA;AAAA,EAGf,aAAa;AAAA,EACb,gBAAgB;AAAA,EAChB,SAAS;AAAA,EACT,UAAU;AAAA;AAAA;AAAA;AAAA,EAIV,iBAAiB;AAAA,EACjB,eAAe;AAAA,EACf,YAAY;AAAA;AAAA;AAAA,EAGZ,kBAAkB;AAAA,EAClB,yBAAyB;AAAA;AAAA;AAAA,EAGzB,iBAAiB;AAAA,EACjB,eAAe;AAAA,EACf,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,qBAAqB;AAAA,EACrB,SAAS;AAAA,EACT,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAYpB,gBAAgB;AAAA,EAChB,iBAAiB;AAAA,EACjB,iBAAiB;AAAA;AAAA,EAEjB,WAAW;AAAA;AAAA,EAEX,aAAa;AAAA,EACb,aAAa;AAAA;AAAA;AAAA;AAAA,EAKb,YAAY;AAAA,EACZ,qBAAqB;AAAA,EACrB,yBAAyB;AAAA,EACzB,mBAAmB;AAAA;AAAA,EAEnB,qBAAqB;AAAA,EACrB,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,sBAAsB;AAAA,EACtB,uBAAuB;AAAA,EACvB,wBAAwB;AAAA,EACxB,kBAAkB;AAAA,EAClB,cAAc;AAAA,EACd,iBAAiB;AAAA,EACjB,eAAe;AAAA,EACf,gBAAgB;AAAA;AAAA;AAAA,EAIhB,gBAAgB;AAAA,EAChB,aAAa;AAAA,EACb,cAAc;AAAA,EACd,cAAc;AAAA,EACd,mBAAmB;AACrB;;;AClMA,IAAM,cAAgD;AAAA,EACpD,OAAO;AAAA,EACP,SAAS;AAAA,EACT,SAAS;AAAA,EACT,SAAS;AAAA,EACT,SAAS;AAAA,EACT,SAAS;AAAA,EACT,SAAS;AAAA,EACT,SAAS;AAAA,EACT,SAAS;AAAA,EACT,SAAS;AAAA,EACT,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA,EAKT,SAAS;AAAA;AAAA;AAAA;AAAA,EAIT,UAAU;AAAA,EACV,UAAU;AAAA,EACV,UAAU;AACZ;AAGO,IAAM,mBAAmB,OAAO,KAAK,WAAW;AAEvD,SAAS,YAAY,SAA6C;AAChE,MAAI,CAAC,QAAS,QAAO;AACrB,QAAM,UAAU,QAAQ,KAAK;AAC7B,MAAI,CAAC,QAAQ,WAAW,GAAG,KAAK,CAAC,QAAQ,WAAW,GAAG,EAAG,QAAO;AACjE,MAAI;AACF,WAAO,KAAK,MAAM,OAAO;AAAA,EAC3B,QAAQ;AACN,WAAO;AAAA,EACT;AACF;AAGO,SAAS,WAAW,OAAgB,OAA6B;AACtE,QAAM,WAAW,MAAM,QAAQ;AAC/B,QAAM,QAA0B,WAAW,YAAY,QAAQ,IAAI,WAAc;AACjF,QAAM,SAAuB;AAAA,IAC3B;AAAA,IACA,SAAS,MAAM;AAAA,IACf,GAAI,MAAM,OAAO,EAAE,MAAM,MAAM,KAAK,IAAI,CAAC;AAAA,IACzC,GAAI,WAAW,EAAE,SAAS,IAAI,CAAC;AAAA,EACjC;AACA,QAAM,SAAS,YAAY,MAAM,OAAO;AACxC,MAAI,WAAW,OAAW,QAAO,SAAS;AAC1C,MAAI,SAAS,YAAY;AAGvB,WAAO,QACJ,OAAO,OAAO,GAAG,OAAO,IAAI,MAAM,MACnC,iDAAiD,YAAY,QAAQ,SAAS,KAAK;AAAA,EAEvF;AACA,SAAO;AACT;AAGO,SAAS,iBAAiB,OAA8C;AAC7E,MAAI,MAAM,SAAS,cAAe,QAAO;AACzC,QAAM,SAAS,MAAM;AACrB,MACE,CAAC,UACD,OAAO,OAAO,qBAAqB,YACnC,OAAO,OAAO,oBAAoB,UAClC;AACA,WAAO;AAAA,EACT;AACA,SAAO;AAAA,IACL,kBAAkB,OAAO;AAAA,IACzB,iBAAiB,OAAO;AAAA,IACxB,kBAAkB,OAAO,oBAAoB,CAAC;AAAA,EAChD;AACF;;;ACXO,IAAM,oBAAoB;AAE1B,SAAS,UAAU,OAA+B;AACvD,QAAM,iBAAiB,MAAM,aAAa,CAAC,GAAG,IAAI,CAAC,gBAAgB;AAAA,IACjE,MAAM;AAAA,IACN,WAAW,WAAW;AAAA,IACtB,SAAS,WAAW,QAAQ;AAAA,EAC9B,EAAE;AACF,QAAM,iBAAiB,MAAM,YAAY,CAAC,GAAG,IAAI,CAAC,eAAe;AAAA,IAC/D,MAAM;AAAA,IACN,WAAW,UAAU;AAAA,IACrB,OAAO,UAAU;AAAA,EACnB,EAAE;AACF,SAAO;AAAA,IACL;AAAA,IACA;AAAA,IACA,MAAM;AAAA,MACJ,UAAU,MAAM;AAAA,MAChB,gBAAgB,MAAM,kBAAkB;AAAA,MACxC,YAAY,MAAM,cAAc;AAAA,MAChC,MAAM,MAAM,QAAQ;AAAA,MACpB,aAAa,MAAM,eAAe;AAAA,MAClC,SAAS;AAAA,QACP,QAAQ,MAAM,SAAS,UAAU;AAAA,QACjC,WAAW,MAAM,SAAS,aAAa;AAAA,MACzC;AAAA,MACA,OAAO,MAAM,SAAS;AAAA,MACtB,QAAQ,MAAM,UAAU;AAAA,IAC1B;AAAA,IACA,YAAY,cAAc,SAAS,cAAc,SAAS;AAAA,EAC5D;AACF;AAGO,SAAS,aAAa,MAAwB;AACnD,MAAI,KAAK,WAAW,EAAG,QAAO,CAAC;AAC/B,QAAM,CAAC,OAAO,GAAG,IAAI,IAAI;AACzB,QAAM,SAAS,KAAK,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,CAAC;AACzC,SAAO,MAAM,OAAO,CAAC,OAAO,OAAO,MAAM,CAAC,QAAQ,IAAI,IAAI,EAAE,CAAC,CAAC;AAChE;;;ACxEA,IAAM,iBAAiB;AAEvB,SAAS,KAAK,QAAyC;AACrD,SACE,OAAO,YACN,CAAC;AAAA;AAAA;AAAA,IAGA,QAAQ,MAAM,uBAAuB,EAAE,KAAK,KAAK,EAAE,IAAI,WAAM,EAAE,OAAO,GAAG,EAAE,OAAO,KAAK,EAAE,IAAI,MAAM,EAAE,EAAE;AAAA;AAE7G;AAqSO,SAAS,oBAAoB,QAAsC;AACxE,QAAM,SAAS,OAAO,UAAU;AAChC,QAAM,MAAM,OAAO;AACnB,QAAM,SAAS,KAAK,MAAM;AAE1B,iBAAe,SACb,MACA,MACA,OAC2B;AAC3B,QAAI,CAAC,WAAW,IAAI,GAAG;AACrB,YAAM,UAAU,WAAW,IAAI;AAC/B,aAAO,EAAE,MAAM,QAAQ,MAAM,SAAS,QAAQ,SAAS,GAAI,QAAQ,OAAO,EAAE,MAAM,QAAQ,KAAK,IAAI,CAAC,GAAI,MAAM,CAAC;AAC/G,aAAO,IAAI,OAAO;AAAA,IACpB;AASA,UAAM,WAAW,MAAM,OAAO,WAAW,IAAI,GAAG,IAAI,IAAI,MAAM,EAAE,OAAO,CAAC;AACxE,QAAI,SAAS,OAAO;AAClB,YAAM,UAAU,WAAW,SAAS,OAAO,KAAK;AAChD,aAAO,EAAE,MAAM,QAAQ,MAAM,SAAS,QAAQ,SAAS,GAAI,QAAQ,OAAO,EAAE,MAAM,QAAQ,KAAK,IAAI,CAAC,GAAI,MAAM,CAAC;AAC/G,aAAO,IAAI,OAAO;AAAA,IACpB;AACA,WAAO,GAAG,SAAS,IAAS;AAAA,EAC9B;AAYA,iBAAe,UACb,MACA,MACA,OAC2B;AAC3B,UAAM,WAAW,MAAM,OAAO,WAAW,IAAI,MAAM,MAAM,EAAE,QAAQ,aAAa,CAAC;AACjF,QAAI,SAAS,OAAO;AAClB,YAAM,UAAU,WAAW,SAAS,OAAO,KAAK;AAChD,aAAO,EAAE,MAAM,QAAQ,MAAM,SAAS,QAAQ,SAAS,GAAI,QAAQ,OAAO,EAAE,MAAM,QAAQ,KAAK,IAAI,CAAC,GAAI,MAAM,CAAC;AAC/G,aAAO,IAAI,OAAO;AAAA,IACpB;AACA,WAAO,GAAG,SAAS,IAAS;AAAA,EAC9B;AASA,WAAS,OAAO,UAA4F;AAC1G,UAAM,MAAO,YAAY,CAAC;AAC1B,UAAM,SAAU,IAAI,WAAW,CAAC;AAChC,UAAM,SAAyB,CAAC;AAChC,eAAW,CAAC,KAAK,KAAK,KAAK,OAAO,QAAQ,GAAG,GAAG;AAC9C,UAAI,QAAQ,UAAW;AACvB,aAAO,GAAG,IAAI;AAAA,IAChB;AACA,WAAO,EAAE,UAAU,QAAQ,OAAO;AAAA,EACpC;AAEA,iBAAe,WAAW,UAAqD;AAC7E,WAAO;AAAA,MACL,MAAM;AAAA,MACN,EAAE,mBAAmB,KAAK,aAAa,SAAS;AAAA,MAChD;AAAA,IACF;AAAA,EACF;AAEA,QAAM,SAAwB;AAAA,IAC5B;AAAA,IAEA,MAAM,YAAY,EAAE,UAAU,KAAK,GAAG;AACpC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,YAAY,UAAU,QAAQ,KAAK;AAAA,QAC7D;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,aAAa,EAAE,WAAW,OAAO,gBAAgB,GAAG;AACxD,YAAM,SAAS,MAAM;AAAA,QACnB,MAAM;AAAA,QACN;AAAA,UACE,mBAAmB;AAAA,UACnB,aAAa;AAAA,UACb,SAAS;AAAA,UACT,GAAI,oBAAoB,SAAY,CAAC,IAAI,EAAE,oBAAoB,gBAAgB;AAAA,QACjF;AAAA,QACA;AAAA,MACF;AACA,aAAO;AAAA,IACT;AAAA,IAEA,MAAM,aAAa,EAAE,UAAU,GAAG;AAChC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,aAAa,UAAU;AAAA,QACjD;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,cAAc,EAAE,UAAU,GAAG;AACjC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,aAAa,UAAU;AAAA,QACjD;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,WAAW,EAAE,WAAW,eAAe,MAAM,GAAG;AAMpD,YAAM,OAAO,MAAM;AAAA,QACjB,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,aAAa,UAAU;AAAA,QACjD;AAAA,MACF;AACA,UAAI,CAAC,KAAK,GAAI,QAAO,IAAI,KAAK,KAAK;AACnC,YAAM,EAAE,UAAU,OAAO,IAAI,OAAO,KAAK,IAAI;AAE7C,UAAI,WAAmC,CAAC;AACxC,UAAI,cAAc;AAChB,cAAM,aAAa,MAAM;AAAA,UACvB,MAAM;AAAA,UACN,EAAE,mBAAmB,KAAK,aAAa,UAAU;AAAA,UACjD;AAAA,QACF;AACA,YAAI,CAAC,WAAW,GAAI,QAAO,IAAI,WAAW,KAAK;AAC/C,mBAAW,WAAW,QAAQ,CAAC;AAAA,MACjC;AACA,aAAO,GAAG,EAAE,WAAW,UAAU,QAAQ,SAAS,CAAC;AAAA,IACrD;AAAA,IAEA,MAAM,KAAK,EAAE,UAAU,QAAQ,IAAI,SAAS,EAAE,GAAG;AAC/C,YAAM,OAAO,MAAM;AAAA,QACjB,MAAM;AAAA,QACN;AAAA,UACE,mBAAmB;AAAA,UACnB,YAAY;AAAA,UACZ,SAAS;AAAA,UACT,UAAU;AAAA,QACZ;AAAA,QACA;AAAA,MACF;AACA,UAAI,CAAC,KAAK,GAAI,QAAO,IAAI,KAAK,KAAK;AACnC,YAAM,QAAmB,KAAK,QAAQ,CAAC,GAAG,IAAI,CAAC,QAAQ;AACrD,cAAM,EAAE,UAAU,OAAO,IAAI,OAAO,IAAI,QAAQ;AAChD,eAAO,EAAE,IAAI,IAAI,IAAI,UAAU,OAAO,IAAI,OAAO,OAAO;AAAA,MAC1D,CAAC;AAID,aAAO,GAAG,EAAE,MAAM,OAAO,KAAK,CAAC;AAAA,IACjC;AAAA,IAEA,MAAM,MAAM,OAAO;AACjB,YAAM,OAAO,UAAU,KAAK;AAC5B,YAAM,OAAiB,CAAC;AACxB,iBAAW,QAAQ,KAAK,eAAe;AACrC,cAAM,SAAS,MAAM;AAAA,UACnB,MAAM;AAAA,UACN,EAAE,mBAAmB,KAAK,aAAa,KAAK,WAAW,WAAW,KAAK,QAAQ;AAAA,UAC/E;AAAA,QACF;AACA,YAAI,CAAC,OAAO,GAAI,QAAO,IAAI,OAAO,KAAK;AACvC,aAAK;AAAA,WACF,OAAO,QAAQ,CAAC,GAAG;AAAA,YAAI,CAAC,QACvB,OAAO,QAAQ,WAAW,MAAO,IAAmC;AAAA,UACtE;AAAA,QACF;AAAA,MACF;AACA,iBAAW,QAAQ,KAAK,eAAe;AACrC,cAAM,SAAS,MAAM;AAAA,UACnB,MAAM;AAAA,UACN;AAAA,YACE,mBAAmB;AAAA,YACnB,YAAY,KAAK,KAAK;AAAA,YACtB,aAAa,KAAK;AAAA,YAClB,SAAS,KAAK;AAAA,UAChB;AAAA,UACA;AAAA,QACF;AACA,YAAI,CAAC,OAAO,GAAI,QAAO,IAAI,OAAO,KAAK;AACvC,aAAK;AAAA,WACF,OAAO,QAAQ,CAAC,GAAG;AAAA,YAAI,CAAC,QACvB,OAAO,QAAQ,WAAW,MAAO,IAAgC;AAAA,UACnE;AAAA,QACF;AAAA,MACF;AAEA,YAAM,MAAM,KAAK,aAAa,aAAa,IAAI,IAAI;AACnD,UAAI,QAAQ,QAAQ,IAAI,WAAW,GAAG;AACpC,eAAO,GAAG,EAAE,MAAM,CAAC,GAAG,OAAO,EAAE,CAAC;AAAA,MAClC;AASA,UAAI,KAAK,KAAK,MAAM;AAClB,cAAM,QAAQ,KAAK,KAAK,KAAK,UAAU,UACnC,EAAE,YAAY,KAAK,KAAK,KAAK,GAAG,MAAM,GAAG,EAAE,EAAE,IAC7C,EAAE,eAAe,KAAK,KAAK,KAAK,GAAG;AACvC,YAAI,QAAQ,MAAM;AAChB,gBAAM,UAAU,MAAM,QAAQ;AAAA,YAC5B,IAAI,MAAM,GAAG,KAAK,KAAK,KAAK,EAAE;AAAA,cAAI,CAAC,OACjC;AAAA,gBACE,MAAM;AAAA,gBACN,EAAE,mBAAmB,KAAK,aAAa,IAAI,GAAG,MAAM;AAAA,gBACpD;AAAA,cACF,EAAE,KAAK,CAAC,YAAY,EAAE,IAAI,OAAO,EAAE;AAAA,YACrC;AAAA,UACF;AACA,gBAAMA,QAAkB,CAAC;AACzB,qBAAW,EAAE,IAAI,OAAO,KAAK,SAAS;AACpC,gBAAI,CAAC,OAAO,GAAI,QAAO,IAAI,OAAO,KAAK;AAGvC,gBAAI,OAAO,SAAS,KAAM;AAC1B,kBAAM,EAAE,UAAU,OAAO,IAAI,OAAO,OAAO,IAAI;AAC/C,YAAAA,MAAK,KAAK,EAAE,IAAI,UAAU,OAAO,UAAU,OAAO,CAAC;AAAA,UACrD;AACA,iBAAO,GAAG,EAAE,MAAAA,OAAM,OAAOA,MAAK,OAAO,CAAC;AAAA,QACxC;AACA,cAAM,OAAO,MAAM;AAAA,UACjB,MAAM;AAAA,UACN;AAAA,YACE,mBAAmB;AAAA,YACnB,YAAY,KAAK,KAAK;AAAA,YACtB,GAAG;AAAA,YACH,SAAS,KAAK,KAAK;AAAA,YACnB,UAAU,KAAK,KAAK;AAAA,UACtB;AAAA,UACA;AAAA,QACF;AACA,YAAI,CAAC,KAAK,GAAI,QAAO,IAAI,KAAK,KAAK;AACnC,cAAM,QAAmB,KAAK,QAAQ,CAAC,GACpC,OAAO,CAAC,QAAQ,IAAI,SAAS,IAAI,EACjC,IAAI,CAAC,QAAQ;AACZ,gBAAM,EAAE,UAAU,OAAO,IAAI,OAAO,IAAI,IAAI;AAC5C,iBAAO,EAAE,IAAI,IAAI,WAAW,UAAU,OAAO,UAAU,OAAO;AAAA,QAChE,CAAC;AACH,eAAO,GAAG,EAAE,MAAM,OAAO,KAAK,CAAC;AAAA,MACjC;AAKA,UAAI,QAAQ,MAAM;AAChB,cAAM,UAAU,MAAM,QAAQ;AAAA,UAC5B,IAAI,MAAM,GAAG,KAAK,KAAK,KAAK,EAAE;AAAA,YAAI,CAAC,OACjC;AAAA,cACE,MAAM;AAAA,cACN,EAAE,mBAAmB,KAAK,aAAa,GAAG;AAAA,cAC1C;AAAA,YACF,EAAE,KAAK,CAAC,YAAY,EAAE,IAAI,OAAO,EAAE;AAAA,UACrC;AAAA,QACF;AACA,cAAM,OAAkB,CAAC;AACzB,mBAAW,EAAE,IAAI,OAAO,KAAK,SAAS;AACpC,cAAI,CAAC,OAAO,IAAI;AAGd,gBAAI,OAAO,MAAM,aAAa,QAAS;AACvC,mBAAO,IAAI,OAAO,KAAK;AAAA,UACzB;AACA,gBAAM,EAAE,UAAU,OAAO,IAAI,OAAO,OAAO,IAAI;AAC/C,eAAK,KAAK,EAAE,IAAI,UAAU,OAAO,UAAU,OAAO,CAAC;AAAA,QACrD;AACA,eAAO,GAAG,EAAE,MAAM,OAAO,KAAK,OAAO,CAAC;AAAA,MACxC;AAEA,aAAO,OAAO,KAAK;AAAA,QACjB,UAAU,KAAK,KAAK;AAAA,QACpB,OAAO,KAAK,KAAK;AAAA,QACjB,QAAQ,KAAK,KAAK;AAAA,MACpB,CAAC;AAAA,IACH;AAAA,IAEA,MAAM,YAAY;AAShB,YAAM,SAAS,MAAM,SAAe,MAAM,eAAe,CAAC,GAAG,kBAAkB;AAC/E,UAAI,CAAC,OAAO,GAAI,QAAO,IAAI,OAAO,KAAK;AACvC,YAAM,OAAO,MAAM;AAAA,QACjB,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,YAAY,OAAO,MAAM,SAAS,KAAK,UAAU,EAAE;AAAA,QAC7E;AAAA,MACF;AACA,UAAI,CAAC,KAAK,GAAI,QAAO,IAAI,KAAK,KAAK;AACnC,YAAM,UAAU,KAAK,QAAQ,CAAC,GAAG,IAAI,CAAC,QAAQ;AAC5C,cAAM,EAAE,SAAS,IAAI,OAAO,IAAI,QAAQ;AAExC,eAAO,EAAE,GAAI,UAAsC,IAAI,IAAI,IAAI,iBAAiB,IAAI;AAAA,MACtF,CAAC;AACD,aAAO,KAAK,CAAC,GAAG,OAAO,EAAE,QAAQ,IAAI,cAAc,EAAE,QAAQ,EAAE,CAAC;AAChE,aAAO,GAAG,MAAM;AAAA,IAClB;AAAA,IAEA,MAAM,OAAO,EAAE,UAAU,WAAW,GAAG;AAIrC,YAAM,aAAa,MAAM;AAAA,QACvB,MAAM;AAAA,QACN;AAAA,UACE,mBAAmB;AAAA,UACnB,YAAY;AAAA,UACZ,GAAI,eAAe,SAAY,CAAC,IAAI,EAAE,eAAe,WAAW;AAAA,QAClE;AAAA,QACA;AAAA,MACF;AACA,UAAI,CAAC,WAAW,GAAI,QAAO,IAAI,WAAW,KAAK;AAC/C,YAAM,OAAO,WAAW,QAAQ,CAAC;AACjC,aAAO;AAAA,QACL,KAAK,IAAI,CAAC,SAAS,EAAE,IAAI,IAAI,IAAI,GAAI,IAAI,KAAgB,EAAW;AAAA,MACtE;AAAA,IACF;AAAA,IAEA,MAAM,aAAa,EAAE,SAAS,GAAG;AAC/B,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,YAAY,SAAS;AAAA,QAC/C;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,cAAc,EAAE,SAAS,GAAG;AAChC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,YAAY,SAAS;AAAA,QAC/C;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,aAAa,EAAE,MAAM,OAAO,GAAG;AACnC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,QAAQ,EAAE,GAAG,MAAM,WAAW,OAAO,EAAE;AAAA,QACjE;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,iBAAiB;AACrB,aAAO,SAAe,MAAM,gBAAgB,CAAC,GAAG,gBAAgB;AAAA,IAClE;AAAA,IAEA,MAAM,gBAAgB;AACpB,aAAO,SAAe,MAAM,eAAe,CAAC,GAAG,eAAe;AAAA,IAChE;AAAA,IAEA,MAAM,eAAe;AACnB,aAAO,SAAe,MAAM,cAAc,CAAC,GAAG,cAAc;AAAA,IAC9D;AAAA,IAEA,MAAM,YAAY,EAAE,QAAQ,GAAG;AAC7B,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,WAAW,QAAQ;AAAA,QAC7C;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,eAAe,EAAE,SAAS,UAAU,GAAG;AAC3C,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,WAAW,SAAS,aAAa,UAAU;AAAA,QACrE;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,QAAQ,EAAE,SAAS,QAAQ,QAAQ,GAAG;AAC1C,aAAO;AAAA,QACL,MAAM;AAAA,QACN;AAAA,UACE,mBAAmB;AAAA,UACnB,WAAW;AAAA,UACX,UAAU;AAAA,UACV,GAAI,YAAY,SAAY,CAAC,IAAI,EAAE,WAAW,QAAQ;AAAA,QACxD;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,SAAS,EAAE,MAAM,QAAQ,QAAQ,GAAG;AACxC,aAAO;AAAA,QACL,MAAM;AAAA,QACN;AAAA,UACE,mBAAmB;AAAA,UACnB,QAAQ;AAAA,UACR,UAAU;AAAA,UACV,GAAI,YAAY,SAAY,CAAC,IAAI,EAAE,WAAW,QAAQ;AAAA,QACxD;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,gBAAgB,EAAE,UAAU,SAAS,UAAU,QAAQ,QAAQ,MAAM,GAAG;AAC5E,aAAO;AAAA,QACL,MAAM;AAAA,QACN;AAAA,UACE,mBAAmB;AAAA,UACnB,YAAY;AAAA,UACZ,YAAY,WAAW,CAAC;AAAA,UACxB,YAAY,YAAY,CAAC;AAAA,UACzB,UAAU,UAAU;AAAA,UACpB,UAAU,UAAU,CAAC;AAAA,UACrB,SAAS,SAAS;AAAA,QACpB;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,gBAAgB;AACpB,aAAO,SAAmB,MAAM,eAAe,CAAC,GAAG,eAAe;AAAA,IACpE;AAAA,IAEA,MAAM,aAAa;AACjB,aAAO,SAAmB,MAAM,YAAY,CAAC,GAAG,YAAY;AAAA,IAC9D;AAAA,IAEA,MAAM,iBAAiB,MAAM;AAC3B,aAAO;AAAA,QACL,MAAM;AAAA,QACN;AAAA,UACE,mBAAmB;AAAA,UACnB,iBAAiB,MAAM,iBAAiB;AAAA,UACxC,WAAW,MAAM,WAAW;AAAA,QAC9B;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,0BAA0B;AAC9B,aAAO,SAAmB,MAAM,yBAAyB,CAAC,GAAG,yBAAyB;AAAA,IACxF;AAAA,IAEA,MAAM,gBAAgB,EAAE,UAAU,MAAM,MAAM,YAAY,GAAG;AAC3D,aAAO;AAAA,QACL,MAAM;AAAA,QACN;AAAA,UACE,mBAAmB;AAAA,UACnB,YAAY;AAAA,UACZ,QAAQ;AAAA,UACR,QAAQ;AAAA,UACR,eAAe,eAAe;AAAA,QAChC;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,cAAc,EAAE,aAAa,UAAU,GAAG;AAC9C,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,eAAe,aAAa,aAAa,UAAU;AAAA,QAC7E;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,kBAAkB,EAAE,aAAa,UAAU,GAAG;AAClD,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,eAAe,aAAa,aAAa,UAAU;AAAA,QAC7E;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,UAAU,EAAE,KAAK,GAAG;AACxB,aAAO,SAAqB,MAAM,WAAW,EAAE,QAAQ,KAAK,GAAG,WAAW;AAAA,IAC5E;AAAA,IAEA,MAAM,oBAAoB,EAAE,UAAU,KAAK,GAAG;AAC5C,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,YAAY,UAAU,QAAQ,KAAK;AAAA,QAC7D;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,QAAQ,EAAE,WAAW,WAAW,aAAa,eAAe,GAAG;AACnE,aAAO;AAAA,QACL,MAAM;AAAA,QACN;AAAA,UACE,mBAAmB;AAAA,UACnB,aAAa;AAAA,UACb,aAAa;AAAA,UACb,eAAe;AAAA,UACf,kBAAkB,kBAAkB;AAAA,QACtC;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,aAAa,EAAE,SAAS,GAAG;AAC/B,YAAM,WAAW,MAAM,OAAO,WAC3B,OAAO,MAAM,EACb,KAAK,cAAc,EACnB,OAAO,GAAG,EACV,GAAG,mBAAmB,GAAG,EACzB,GAAG,oBAAoB,QAAQ,EAC/B,MAAM,MAAM;AACf,UAAI,SAAS,OAAO;AAClB,cAAM,UAAU,WAAW,SAAS,OAAO,cAAc;AACzD,eAAO,EAAE,MAAM,QAAQ,MAAM,SAAS,QAAQ,SAAS,GAAI,QAAQ,OAAO,EAAE,MAAM,QAAQ,KAAK,IAAI,CAAC,GAAI,OAAO,eAAe,CAAC;AAC/H,eAAO,IAAI,OAAO;AAAA,MACpB;AACA,aAAO,GAAI,SAAS,QAAQ,CAAC,CAAsB;AAAA,IACrD;AAAA,IAEA,MAAM,WAAW,EAAE,UAAU,GAAG;AAC9B,YAAM,WAAW,MAAM,OAAO,WAC3B,OAAO,MAAM,EACb,KAAK,YAAY,EACjB,OAAO,GAAG,EACV,GAAG,mBAAmB,GAAG,EACzB,GAAG,aAAa,SAAS,EACzB,GAAG,cAAc,IAAI,EACrB,MAAM,eAAe,EAAE,WAAW,MAAM,CAAC;AAC5C,UAAI,SAAS,OAAO;AAClB,cAAM,UAAU,WAAW,SAAS,OAAO,YAAY;AACvD,eAAO,EAAE,MAAM,QAAQ,MAAM,SAAS,QAAQ,SAAS,GAAI,QAAQ,OAAO,EAAE,MAAM,QAAQ,KAAK,IAAI,CAAC,GAAI,OAAO,aAAa,CAAC;AAC7H,eAAO,IAAI,OAAO;AAAA,MACpB;AACA,aAAO,GAAI,SAAS,QAAQ,CAAC,CAAoB;AAAA,IACnD;AAAA,IAEA,MAAM,cAAc,EAAE,UAAU,GAAG;AACjC,YAAM,WAAW,MAAM,OAAO,WAC3B,OAAO,MAAM,EACb,KAAK,eAAe,EACpB,OAAO,GAAG,EACV,GAAG,mBAAmB,GAAG,EACzB,GAAG,aAAa,SAAS,EACzB,GAAG,cAAc,IAAI,EACrB,MAAM,aAAa,EAAE,WAAW,MAAM,CAAC;AAC1C,UAAI,SAAS,OAAO;AAClB,cAAM,UAAU,WAAW,SAAS,OAAO,eAAe;AAC1D,eAAO,EAAE,MAAM,QAAQ,MAAM,SAAS,QAAQ,SAAS,GAAI,QAAQ,OAAO,EAAE,MAAM,QAAQ,KAAK,IAAI,CAAC,GAAI,OAAO,gBAAgB,CAAC;AAChI,eAAO,IAAI,OAAO;AAAA,MACpB;AACA,aAAO,GAAI,SAAS,QAAQ,CAAC,CAAuB;AAAA,IACtD;AAAA,IAEA,MAAM,sBAAsB,EAAE,UAAU,GAAG;AACzC,aAAO,WAAW,SAAS;AAAA,IAC7B;AAAA,IAEA,MAAM,UAAU,EAAE,UAAU,GAAG;AAC7B,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,aAAa,UAAU;AAAA,QACjD;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,mBAAmB,EAAE,aAAa,GAAG;AACzC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,gBAAgB,aAAa;AAAA,QACvD;AAAA,MACF;AAAA,IACF;AAAA;AAAA,IAGA,MAAM,eAAe,EAAE,MAAM,gBAAgB,QAAQ,aAAa,UAAU,UAAU,GAAG;AAIvF,YAAM,WAAW,MAAM;AAAA,QACrB,MAAM;AAAA,QACN;AAAA,UACE,mBAAmB;AAAA,UACnB,QAAQ;AAAA,UACR,mBAAmB;AAAA,UACnB,WAAW,UAAU;AAAA,UACrB,iBAAiB,eAAe;AAAA,UAChC,aAAa,YAAY;AAAA,UACzB,cAAc,aAAa;AAAA,QAC7B;AAAA,QACA;AAAA,MACF;AACA,UAAI,CAAC,SAAS,GAAI,QAAO;AACzB,YAAM,OAAO,SAAS,KAAK,CAAC;AAC5B,UAAI,CAAC,MAAM;AACT,eAAO,IAAI;AAAA,UACT,MAAM;AAAA,UACN,SAAS;AAAA,UACT,MAAM;AAAA,QACR,CAAC;AAAA,MACH;AACA,aAAO,GAAG,IAAI;AAAA,IAChB;AAAA,IAEA,MAAM,gBAAgB,EAAE,QAAQ,QAAQ,aAAa,GAAG;AACtD,YAAM,WAAW,MAAM;AAAA,QACrB,MAAM;AAAA,QACN,EAAE,UAAU,QAAQ,UAAU,QAAQ,iBAAiB,gBAAgB,KAAK;AAAA,QAC5E;AAAA,MACF;AACA,UAAI,CAAC,SAAS,GAAI,QAAO;AACzB,YAAM,UAAU,SAAS,KAAK,CAAC;AAC/B,UAAI,CAAC,SAAS;AACZ,eAAO,IAAI;AAAA,UACT,MAAM;AAAA,UACN,SAAS;AAAA,UACT,MAAM;AAAA,QACR,CAAC;AAAA,MACH;AACA,aAAO,GAAG,OAAO;AAAA,IACnB;AAAA,IAEA,MAAM,gBAAgB,EAAE,SAAS,GAAG;AAClC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,YAAY,SAAS;AAAA,QAC/C;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,UAAU,EAAE,QAAQ,QAAQ,SAAS,WAAW,WAAW,GAAG;AAGlE,aAAO;AAAA,QACL,MAAM;AAAA,QACN;AAAA,UACE,UAAU;AAAA,UACV,UAAU;AAAA,UACV,WAAW;AAAA,UACX,cAAc,aAAa;AAAA,UAC3B,eAAe,cAAc,CAAC;AAAA,QAChC;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,YAAY,EAAE,UAAU,WAAW,SAAS,QAAQ,WAAW,GAAG;AACtE,aAAO;AAAA,QACL,MAAM;AAAA,QACN;AAAA,UACE,mBAAmB;AAAA,UACnB,cAAc;AAAA,UACd,YAAY;AAAA,UACZ,WAAW;AAAA,UACX,UAAU,UAAU;AAAA,UACpB,eAAe,cAAc;AAAA,QAC/B;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,YAAY,EAAE,SAAS,YAAY,KAAK,GAAG;AAC/C,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,WAAW,SAAS,aAAa,UAAU;AAAA,QACrE;AAAA,MACF;AAAA,IACF;AAAA;AAAA,IAGA,MAAM,aAAa;AACjB,aAAO,SAAsB,MAAM,YAAY,CAAC,GAAG,YAAY;AAAA,IACjE;AAAA,IAEA,MAAM,oBAAoB,EAAE,MAAM,GAAG;AACnC,aAAO,SAAwB,MAAM,qBAAqB,EAAE,SAAS,MAAM,GAAG,qBAAqB;AAAA,IACrG;AAAA,IAEA,MAAM,oBAAoB,EAAE,MAAM,MAAM,GAAG;AACzC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,QAAQ,MAAM,SAAS,MAAM;AAAA,QACvD;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,wBAAwB,EAAE,aAAa,UAAU,GAAG;AACxD,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,eAAe,aAAa,aAAa,aAAa,CAAC,EAAE;AAAA,QACnF;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,kBAAkB,EAAE,YAAY,GAAG;AACvC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,eAAe,YAAY;AAAA,QACrD;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,uBAAuB,EAAE,iBAAiB,GAAG;AACjD,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,oBAAoB,iBAAiB;AAAA,QAC/D;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,cAAc,EAAE,UAAU,kBAAkB,MAAM,GAAG;AACzD,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,YAAY,UAAU,oBAAoB,gBAAgB;AAAA,QACpF;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,kBAAkB,EAAE,SAAS,GAAG;AACpC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,YAAY,SAAS;AAAA,QAC/C;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,qBAAqB,MAAM;AAC/B,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,oBAAoB,MAAM,oBAAoB,KAAK;AAAA,QACrD;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,mBAAmB,EAAE,SAAS,GAAG;AACrC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,YAAY,SAAS;AAAA,QAC/C;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,sBAAsB,EAAE,eAAe,YAAY,GAAG;AAC1D,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,iBAAiB,eAAe,eAAe,YAAY;AAAA,QACrF;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,iBAAiB,EAAE,MAAM,MAAM,OAAO,GAAG;AAC7C,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,QAAQ,MAAM,QAAQ,MAAM,WAAW,UAAU,KAAK;AAAA,QAChF;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,aAAa,EAAE,UAAU,SAAS,QAAQ,IAAI,GAAG;AACrD,aAAO;AAAA,QACL,MAAM;AAAA,QACN;AAAA,UACE,mBAAmB;AAAA,UACnB,YAAY;AAAA,UACZ,YAAY;AAAA,UACZ,UAAU;AAAA,UACV,GAAI,MAAM,EAAE,OAAO,IAAI,IAAI,CAAC;AAAA,QAC9B;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,gBAAgB,EAAE,QAAQ,GAAG;AACjC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,WAAW,QAAQ;AAAA,QAC7C;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,cAAc,EAAE,SAAS,GAAG;AAChC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,YAAY,SAAS;AAAA,QAC/C;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,eAAe,EAAE,SAAS,GAAG;AACjC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,YAAY,SAAS;AAAA,QAC/C;AAAA,MACF;AAAA,IACF;AAAA;AAAA,IAGA,MAAM,oBAAoB,MAAM;AAC9B,aAAO;AAAA,QACL,YAAY;AAAA,QACZ,EAAE,WAAW,MAAM,WAAW,KAAK;AAAA,QACnC;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,sBAAsB,MAAM;AAChC,aAAO;AAAA,QACL,YAAY;AAAA,QACZ,EAAE,WAAW,MAAM,WAAW,KAAK;AAAA,QACnC;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,uBAAuB,EAAE,cAAc,QAAQ,GAAG;AACtD,aAAO;AAAA,QACL,YAAY;AAAA,QACZ,EAAE,iBAAiB,cAAc,WAAW,WAAW,KAAK;AAAA,QAC5D;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,qBAAqB,EAAE,MAAM,cAAc,aAAa,aAAa,OAAO,GAAG;AACnF,aAAO;AAAA,QACL,YAAY;AAAA,QACZ;AAAA,UACE,QAAQ;AAAA,UACR,iBAAiB;AAAA,UACjB,eAAe;AAAA,UACf,mBAAmB;AAAA,UACnB,eAAe;AAAA,QACjB;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,qBAAqB,EAAE,KAAK,GAAG;AACnC,aAAO,UAAmB,YAAY,sBAAsB,EAAE,QAAQ,KAAK,GAAG,sBAAsB;AAAA,IACtG;AAAA,IAEA,MAAM,sBAAsB,EAAE,KAAK,GAAG;AACpC,aAAO;AAAA,QACL,YAAY;AAAA,QACZ,EAAE,QAAQ,KAAK;AAAA,QACf;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,wBAAwB;AAC5B,aAAO,UAAkB,YAAY,uBAAuB,CAAC,GAAG,uBAAuB;AAAA,IACzF;AAAA,IAEA,MAAM,eAAe,EAAE,cAAc,aAAa,eAAe,MAAM,GAAG;AACxE,aAAO;AAAA,QACL,YAAY;AAAA,QACZ;AAAA,UACE,iBAAiB;AAAA,UACjB,eAAe;AAAA,UACf,mBAAmB;AAAA,UACnB,gBAAgB;AAAA,QAClB;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,cAAc;AAClB,YAAM,UAAU,WAAW,MAAM,WAAW;AAC5C,aAAO,EAAE,MAAM,QAAQ,MAAM,SAAS,QAAQ,SAAS,GAAI,QAAQ,OAAO,EAAE,MAAM,QAAQ,KAAK,IAAI,CAAC,GAAI,OAAO,cAAc,CAAC;AAC9H,aAAO,IAAI,OAAO;AAAA,IACpB;AAAA,IAEA,MAAM,iBAAiB;AACrB,YAAM,UAAU,WAAW,MAAM,cAAc;AAC/C,aAAO,EAAE,MAAM,QAAQ,MAAM,SAAS,QAAQ,SAAS,GAAI,QAAQ,OAAO,EAAE,MAAM,QAAQ,KAAK,IAAI,CAAC,GAAI,OAAO,iBAAiB,CAAC;AACjI,aAAO,IAAI,OAAO;AAAA,IACpB;AAAA,IAEA,MAAM,eAAe;AACnB,YAAM,UAAU,WAAW,MAAM,YAAY;AAC7C,aAAO,EAAE,MAAM,QAAQ,MAAM,SAAS,QAAQ,SAAS,GAAI,QAAQ,OAAO,EAAE,MAAM,QAAQ,KAAK,IAAI,CAAC,GAAI,OAAO,eAAe,CAAC;AAC/H,aAAO,IAAI,OAAO;AAAA,IACpB;AAAA,IAEA,MAAM,eAAe;AACnB,YAAM,UAAU,WAAW,MAAM,YAAY;AAC7C,aAAO,EAAE,MAAM,QAAQ,MAAM,SAAS,QAAQ,SAAS,GAAI,QAAQ,OAAO,EAAE,MAAM,QAAQ,KAAK,IAAI,CAAC,GAAI,OAAO,eAAe,CAAC;AAC/H,aAAO,IAAI,OAAO;AAAA,IACpB;AAAA,IAEA,MAAM,aAAa,EAAE,SAAS,GAAG;AAC/B,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,YAAY,SAAS;AAAA,QAC/C;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,aAAa,EAAE,UAAU,SAAS,GAAG;AACzC,aAAO;AAAA,QACL,MAAM;AAAA,QACN,EAAE,mBAAmB,KAAK,YAAY,UAAU,YAAY,SAAS;AAAA,QACrE;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM,cAAc;AAClB,aAAO,SAAkB,MAAM,aAAa,EAAE,mBAAmB,IAAI,GAAG,aAAa;AAAA,IACvF;AAAA,EACF;AAEA,SAAO;AACT;AAOO,SAAS,gBAAgB,OAAqB,UAAsC;AACzF,QAAM,SAAS,iBAAiB,KAAK;AACrC,MAAI,CAAC,OAAQ,QAAO;AACpB,SAAO;AAAA,IACL,GAAG;AAAA,IACH,WAAW;AAAA,IACX,SAAS,MAAM;AAAA,IACf,MAAM,MAAM,QAAQ;AAAA,EACtB;AACF;;;AN7vCA,IAAM,qBAAiB,4BAAoC,IAAI;AAOxD,SAAS,gBAAgB,EAAE,QAAQ,SAAS,GAAyB;AAC1E,QAAM,aAAS;AAAA,IACb,MAAM,oBAAoB,MAAM;AAAA;AAAA;AAAA,IAGhC;AAAA,MACE,OAAO;AAAA,MACP,OAAO;AAAA,MACP,OAAO,MAAM;AAAA,MACb,OAAO,MAAM;AAAA,MACb,OAAO,MAAM;AAAA,MACb,OAAO;AAAA,MACP,OAAO;AAAA,MACP,OAAO;AAAA,MACP,OAAO;AAAA,IACT;AAAA,EACF;AACA,aAAO,4BAAc,eAAe,UAAU,EAAE,OAAO,OAAO,GAAG,QAAQ;AAC3E;AAMO,SAAS,mBAAkC;AAChD,QAAM,aAAS,yBAAW,cAAc;AACxC,MAAI,CAAC,QAAQ;AACX,UAAM,IAAI;AAAA,MACR;AAAA,IAIF;AAAA,EACF;AACA,SAAO;AACT;AAGO,SAAS,kBAAkB;AAChC,SAAO,iBAAiB,EAAE,OAAO;AACnC;;;AOzDA,IAAAC,gBAAkE;AAmBlE,SAAS,SACP,KACA,MACU;AACV,QAAM,SAAS,iBAAiB;AAChC,QAAM,CAAC,OAAO,QAAQ,QAAI;AAAA,IACxB,EAAE,MAAM,MAAM,SAAS,MAAM,OAAO,KAAK;AAAA,EAC3C;AACA,QAAM,CAAC,OAAO,QAAQ,QAAI,wBAAS,CAAC;AACpC,QAAM,YAAQ,sBAAO,IAAI;AAEzB,+BAAU,MAAM;AACd,UAAM,UAAU;AAChB,WAAO,MAAM;AACX,YAAM,UAAU;AAAA,IAClB;AAAA,EACF,GAAG,CAAC,CAAC;AAEL,+BAAU,MAAM;AACd,QAAI,YAAY;AAChB,aAAS,CAAC,OAAO,EAAE,GAAG,GAAG,SAAS,KAAK,EAAE;AACzC,SAAK,IAAI,MAAM,EAAE,KAAK,CAAC,WAAW;AAChC,UAAI,aAAa,CAAC,MAAM,QAAS;AACjC;AAAA,QACE,OAAO,KACH,EAAE,MAAM,OAAO,MAAM,SAAS,OAAO,OAAO,KAAK,IACjD,EAAE,MAAM,MAAM,SAAS,OAAO,OAAO,OAAO,MAAM;AAAA,MACxD;AAAA,IACF,CAAC;AACD,WAAO,MAAM;AACX,kBAAY;AAAA,IACd;AAAA,EAEF,GAAG,CAAC,QAAQ,OAAO,GAAG,IAAI,CAAC;AAE3B,QAAM,aAAS,2BAAY,MAAM,SAAS,CAAC,MAAM,IAAI,CAAC,GAAG,CAAC,CAAC;AAC3D,SAAO,EAAE,GAAG,OAAO,OAAO;AAC5B;AAGO,SAAS,SAAS,SAA2C;AAClE,SAAO;AAAA,IACL,OAAO,WAAW;AAChB,UAAI,CAAC,QAAS,QAAO,EAAE,IAAI,MAAM,MAAM,KAAK;AAC5C,YAAM,SAAS,MAAM,OAAO,UAAU;AACtC,UAAI,CAAC,OAAO,GAAI,QAAO;AACvB,aAAO,EAAE,IAAI,MAAM,MAAM,OAAO,KAAK,KAAK,CAAC,MAAM,EAAE,OAAO,OAAO,KAAK,KAAK;AAAA,IAC7E;AAAA,IACA,CAAC,OAAO;AAAA,EACV;AACF;AAGO,SAAS,YAA4B;AAC1C,SAAO,SAAS,CAAC,WAAW,OAAO,UAAU,GAAG,CAAC,CAAC;AACpD;AAMO,SAAS,UAAU,SAAsB,YAAqC;AACnF,SAAO;AAAA,IACL,OAAO,WAAW;AAChB,UAAI,CAAC,QAAS,QAAO,EAAE,IAAI,MAAM,MAAM,CAAC,EAAE;AAC1C,aAAO,OAAO,OAAO,EAAE,UAAU,SAAS,GAAI,eAAe,SAAY,CAAC,IAAI,EAAE,WAAW,EAAG,CAAC;AAAA,IACjG;AAAA,IACA,CAAC,SAAS,UAAU;AAAA,EACtB;AACF;AAiBO,SAAS,WAAW,SAAsB,UAA6B,CAAC,GAAoB;AACjG,QAAM,SAAS,iBAAiB;AAChC,QAAM,WAAW,QAAQ,YAAY;AACrC,QAAM,OAAO,QAAQ,QAAQ;AAK7B,QAAM,OAAO;AAAA,IACX,OAAO,MAAM;AACX,UAAI,CAAC,QAAS,QAAO,EAAE,IAAI,MAAM,MAAM,EAAE,MAAM,CAAC,GAAG,OAAO,KAAK,EAAE;AACjE,aAAO,EAAE,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,OAAO;AAAA,QACP,QAAQ,OAAO;AAAA,MACjB,CAAC;AAAA,IACH;AAAA,IACA,CAAC,SAAS,UAAU,IAAI;AAAA,EAC1B;AAEA,QAAM,WAAW,OAAO,OAAO;AAC/B,QAAM,EAAE,OAAO,IAAI;AACnB,+BAAU,MAAM;AACd,QAAI,CAAC,YAAY,CAAC,QAAS;AAG3B,WAAO,SAAS;AAAA,MACd,EAAE,iBAAiB,OAAO,OAAO,gBAAgB,UAAU,QAAQ;AAAA,MACnE,MAAM,OAAO;AAAA,IACf;AAAA,EACF,GAAG,CAAC,UAAU,SAAS,OAAO,OAAO,gBAAgB,MAAM,CAAC;AAE5D,QAAM,OAAO,QAAQ,YAAY,OAAO;AACxC,QAAM,aAAa,WACf,UACE,+DACA,iCACF;AAEJ,SAAO,EAAE,GAAG,MAAM,MAAM,WAAW;AACrC;AAGO,SAAS,UAAU,UAAuB,eAAe,OAAiC;AAC/F,SAAO;AAAA,IACL,OAAO,WAAW;AAChB,UAAI,CAAC,SAAU,QAAO,EAAE,IAAI,MAAM,MAAM,KAAK;AAC7C,aAAO,OAAO,WAAW,EAAE,WAAW,UAAU,aAAa,CAAC;AAAA,IAChE;AAAA,IACA,CAAC,UAAU,YAAY;AAAA,EACzB;AACF;AAwBO,SAAS,oBAAuC;AACrD,QAAM,SAAS,iBAAiB;AAChC,QAAM,CAAC,QAAQ,SAAS,QAAI,wBAAS,KAAK;AAC1C,QAAM,CAAC,OAAO,QAAQ,QAAI,wBAA8B,IAAI;AAC5D,QAAM,CAAC,UAAU,WAAW,QAAI,wBAA+B,IAAI;AAEnE,QAAM,UAAM;AAAA,IACV,OACE,UACA,SACsB;AACtB,gBAAU,IAAI;AACd,eAAS,IAAI;AACb,UAAI;AACF,cAAM,SAAS,MAAM,KAAK;AAC1B,YAAI,OAAO,IAAI;AACb,sBAAY,IAAI;AAChB,iBAAO,OAAO;AAAA,QAChB;AACA,iBAAS,OAAO,KAAK;AACrB,oBAAY,WAAW,gBAAgB,OAAO,OAAO,QAAQ,IAAI,IAAI;AACrE,eAAO;AAAA,MACT,UAAE;AACA,kBAAU,KAAK;AAAA,MACjB;AAAA,IACF;AAAA,IACA,CAAC;AAAA,EACH;AAEA,aAAO;AAAA,IACL,OAAO;AAAA,MACL,OAAO,CAAC,SACN,IAAI,MAAM,MAAM,OAAO,YAAY,EAAE,UAAU,KAAK,UAAU,MAAM,KAAK,KAAK,CAAC,CAAC;AAAA,MAClF,QAAQ,CAAC,SACP;AAAA,QAAI,KAAK;AAAA,QAAW,MAClB,OAAO,aAAa;AAAA,UAClB,WAAW,KAAK;AAAA,UAChB,OAAO,KAAK;AAAA,UACZ,GAAI,KAAK,oBAAoB,SAAY,CAAC,IAAI,EAAE,iBAAiB,KAAK,gBAAgB;AAAA,QACxF,CAAC;AAAA,MACH;AAAA,MACF,QAAQ,CAAC,SAAS,IAAI,KAAK,WAAW,MAAM,OAAO,aAAa,EAAE,WAAW,KAAK,UAAU,CAAC,CAAC;AAAA,MAC9F,SAAS,OAAO,SAAS;AACvB,cAAM,SAAS,MAAM,IAAI,KAAK,WAAW,MAAM,OAAO,cAAc,EAAE,WAAW,KAAK,UAAU,CAAC,CAAC;AAClG,eAAO,WAAW;AAAA,MACpB;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,eAAe,MAAM,YAAY,IAAI;AAAA,IACvC;AAAA,IACA,CAAC,QAAQ,KAAK,QAAQ,OAAO,QAAQ;AAAA,EACvC;AACF;AAOO,SAAS,cAAc,KAAoB,OAAiC;AACjF,QAAM,SAAS,iBAAiB;AAChC,QAAM,CAAC,YAAY,aAAa,QAAI,wBAAsC,IAAI;AAC9E,QAAM,WAAW,OAAO,OAAO;AAE/B,+BAAU,MAAM;AACd,QAAI,CAAC,KAAK;AACR,oBAAc,IAAI;AAClB;AAAA,IACF;AACA,QAAI,CAAC,UAAU;AACb,oBAAc;AAAA,QACZ,OAAO;AAAA,QACP,QACE,oBAAoB,GAAG;AAAA,MAG3B,CAAC;AACD;AAAA,IACF;AACA,QAAI,YAAY;AAChB,SAAK,SACF,QAAQ;AAAA,MACP,iBAAiB,OAAO,OAAO;AAAA,MAC/B,kBAAkB,CAAC,GAAG;AAAA,MACtB,GAAI,UAAU,SAAY,CAAC,IAAI,EAAE,MAAM;AAAA,IACzC,CAAC,EACA,KAAK,CAAC,WAAW;AAChB,UAAI,UAAW;AACf,YAAM,QAAS,UAA0D,CAAC;AAC1E;AAAA,QACE,MAAM,GAAG,KAAK;AAAA,UACZ,OAAO;AAAA,UACP,QAAQ,qDAAqD,GAAG;AAAA,QAClE;AAAA,MACF;AAAA,IACF,CAAC;AACH,WAAO,MAAM;AACX,kBAAY;AAAA,IACd;AAAA,EACF,GAAG,CAAC,KAAK,UAAU,OAAO,OAAO,gBAAgB,KAAK,CAAC;AAEvD,SAAO;AACT;;;AC5NO,IAAM,cAAc;AAAA,EACzB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AAIO,IAAM,gBAAgB,CAAC,YAAY,QAAQ;AAI3C,IAAM,mBAAmB,CAAC,SAAS,YAAY;AAI/C,IAAM,YAAY,CAAC,WAAW,YAAY,UAAU;AAIpD,IAAM,oBAAoB,CAAC,QAAQ,UAAU;AAI7C,IAAM,yBAAyB,CAAC,OAAO,MAAM;AAI7C,IAAM,gBAAgB,CAAC,UAAU,WAAW,SAAS,QAAQ;AAI7D,IAAM,aAAa,CAAC,QAAQ,OAAO;AAenC,IAAM,sBAAsB,CAAC,UAAU,YAAY,gBAAgB,YAAY;AAI/E,IAAM,aAAa,CAAC,UAAU,aAAa,MAAM;AAgBjD,IAAM,mBAAmB,CAAC,WAAW,aAAa,WAAW,YAAY;AAIzE,IAAM,sBAAsB;AAAA,EACjC;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AAIO,IAAM,6BAA6B;AAAA,EACxC;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AAIO,IAAM,wBAAwB;AAAA,EACnC;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AAIO,IAAM,oBAAoB;AAAA,EAC/B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AAIO,IAAM,YAAY,CAAC,QAAQ,UAAU,UAAU;AAI/C,IAAM,iBAAiB,CAAC,QAAQ,QAAQ,SAAS,YAAY,UAAU;;;AClKvE,SAAS,WAAW,SAAmC;AAC5D,SAAO,QAAQ,OAAO,UAAU,UAAU,GAAG,QAAQ,EAAE,IAAI,QAAQ,OAAO,EAAE;AAC9E;","names":["rows","import_react"]}
|
|
1
|
+
{"version":3,"sources":["../../src/react/index.ts","../../src/react/context.tsx","../../src/results.ts","../../src/store.generated.ts","../../src/core/doors.ts","../../src/core/pgError.ts","../../src/core/query.ts","../../src/core/client.ts","../../src/react/hooks.ts","../../src/vocabulary.ts","../../src/aggregate.ts"],"sourcesContent":["\"use client\";\n\n// src/react/index.ts — @ai-matrx/records\nexport { RecordsProvider, useRecordsClient, useRecordsActor, type RecordsProviderProps } from \"./context\";\nexport {\n useTable,\n useTables,\n useFields,\n useRecords,\n useRecord,\n useRecordMutation,\n useMergeField,\n type UseRecordsOptions,\n type UseRecordsState,\n type UseRecordMutation,\n} from \"./hooks\";\nexport * from \"../index\";\n","\"use client\";\n\n// src/react/context.tsx — @ai-matrx/records\n//\n// The one binding point. A host mounts `<RecordsProvider config={...}>` once and\n// every hook below reads the client from it. There is no module-level client and\n// no singleton: module-level mutable state is banned in these packages because a\n// dual-loader graph splits it, and because two organizations in two tabs must\n// never share one.\n\nimport {\n createContext,\n createElement,\n useContext,\n useMemo,\n type ReactNode,\n} from \"react\";\n\nimport type { RecordsConfig } from \"../ports\";\nimport { createRecordsClient, type RecordsClient } from \"../core/client\";\n\nconst RecordsContext = createContext<RecordsClient | null>(null);\n\nexport interface RecordsProviderProps {\n config: RecordsConfig;\n children: ReactNode;\n}\n\nexport function RecordsProvider({ config, children }: RecordsProviderProps) {\n const client = useMemo(\n () => createRecordsClient(config),\n // The identity of the organization and the actor is what makes a client a\n // different client. Rebuilding on those is the point, not a cost.\n [\n config.dataSource,\n config.organizationId,\n config.actor.actor,\n config.actor.user_id,\n config.actor.on_behalf_of,\n config.realtime,\n config.resolver,\n config.onError,\n config.schema,\n ],\n );\n return createElement(RecordsContext.Provider, { value: client }, children);\n}\n\n/**\n * The client, or a loud failure. A hook that quietly did nothing because nobody\n * mounted the provider is the silent failure this throws instead of.\n */\nexport function useRecordsClient(): RecordsClient {\n const client = useContext(RecordsContext);\n if (!client) {\n throw new Error(\n \"useRecordsClient was called outside <RecordsProvider>. Mount it once, high, with the \" +\n \"supabase client that already carries this person's session, the actor word and the \" +\n \"organization id — the store is keyed (organization_id, id) and this package never guesses \" +\n \"which organization you meant.\",\n );\n }\n return client;\n}\n\n/** For a screen that wants to show who it is acting as (AGT-N-4). */\nexport function useRecordsActor() {\n return useRecordsClient().config.actor;\n}\n","// src/results.ts — @ai-matrx/records\n//\n// THE NEVER-THROW RESULT ENVELOPE, and the refusal vocabulary behind it.\n//\n// This package's whole posture toward the store is in one sentence: THE CLIENT\n// MIRRORS THE STORE'S CONTRACT AND NEVER RE-IMPLEMENTS A RULE THE STORE\n// ENFORCES. When the store refuses, the client hands back the store's OWN\n// message, the store's OWN hint and the store's OWN SQLSTATE, under a code a\n// screen can branch on. It never rewrites the sentence, never swallows it, and\n// never invents a friendlier one — the store's refusals were written to be read\n// by a person, and a client that paraphrases them is lying about what happened.\n\nimport type { PerValueAccessWord } from \"./vocabulary\";\nimport type { Uuid } from \"./record\";\n\n/**\n * What KIND of refusal it was. The mapping from SQLSTATE to code lives in\n * `/core`, and it is checked against `STORE_REFUSAL_CODES` — the list of every\n * SQLSTATE the store's own bodies raise, generated from the live catalogue. A\n * code the store can raise and this union cannot name is a hole, and the\n * real-door suite fails on it.\n */\nexport type RecordsErrorCode =\n /** `PT409` — somebody else's write won. The record clock moved under you. */\n | \"stale_write\"\n /** `42501` — a door. Either the schema is revoked, or the store is switched off, or this principal may not pass. */\n | \"door\"\n /** `23514` — a Rule, a shape guard, or a validation the store enforces refused it. */\n | \"refused_by_rule\"\n /** `22004` / `22023` — the call itself was malformed: a missing id, a patch that is not an object. */\n | \"invalid_argument\"\n /** `02000` — the record is not here (deleted, never existed, or another organization's). */\n | \"not_found\"\n /** `23503` — something it points at is not there. */\n | \"missing_reference\"\n /** `23505` — that thing is already here. */\n | \"already_exists\"\n /** `0A000` — the store does not do this yet, and says which part. */\n | \"not_supported\"\n /** `53400` / `22012` — the store ran out of something, or the arithmetic could not be done. */\n | \"store_limit\"\n /**\n * `40001` — the visibility snapshot this connection carries is older than a\n * write the reader has already observed, so the store refused to answer at\n * all rather than hand back something they just lost. Retry on a fresh\n * connection; it is the one refusal in this list that is worth repeating.\n */\n | \"stale_read\"\n /**\n * THE DOOR THAT DOES NOT EXIST YET. Not an error condition in the database —\n * this package asked for a door that is not in the live catalogue, so it\n * refused to guess. `door_absent` always names the door and the lane that\n * owns it; it is never a silent no-op and never an empty list.\n */\n | \"door_absent\"\n /**\n * `PGRST202` / `PGRST205` — PostgREST could not find the function or the\n * schema. The database this client is pointed at is not serving the record\n * store: the schema is not exposed, or the grants are not there.\n */\n | \"store_not_served\"\n /** Anything the mapper could not place. It still carries the store's own words. */\n | \"internal\";\n\n/** A refusal, in the store's own words. */\nexport interface RecordsError {\n code: RecordsErrorCode;\n /** THE STORE'S message, verbatim. Never paraphrased. */\n message: string;\n /** THE STORE'S hint, verbatim — this is where the remedy is written. */\n hint?: string;\n /** The SQLSTATE, so a caller can be exact when a code is not exact enough. */\n sqlstate?: string;\n /** Whatever the store put in DETAIL, parsed when it was json. */\n detail?: unknown;\n}\n\nexport type RecordsResult<T> = { ok: true; data: T } | { ok: false; error: RecordsError };\n\n/** Narrowing helper for hosts compiled without `strictNullChecks`. */\nexport function isRecordsErr<T>(\n result: RecordsResult<T>,\n): result is { ok: false; error: RecordsError } {\n return result.ok === false;\n}\n\nexport const ok = <T>(data: T): RecordsResult<T> => ({ ok: true, data });\nexport const err = <T>(error: RecordsError): RecordsResult<T> => ({ ok: false, error });\n\n/**\n * A `stale_write` carries everything the screen needs to show the conflict\n * rather than a toast: which version you wrote against, which one won, and the\n * value of every field you touched as it stands now. The store builds this and\n * this type is its shape — nothing is reconstructed on the client.\n */\nexport interface StaleWriteDetail {\n expected_version: number;\n current_version: number;\n contested_fields: Record<string, unknown>;\n}\n\n/** The parsed form of a `stale_write`, for `useRecordMutation`'s conflict state. */\nexport interface WriteConflict extends StaleWriteDetail {\n record_id: Uuid;\n /** The store's own sentence — what the screen shows. */\n message: string;\n /** The store's own remedy. */\n hint: string;\n}\n\n/**\n * The structural shape of a PostgREST failure as supabase-js resolves it: a\n * PLAIN OBJECT parsed from the response body, NOT an `Error`. Reading\n * `.message` off `instanceof Error` discards the real database message on every\n * genuine failure.\n */\nexport interface PgError {\n code?: string | null;\n message: string;\n details?: string | null;\n hint?: string | null;\n}\n\n/** What the validation mirror answers: the same sentence the trigger would raise. */\nexport interface PredictedRefusal {\n /** The field key the store would name, when it names one. */\n field_key?: string;\n /** The message the store's own body would raise, word for word. */\n message: string;\n hint?: string;\n sqlstate: string;\n /**\n * Which of the store's bodies would raise it, so a reader can go and check\n * that this mirror still tells the truth.\n */\n predicted_by: string;\n}\n\n/** VAL-5 / VAL-6, named so a caller can say which word was the problem. */\nexport interface ForbiddenEnvelopeWord {\n field_key: string;\n word: PerValueAccessWord;\n}\n","// src/store.generated.ts — @ai-matrx/records\n//\n// GENERATED. Do not edit by hand: `pnpm records:generate` rewrites it from the\n// live record store, and `pnpm check:store-registry` fails the build when this\n// file and the store disagree. Every literal below was read from the database's\n// own catalogue — the vocabularies from the store's vocabulary functions, the\n// parity types from `custom.parity_field_types()`, the doors from `pg_proc`,\n// the kernel ids from the kernel rows themselves, the tokens from\n// `platform.entity_types`.\n//\n// Counts at generation: 3 actor words, 4 absence\n// reasons, 13 parity field types, 21 rule node kinds,\n// 9 kernel Tables, 238 doors, 32 knobs,\n// 1018 entity tokens.\n\nexport const ACTOR_VOCABULARY = [\"user\", \"agent\", \"system\"] as const;\n\n/** The three words the store still accepts and rewrites, and what each becomes. */\nexport const RETIRED_ACTOR_WORDS = {\"ai\": \"agent\", \"code\": \"system\", \"human\": \"user\"} as const;\n\nexport const ABSENCE_REASONS = [\"never asked\", \"none\", \"refused\", \"conflicting\"] as const;\n\nexport const VALUE_ENVELOPE_KEYS = [\"ver\", \"src\", \"actor\", \"on_behalf_of\", \"at\", \"absent\", \"alternates\", \"dated\"] as const;\n\nexport const VALUE_ALTERNATE_KEYS = [\"value\", \"src\", \"rank\"] as const;\n\nexport const STORAGE_MODES = [\"light\", \"heavy\"] as const;\n\nexport const RULE_USES = [\"validate\", \"compute\", \"membership\", \"applicability\"] as const;\n\nexport const PER_VALUE_ACCESS_WORDS = [\"visibility\", \"access\", \"share\", \"acl\", \"permission\", \"permissions\", \"secret\"] as const;\n\n/** FLD-11's parity floor, each with the behaviour it is MADE OF (FLD-1). */\nexport const PARITY_FIELD_TYPES = [\n { parity_type: \"attachment\", behavior: \"relation\", made_of: \"REC-31: a File record reached through a relation, target the kernel `File` Table\" },\n { parity_type: \"currency\", behavior: \"range\", made_of: \"FLD-N-1: a number whose UNIT is the currency and whose format is currency — on the Field, never in presentation\" },\n { parity_type: \"datetime\", behavior: \"range\", made_of: \"a range of kind date or datetime — the dated modifier says the VALUES are dated, which is a different question\" },\n { parity_type: \"email\", behavior: \"text\", made_of: \"text whose format is email\" },\n { parity_type: \"formula\", behavior: \"formula\", made_of: \"FLD-9: a declared computation, on read or on write, evaluated by custom.rule_eval\" },\n { parity_type: \"lookup\", behavior: \"formula\", made_of: \"a Value read THROUGH a relation — config.via names the relation field, config.pick the Value on the far side\" },\n { parity_type: \"member\", behavior: \"relation\", made_of: \"a person: a relation whose target is the kernel `Person` Table\" },\n { parity_type: \"multi_select\", behavior: \"list\", made_of: \"many choices from the same Table — the multi modifier, never a second behaviour\" },\n { parity_type: \"percent\", behavior: \"range\", made_of: \"a number whose unit is % and whose format is percent\" },\n { parity_type: \"phone\", behavior: \"text\", made_of: \"text whose format is phone\" },\n { parity_type: \"rollup\", behavior: \"formula\", made_of: \"an aggregate ALONG a relation — config.via, config.of, config.agg; far-side ids are taken DISTINCT, so nothing is counted twice\" },\n { parity_type: \"select\", behavior: \"list\", made_of: \"one choice from a Table shown as a list (FLD-5/FLD-6)\" },\n { parity_type: \"url\", behavior: \"text\", made_of: \"text whose format is url, with the pattern Rule that makes the format enforceable\" },\n] as const;\n\n/** The node kinds `custom.rule_eval` evaluates, and the lane that owns each. */\nexport const RULE_NODE_KINDS = [\n { node: \"add\", evaluated_by: \"W1-RULE\" },\n { node: \"and\", evaluated_by: \"W1-RULE\" },\n { node: \"concat\", evaluated_by: \"W1-RULE\" },\n { node: \"const\", evaluated_by: \"W1-RULE\" },\n { node: \"div\", evaluated_by: \"W1-RULE\" },\n { node: \"eq\", evaluated_by: \"W1-RULE\" },\n { node: \"field\", evaluated_by: \"W1-RULE\" },\n { node: \"gt\", evaluated_by: \"W1-RULE\" },\n { node: \"gte\", evaluated_by: \"W1-RULE\" },\n { node: \"length\", evaluated_by: \"W1-RULE\" },\n { node: \"lt\", evaluated_by: \"W1-RULE\" },\n { node: \"lte\", evaluated_by: \"W1-RULE\" },\n { node: \"matches\", evaluated_by: \"W1-RULE\" },\n { node: \"merge_field\", evaluated_by: \"W5-MERGE-B\" },\n { node: \"mul\", evaluated_by: \"W1-RULE\" },\n { node: \"ne\", evaluated_by: \"W1-RULE\" },\n { node: \"not\", evaluated_by: \"W1-RULE\" },\n { node: \"or\", evaluated_by: \"W1-RULE\" },\n { node: \"parent_field\", evaluated_by: \"W1-RULE-APPLY\" },\n { node: \"present\", evaluated_by: \"W1-RULE\" },\n { node: \"sub\", evaluated_by: \"W1-RULE\" },\n] as const;\n\n/** REC-27. The kernel, by name and by id, as the store holds it. */\nexport const KERNEL_TABLES = [\n { id: \"11111111-0000-4000-8000-000000000002\", name: \"Field\" },\n { id: \"11111111-0000-4000-8000-000000000006\", name: \"File\" },\n { id: \"11111111-0000-4000-8000-000000000009\", name: \"Merge Field\" },\n { id: \"11111111-0000-4000-8000-000000000004\", name: \"Organization\" },\n { id: \"11111111-0000-4000-8000-000000000005\", name: \"Person\" },\n { id: \"11111111-0000-4000-8000-000000000007\", name: \"Presentation\" },\n { id: \"11111111-0000-4000-8000-000000000003\", name: \"Rule\" },\n { id: \"11111111-0000-4000-8000-000000000001\", name: \"Table\" },\n { id: \"11111111-0000-4000-8000-000000000008\", name: \"Widget\" },\n] as const;\n\n/**\n * Every door the store actually has, with the argument list and the result the\n * catalogue reports. A client call whose door is not in this list is answered\n * `door_absent` by name — never a guess, never a silent no-op.\n */\nexport const STORE_DOORS = [\n { name: \"absence_reasons\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"actor_vocabulary\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"actor_word\", args: \"p_declared text\", returns: \"text\", security: \"invoker\" },\n { name: \"agent_context\", args: \"p_organization_id uuid, p_table_id uuid, p_limit integer DEFAULT 50\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"agg_assert_key\", args: \"p_key text\", returns: \"text\", security: \"invoker\" },\n { name: \"agg_buckets\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"agg_deliver\", args: \"p_organization_id uuid, p_rule_id uuid, p_record_id uuid, p_channel text, p_recipient_user_id uuid, p_event_key text, p_subject text, p_body text, p_payload jsonb DEFAULT '{}'::jsonb\", returns: \"uuid\", security: \"invoker\" },\n { name: \"agg_digest_run\", args: \"p_organization_id uuid, p_rule_id uuid DEFAULT NULL::uuid, p_since timestamp with time zone DEFAULT NULL::timestamp with time zone\", returns: \"integer\", security: \"invoker\" },\n { name: \"agg_explain\", args: \"p_organization_id uuid, p_table_id uuid, p_group_by jsonb DEFAULT '[]'::jsonb, p_measures jsonb DEFAULT '[]'::jsonb, p_bucket jsonb DEFAULT NULL::jsonb, p_filter jsonb DEFAULT '{}'::jsonb, p_required text DEFAULT 'viewer'::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"agg_operations\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"agg_sql\", args: \"p_organization_id uuid, p_table_id uuid, p_group_by jsonb DEFAULT '[]'::jsonb, p_measures jsonb DEFAULT '[]'::jsonb, p_bucket jsonb DEFAULT NULL::jsonb, p_filter jsonb DEFAULT '{}'::jsonb, p_limit integer DEFAULT 200, p_required text DEFAULT 'viewer'::text\", returns: \"text\", security: \"invoker\" },\n { name: \"agg_subscription_cadences\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"agg_subscription_fire\", args: \"p_organization_id uuid, p_record_id uuid, p_table_id uuid DEFAULT NULL::uuid, p_changed_field_ids jsonb DEFAULT '[]'::jsonb\", returns: \"integer\", security: \"invoker\" },\n { name: \"agg_subscriptions\", args: \"p_organization_id uuid, p_saved_view_id uuid DEFAULT NULL::uuid, p_cadence text DEFAULT NULL::text\", returns: \"TABLE(rule_id uuid, saved_view_id uuid, cadence text, schedule text, channel text, recipient_user_id uuid, event_key text, name text)\", security: \"invoker\" },\n { name: \"agg_value_sql\", args: \"p_key text\", returns: \"text\", security: \"invoker\" },\n { name: \"agg_view_admits\", args: \"p_organization_id uuid, p_saved_view_id uuid, p_record_id uuid\", returns: \"boolean\", security: \"invoker\" },\n { name: \"anon_capture\", args: \"p_organization_id uuid, p_client_key text, p_table_id uuid, p_payload jsonb, p_device text DEFAULT NULL::text, p_captured_at timestamp with time zone DEFAULT NULL::timestamp with time zone\", returns: \"uuid\", security: \"definer\" },\n { name: \"anon_clear\", args: \"p_organization_id uuid, p_submission_id uuid\", returns: \"uuid\", security: \"definer\" },\n { name: \"anon_inbound_land\", args: \"p_address text, p_secret text, p_payload jsonb, p_raw_payload jsonb DEFAULT '{}'::jsonb, p_client_key text DEFAULT NULL::text\", returns: \"uuid\", security: \"definer\" },\n { name: \"anon_publish\", args: \"p_organization_id uuid, p_form_id uuid, p_published boolean DEFAULT true\", returns: \"timestamp with time zone\", security: \"definer\" },\n { name: \"anon_rate_take\", args: \"p_organization_id uuid, p_form_id uuid, p_bucket text, p_token_id uuid DEFAULT NULL::uuid\", returns: \"integer\", security: \"definer\" },\n { name: \"anon_token_issue\", args: \"p_organization_id uuid, p_mode text, p_allowed_origins jsonb, p_form_id uuid DEFAULT NULL::uuid, p_saved_view_id uuid DEFAULT NULL::uuid, p_record_id uuid DEFAULT NULL::uuid, p_expires_at timestamp with time zone DEFAULT NULL::timestamp with time zone\", returns: \"TABLE(token_id uuid, secret text)\", security: \"definer\" },\n { name: \"anon_token_revoke\", args: \"p_organization_id uuid, p_token_id uuid\", returns: \"boolean\", security: \"definer\" },\n { name: \"anon_token_verify\", args: \"p_secret text, p_origin text, p_required_mode text\", returns: \"TABLE(token_id uuid, organization_id uuid, form_id uuid, saved_view_id uuid, record_id uuid, mode text)\", security: \"definer\" },\n { name: \"anon_write\", args: \"p_secret text, p_origin text, p_payload jsonb, p_client_key text DEFAULT NULL::text, p_raw_payload jsonb DEFAULT '{}'::jsonb\", returns: \"uuid\", security: \"definer\" },\n { name: \"applicable_fields\", args: \"p_organization_id uuid, p_table_id uuid, p_record_type text DEFAULT NULL::text\", returns: \"SETOF custom.record\", security: \"definer\" },\n { name: \"assert_client_may_change\", args: \"p_organization_id uuid, p_subject_id uuid, p_door text, p_required permission_level DEFAULT 'editor'::permission_level, p_subject_word text DEFAULT 'record'::text\", returns: \"void\", security: \"invoker\" },\n { name: \"assert_client_may_reach\", args: \"p_organization_id uuid, p_door text\", returns: \"void\", security: \"invoker\" },\n { name: \"assert_organization_wall\", args: \"p_kind text, p_organization_id uuid, p_row jsonb\", returns: \"void\", security: \"invoker\" },\n { name: \"assert_store_door\", args: \"p_organization_id uuid, p_door text\", returns: \"void\", security: \"invoker\" },\n { name: \"bump_epoch\", args: \"p_entity_type text, p_entity_id uuid, p_organization_id uuid DEFAULT NULL::uuid\", returns: \"bigint\", security: \"definer\" },\n { name: \"cache_lookup\", args: \"p_container_type text, p_container_id uuid, p_item_type text, p_item_id uuid\", returns: \"permission_level\", security: \"definer\" },\n { name: \"caller_role\", args: \"\", returns: \"name\", security: \"invoker\" },\n { name: \"client_write_grants\", args: \"\", returns: \"TABLE(role_name text, object_name text, privilege text)\", security: \"invoker\" },\n { name: \"computed_provenance\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"TABLE(field_key text, field_id uuid, value jsonb, rule_id uuid, rule_version integer, computed_at timestamp with time zone)\", security: \"invoker\" },\n { name: \"containment_chain\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"TABLE(ancestor_id uuid, depth integer)\", security: \"invoker\" },\n { name: \"containment_depth_ceiling\", args: \"p_organization_id uuid DEFAULT NULL::uuid\", returns: \"integer\", security: \"invoker\" },\n { name: \"containment_edges\", args: \"p_organization_id uuid\", returns: \"TABLE(parent_id uuid, child_id uuid, via text)\", security: \"invoker\" },\n { name: \"containment_parent\", args: \"p_data jsonb\", returns: \"uuid\", security: \"invoker\" },\n { name: \"custom_fields_tables\", args: \"\", returns: \"TABLE(token text, schema_name text, table_name text)\", security: \"invoker\" },\n { name: \"dependency_cycle\", args: \"p_organization_id uuid, p_row custom.record\", returns: \"text[]\", security: \"invoker\" },\n { name: \"dependency_label\", args: \"p_organization_id uuid, p_node text\", returns: \"text\", security: \"invoker\" },\n { name: \"derive_visibility\", args: \"p_container_type text, p_container_id uuid\", returns: \"TABLE(item_type text, item_id uuid, depth integer, max_level permission_level)\", security: \"definer\" },\n { name: \"derived_value\", args: \"p_organization_id uuid, p_record_id uuid, p_field_data jsonb, p_values jsonb DEFAULT NULL::jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"derived_values\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"doc_content_hash\", args: \"p_body text\", returns: \"text\", security: \"invoker\" },\n { name: \"doc_format_value\", args: \"p_field_data jsonb, p_value jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"doc_render_body\", args: \"p_organization_id uuid, p_template_id uuid, p_record_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"doc_render_document\", args: \"p_organization_id uuid, p_template_id uuid, p_record_id uuid\", returns: \"uuid\", security: \"definer\" },\n { name: \"doc_render_write\", args: \"p_organization_id uuid, p_template_id uuid, p_record_id uuid, p_table_id uuid, p_template_version integer, p_body text, p_content_hash text\", returns: \"uuid\", security: \"definer\" },\n { name: \"doc_sign\", args: \"p_organization_id uuid, p_render_id uuid, p_field_key text, p_signer_name text, p_signer_user_id uuid DEFAULT NULL::uuid\", returns: \"uuid\", security: \"definer\" },\n { name: \"doc_signature_field_ok\", args: \"p_field_data jsonb\", returns: \"boolean\", security: \"invoker\" },\n { name: \"doc_signature_intact\", args: \"p_organization_id uuid, p_signature_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"doc_signature_write\", args: \"p_organization_id uuid, p_render_id uuid, p_record_id uuid, p_field_key text, p_signer_name text, p_signer_user_id uuid, p_document_hash text, p_document_version integer\", returns: \"uuid\", security: \"definer\" },\n { name: \"doc_template_save\", args: \"p_organization_id uuid, p_table_id uuid, p_name text, p_body text, p_template_id uuid DEFAULT NULL::uuid\", returns: \"uuid\", security: \"definer\" },\n { name: \"doc_token_pattern\", args: \"\", returns: \"text\", security: \"invoker\" },\n { name: \"doc_tokens\", args: \"p_body text\", returns: \"TABLE(ordinal integer, raw text, field_id uuid)\", security: \"invoker\" },\n { name: \"doc_unresolved_tokens\", args: \"p_organization_id uuid, p_table_id uuid, p_body text\", returns: \"TABLE(raw text, field_id uuid, why text)\", security: \"invoker\" },\n { name: \"doors_not_deciding_the_caller\", args: \"\", returns: \"TABLE(function_name text, identity_args text)\", security: \"invoker\" },\n { name: \"doors_not_deciding_the_record\", args: \"\", returns: \"TABLE(function_name text, identity_args text, why text)\", security: \"invoker\" },\n { name: \"export_records\", args: \"p_organization_id uuid, p_table_id uuid, p_limit integer DEFAULT 1000\", returns: \"TABLE(id uuid, document jsonb)\", security: \"invoker\" },\n { name: \"external_foreign_table_findings\", args: \"\", returns: \"SETOF text\", security: \"definer\" },\n { name: \"external_history_event\", args: \"p_organization_id uuid, p_link_id uuid, p_operation text\", returns: \"bigint\", security: \"definer\" },\n { name: \"external_rows\", args: \"p_organization_id uuid, p_source_id uuid\", returns: \"SETOF jsonb\", security: \"definer\" },\n { name: \"external_source_declare\", args: \"p_organization_id uuid, p_tier text, p_connection_token text, p_external_schema text, p_external_table text, p_link_template text\", returns: \"uuid\", security: \"definer\" },\n { name: \"external_stub_upsert\", args: \"p_organization_id uuid, p_source_id uuid, p_table_id uuid, p_external_key text, p_link_url text, p_cached_title text\", returns: \"uuid\", security: \"definer\" },\n { name: \"external_tier_contract\", args: \"\", returns: \"jsonb\", security: \"definer\" },\n { name: \"external_write_through\", args: \"p_organization_id uuid, p_record_id uuid, p_patch jsonb\", returns: \"void\", security: \"definer\" },\n { name: \"external_writes_set\", args: \"p_organization_id uuid, p_source_id uuid, p_enabled boolean\", returns: \"boolean\", security: \"definer\" },\n { name: \"field_dependants\", args: \"p_organization_id uuid, p_field_id uuid\", returns: \"TABLE(kind text, dependant_id uuid, label text, how text)\", security: \"invoker\" },\n { name: \"field_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"field_options\", args: \"p_organization_id uuid, p_field_id uuid\", returns: \"SETOF custom.record\", security: \"invoker\" },\n { name: \"field_rules\", args: \"p_field_data jsonb\", returns: \"TABLE(kind text, spec jsonb)\", security: \"invoker\" },\n { name: \"file_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"formula_value\", args: \"p_organization_id uuid, p_record_id uuid, p_field_data jsonb, p_values jsonb DEFAULT NULL::jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"has_visibility\", args: \"p_user_id uuid, p_type text, p_id uuid, p_required permission_level DEFAULT 'viewer'::permission_level\", returns: \"boolean\", security: \"definer\" },\n { name: \"has_visibility_at\", args: \"p_user_id uuid, p_type text, p_id uuid, p_required permission_level DEFAULT 'viewer'::permission_level, p_organization_id uuid DEFAULT NULL::uuid, p_min_version bigint DEFAULT NULL::bigint\", returns: \"boolean\", security: \"definer\" },\n { name: \"hidden_field_notice\", args: \"p_field custom.record, p_action text DEFAULT 'read'::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"home_add\", args: \"p_organization_id uuid, p_table_id uuid, p_home_record_id uuid\", returns: \"uuid\", security: \"invoker\" },\n { name: \"home_relations\", args: \"\", returns: \"TABLE(table_id uuid, home_record_id uuid, organization_id uuid, relation_id uuid)\", security: \"invoker\" },\n { name: \"index_payload\", args: \"p_organization_id uuid, p_table_id uuid, p_limit integer DEFAULT 1000\", returns: \"TABLE(id uuid, searchable text)\", security: \"invoker\" },\n { name: \"intern_provenance\", args: \"p_data jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"io_changed_field_ids\", args: \"p_organization_id uuid, p_table_id uuid, p_old jsonb, p_new jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"io_changed_keys\", args: \"p_old jsonb, p_new jsonb\", returns: \"text[]\", security: \"invoker\" },\n { name: \"io_comment_resolve\", args: \"p_organization_id uuid, p_comment_id uuid, p_resolved boolean DEFAULT true\", returns: \"boolean\", security: \"definer\" },\n { name: \"io_comment_write\", args: \"p_organization_id uuid, p_record_id uuid, p_body text, p_anchor jsonb DEFAULT '{}'::jsonb, p_parent_comment_id uuid DEFAULT NULL::uuid\", returns: \"uuid\", security: \"definer\" },\n { name: \"io_comments\", args: \"p_organization_id uuid, p_record_id uuid, p_include_resolved boolean DEFAULT false\", returns: \"TABLE(id uuid, body text, anchor jsonb, parent_comment_id uuid, created_by uuid, created_at timestamp with time zone, resolved_at timestamp with time zone, resolved_by uuid)\", security: \"definer\" },\n { name: \"io_csv_escape\", args: \"p_value text, p_delimiter text DEFAULT ','::text\", returns: \"text\", security: \"invoker\" },\n { name: \"io_csv_parse\", args: \"p_text text, p_delimiter text DEFAULT NULL::text\", returns: \"TABLE(row_number integer, cells text[])\", security: \"invoker\" },\n { name: \"io_export\", args: \"p_organization_id uuid, p_table_id uuid, p_columns text[] DEFAULT NULL::text[], p_limit integer DEFAULT 10000, p_required text DEFAULT 'viewer'::text\", returns: \"jsonb\", security: \"definer\" },\n { name: \"io_export_csv\", args: \"p_organization_id uuid, p_table_id uuid, p_columns text[] DEFAULT NULL::text[], p_limit integer DEFAULT 10000, p_delimiter text DEFAULT ','::text, p_required text DEFAULT 'viewer'::text\", returns: \"text\", security: \"definer\" },\n { name: \"io_import_open\", args: \"p_organization_id uuid, p_table_id uuid, p_format text DEFAULT 'csv'::text, p_source_name text DEFAULT NULL::text, p_source_columns jsonb DEFAULT '[]'::jsonb\", returns: \"uuid\", security: \"definer\" },\n { name: \"io_import_rows\", args: \"p_organization_id uuid, p_import_id uuid, p_rows jsonb, p_mapping jsonb DEFAULT '{}'::jsonb\", returns: \"jsonb\", security: \"definer\" },\n { name: \"io_infer_type\", args: \"p_samples jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"io_outbox_announce\", args: \"\", returns: \"trigger\", security: \"definer\" },\n { name: \"io_outbox_drain\", args: \"p_organization_id uuid, p_consumer text, p_limit integer DEFAULT 100, p_event_key text DEFAULT 'records.changed'::text\", returns: \"TABLE(outbox_id uuid, record_id uuid, table_id uuid, operation text, changed_field_ids jsonb, actor jsonb, occurred_at timestamp with time zone)\", security: \"definer\" },\n { name: \"io_outbox_release\", args: \"p_organization_id uuid, p_consumer text, p_older_than interval DEFAULT '00:15:00'::interval\", returns: \"integer\", security: \"definer\" },\n { name: \"io_proposal_accept\", args: \"p_organization_id uuid, p_import_id uuid, p_column text, p_type text DEFAULT NULL::text, p_label text DEFAULT NULL::text\", returns: \"uuid\", security: \"definer\" },\n { name: \"io_proposal_reject\", args: \"p_organization_id uuid, p_import_id uuid, p_column text\", returns: \"boolean\", security: \"definer\" },\n { name: \"io_record_changed\", args: \"\", returns: \"trigger\", security: \"definer\" },\n { name: \"io_restore\", args: \"p_organization_id uuid, p_record_id uuid, p_version integer\", returns: \"integer\", security: \"definer\" },\n { name: \"io_revisions\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"TABLE(version integer, changed_at timestamp with time zone, changed_by uuid, summary text)\", security: \"definer\" },\n { name: \"lookup_value\", args: \"p_organization_id uuid, p_record_id uuid, p_field_data jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"mask_document\", args: \"p_document jsonb, p_visible_keys text[], p_notices jsonb, p_by_id boolean DEFAULT false, p_key_ids jsonb DEFAULT '{}'::jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"mask_document\", args: \"p_document jsonb, p_visible_keys text[], p_notices jsonb, p_by_id boolean DEFAULT false, p_key_ids jsonb DEFAULT '{}'::jsonb, p_declared_keys text[] DEFAULT NULL::text[]\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"merge_field_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"migrate_delete\", args: \"p_organization_id uuid, p_record_id uuid, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_demote\", args: \"p_organization_id uuid, p_table_id uuid, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_extract_parent\", args: \"p_organization_id uuid, p_id uuid, p_parent_table_id uuid, p_moved_keys text[], p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_merge\", args: \"p_organization_id uuid, p_winner_id uuid, p_loser_id uuid, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_promote\", args: \"p_organization_id uuid, p_table_id uuid, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_purge\", args: \"p_organization_id uuid, p_table_id uuid DEFAULT NULL::uuid, p_dry_run boolean DEFAULT true\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_rename\", args: \"p_organization_id uuid, p_id uuid, p_to text, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_reparent\", args: \"p_organization_id uuid, p_id uuid, p_parent_id uuid, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_retype\", args: \"p_organization_id uuid, p_id uuid, p_to text, p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"migrate_split\", args: \"p_organization_id uuid, p_record_id uuid, p_moved_keys text[], p_note text DEFAULT NULL::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"organization_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"organization_references\", args: \"p_kind text, p_organization_id uuid, p_row jsonb\", returns: \"TABLE(site text, what text, ref_id uuid, openable boolean)\", security: \"invoker\" },\n { name: \"parity_field_types\", args: \"\", returns: \"TABLE(parity_type text, behavior text, made_of text)\", security: \"invoker\" },\n { name: \"parity_type\", args: \"p_field_data jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"parity_values\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"TABLE(field_key text, field_id uuid, parity_type text, behavior text, unit text, format text, value jsonb, value_version integer, actor text, written_at timestamp with time zone)\", security: \"invoker\" },\n { name: \"per_value_access_words\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"person_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"presentation_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"promote_field\", args: \"p_organization_id uuid, p_table_id uuid, p_field_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"promote_table\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"jsonb\", security: \"definer\" },\n { name: \"promoted_field_cap\", args: \"\", returns: \"integer\", security: \"invoker\" },\n { name: \"promoted_fields\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"TABLE(field_id uuid, field_key text, parity_type text, is_unique boolean, value_path text, index_arm text, index_expr text, index_name text, indexable boolean, why_not text)\", security: \"invoker\" },\n { name: \"promoted_index_arm\", args: \"p_field_data jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"promoted_index_ddl\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"TABLE(step integer, purpose text, statement text)\", security: \"invoker\" },\n { name: \"promoted_index_expr\", args: \"p_field_data jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"promoted_index_name\", args: \"p_table_id uuid, p_field_key text, p_unique boolean\", returns: \"text\", security: \"invoker\" },\n { name: \"promoted_query_sql\", args: \"p_organization_id uuid, p_table_id uuid, p_field_key text\", returns: \"text\", security: \"invoker\" },\n { name: \"promoted_read\", args: \"p_organization_id uuid, p_table_id uuid, p_field_key text, p_value text\", returns: \"SETOF uuid\", security: \"invoker\" },\n { name: \"promoted_value_path\", args: \"p_field_data jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"promotion_inline_ceiling\", args: \"\", returns: \"integer\", security: \"invoker\" },\n { name: \"query_access_ids\", args: \"p_organization_id uuid, p_required text DEFAULT 'viewer'::text\", returns: \"uuid[]\", security: \"invoker\" },\n { name: \"query_across_homes\", args: \"p_organization_id uuid, p_table_id uuid, p_limit integer DEFAULT 50, p_offset integer DEFAULT 0, p_required text DEFAULT 'viewer'::text\", returns: \"TABLE(record_id uuid, home_record_id uuid, data jsonb, created_at timestamp with time zone)\", security: \"invoker\" },\n { name: \"query_by_coordinates\", args: \"p_organization_id uuid, p_table_id uuid DEFAULT NULL::uuid, p_coordinates jsonb DEFAULT '[]'::jsonb, p_limit integer DEFAULT 50, p_offset integer DEFAULT 0, p_required text DEFAULT 'viewer'::text\", returns: \"TABLE(record_id uuid, table_id uuid, data jsonb, coordinates_matched integer)\", security: \"invoker\" },\n { name: \"query_can_see\", args: \"p_organization_id uuid, p_record_id uuid, p_required text DEFAULT 'viewer'::text\", returns: \"boolean\", security: \"invoker\" },\n { name: \"query_hot_paths\", args: \"\", returns: \"TABLE(name text, statement text)\", security: \"invoker\" },\n { name: \"query_hot_paths_prepared\", args: \"\", returns: \"TABLE(name text, prepared boolean, generic_plans bigint)\", security: \"invoker\" },\n { name: \"query_is_store_owner\", args: \"\", returns: \"boolean\", security: \"invoker\" },\n { name: \"query_prepare_hot\", args: \"\", returns: \"integer\", security: \"invoker\" },\n { name: \"query_principal\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"query_record_as_of\", args: \"p_organization_id uuid, p_record_id uuid, p_recorded_at timestamp with time zone DEFAULT NULL::timestamp with time zone, p_world_on date DEFAULT NULL::date, p_required text DEFAULT 'viewer'::text\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"query_relation_edges\", args: \"p_organization_id uuid, p_flavor text DEFAULT NULL::text, p_role text DEFAULT NULL::text\", returns: \"TABLE(parent_id uuid, child_id uuid, role text, flavor text)\", security: \"invoker\" },\n { name: \"query_rollup\", args: \"p_organization_id uuid, p_roots uuid[], p_flavor text DEFAULT NULL::text, p_role text DEFAULT NULL::text, p_max_depth integer DEFAULT 33, p_required text DEFAULT 'viewer'::text\", returns: \"TABLE(record_id uuid, depth integer)\", security: \"invoker\" },\n { name: \"query_rollup_sum\", args: \"p_organization_id uuid, p_roots uuid[], p_field_key text, p_flavor text DEFAULT NULL::text, p_role text DEFAULT NULL::text, p_max_depth integer DEFAULT 33, p_required text DEFAULT 'viewer'::text\", returns: \"numeric\", security: \"invoker\" },\n { name: \"query_table_as_of\", args: \"p_organization_id uuid, p_table_id uuid, p_recorded_at timestamp with time zone DEFAULT NULL::timestamp with time zone, p_world_on date DEFAULT NULL::date, p_limit integer DEFAULT 50, p_offset integer DEFAULT 0, p_required text DEFAULT 'viewer'::text\", returns: \"TABLE(record_id uuid, data jsonb)\", security: \"invoker\" },\n { name: \"query_table_homes\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"SETOF uuid\", security: \"invoker\" },\n { name: \"query_visible_ids\", args: \"p_organization_id uuid, p_table_id uuid DEFAULT NULL::uuid, p_required text DEFAULT 'viewer'::text\", returns: \"SETOF uuid\", security: \"invoker\" },\n { name: \"reachable_from\", args: \"p_organization_id uuid, p_roots uuid[]\", returns: \"TABLE(record_id uuid, depth integer, via text)\", security: \"invoker\" },\n { name: \"read_paths_outside_the_door\", args: \"\", returns: \"TABLE(object_name text, why text)\", security: \"invoker\" },\n { name: \"read_record\", args: \"p_organization_id uuid, p_record_id uuid, p_by_id boolean DEFAULT false\", returns: \"jsonb\", security: \"definer\" },\n { name: \"read_records\", args: \"p_organization_id uuid, p_table_id uuid, p_by_id boolean DEFAULT false, p_limit integer DEFAULT 200, p_offset integer DEFAULT 0\", returns: \"TABLE(id uuid, document jsonb, level permission_level)\", security: \"definer\" },\n { name: \"record_aggregate\", args: \"p_organization_id uuid, p_table_id uuid, p_group_by jsonb DEFAULT '[]'::jsonb, p_measures jsonb DEFAULT '[]'::jsonb, p_bucket jsonb DEFAULT NULL::jsonb, p_filter jsonb DEFAULT '{}'::jsonb, p_limit integer DEFAULT 200, p_required text DEFAULT 'viewer'::text\", returns: \"TABLE(groups jsonb, measures jsonb, row_count bigint)\", security: \"invoker\" },\n { name: \"record_applicability\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"TABLE(rule_id uuid, rule_name text, rule_version integer, applies boolean, answer jsonb)\", security: \"invoker\" },\n { name: \"record_delete\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"timestamp with time zone\", security: \"definer\" },\n { name: \"record_reparent\", args: \"p_organization_id uuid, p_record_id uuid, p_parent_id uuid\", returns: \"void\", security: \"invoker\" },\n { name: \"record_restore\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"void\", security: \"definer\" },\n { name: \"record_update\", args: \"p_organization_id uuid, p_record_id uuid, p_patch jsonb, p_expected_version integer DEFAULT NULL::integer\", returns: \"integer\", security: \"definer\" },\n { name: \"record_values\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"record_values_versioned\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"TABLE(field_key text, field_id uuid, value jsonb, value_version integer, source jsonb, absent_reason text, actor text, on_behalf_of text, written_at timestamp with time zone, alternates jsonb)\", security: \"invoker\" },\n { name: \"record_write\", args: \"p_organization_id uuid, p_table_id uuid, p_data jsonb\", returns: \"uuid\", security: \"definer\" },\n { name: \"relation_own\", args: \"p_organization_id uuid, p_owner_id uuid, p_target_id uuid\", returns: \"uuid\", security: \"invoker\" },\n { name: \"relation_target_external\", args: \"p_connection_token text, p_external_table text, p_external_key text\", returns: \"jsonb\", security: \"definer\" },\n { name: \"relation_target_ours\", args: \"p_entity_token text, p_row_id uuid\", returns: \"jsonb\", security: \"definer\" },\n { name: \"relation_targets\", args: \"p_organization_id uuid, p_record_id uuid, p_via_key text\", returns: \"SETOF uuid\", security: \"invoker\" },\n { name: \"reopen_declared_doors\", args: \"\", returns: \"TABLE(reopened text)\", security: \"definer\" },\n { name: \"required_epoch\", args: \"p_container_type text, p_container_id uuid, p_item_type text, p_item_id uuid\", returns: \"bigint\", security: \"definer\" },\n { name: \"resolve_first_match\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"resolve_id\", args: \"p_organization_id uuid, p_id uuid\", returns: \"uuid\", security: \"invoker\" },\n { name: \"retired_actor_words\", args: \"\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rollup_value\", args: \"p_organization_id uuid, p_record_id uuid, p_field_data jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rule_applies\", args: \"p_organization_id uuid, p_rule_id uuid, p_record_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rule_context\", args: \"p_organization_id uuid, p_record_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rule_dependency_edges\", args: \"p_organization_id uuid, p_row custom.record DEFAULT NULL::custom.record\", returns: \"TABLE(needs text, needed text)\", security: \"invoker\" },\n { name: \"rule_eval\", args: \"p_organization_id uuid, p_expr jsonb, p_values jsonb, p_context jsonb DEFAULT '{}'::jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rule_field_key\", args: \"p_organization_id uuid, p_field_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"rule_field_label\", args: \"p_organization_id uuid, p_field_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"rule_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"rule_members\", args: \"p_organization_id uuid, p_rule_id uuid\", returns: \"SETOF custom.record\", security: \"invoker\" },\n { name: \"rule_membership\", args: \"p_organization_id uuid, p_rule_id uuid, p_record_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rule_node_kinds\", args: \"\", returns: \"TABLE(node text, evaluated_by text, note text)\", security: \"invoker\" },\n { name: \"rule_run\", args: \"p_organization_id uuid, p_rule_id uuid, p_values jsonb, p_context jsonb DEFAULT '{}'::jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"rule_truth\", args: \"p_answer jsonb\", returns: \"boolean\", security: \"invoker\" },\n { name: \"rule_uses\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"rule_version\", args: \"p_organization_id uuid, p_rule_id uuid\", returns: \"integer\", security: \"invoker\" },\n { name: \"size_refusal\", args: \"p_organization_id uuid, p_data jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"source_next_pointer\", args: \"p_sources jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"source_pointer\", args: \"p_sources jsonb, p_source jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"stamp_value_envelopes\", args: \"p_data jsonb, p_actor text, p_on_behalf_of text, p_at timestamp with time zone\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"storage_modes\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"store_is_open\", args: \"p_organization_id uuid DEFAULT NULL::uuid\", returns: \"boolean\", security: \"invoker\" },\n { name: \"table_capacity\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"jsonb\", security: \"definer\" },\n { name: \"table_declare\", args: \"p_organization_id uuid, p_spec jsonb\", returns: \"uuid\", security: \"definer\" },\n { name: \"table_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"table_record_ceiling\", args: \"\", returns: \"integer\", security: \"invoker\" },\n { name: \"table_record_ceiling\", args: \"p_organization_id uuid\", returns: \"integer\", security: \"invoker\" },\n { name: \"table_rules\", args: \"p_organization_id uuid, p_table_id uuid, p_use text, p_record_type text DEFAULT NULL::text\", returns: \"SETOF custom.record\", security: \"invoker\" },\n { name: \"table_storage\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"table_type_field\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"tables_at_home\", args: \"p_organization_id uuid, p_home_ids uuid[]\", returns: \"TABLE(table_id uuid, home_record_id uuid, kind text)\", security: \"invoker\" },\n { name: \"trg_associations_bump_visibility\", args: \"\", returns: \"trigger\", security: \"definer\" },\n { name: \"validate_custom_fields\", args: \"p_token text, p_organization_id uuid, p_values jsonb\", returns: \"void\", security: \"invoker\" },\n { name: \"validate_value_envelope\", args: \"p_organization_id uuid, p_fields custom.record[], p_data jsonb\", returns: \"void\", security: \"invoker\" },\n { name: \"validate_values\", args: \"p_organization_id uuid, p_fields custom.record[], p_values jsonb, p_record_type text DEFAULT NULL::text\", returns: \"void\", security: \"invoker\" },\n { name: \"value_alternate_keys\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"value_envelope_keys\", args: \"\", returns: \"text[]\", security: \"invoker\" },\n { name: \"value_envelope_ok\", args: \"p_data jsonb\", returns: \"boolean\", security: \"invoker\" },\n { name: \"value_envelope_refusal\", args: \"p_data jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"value_read\", args: \"p_organization_id uuid, p_record_id uuid, p_key text\", returns: \"TABLE(field_key text, field_id uuid, value jsonb, value_version integer, source jsonb, absent_reason text, actor text, on_behalf_of text, written_at timestamp with time zone, alternates jsonb)\", security: \"invoker\" },\n { name: \"value_versions\", args: \"p_old jsonb, p_new jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"visibility_ancestors\", args: \"p_item_type text, p_item_id uuid\", returns: \"TABLE(container_type text, container_id uuid, depth integer, max_level permission_level)\", security: \"definer\" },\n { name: \"visibility_cache_rebuild\", args: \"\", returns: \"integer\", security: \"definer\" },\n { name: \"visibility_parity\", args: \"\", returns: \"TABLE(side text, container_type text, container_id uuid, item_type text, item_id uuid, stored_level permission_level, derived_level permission_level, reason text)\", security: \"definer\" },\n { name: \"visibility_warm\", args: \"p_container_type text, p_container_id uuid\", returns: \"integer\", security: \"definer\" },\n { name: \"visible_record_ids\", args: \"p_user_id uuid, p_required permission_level DEFAULT 'viewer'::permission_level\", returns: \"TABLE(id uuid)\", security: \"definer\" },\n { name: \"widget_kernel_id\", args: \"\", returns: \"uuid\", security: \"invoker\" },\n { name: \"work_assignment_fields\", args: \"p_options_table_id uuid DEFAULT NULL::uuid\", returns: \"TABLE(key text, label text, spec jsonb)\", security: \"invoker\" },\n { name: \"work_has_assignment\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"boolean\", security: \"invoker\" },\n { name: \"work_instantiation_shape\", args: \"p_organization_id uuid, p_instantiation_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"work_relation_kinds\", args: \"\", returns: \"TABLE(kind text, available boolean, why text)\", security: \"invoker\" },\n { name: \"work_slot_expire\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"integer\", security: \"invoker\" },\n { name: \"work_slot_hold\", args: \"p_organization_id uuid, p_table_id uuid, p_slot_key text, p_holder text, p_ttl interval DEFAULT '00:15:00'::interval\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"work_slot_holds\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"TABLE(hold_id uuid, slot_key text, holder text, expires_at timestamp with time zone, expired boolean)\", security: \"invoker\" },\n { name: \"work_slot_index_name\", args: \"p_table_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"work_slot_release\", args: \"p_organization_id uuid, p_hold_id uuid\", returns: \"boolean\", security: \"invoker\" },\n { name: \"work_slots_declare\", args: \"p_organization_id uuid, p_name text, p_slug text, p_home_id uuid DEFAULT NULL::uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"work_states\", args: \"\", returns: \"TABLE(sort integer, name text, terminal boolean, next text[])\", security: \"invoker\" },\n { name: \"work_take_assignment\", args: \"p_organization_id uuid, p_table_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"work_template_declare\", args: \"p_organization_id uuid, p_name text, p_graph jsonb\", returns: \"uuid\", security: \"invoker\" },\n { name: \"work_template_instantiate\", args: \"p_organization_id uuid, p_template_id uuid, p_overrides jsonb DEFAULT '{}'::jsonb\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"work_template_refusal\", args: \"p_graph jsonb\", returns: \"text\", security: \"invoker\" },\n { name: \"work_template_shape\", args: \"p_organization_id uuid, p_template_id uuid\", returns: \"jsonb\", security: \"invoker\" },\n { name: \"work_transition_refusal\", args: \"p_organization_id uuid, p_from_state_id uuid, p_to_state_id uuid\", returns: \"text\", security: \"invoker\" },\n { name: \"work_whose_turn\", args: \"p_organization_id uuid, p_table_id uuid, p_include_finished boolean DEFAULT false\", returns: \"TABLE(record_id uuid, title text, assignee_id uuid, turn text, due_on timestamp with time zone, state text, status text, terminal boolean)\", security: \"invoker\" },\n] as const;\n\n/** The campaign's own knobs, with the value the store resolves them to today. */\nexport const STORE_KNOBS = [\n { key: \"accessible_entity_ids_guard\", value: \"false\", type: \"boolean\" },\n { key: \"agent_schema_changes\", value: \"\\\"propose\\\"\", type: \"string\" },\n { key: \"associations_guard\", value: \"false\", type: \"boolean\" },\n { key: \"code_paths_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"consumer_chat_seeding_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"consumer_checkout_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"consumer_education_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"consumer_extension_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"consumer_grid_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"consumer_retirement_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"consumer_saved_ai_outputs_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"consumer_scopes_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"containment_depth_ceiling\", value: \"16\", type: \"integer\" },\n { key: \"document_max_bytes\", value: \"1048576\", type: \"integer\" },\n { key: \"emergency_door_guard\", value: \"false\", type: \"boolean\" },\n { key: \"emergency_door_sweep_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"entity_custom_fields_guard\", value: \"false\", type: \"boolean\" },\n { key: \"entity_types_guard\", value: \"false\", type: \"boolean\" },\n { key: \"external_principal_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"field_index_guard\", value: \"false\", type: \"boolean\" },\n { key: \"field_sensitivity_levels\", value: \"{\\\"edit\\\": {\\\"public\\\": \\\"editor\\\", \\\"internal\\\": \\\"editor\\\", \\\"restricted\\\": \\\"admin\\\", \\\"confidential\\\": \\\"admin\\\"}, \\\"read\\\": {\\\"public\\\": \\\"viewer\\\", \\\"internal\\\": \\\"viewer\\\", \\\"restricted\\\": \\\"admin\\\", \\\"confidential\\\": \\\"editor\\\"}}\", type: \"json\" },\n { key: \"member_default_level\", value: \"\\\"viewer\\\"\", type: \"string\" },\n { key: \"row_versions_guard\", value: \"false\", type: \"boolean\" },\n { key: \"sandbox_expanded_frame_height_px\", value: \"20000\", type: \"integer\" },\n { key: \"sandbox_frame_height_px\", value: \"4000\", type: \"integer\" },\n { key: \"sandbox_message_bytes\", value: \"65536\", type: \"integer\" },\n { key: \"sandbox_org_components\", value: \"true\", type: \"boolean\" },\n { key: \"signup_provisioning_guard\", value: \"false\", type: \"boolean\" },\n { key: \"system_enabled\", value: \"false\", type: \"boolean\" },\n { key: \"table_record_ceiling\", value: \"150000\", type: \"integer\" },\n { key: \"value_max_bytes\", value: \"100000\", type: \"integer\" },\n { key: \"world_publish_enabled\", value: \"false\", type: \"boolean\" },\n] as const;\n\n/**\n * Every SQLSTATE the store's own function bodies raise, with the functions that\n * raise it. This is the list the client's refusal mapper is checked against: a\n * code the store can raise and the package cannot name is a hole, and the\n * real-door suite says so by name.\n */\nexport const STORE_REFUSAL_CODES = [\n { code: \"02000\", raised_by: \"doc_render_body,doc_render_document,doc_sign,doc_signature_intact,doc_template_save,external_history_event,external_rows,external_stub_upsert,external_writes_set,migrate_delete,migrate_extract_parent,migrate_merge,migrate_rename,migrate_reparent,migrate_retype,migrate_split,read_record,record_delete,record_restore,record_update\" },\n { code: \"0A000\", raised_by: \"external_rows,external_source_declare,external_write_through,promote_field,promoted_index_expr,promoted_query_sql,promoted_read,rule_eval,work_slots_declare\" },\n { code: \"22004\", raised_by: \"_value_envelope,actor_word,agg_assert_key,agg_sql,anon_capture,anon_token_issue,anon_write,assert_client_may_reach,doc_render_write,doc_sign,doc_signature_write,doc_template_save,external_history_event,external_rows,external_source_declare,external_stub_upsert,external_write_through,external_writes_set,home_add,io_comment_write,io_import_open,io_outbox_drain,io_restore,migrate_purge,migrate_split,query_across_homes,query_by_coordinates,query_rollup,record_delete,record_reparent,record_restore,record_update,record_write,relation_own,table_declare,work_template_declare\" },\n { code: \"22012\", raised_by: \"rule_eval\" },\n { code: \"22023\", raised_by: \"_value_envelope,_work_shape_guard,actor_word,agg_assert_key,agg_sql,anon_token_issue,containment_parent,doc_render_body,doc_render_write,doc_signature_write,external_history_event,external_source_declare,external_stub_upsert,external_write_through,io_import_open,io_proposal_accept,migrate_merge,query_by_coordinates,query_rollup,record_update,rule_eval,rule_members,table_rules,work_slot_hold\" },\n { code: \"23503\", raised_by: \"_containment_guard,_record_rule_uses,anon_publish,anon_rate_take,anon_token_issue,anon_write,assert_organization_wall,doc_sign,doc_template_save,home_add,io_comment_write,io_import_rows,io_proposal_accept,migrate_delete,migrate_demote,migrate_promote,promote_field,promote_table,record_applicability,record_reparent,relation_own,resolve_first_match,rule_applies,rule_eval,rule_members,rule_run,work_take_assignment,work_template_instantiate\" },\n { code: \"23505\", raised_by: \"doc_sign,doc_signature_write,home_add,io_proposal_accept,work_slot_hold\" },\n { code: \"23514\", raised_by: \"_containment_guard,_dated_values_guard,_derived_fields,_field_shape_guard,_field_type_parity_guard,_merge_field_shape_guard,_merge_field_temporal_guard,_promoted_field_cap_guard,_record_rule_uses,_rule_shape_guard,_rule_topology_guard,_table_shape_guard,_value_envelope,_work_shape_guard,doc_sign,doc_signature_write,doc_template_save,home_add,validate_value_envelope,validate_values,work_slots_declare,work_take_assignment,work_template_instantiate\" },\n { code: \"40001\", raised_by: \"has_visibility_at\" },\n { code: \"42501\", raised_by: \"_doc_render_immutable,_doc_signature_immutable,_field_definition_write,_field_write_door,_rule_definition_write,_store_door,anon_capture,anon_inbound_land,anon_publish,anon_token_issue,anon_token_verify,anon_write,assert_client_may_change,assert_client_may_reach,assert_store_door,external_write_through,io_comment_resolve,io_comment_write,io_restore,migrate_purge,promote_table,read_record,read_records\" },\n { code: \"53400\", raised_by: \"anon_rate_take,promote_field\" },\n { code: \"PT409\", raised_by: \"record_update\" },\n] as const;\n\n/** `platform.entity_types` — the registered tokens a Table or relation may name. */\nexport const ENTITY_TOKENS = [\n \"access_delta_probe\",\n \"access_delta_run\",\n \"access_request\",\n \"account_addon\",\n \"acquisition_block\",\n \"activity\",\n \"admin_audit_log\",\n \"admin_email_log\",\n \"admin_markdown_sample\",\n \"admin_user\",\n \"admission_config\",\n \"agent\",\n \"agent_card\",\n \"agent_definition_version\",\n \"agent_drift_alert\",\n \"agent_exemplar\",\n \"agent_mandate_note\",\n \"agent_prompt_remediation\",\n \"agent_provision_legacy\",\n \"agent_run\",\n \"agent_run_stage\",\n \"agent_schedule\",\n \"agent_schedule_claim\",\n \"agent_shortcut\",\n \"agent_surface_binding\",\n \"agent_template\",\n \"agent_usage\",\n \"agent_user_kv\",\n \"ai_api\",\n \"ai_endpoint\",\n \"ai_model\",\n \"ai_model_alias\",\n \"ai_offering\",\n \"ai_provider\",\n \"ai_setting\",\n \"analysis_result\",\n \"anon_form\",\n \"anon_function_birth_grandfather\",\n \"anon_hit\",\n \"anon_inbound\",\n \"anon_replay\",\n \"anon_submission\",\n \"anon_token\",\n \"api_field_warning\",\n \"api_request_log\",\n \"app\",\n \"app_config\",\n \"app_config_history\",\n \"app_definition_version\",\n \"app_error\",\n \"app_execution\",\n \"app_instance\",\n \"app_log\",\n \"app_log_muted_pattern\",\n \"app_log_norm_exception\",\n \"app_rate_limit\",\n \"app_setting\",\n \"app_sync_status\",\n \"approach\",\n \"artifact\",\n \"assessment\",\n \"assessment_item\",\n \"assessment_result\",\n \"assignment_session\",\n \"assist\",\n \"assist_producer_policy\",\n \"assist_producer_policy_history\",\n \"association_type\",\n \"assurance_level\",\n \"attempt\",\n \"audit_broken_functions\",\n \"audit_canonical_findings\",\n \"audit_exemption\",\n \"audit_function_deps\",\n \"audit_function_runtime_probe\",\n \"audit_m2m_candidates\",\n \"audit_refresh_log\",\n \"audit_stale_registry\",\n \"audit_unregistered_candidates\",\n \"bak_assoc_file_processed_document_20260812\",\n \"bak_assoc_type_file_processed_document_20260812\",\n \"bak_organization_name_dd043\",\n \"base_entity_template\",\n \"batch_cost_event\",\n \"batch_provider_batch\",\n \"batch_work_item\",\n \"billing_capability\",\n \"billing_capability_limit\",\n \"billing_connect_account\",\n \"billing_customer\",\n \"billing_plan\",\n \"billing_plan_limit\",\n \"billing_price\",\n \"billing_product\",\n \"billing_spend_guardrail\",\n \"billing_stripe_event\",\n \"billing_subscription\",\n \"billing_usage_ledger\",\n \"billing_user_plan\",\n \"browser_account_binding\",\n \"browser_action_event\",\n \"browser_authenticator_window\",\n \"browser_capture\",\n \"browser_control_request\",\n \"browser_handoff\",\n \"browser_login_attempt\",\n \"browser_login_recipe\",\n \"browser_profile\",\n \"browser_profile_checkpoint\",\n \"browser_run\",\n \"browser_site_observation\",\n \"browser_site_policy\",\n \"browser_stream_ticket\",\n \"build_lock\",\n \"calendar_event\",\n \"canvas_comment\",\n \"canvas_comment_like\",\n \"canvas_item\",\n \"canvas_item_state\",\n \"canvas_like\",\n \"canvas_score\",\n \"canvas_view\",\n \"capture_window\",\n \"carrying_rule\",\n \"catalog_entries_history\",\n \"catalog_entry\",\n \"category\",\n \"change_type_default\",\n \"chat_user_usage_summary\",\n \"citations\",\n \"class_purchase\",\n \"classifier_revision_ledger\",\n \"client_callable_door\",\n \"client_callable_door_retirement\",\n \"client_excluded_column_unregistered\",\n \"cmp_entry\",\n \"cmp_feedback\",\n \"code_file\",\n \"code_folder\",\n \"code_repository\",\n \"coding_session\",\n \"coding_session_entry\",\n \"comment\",\n \"commerce_asset_allocation\",\n \"commerce_asset_grading\",\n \"commerce_asset_identifier\",\n \"commerce_asset_lot_event\",\n \"commerce_asset_mandate_result\",\n \"commerce_asset_price_factor\",\n \"commerce_asset_reshoot_request\",\n \"commerce_asset_review\",\n \"commerce_asset_unknown\",\n \"commerce_certified_printer\",\n \"commerce_cloud_sync_connection\",\n \"commerce_ebay_business_policy\",\n \"commerce_ebay_category\",\n \"commerce_ebay_category_aspect\",\n \"commerce_ebay_category_tree\",\n \"commerce_ebay_custom_policy\",\n \"commerce_ebay_inventory_item\",\n \"commerce_ebay_inventory_item_group\",\n \"commerce_ebay_inventory_item_group_member\",\n \"commerce_ebay_inventory_location\",\n \"commerce_ebay_listing\",\n \"commerce_ebay_marketplace_policy\",\n \"commerce_ebay_media_asset\",\n \"commerce_ebay_notification_destination\",\n \"commerce_ebay_notification_event\",\n \"commerce_ebay_notification_subscription\",\n \"commerce_ebay_notification_topic\",\n \"commerce_ebay_offer\",\n \"commerce_ebay_order\",\n \"commerce_ebay_order_line_item\",\n \"commerce_ebay_shipping_fulfillment\",\n \"commerce_ebay_store_category\",\n \"commerce_human_correction\",\n \"commerce_intake_artifact\",\n \"commerce_intake_asset\",\n \"commerce_intake_batch\",\n \"commerce_label_batch\",\n \"commerce_label_code\",\n \"commerce_marketplace_account\",\n \"commerce_marketplace_account_deletion_audit\",\n \"commerce_marketplace_api_call\",\n \"commerce_marketplace_rate_budget\",\n \"commerce_marketplace_site\",\n \"commerce_marketplace_sync_run\",\n \"commerce_prediction_outcome\",\n \"commerce_print_order\",\n \"commerce_product\",\n \"commerce_product_channel_ref\",\n \"commerce_product_media\",\n \"commerce_product_variant\",\n \"commerce_recall_audit\",\n \"comparison_set\",\n \"component_group\",\n \"contact_medium\",\n \"contact_submission\",\n \"content_certification\",\n \"content_ir_kind\",\n \"content_ir_kind_component\",\n \"content_ir_kind_component_incident\",\n \"content_ir_kind_conformance\",\n \"content_ir_kind_edge\",\n \"content_ir_kind_example\",\n \"content_ir_kind_instance\",\n \"content_ir_kind_surface\",\n \"context_access_log\",\n \"context_item\",\n \"context_item_suggestion\",\n \"context_item_value\",\n \"context_value_refs\",\n \"conversation\",\n \"conversation_value\",\n \"courts\",\n \"credential_attachment\",\n \"credential_item\",\n \"credential_mutation_receipt\",\n \"crm_address\",\n \"crm_affiliation\",\n \"crm_blocklist_entry\",\n \"crm_contact_candidate\",\n \"crm_deal\",\n \"crm_deal_stage_event\",\n \"crm_enrichment_call\",\n \"crm_interaction\",\n \"crm_merge_candidate\",\n \"crm_outreach_list\",\n \"crm_outreach_list_member\",\n \"crm_party_merge\",\n \"crm_registry_ingest_run\",\n \"crm_registry_source\",\n \"crm_saved_view\",\n \"crm_sending_event\",\n \"crm_sending_identity\",\n \"crm_sending_identity_check\",\n \"crm_sending_policy\",\n \"custom_entity_definition\",\n \"custom_field_definition\",\n \"custom_field_target\",\n \"custom_record\",\n \"cx_agent_memory\",\n \"cx_agent_plan\",\n \"cx_agent_task\",\n \"cx_code_edit\",\n \"cx_code_message_file\",\n \"cx_conversation_documents\",\n \"cx_media\",\n \"cx_observational_memory\",\n \"cx_observational_memory_event\",\n \"cx_pending_injection\",\n \"cx_request\",\n \"cx_request_snapshot\",\n \"cx_tool_trace\",\n \"cx_user_request\",\n \"cx_user_todo\",\n \"dashboard_saved_view\",\n \"data_rights_event\",\n \"data_store\",\n \"data_store_members\",\n \"dataset\",\n \"dd171_containment_baseline\",\n \"dd175_cast\",\n \"dd175_component_lane_baseline\",\n \"ddl_guard_log\",\n \"deck_suggestion\",\n \"definer_class_exemption\",\n \"definer_client_grant_grandfather\",\n \"definer_grant_baseline\",\n \"deprecated_relation\",\n \"derive_run\",\n \"dev_login_audit\",\n \"dict_entry\",\n \"dict_provider_publication\",\n \"dict_setting\",\n \"dm_conversation\",\n \"dm_message\",\n \"dm_participant\",\n \"doc_render\",\n \"doc_signature\",\n \"dockets\",\n \"domain_classification\",\n \"edge_payload_kind\",\n \"egress_device\",\n \"egress_pairing\",\n \"egress_ticket\",\n \"emails\",\n \"embedding_cache\",\n \"embeddings_google_gemini_2_1536\",\n \"embeddings_oai_3_small_1536\",\n \"embeddings_voyage_4_large_1024\",\n \"embeddings_voyage_code_3_1024\",\n \"endpoint_family_sweep_state\",\n \"engine_owner_task\",\n \"entity_grant\",\n \"entity_relationship\",\n \"entity_type\",\n \"esign_campaign\",\n \"esign_campaign_member\",\n \"esign_consent_disclosure\",\n \"esign_envelope\",\n \"esign_envelope_certificate\",\n \"esign_envelope_document\",\n \"esign_envelope_event\",\n \"esign_envelope_external_ref\",\n \"esign_envelope_signer\",\n \"esign_provider\",\n \"esign_provider_binding\",\n \"esign_signing_key\",\n \"execution_event_cursor\",\n \"extension_auth_code\",\n \"external_link\",\n \"external_source\",\n \"extract_sweep_state\",\n \"fc_card\",\n \"fc_detail\",\n \"fc_set\",\n \"feature_doc\",\n \"feature_knob\",\n \"feedback_comments\",\n \"feedback_user_messages\",\n \"field_component\",\n \"file\",\n \"file_analysis\",\n \"file_entities\",\n \"file_overrides\",\n \"file_page_annotations\",\n \"file_pages\",\n \"file_rag_job\",\n \"file_version\",\n \"files_account_tier\",\n \"files_machine_written_prefix\",\n \"files_sync_mapping\",\n \"files_user_account\",\n \"flashcard_data\",\n \"flashcard_history\",\n \"flashcard_review\",\n \"flashcard_set\",\n \"flashcard_sets\",\n \"flexible_data\",\n \"folder\",\n \"function_contract\",\n \"game_badge\",\n \"game_result\",\n \"game_room\",\n \"global_execution\",\n \"global_execution_checkpoint\",\n \"global_execution_control\",\n \"global_execution_event\",\n \"global_meter_entry\",\n \"global_origin\",\n \"global_request\",\n \"google_document\",\n \"growth_loop_event\",\n \"growth_loop_run\",\n \"growth_loop_stage_run\",\n \"guardian_link\",\n \"guest_conversion_audit\",\n \"guest_execution_log\",\n \"guest_executions\",\n \"guided_checklist_run\",\n \"heatmap_save\",\n \"hindsight_enrollment\",\n \"hindsight_finding\",\n \"hindsight_regression_case\",\n \"hindsight_replay\",\n \"hindsight_replay_step\",\n \"hindsight_review\",\n \"hr_access_audit\",\n \"hr_access_role\",\n \"hr_accommodation_request\",\n \"hr_ai_evidence\",\n \"hr_alert_routing_rule\",\n \"hr_application\",\n \"hr_approval_authority\",\n \"hr_approval_delegation\",\n \"hr_asset\",\n \"hr_asset_assignment\",\n \"hr_attendance_exception\",\n \"hr_auto_close_rule\",\n \"hr_availability\",\n \"hr_background_check\",\n \"hr_benefits_event\",\n \"hr_calculation_snapshot\",\n \"hr_candidate\",\n \"hr_candidate_conversion\",\n \"hr_candidate_message\",\n \"hr_careers_portal\",\n \"hr_checklist_item\",\n \"hr_checklist_run\",\n \"hr_checklist_template\",\n \"hr_checklist_template_item\",\n \"hr_compensation\",\n \"hr_corrective_action\",\n \"hr_course\",\n \"hr_course_version\",\n \"hr_credential\",\n \"hr_crew\",\n \"hr_deduction_code\",\n \"hr_department\",\n \"hr_derived_grant\",\n \"hr_disposition_event\",\n \"hr_earning_code\",\n \"hr_eeo_response\",\n \"hr_emergency_contact\",\n \"hr_employee\",\n \"hr_employee_private\",\n \"hr_employer_profile\",\n \"hr_employment\",\n \"hr_employment_pin\",\n \"hr_engagement\",\n \"hr_establishment\",\n \"hr_external_identity\",\n \"hr_field_policy\",\n \"hr_holiday\",\n \"hr_holiday_calendar\",\n \"hr_i9\",\n \"hr_i9_document\",\n \"hr_incident\",\n \"hr_incident_party\",\n \"hr_interview\",\n \"hr_interview_kit\",\n \"hr_job_title\",\n \"hr_jurisdiction\",\n \"hr_jurisdiction_rule\",\n \"hr_jurisdiction_rule_class\",\n \"hr_jurisdiction_rule_org_decision\",\n \"hr_jurisdiction_rule_test\",\n \"hr_kiosk_device\",\n \"hr_kiosk_session\",\n \"hr_labor_target\",\n \"hr_leave_case\",\n \"hr_leave_enrollment\",\n \"hr_leave_ledger\",\n \"hr_leave_policy\",\n \"hr_leave_request\",\n \"hr_legal_hold\",\n \"hr_legal_hold_item\",\n \"hr_location\",\n \"hr_new_hire_report\",\n \"hr_offer\",\n \"hr_opening\",\n \"hr_overtime_alert\",\n \"hr_overtime_alert_rule\",\n \"hr_overtime_preapproval\",\n \"hr_pay_group\",\n \"hr_pay_period\",\n \"hr_pay_period_employment\",\n \"hr_payroll_export\",\n \"hr_payroll_export_line\",\n \"hr_position_assignment\",\n \"hr_posting\",\n \"hr_posting_publication\",\n \"hr_provider_binding\",\n \"hr_provider_event\",\n \"hr_provisioning_result\",\n \"hr_punch\",\n \"hr_recalculation_batch\",\n \"hr_record_class\",\n \"hr_records_request\",\n \"hr_reference_check\",\n \"hr_reporting_line\",\n \"hr_requisition\",\n \"hr_restricted_note\",\n \"hr_retention_rule\",\n \"hr_role_assignment\",\n \"hr_schedule\",\n \"hr_schedule_change\",\n \"hr_schedule_guidance\",\n \"hr_schedule_template\",\n \"hr_schedule_template_shift\",\n \"hr_scorecard\",\n \"hr_separation\",\n \"hr_shift\",\n \"hr_shift_claim\",\n \"hr_staffing_requirement\",\n \"hr_survey\",\n \"hr_survey_invitation\",\n \"hr_survey_question\",\n \"hr_survey_response\",\n \"hr_tax_registration\",\n \"hr_tax_withholding\",\n \"hr_time_adjustment\",\n \"hr_training_assignment\",\n \"hr_training_attempt\",\n \"hr_transcript_entry\",\n \"hr_verification_letter_request\",\n \"hr_work_interval\",\n \"hr_workflow_binding\",\n \"hr_workflow_decision\",\n \"hr_workflow_definition\",\n \"hr_workflow_event\",\n \"hr_workflow_failure\",\n \"hr_workflow_flow_type\",\n \"hr_workflow_instance\",\n \"hr_workflow_step\",\n \"hr_workflow_step_definition\",\n \"hr_workweek\",\n \"html_extraction\",\n \"iam_access_audit\",\n \"iam_api_key\",\n \"iam_emergency_door_request\",\n \"idempotency\",\n \"industry\",\n \"industry_curator\",\n \"infra_status\",\n \"ingest_runs\",\n \"integration_connection\",\n \"integration_connection_resource\",\n \"interview_decision_interview\",\n \"interview_decision_question\",\n \"interview_document_revision\",\n \"interview_hole\",\n \"interview_question\",\n \"interview_session\",\n \"interview_turn\",\n \"invitation\",\n \"invitation_code\",\n \"invitation_request\",\n \"io_comment\",\n \"io_contract\",\n \"io_import\",\n \"io_outbox\",\n \"item\",\n \"item_mastery\",\n \"judge_verdict\",\n \"jurisdiction_policy\",\n \"keyword_classification_queue\",\n \"kg_alert\",\n \"kg_chunk_entities\",\n \"kg_chunks\",\n \"kg_clusters\",\n \"kg_edges\",\n \"kg_entities\",\n \"kg_entity_aliases\",\n \"kg_suggestion_ack\",\n \"kg_sweep_queue\",\n \"kg_sweep_run\",\n \"kg_sweep_state\",\n \"kg_value_match\",\n \"knob_override\",\n \"knob_override_audit\",\n \"knob_rung_lock\",\n \"knob_scope_kind\",\n \"knob_write_door\",\n \"league_membership\",\n \"learn_doc\",\n \"library_doc\",\n \"lifecycle_archive\",\n \"lifecycle_archive_row\",\n \"lifecycle_audit\",\n \"lifecycle_entity_plan\",\n \"lifecycle_map_build\",\n \"lifecycle_reference_map\",\n \"lifecycle_run\",\n \"lifecycle_tier_ledger\",\n \"location\",\n \"mandate\",\n \"mandate_advance_batch_row\",\n \"mandate_binding\",\n \"mandate_binding_legacy\",\n \"mandate_legacy\",\n \"mandate_observation\",\n \"mandate_reference\",\n \"mandate_scan\",\n \"mandate_treatment\",\n \"marketing_initiative\",\n \"masterwork_corpus_item\",\n \"masterwork_run\",\n \"masterwork_run_kind\",\n \"masterwork_source\",\n \"math_course_structure\",\n \"math_problem\",\n \"matrx_action_ledger\",\n \"mcp_config\",\n \"mcp_server\",\n \"mcp_user_conn\",\n \"media_capture_handoff\",\n \"media_catalog_setting\",\n \"media_library_item\",\n \"media_selection_item\",\n \"media_selection_job\",\n \"media_source_library\",\n \"meet_call_invite\",\n \"meet_meeting\",\n \"meet_note\",\n \"meet_participant\",\n \"meet_recording\",\n \"meet_transcript_segment\",\n \"membership\",\n \"membership_grant\",\n \"merge_field_provenance\",\n \"message\",\n \"message_template\",\n \"meta_excluded_schema\",\n \"meta_table_stats_history\",\n \"metadata_reserved_keys\",\n \"microservice_project\",\n \"migration_log\",\n \"mtx_media_heal_queue\",\n \"mtx_public_url_guard\",\n \"ner_shadow\",\n \"note\",\n \"note_folder\",\n \"notification\",\n \"notification_channel_preference\",\n \"notification_event_override\",\n \"notification_event_type\",\n \"notification_preference\",\n \"notify_outsider_door_baseline\",\n \"oauth_handoff_claim\",\n \"opinion_clusters\",\n \"opinions\",\n \"ops_issue_class\",\n \"ops_issue_event\",\n \"ops_proof_check\",\n \"ops_proof_run\",\n \"ops_proof_scenario\",\n \"org_admin_audit\",\n \"org_change_policy\",\n \"org_context_ledger\",\n \"org_industries\",\n \"org_member_control\",\n \"org_module_config\",\n \"org_plan\",\n \"org_repair_0253_backup\",\n \"organization\",\n \"organization_preferences\",\n \"organization_visibility_version\",\n \"output_feedback\",\n \"outreach_acceptance\",\n \"page_extraction_job\",\n \"page_extraction_page_run\",\n \"page_extraction_results\",\n \"page_extraction_runs\",\n \"page_intent_queue\",\n \"page_mapping_queue\",\n \"part_config\",\n \"part_config_sub\",\n \"party\",\n \"party_contact_point\",\n \"path_drift_repair_2026_09\",\n \"pc_article\",\n \"pc_episode\",\n \"pc_show\",\n \"pc_studio_run\",\n \"pc_studio_run_asset\",\n \"pdf_consolidation_log\",\n \"pdf_redaction_audit\",\n \"pdf_redaction_key_escrow\",\n \"permission_grant\",\n \"plan_cms_fill_item\",\n \"plan_cms_fill_job\",\n \"plan_entity\",\n \"plan_node\",\n \"plan_node_artifact\",\n \"plan_node_step\",\n \"plan_profile\",\n \"platform_actor_session\",\n \"platform_actor_token\",\n \"platform_actor_token_event\",\n \"platform_continued_access\",\n \"platform_org_knob_override\",\n \"platform_outcome_event\",\n \"platform_outsider_consumer\",\n \"platform_reachability\",\n \"platform_reference_category\",\n \"platform_reference_declaration\",\n \"platform_repo\",\n \"platform_saved_view\",\n \"platform_schema\",\n \"platform_share_link\",\n \"platform_user_knob_override\",\n \"podcast_race\",\n \"policy_overlap_backup\",\n \"policy_overlap_probe\",\n \"processed_document\",\n \"processed_document_page\",\n \"product_capture_file\",\n \"product_capture_item\",\n \"product_capture_payload\",\n \"product_capture_product\",\n \"product_capture_question\",\n \"profile\",\n \"project\",\n \"prompt\",\n \"provider_account\",\n \"provider_account_credential\",\n \"provision\",\n \"provision_generate_target\",\n \"provision_grant\",\n \"provision_marker\",\n \"provision_rule_message\",\n \"provision_schema\",\n \"provision_shape_debt\",\n \"provision_spec\",\n \"provision_spec_grandfather\",\n \"provision_vocabulary\",\n \"purpose\",\n \"quiz_session\",\n \"rag_ingest_run\",\n \"rag_library_audit_log\",\n \"rate_limit_buckets\",\n \"recompute_queue\",\n \"record\",\n \"record_alias\",\n \"redaction_mapping\",\n \"research_analysis\",\n \"research_content\",\n \"research_context_bundle\",\n \"research_document\",\n \"research_intent\",\n \"research_keyword\",\n \"research_media\",\n \"research_source\",\n \"research_synthesis\",\n \"research_tag\",\n \"research_template\",\n \"research_topic\",\n \"retention_policy\",\n \"retrieval_audit\",\n \"review_queue\",\n \"route_manifest_entry\",\n \"row_version\",\n \"rulebook\",\n \"runtime_operation_stream\",\n \"runtime_operation_stream_batch\",\n \"sandbox_instance\",\n \"sch_agent_task\",\n \"sch_run\",\n \"sch_task\",\n \"sch_trigger\",\n \"schema_client_exposure\",\n \"schema_migration_ledger\",\n \"schema_migration_legacy\",\n \"schema_migration_slot_grandfather\",\n \"schema_templates\",\n \"scope\",\n \"scope_association_suggestion\",\n \"scope_dataset_instance\",\n \"scope_door_registry\",\n \"scope_item_value_suggestion\",\n \"scope_suggestion\",\n \"scope_type\",\n \"scrape_domain\",\n \"scrape_domain_settings\",\n \"scrape_failure_log\",\n \"scrape_parsed_page\",\n \"scrape_path_override\",\n \"scrape_path_pattern\",\n \"scrape_retry_queue\",\n \"seo_ai_capability\",\n \"seo_ai_visibility_citation\",\n \"seo_ai_visibility_claim\",\n \"seo_ai_visibility_panel\",\n \"seo_ai_visibility_response\",\n \"seo_ai_visibility_signal\",\n \"seo_backlink\",\n \"seo_backlink_change_event\",\n \"seo_backlink_dimension_snapshot\",\n \"seo_backlink_observation\",\n \"seo_backlink_snapshot\",\n \"seo_change_assessment\",\n \"seo_change_event\",\n \"seo_change_item\",\n \"seo_change_metric\",\n \"seo_change_set\",\n \"seo_change_theory\",\n \"seo_collection_run\",\n \"seo_competitor\",\n \"seo_competitor_observation\",\n \"seo_competitor_opportunity\",\n \"seo_coverage_mention\",\n \"seo_coverage_tracker\",\n \"seo_dimension_value_matcher\",\n \"seo_engine_schedule\",\n \"seo_geo_place\",\n \"seo_gsc_dig_rule\",\n \"seo_keyword\",\n \"seo_keyword_class_rule\",\n \"seo_keyword_edge\",\n \"seo_keyword_facet\",\n \"seo_keyword_market\",\n \"seo_keyword_market_observation\",\n \"seo_keyword_place\",\n \"seo_keyword_saved_view\",\n \"seo_keyword_topic\",\n \"seo_landscape_brief\",\n \"seo_link_gap_domain\",\n \"seo_link_gap_match\",\n \"seo_map_facet\",\n \"seo_map_facet_value\",\n \"seo_map_topic\",\n \"seo_page_measurement_health\",\n \"seo_page_performance\",\n \"seo_provider_call\",\n \"seo_provider_task\",\n \"seo_rank_observation\",\n \"seo_rank_target\",\n \"seo_raw_payload\",\n \"seo_referring_domain_profile\",\n \"seo_reputation_case\",\n \"seo_search_performance_daily\",\n \"seo_serp_mention\",\n \"seo_serp_opportunity\",\n \"seo_serp_result\",\n \"seo_serp_snapshot\",\n \"seo_site_geo_area\",\n \"seo_site_keyword_offering\",\n \"seo_site_keyword_value\",\n \"seo_site_offering_value\",\n \"seo_site_topic_value\",\n \"seo_site_value_combo\",\n \"seo_site_value_worth\",\n \"seo_site_vocabulary\",\n \"seo_source_request\",\n \"seo_starter_pack\",\n \"seo_starter_pack_item\",\n \"seo_story_angle\",\n \"seo_topic\",\n \"seo_topical_map\",\n \"seo_web_analytics_daily\",\n \"share_link\",\n \"shareable_resource_registry\",\n \"shared_canvas_item\",\n \"short_link\",\n \"shortcut_category\",\n \"skill\",\n \"skill_category\",\n \"skill_render_definition\",\n \"sms_consent\",\n \"sms_conversation\",\n \"sms_message\",\n \"sms_message_media\",\n \"sms_notification\",\n \"sms_notification_preference\",\n \"sms_phone_number\",\n \"sms_rate_limits\",\n \"sms_webhook_logs\",\n \"soft_delete_edge\",\n \"source_authority\",\n \"stage_dockets_966c18eca7\",\n \"stage_ref_kind\",\n \"stamped_write_table\",\n \"structure\",\n \"structured_list\",\n \"studio_cleaned_segments\",\n \"studio_concept_items\",\n \"studio_documents\",\n \"studio_module_segments\",\n \"studio_raw_segments\",\n \"studio_recording_chunks\",\n \"studio_recording_segments\",\n \"studio_run\",\n \"studio_session\",\n \"studio_session_settings\",\n \"study_attempt\",\n \"study_goal\",\n \"study_media\",\n \"study_plan\",\n \"study_plan_block\",\n \"study_plan_day\",\n \"study_reminder_context\",\n \"study_reminder_delivery\",\n \"study_session\",\n \"study_source_chunk\",\n \"study_streak\",\n \"study_structured_section\",\n \"superseded_policy\",\n \"surface\",\n \"system_announcement\",\n \"system_context_item\",\n \"system_error\",\n \"system_orgs\",\n \"system_personal_org_failure\",\n \"system_write_failure\",\n \"task\",\n \"task_user_state\",\n \"taxonomy_node\",\n \"template_context_items\",\n \"template_scope_types\",\n \"templates\",\n \"thread\",\n \"tool\",\n \"tool_binding\",\n \"tool_bundle\",\n \"tool_call\",\n \"tool_definition_version\",\n \"tool_executor\",\n \"tool_surface_defaults\",\n \"tool_test_sample\",\n \"tool_ui\",\n \"tool_ui_incident\",\n \"tool_ui_version\",\n \"topic_placement_queue\",\n \"transcript\",\n \"trigger_event\",\n \"udt_dataset_fields\",\n \"udt_dataset_row_versions\",\n \"udt_dataset_rows\",\n \"udt_dataset_template\",\n \"udt_dataset_template_fields\",\n \"udt_document\",\n \"udt_document_snapshot\",\n \"udt_structured_list_items\",\n \"udt_workbook_snapshot\",\n \"ui_client\",\n \"ui_surface_agent_pref\",\n \"ui_surface_agent_role\",\n \"ui_surface_client_tool\",\n \"ui_surface_config\",\n \"ui_surface_value\",\n \"ui_surface_write_target\",\n \"unsubscribe_token\",\n \"uploads_inflight\",\n \"user_achievement\",\n \"user_active_context\",\n \"user_analysis_preference\",\n \"user_bookmark\",\n \"user_email_preference\",\n \"user_entity_state\",\n \"user_feedback\",\n \"user_follows\",\n \"user_form_profile\",\n \"user_markdown_sample\",\n \"user_memory\",\n \"user_preference\",\n \"user_profile\",\n \"user_secret\",\n \"user_secret_audit\",\n \"user_secret_grant\",\n \"user_stat\",\n \"user_storage_usage\",\n \"user_surface_state\",\n \"visibility_cache\",\n \"visibility_epoch\",\n \"voice\",\n \"war_room\",\n \"wbx_capture\",\n \"wbx_demo\",\n \"wbx_guidance\",\n \"wbx_highlight\",\n \"wbx_pattern\",\n \"wbx_recipe\",\n \"wbx_screenshot\",\n \"wbx_seo_audit\",\n \"wc_claim\",\n \"wc_impairment_definition\",\n \"wc_injury\",\n \"wc_report\",\n \"web_analysis_item\",\n \"web_brand\",\n \"web_brand_asset\",\n \"web_brand_offering\",\n \"web_business_fact\",\n \"web_business_location\",\n \"web_channel_analytics_daily\",\n \"web_crawl_event\",\n \"web_crawl_preset\",\n \"web_crawl_schedule\",\n \"web_crawl_session\",\n \"web_crawl_url\",\n \"web_discovered_item\",\n \"web_finding\",\n \"web_gsc_page_stat\",\n \"web_link_edge\",\n \"web_listing_publisher\",\n \"web_location_listing\",\n \"web_offering_template\",\n \"web_page\",\n \"web_page_content\",\n \"web_page_evidence\",\n \"web_page_sitemap\",\n \"web_property\",\n \"web_provider\",\n \"web_result\",\n \"web_screenshot\",\n \"web_site\",\n \"web_site_endpoint_rule\",\n \"web_site_item_config\",\n \"web_site_offering\",\n \"web_sitemap\",\n \"web_snapshot\",\n \"web_tag_manager_snapshot\",\n \"web_youtube_video\",\n \"webhook_deliveries\",\n \"webhook_dispatch_state\",\n \"webhooks\",\n \"wf_node_data_slot\",\n \"work_claim\",\n \"work_item\",\n \"workbook\",\n \"worker_heartbeat\",\n \"workflow\",\n \"workflow_card\",\n \"workflow_checkpoint\",\n \"workflow_comparison\",\n \"workflow_definition_version\",\n \"workflow_idempotency\",\n \"workflow_job\",\n \"workflow_node_events\",\n \"workflow_node_outcome\",\n \"workflow_plan\",\n \"workflow_plan_event\",\n \"workflow_plan_sample\",\n \"workflow_recovery_audit\",\n \"workflow_run\",\n \"workflow_run_log\",\n \"workflow_runtime_surface\",\n \"workflow_template\",\n \"workflow_trigger\",\n \"workflow_trigger_fire\",\n \"workflow_work_item\",\n \"working_document\",\n \"write_guard_key\",\n \"youtube_quota_day\",\n \"youtube_search\",\n \"youtube_video\",\n] as const;\n\nexport type StoreRefusalCode = (typeof STORE_REFUSAL_CODES)[number][\"code\"];\nexport type StoreDoorName = (typeof STORE_DOORS)[number][\"name\"];\nexport type EntityToken = (typeof ENTITY_TOKENS)[number];\nexport type KernelTableName = (typeof KERNEL_TABLES)[number][\"name\"];\n","// src/core/doors.ts — @ai-matrx/records\n//\n// THE DOOR TABLE. Every call this package can make names a door, and every door\n// it names is checked against `STORE_DOORS` — which is generated from `pg_proc`\n// on the live store, not written by a person.\n//\n// A door that is not there yet is answered `door_absent`, naming the door AND\n// the lane that owns it. That is the whole of \"nothing fails silently\" for this\n// package: there is no empty array standing in for a search nobody built, and\n// no `true` standing in for a proposal nobody can approve.\n\nimport { STORE_DOORS } from \"../store.generated\";\nimport type { RecordsError } from \"../results\";\n\n/** Which lane owes each door that does not exist yet (BUILD-BOOK \"Packages\"). */\nconst OWED_BY: Record<string, string> = {\n metadata_search: \"W5-SRV / W5-AGENT — the agent surface's eight verbs\",\n record_aggregate: \"W5-SRV / W5-AGENT — `record_aggregate` is one of the eight verbs\",\n field_propose: \"W5-AGENT — AGT-4/AGT-8, the proposal and its approvers\",\n table_propose: \"W5-AGENT — AGT-8, the proposal and its approvers\",\n merge_field_resolve: \"W5-MERGE-B — the resolver's server half\",\n record_query: \"W1-INDEX / W5-SRV — the promoted-field query path\",\n rule_declare:\n \"W1-RULE — `custom.record_write` writes `data_class = 'record'`, so the ONE write door cannot \" +\n \"make a Rule record; declaring a Rule (and therefore a DOOR-18 subscription) needs a door of its own\",\n};\n\n/**\n * THE TRUST DOORS, AND WHY THEY ARE A SEPARATE TABLE.\n *\n * `iam.is_external_principal`, the publish binding and the world lane are NOT\n * the record store's. They are the platform's answer to \"who is this person to\n * us?\" and \"does this thing have a public address?\", and W2-TRUST owns them.\n * They live in schema `iam`, so `pnpm records:generate` — which reads `custom`\n * and only `custom` — does not and should not see them.\n *\n * They are therefore named here by hand, once, with the schema they belong to\n * said out loud. A client that pretended they were store doors would be lying\n * about which system answered it: when the world lane is closed, the sentence a\n * person reads is `iam`'s, not the store's.\n */\nexport const TRUST_SCHEMA = \"iam\";\n\nexport const TRUST_DOORS = {\n /** VIS-31. A signed-in outsider: an account with no NON-personal organization. */\n isExternalPrincipal: \"is_external_principal\",\n /** The same answer with the plain-English reason attached. */\n externalPrincipalCard: \"external_principal_card\",\n /** EXACTLY the resources Visibility gave that outsider — never \"their organization's\". */\n externalPrincipalReach: \"external_principal_reach\",\n /** VIS-32. A record or a view bound to a public address with a declared render mode. */\n publishBindingCreate: \"publish_binding_create\",\n publishBindingRevoke: \"publish_binding_revoke\",\n /** What a SIGNED-OUT visitor resolves. Returns nothing for an invented or revoked address. */\n resolvePublishBinding: \"resolve_publish_binding\",\n /** D-15. The one sentence that admits nothing was scanned — one function, so it cannot drift. */\n worldPublishGapNotice: \"world_publish_gap_notice\",\n publishToWorld: \"publish_to_world\",\n worldPublishAdmit: \"world_publish_admit\",\n claimWorldNamespace: \"claim_world_namespace\",\n} as const;\n\nexport type TrustDoorKey = keyof typeof TRUST_DOORS;\n\nconst DOOR_NAMES = new Set<string>(STORE_DOORS.map((d) => d.name));\n\nexport function doorExists(name: string): boolean {\n return DOOR_NAMES.has(name);\n}\n\n/** The refusal a missing door gets. It always says who owes it. */\nexport function doorAbsent(name: string): RecordsError {\n const owed = OWED_BY[name];\n return {\n code: \"door_absent\",\n message:\n `The record store has no door \\`custom.${name}\\` yet, so this call was not made. ` +\n `Nothing was read and nothing was written.`,\n hint: owed\n ? `That door is ${owed}. Until it lands, this call refuses rather than guessing: ` +\n `an empty answer here would read like \"there is nothing\", which is a different sentence.`\n : `No lane in the build book claims this door. Either the name is wrong, or the door was ` +\n `removed from the store and this package has not been regenerated — run \\`pnpm records:generate\\`.`,\n };\n}\n\n/** The doors this package calls, one place, so the suite can walk them. */\nexport const DOORS = {\n // THE READ DOOR (DOOR-1). Every read of a record's values goes through these\n // two and nothing else: they resolve the reader from the session, ask\n // visibility once per set, and mask the fields this reader may not see with a\n // notice under `_hidden`. Selecting `custom.record` directly is the thing\n // they exist to replace — it returns rows and fields the store never agreed\n // this person could see.\n readRecord: \"read_record\",\n readRecords: \"read_records\",\n // DOOR-8, the two clocks. `p_recorded_at` is what the store SAID then;\n // `p_world_on` is what was TRUE of the world on that date, read out of dated\n // values. A client that answered either one itself would be guessing.\n queryRecordAsOf: \"query_record_as_of\",\n queryTableAsOf: \"query_table_as_of\",\n recordWrite: \"record_write\",\n recordUpdate: \"record_update\",\n recordDelete: \"record_delete\",\n recordRestore: \"record_restore\",\n recordValues: \"record_values\",\n recordValuesVersioned: \"record_values_versioned\",\n valueRead: \"value_read\",\n computedProvenance: \"computed_provenance\",\n recordApplicability: \"record_applicability\",\n applicableFields: \"applicable_fields\",\n fieldOptions: \"field_options\",\n parityValues: \"parity_values\",\n tableDeclare: \"table_declare\",\n tableCapacity: \"table_capacity\",\n tableStorage: \"table_storage\",\n promoteTable: \"promote_table\",\n promoteField: \"promote_field\",\n promotedFields: \"promoted_fields\",\n promotedRead: \"promoted_read\",\n relationTargets: \"relation_targets\",\n relationOwn: \"relation_own\",\n homeAdd: \"home_add\",\n recordReparent: \"record_reparent\",\n containmentChain: \"containment_chain\",\n storeIsOpen: \"store_is_open\",\n // DOOR-11. The record's own revision list. A screen that offers an optimistic\n // save needs the version it LOADED, and the read door answers documents, not\n // versions — so the version comes from here, once, for the one record being\n // edited, and never for a whole list.\n ioRevisions: \"io_revisions\",\n resolveFirstMatch: \"resolve_first_match\",\n // The kernels a package-owned Table needs to exist at all: a Home is a record\n // in the person kernel, a Field is a record in the field kernel (REC-1).\n personKernelId: \"person_kernel_id\",\n fieldKernelId: \"field_kernel_id\",\n ruleKernelId: \"rule_kernel_id\",\n // And the Table kernel, which is how `tableList` asks the READ DOOR for this\n // organization's Tables: a Table is a record like any other, so listing them\n // is `read_records(org, table_kernel_id())` and never a select on a table.\n tableKernelId: \"table_kernel_id\",\n // A saved view references its membership Rule, and the STORE decides who is\n // in it — the screen never re-implements the predicate.\n ruleMembers: \"rule_members\",\n ruleMembership: \"rule_membership\",\n ruleRun: \"rule_run\",\n ruleEval: \"rule_eval\",\n // The eighth verb (AGT-N-8): a grouped, bucketed, filtered count/sum/avg/\n // min/max computed INSIDE the read door's own query, so a chart shows exactly\n // the rows this person may see and never fetches the ones they may not.\n recordAggregate: \"record_aggregate\",\n aggOperations: \"agg_operations\",\n aggBuckets: \"agg_buckets\",\n // DOOR-18: a subscription is a Rule record carrying a `subscription` block\n // over a saved view. There is no subscription TABLE and no second notifier.\n aggSubscriptions: \"agg_subscriptions\",\n aggSubscriptionCadences: \"agg_subscription_cadences\",\n // The doc doors: a template is saved, a render is written once and frozen,\n // and a signature is checked against the exact bytes that were signed.\n docTemplateSave: \"doc_template_save\",\n docRenderBody: \"doc_render_body\",\n docRenderDocument: \"doc_render_document\",\n docTokens: \"doc_tokens\",\n docUnresolvedTokens: \"doc_unresolved_tokens\",\n docSign: \"doc_sign\",\n docSignatureIntact: \"doc_signature_intact\",\n // THE ANONYMOUS LANE (W4-ANON). It landed, and it landed as SEVEN doors\n // rather than the one this package had guessed at: a token is issued and\n // verified separately from the write it authorises, a form is published\n // separately from being declared, and an offline capture by a SIGNED-IN\n // person is a different door from a write by a stranger.\n //\n // This package used to name a door `anon_record_write`, which never existed —\n // so `FormRunner` told every person that the public link was \"pending\" for a\n // lane that had already shipped. A screen calling a live feature pending is\n // the same silent failure as a screen calling a missing one live, and the fix\n // is to name the doors the store actually has.\n anonTokenIssue: \"anon_token_issue\",\n anonTokenVerify: \"anon_token_verify\",\n anonTokenRevoke: \"anon_token_revoke\",\n /** The stranger's write. The TOKEN names the organization; a caller never does. */\n anonWrite: \"anon_write\",\n /** SCR-30. The signed-in OFFLINE path: the client mints the key, the store dedupes on it. */\n anonCapture: \"anon_capture\",\n anonPublish: \"anon_publish\",\n\n // WORK (W4-WORK): a template instantiated as real records, whose turn it is,\n // and a slot somebody is holding. `ChecklistRunner` and `BookingSlots` are\n // screens over these and hold no state of their own.\n workStates: \"work_states\",\n workTemplateDeclare: \"work_template_declare\",\n workTemplateInstantiate: \"work_template_instantiate\",\n workTemplateShape: \"work_template_shape\",\n /** Why a graph would be refused — asked BEFORE it is written, never after. */\n workTemplateRefusal: \"work_template_refusal\",\n workWhoseTurn: \"work_whose_turn\",\n workTakeAssignment: \"work_take_assignment\",\n workHasAssignment: \"work_has_assignment\",\n workAssignmentFields: \"work_assignment_fields\",\n workTransitionRefusal: \"work_transition_refusal\",\n workInstantiationShape: \"work_instantiation_shape\",\n workSlotsDeclare: \"work_slots_declare\",\n workSlotHold: \"work_slot_hold\",\n workSlotRelease: \"work_slot_release\",\n workSlotHolds: \"work_slot_holds\",\n workSlotExpire: \"work_slot_expire\",\n\n // Declared here BECAUSE they do not exist yet: naming them is what makes the\n // absence visible to `pnpm check:store-registry` and to the suite.\n metadataSearch: \"metadata_search\",\n ruleDeclare: \"rule_declare\",\n fieldPropose: \"field_propose\",\n tablePropose: \"table_propose\",\n mergeFieldResolve: \"merge_field_resolve\",\n} as const;\n\nexport type DoorKey = keyof typeof DOORS;\n\n/** Which of this package's doors the live store actually has, and which it does not. */\nexport function doorCensus(): { present: string[]; absent: string[] } {\n const present: string[] = [];\n const absent: string[] = [];\n for (const name of Object.values(DOORS)) {\n (doorExists(name) ? present : absent).push(name);\n }\n return { present: present.sort(), absent: absent.sort() };\n}\n","// src/core/pgError.ts — @ai-matrx/records\n//\n// THE ONE FUNNEL from what the database said to what a caller reads. Every\n// method in this package's client goes through it, and it does exactly three\n// things: it classifies the SQLSTATE, it carries the store's message and hint\n// VERBATIM, and it parses the DETAIL when the store put json there.\n//\n// It never writes a sentence of its own about a refusal the store already\n// explained. The store's messages were written to be read by the person who hit\n// them — \"Someone else changed this record while you were working on it\" is the\n// screen's text, not a code the screen has to translate.\n\nimport type { PgError, RecordsError, RecordsErrorCode, StaleWriteDetail } from \"../results\";\n\n/**\n * SQLSTATE -> code. Every entry here answers one of the codes\n * `STORE_REFUSAL_CODES` reports the store raising; the real-door suite asserts\n * that this map covers all of them, so a new refusal class in the store shows\n * up as a red test rather than an `internal` in somebody's console.\n */\nconst BY_SQLSTATE: Record<string, RecordsErrorCode> = {\n PT409: \"stale_write\",\n \"42501\": \"door\",\n \"23514\": \"refused_by_rule\",\n \"22004\": \"invalid_argument\",\n \"22023\": \"invalid_argument\",\n \"02000\": \"not_found\",\n \"23503\": \"missing_reference\",\n \"23505\": \"already_exists\",\n \"0A000\": \"not_supported\",\n \"53400\": \"store_limit\",\n \"22012\": \"store_limit\",\n // VIS: `custom.has_visibility_at` refuses to answer from a snapshot older\n // than a write this reader has already seen, rather than returning something\n // they just lost access to. It is retryable on a fresher connection, which is\n // a different instruction from every other refusal here.\n \"40001\": \"stale_read\",\n // PostgREST's own two: the store is not being SERVED, which is a different\n // thing from the store refusing. `custom` absent from `pgrst.db_schemas`, or\n // the grants not copied, land here.\n PGRST202: \"store_not_served\",\n PGRST205: \"store_not_served\",\n PGRST301: \"door\",\n};\n\n/** The SQLSTATEs this package claims to understand. Exported for the guard. */\nexport const MAPPED_SQLSTATES = Object.keys(BY_SQLSTATE);\n\nfunction parseDetail(details: string | null | undefined): unknown {\n if (!details) return undefined;\n const trimmed = details.trim();\n if (!trimmed.startsWith(\"{\") && !trimmed.startsWith(\"[\")) return details;\n try {\n return JSON.parse(trimmed) as unknown;\n } catch {\n return details;\n }\n}\n\n/** Map a PostgREST/supabase-js failure into the package's refusal shape. */\nexport function mapPgError(error: PgError, where: string): RecordsError {\n const sqlstate = error.code ?? undefined;\n const code: RecordsErrorCode = (sqlstate ? BY_SQLSTATE[sqlstate] : undefined) ?? \"internal\";\n const mapped: RecordsError = {\n code,\n message: error.message,\n ...(error.hint ? { hint: error.hint } : {}),\n ...(sqlstate ? { sqlstate } : {}),\n };\n const detail = parseDetail(error.details);\n if (detail !== undefined) mapped.detail = detail;\n if (code === \"internal\") {\n // Still the store's own words — but say out loud that this package did not\n // recognise the class, so nobody reads the silence as \"handled\".\n mapped.hint =\n (mapped.hint ? `${mapped.hint} ` : \"\") +\n `(@ai-matrx/records did not recognise SQLSTATE ${sqlstate ?? \"(none)\"} from ${where}; ` +\n `the message above is the store's own and is the thing to act on.)`;\n }\n return mapped;\n}\n\n/** Pull the conflict out of a `stale_write`, when the store sent one. */\nexport function staleWriteDetail(error: RecordsError): StaleWriteDetail | null {\n if (error.code !== \"stale_write\") return null;\n const detail = error.detail as Partial<StaleWriteDetail> | undefined;\n if (\n !detail ||\n typeof detail.expected_version !== \"number\" ||\n typeof detail.current_version !== \"number\"\n ) {\n return null;\n }\n return {\n expected_version: detail.expected_version,\n current_version: detail.current_version,\n contested_fields: detail.contested_fields ?? {},\n };\n}\n","// src/core/query.ts — @ai-matrx/records\n//\n// THE QUERY. DOOR-6 … DOOR-10.\n//\n// Query by any combination of relation coordinates and any subset of them; as-of\n// a date on EITHER clock; promoted-field predicates. DOOR-10 is the one that\n// shapes this module: every query is filtered by Visibility INSIDE the query,\n// never post-filtered — which is why nothing here ever reads rows and then drops\n// some. The filtering happens in the store's own policies and in the doors; this\n// builder only describes what to ask for.\n//\n// DOOR-N-3: every hot read runs as a PREPARED statement. A client cannot prepare\n// anything itself, so the builder never concatenates a value into SQL: relation\n// coordinates resolve through `custom.relation_targets`, promoted predicates\n// through `custom.promoted_read`, and both are functions with typed parameters —\n// which is what \"prepared\" means on this side of the wire.\n\nimport type { RelationCoordinate } from \"../relation\";\nimport type { Timestamp, Uuid } from \"../record\";\n\n/**\n * DOOR-8. As-of on EITHER clock, and they are different questions:\n * · `record` — the record clock: what this record looked like at version time.\n * · `world` — the world clock: which values were true of the world then\n * (the Field's `dated` modifier).\n */\nexport interface AsOf {\n clock: \"record\" | \"world\";\n at: Timestamp;\n}\n\n/** A predicate over a PROMOTED field (REC-5: promotion light -> heavy). */\nexport interface PromotedPredicate {\n field_key: string;\n /** The value as text, exactly as `custom.promoted_read` takes it. */\n equals: string;\n}\n\nexport interface RecordQuery {\n table_id: Uuid;\n /** DOOR-6. Any combination, any subset. An empty list means \"no relation constraint\". */\n relations?: RelationCoordinate[];\n /** Predicates the store can answer from an index. */\n promoted?: PromotedPredicate[];\n /** DOOR-8. */\n asOf?: AsOf;\n /** DOOR-9. Ask across EVERY Home of this Table in one answer. */\n acrossHomes?: boolean;\n /** REC-23. Soft-deleted rows are out unless you say otherwise. */\n includeDeleted?: boolean;\n /** FLD-10. */\n recordType?: string;\n orderBy?: { column: \"created_at\" | \"updated_at\"; ascending?: boolean };\n limit?: number;\n offset?: number;\n}\n\n/**\n * What a query decomposes into: a set of door calls whose answers INTERSECT,\n * then one filtered read. Kept as data rather than hidden inside the client so\n * the suite can assert the plan as well as the answer — a query that quietly\n * stopped applying one of its coordinates is otherwise invisible.\n */\nexport interface QueryPlan {\n /** One `relation_targets` call per coordinate; the id sets are intersected. */\n relationCalls: Array<{ door: \"relation_targets\"; record_id: Uuid; via_key: string | null }>;\n /** One `promoted_read` call per predicate; intersected with the above. */\n promotedCalls: Array<{ door: \"promoted_read\"; field_key: string; value: string }>;\n /** The filtered read over `custom.record`, which the store's policies gate. */\n read: {\n table_id: Uuid;\n includeDeleted: boolean;\n recordType: string | null;\n asOf: AsOf | null;\n acrossHomes: boolean;\n orderBy: { column: string; ascending: boolean };\n limit: number;\n offset: number;\n };\n /**\n * Stated so nobody has to guess: when this is true the answer is the\n * intersection of the id sets above, and when it is false the read stands\n * alone.\n */\n intersects: boolean;\n}\n\nexport const DEFAULT_PAGE_SIZE = 50;\n\nexport function planQuery(query: RecordQuery): QueryPlan {\n const relationCalls = (query.relations ?? []).map((coordinate) => ({\n door: \"relation_targets\" as const,\n record_id: coordinate.record_id,\n via_key: coordinate.role ?? null,\n }));\n const promotedCalls = (query.promoted ?? []).map((predicate) => ({\n door: \"promoted_read\" as const,\n field_key: predicate.field_key,\n value: predicate.equals,\n }));\n return {\n relationCalls,\n promotedCalls,\n read: {\n table_id: query.table_id,\n includeDeleted: query.includeDeleted ?? false,\n recordType: query.recordType ?? null,\n asOf: query.asOf ?? null,\n acrossHomes: query.acrossHomes ?? false,\n orderBy: {\n column: query.orderBy?.column ?? \"created_at\",\n ascending: query.orderBy?.ascending ?? false,\n },\n limit: query.limit ?? DEFAULT_PAGE_SIZE,\n offset: query.offset ?? 0,\n },\n intersects: relationCalls.length + promotedCalls.length > 0,\n };\n}\n\n/** The intersection of the id sets a plan's calls produced. Order is preserved from the first set. */\nexport function intersectIds(sets: Uuid[][]): Uuid[] {\n if (sets.length === 0) return [];\n const [first, ...rest] = sets as [Uuid[], ...Uuid[][]];\n const others = rest.map((s) => new Set(s));\n return first.filter((id) => others.every((set) => set.has(id)));\n}\n","// src/core/client.ts — @ai-matrx/records\n//\n// THE TYPED CLIENT OVER THE STORE'S DOORS, AND NOTHING ELSE.\n//\n// Every write in this file goes through `custom.record_write`,\n// `custom.record_update`, `custom.record_delete` or `custom.record_restore`.\n// There is no `insert`, no `update` and no `delete` against `custom.record`\n// anywhere in this package, and there is no code path that adds one: DOOR-N-1\n// says there is exactly one write door and `authenticated` holds no direct\n// INSERT, UPDATE or DELETE grant on the store — a client that tried would be\n// refused, and a client that TRIES is a defect even when it is refused.\n//\n// Reads go through the read door too (DOOR-1, DOOR-10): the filtered select over\n// `custom.record` is gated by the store's own policies, and this file never\n// takes rows and then drops some of them. Where it needs an id set it asks a\n// door for one.\n//\n// Nothing here throws. Every method answers `RecordsResult`, and every refusal\n// carries the store's own sentence.\n\nimport type { AggregateBucket, AggregateMeasure, AggregateRow } from \"../aggregate\";\nimport type { DocRenderRow, DocSignatureRow, DocTemplateRow, DocToken, DocUnresolvedToken } from \"../doc\";\nimport type { Subscription } from \"../subscription\";\nimport type {\n AnonTokenBinding,\n WorkAssignmentField,\n WorkGraph,\n WorkInstantiation,\n WorkSlotHold,\n WorkState,\n WorkTurn,\n} from \"../work\";\nimport type { ExternalPrincipalCard, PublishBinding, ResolvedPublishBinding } from \"../trust\";\nimport type { Field } from \"../field\";\nimport type { FieldProposal, TableProposal } from \"../field\";\nimport type {\n HiddenFieldNotice,\n ReadRow,\n RecordRevision,\n ReadValue,\n RecordDocument,\n RecordRead,\n StoredRecord,\n Timestamp,\n Uuid,\n} from \"../record\";\nimport type { RecordsConfig, RecordsErrorSink } from \"../ports\";\nimport type { RecordsError, RecordsResult, WriteConflict } from \"../results\";\nimport { err, ok } from \"../results\";\nimport type { Table, TableCapacity } from \"../table\";\nimport { DOORS, TRUST_DOORS, TRUST_SCHEMA, doorAbsent, doorExists } from \"./doors\";\nimport { mapPgError, staleWriteDetail } from \"./pgError\";\nimport { intersectIds, planQuery, type RecordQuery } from \"./query\";\n\nconst DEFAULT_SCHEMA = \"custom\";\n\nfunction sink(config: RecordsConfig): RecordsErrorSink {\n return (\n config.onError ??\n ((e) =>\n // The defined degradation, stated: loud, with the store's own words, and\n // naming where it happened. Never silence.\n console.error(`[@ai-matrx/records] ${e.where}: ${e.code} — ${e.message}${e.hint ? ` (${e.hint})` : \"\"}`))\n );\n}\n\nexport interface RecordsClient {\n /** The config this client was built with, so a screen can show who it is acting as. */\n readonly config: RecordsConfig;\n\n // ── writes: the one door each ────────────────────────────────────────────\n recordWrite(args: { table_id: Uuid; data: RecordDocument }): Promise<RecordsResult<Uuid>>;\n recordUpdate(args: {\n record_id: Uuid;\n patch: Record<string, unknown>;\n /** Leave it out and the last writer wins; supply it and a loser is TOLD. */\n expectedVersion?: number;\n }): Promise<RecordsResult<number>>;\n /** REC-23. Soft, and reversible within `retention`. */\n recordDelete(args: { record_id: Uuid }): Promise<RecordsResult<Timestamp>>;\n recordRestore(args: { record_id: Uuid }): Promise<RecordsResult<void>>;\n\n // ── reads ────────────────────────────────────────────────────────────────\n recordRead(args: { record_id: Uuid; withComputed?: boolean }): Promise<RecordsResult<RecordRead>>;\n /**\n * DOOR-1. A page of one Table's records THROUGH `custom.read_records`: the\n * store decides which rows this reader may see and which fields of them, and\n * a field it masked comes back present-and-null with its reason in `hidden`.\n * `total` is null because the door counts nothing it has not read — a count\n * of rows a person may not see is a leak with a number on it.\n */\n list(args: {\n table_id: Uuid;\n limit?: number;\n offset?: number;\n }): Promise<RecordsResult<{ rows: ReadRow[]; total: number | null }>>;\n query(query: RecordQuery): Promise<RecordsResult<{ rows: ReadRow[]; total: number | null }>>;\n tableList(): Promise<RecordsResult<Table[]>>;\n fields(args: { table_id: Uuid; recordType?: string }): Promise<RecordsResult<Field[]>>;\n /**\n * FLD-5 / FLD-6: a list field stores the id of an option RECORD, because\n * every pick-list is already a Table. These are that Table's records — the\n * store resolves which Table from the Field's own config, so no caller has to\n * know it.\n */\n fieldOptions(args: { field_id: Uuid }): Promise<RecordsResult<StoredRecord[]>>;\n tableCapacity(args: { table_id: Uuid }): Promise<RecordsResult<TableCapacity>>;\n\n // ── declaring a Table, and the kernels a Table needs to exist ────────────\n /**\n * REC-1: a Table has to live somewhere, so a Home comes first — and a Home is\n * an ordinary record in the person kernel. `homeId` is therefore required and\n * `personKernelId()` is how a caller gets a Table to write one into.\n */\n tableDeclare(args: { spec: Record<string, unknown>; homeId: Uuid }): Promise<RecordsResult<Uuid>>;\n /** The kernel Tables a caller writes a Home, a Field or a Rule into. */\n personKernelId(): Promise<RecordsResult<Uuid>>;\n fieldKernelId(): Promise<RecordsResult<Uuid>>;\n ruleKernelId(): Promise<RecordsResult<Uuid>>;\n\n // ── Rules: the STORE decides membership, never a screen ──────────────────\n /** Every record the Rule says is a member. A saved view's list is this, not a filter a screen ran. */\n ruleMembers(args: { rule_id: Uuid }): Promise<RecordsResult<StoredRecord[]>>;\n /** Is this one record a member, and WHY — the store's own answer. */\n ruleMembership(args: { rule_id: Uuid; record_id: Uuid }): Promise<RecordsResult<unknown>>;\n /** Run a stored Rule against a document. */\n ruleRun(args: { rule_id: Uuid; values: Record<string, unknown>; context?: Record<string, unknown> }): Promise<RecordsResult<unknown>>;\n /** Evaluate a Rule expression that has not been stored — the conditional logic a form runner asks about. */\n ruleEval(args: { expr: unknown; values: Record<string, unknown>; context?: Record<string, unknown> }): Promise<RecordsResult<unknown>>;\n\n // ── the eighth verb (AGT-N-8): the aggregate, computed in the read door ──\n /**\n * Group, bucket, filter and measure INSIDE `custom.record_aggregate`. The\n * aggregate node sits above the visibility join, so what a chart draws is\n * exactly what this person may see — the rest is never fetched, let alone\n * summed and then hidden.\n */\n recordAggregate(args: {\n table_id: Uuid;\n /** Field keys whose values become the groups. */\n groupBy?: string[];\n /** `count` needs no key; every other operation reads one Field. */\n measures?: AggregateMeasure[];\n /** A date Field truncated to a period — a group whose expression is a date_trunc. */\n bucket?: { key: string; by: AggregateBucket } | null;\n /** Equality only, and it lands in the SAME WHERE as visibility. */\n filter?: Record<string, string>;\n limit?: number;\n }): Promise<RecordsResult<AggregateRow[]>>;\n /** The measures the store itself offers. Asked, never hardcoded in a picker. */\n aggOperations(): Promise<RecordsResult<string[]>>;\n /** The periods the store itself buckets by. */\n aggBuckets(): Promise<RecordsResult<string[]>>;\n\n // ── subscriptions (DOOR-18): a Rule record over a saved view ─────────────\n /**\n * Every subscription in this organization, optionally narrowed to one saved\n * view or one cadence. There is no subscription table: each one is a Rule\n * record carrying a `subscription` block, so a subscription is readable,\n * historied and agent-writable like anything else.\n */\n aggSubscriptions(args?: {\n saved_view_id?: Uuid | null;\n cadence?: string | null;\n }): Promise<RecordsResult<Subscription[]>>;\n /** The cadences the store itself offers. Asked, never hardcoded in a picker. */\n aggSubscriptionCadences(): Promise<RecordsResult<string[]>>;\n\n // ── documents (W3-DOC): save, render once, sign the exact bytes ──────────\n docTemplateSave(args: {\n table_id: Uuid;\n name: string;\n body: string;\n template_id?: Uuid | null;\n }): Promise<RecordsResult<Uuid>>;\n /** The body with every token resolved against one record. Read-only, no render row. */\n docRenderBody(args: { template_id: Uuid; record_id: Uuid }): Promise<RecordsResult<string>>;\n /** Write the render — frozen bytes a signature can be checked against. */\n docRenderDocument(args: { template_id: Uuid; record_id: Uuid }): Promise<RecordsResult<Uuid>>;\n /** Every token in a body, in order, with the Field id each one points at. */\n docTokens(args: { body: string }): Promise<RecordsResult<DocToken[]>>;\n /** The tokens this Table cannot answer, each with the store's own reason. */\n docUnresolvedTokens(args: { table_id: Uuid; body: string }): Promise<RecordsResult<DocUnresolvedToken[]>>;\n docSign(args: {\n render_id: Uuid;\n field_key: string;\n signer_name: string;\n signer_user_id?: Uuid | null;\n }): Promise<RecordsResult<Uuid>>;\n /** Is what was signed still what is there? The store answers, never the screen. */\n docSignatureIntact(args: { signature_id: Uuid }): Promise<RecordsResult<unknown>>;\n /** Every template that renders one Table. */\n docTemplates(args: { table_id: Uuid }): Promise<RecordsResult<DocTemplateRow[]>>;\n /** Every frozen render of one record, newest first. */\n docRenders(args: { record_id: Uuid }): Promise<RecordsResult<DocRenderRow[]>>;\n /** Every signature on one record. */\n docSignatures(args: { record_id: Uuid }): Promise<RecordsResult<DocSignatureRow[]>>;\n /**\n * DOOR-11. One record's revisions, newest first. The read door answers\n * documents and deliberately not versions, so a screen that wants to save\n * optimistically reads the version of the record it LOADED from here — for\n * the one record being edited, never for a list.\n */\n revisions(args: { record_id: Uuid }): Promise<RecordsResult<RecordRevision[]>>;\n /**\n * Every value of one record WITH its envelope — its own version, who wrote\n * it, who they were acting for and when. The timeline IS the record (REC-19);\n * there is no second history table.\n */\n recordValuesVersioned(args: { record_id: Uuid }): Promise<RecordsResult<ReadValue[]>>;\n\n // ── the doors that do not exist yet, named rather than faked ─────────────\n metadataSearch(args: { text: string }): Promise<RecordsResult<never>>;\n // ── the anonymous lane (W4-ANON) ─────────────────────────────────────────\n /**\n * Mint an embed token. `mode` is `read` OR `write` and never both — the store\n * refuses a token carrying two decisions. The secret comes back ONCE, because\n * only its digest is stored: a database read cannot produce a working token.\n * `allowedOrigins` is required and matched EXACTLY, so `example.com.evil.test`\n * fails a check that a suffix match would pass.\n */\n anonTokenIssue(args: {\n mode: \"read\" | \"write\";\n allowedOrigins: string[];\n formId?: Uuid | null;\n savedViewId?: Uuid | null;\n recordId?: Uuid | null;\n expiresAt?: Timestamp | null;\n }): Promise<RecordsResult<{ token_id: Uuid; secret: string }>>;\n /** What a secret is good for, from an origin. The store's sentence when it is not. */\n anonTokenVerify(args: {\n secret: string;\n origin: string;\n requiredMode?: \"read\" | \"write\" | null;\n }): Promise<RecordsResult<AnonTokenBinding>>;\n anonTokenRevoke(args: { token_id: Uuid }): Promise<RecordsResult<boolean>>;\n /**\n * A STRANGER'S WRITE. The token supplies the organization, so this call names\n * none — and what it produces is a QUARANTINED SUBMISSION, not a record:\n * `custom.record` is never touched here. `clientKey` makes a replay free and\n * idempotent, which is what lets a flaky phone retry safely.\n */\n anonWrite(args: {\n secret: string;\n origin: string;\n payload: Record<string, unknown>;\n clientKey?: string | null;\n rawPayload?: Record<string, unknown>;\n }): Promise<RecordsResult<Uuid>>;\n /**\n * SCR-30, and it is the SIGNED-IN offline path, not the stranger's. The client\n * mints `clientKey` BEFORE the first attempt, offline, and the store's own\n * replay ledger dedupes on it — so a reconnect that fires the same capture\n * thirty times writes one record and returns the same id every time.\n */\n anonCapture(args: {\n table_id: Uuid;\n clientKey: string;\n payload: Record<string, unknown>;\n device?: string | null;\n capturedAt?: Timestamp | null;\n }): Promise<RecordsResult<Uuid>>;\n /** Open or close a form to strangers. An admin act on the Table, never an editor one. */\n anonPublish(args: { form_id: Uuid; published?: boolean }): Promise<RecordsResult<Timestamp | null>>;\n\n // ── work (W4-WORK): templates, turns and slots ───────────────────────────\n /** The five states and what each one may become. Asked, never hardcoded in a picker. */\n workStates(): Promise<RecordsResult<WorkState[]>>;\n /** Why this graph would be refused — asked BEFORE it is written. `null` means it is fine. */\n workTemplateRefusal(args: { graph: WorkGraph }): Promise<RecordsResult<string | null>>;\n workTemplateDeclare(args: { name: string; graph: WorkGraph }): Promise<RecordsResult<Uuid>>;\n /**\n * REC-70: the WHOLE graph is created in one act, judged before any of it is\n * written, so a half-made checklist is not a state this store can be in.\n */\n workTemplateInstantiate(args: {\n template_id: Uuid;\n overrides?: Record<string, Record<string, unknown>>;\n }): Promise<RecordsResult<WorkInstantiation>>;\n workTemplateShape(args: { template_id: Uuid }): Promise<RecordsResult<unknown>>;\n workInstantiationShape(args: { instantiation_id: Uuid }): Promise<RecordsResult<unknown>>;\n /** Whose turn each record is, with its state and whether that state is terminal. */\n workWhoseTurn(args: { table_id: Uuid; includeFinished?: boolean }): Promise<RecordsResult<WorkTurn[]>>;\n /** Does this Table carry assignment at all? A screen asks before it offers one. */\n workHasAssignment(args: { table_id: Uuid }): Promise<RecordsResult<boolean>>;\n /** The Fields assignment is made of, so nothing here invents a column name. */\n workAssignmentFields(args?: { options_table_id?: Uuid | null }): Promise<RecordsResult<WorkAssignmentField[]>>;\n /** Add assignment to a Table. */\n workTakeAssignment(args: { table_id: Uuid }): Promise<RecordsResult<unknown>>;\n /** Why this move would be refused. `null` means it is allowed. */\n workTransitionRefusal(args: { from_state_id: Uuid; to_state_id: Uuid }): Promise<RecordsResult<string | null>>;\n /** Declare the Table slots are held in. Idempotent — a second call finds the first. */\n workSlotsDeclare(args: { name: string; slug: string; homeId?: Uuid | null }): Promise<RecordsResult<unknown>>;\n /**\n * SCR-29. Take a slot for a while. THE STORE decides, under a unique index —\n * two people racing for the same slot do not both get it, whatever either\n * screen believed a moment earlier.\n */\n workSlotHold(args: {\n table_id: Uuid;\n slotKey: string;\n holder: string;\n ttl?: string;\n }): Promise<RecordsResult<unknown>>;\n workSlotRelease(args: { hold_id: Uuid }): Promise<RecordsResult<boolean>>;\n /** Every hold on this Table, with whether it has already lapsed. */\n workSlotHolds(args: { table_id: Uuid }): Promise<RecordsResult<WorkSlotHold[]>>;\n workSlotExpire(args: { table_id: Uuid }): Promise<RecordsResult<number>>;\n\n // ── the trust doors: `iam`'s, not the store's ────────────────────────────\n /** VIS-31. Is this account a signed-in outsider — no NON-personal organization? */\n isExternalPrincipal(args?: { user_id?: Uuid | null }): Promise<RecordsResult<boolean>>;\n /** The same answer WITH the plain-English reason a screen shows. */\n externalPrincipalCard(args?: { user_id?: Uuid | null }): Promise<RecordsResult<ExternalPrincipalCard>>;\n /** Exactly the resource ids Visibility gave that outsider. Never an organization's list. */\n externalPrincipalReach(args: {\n resourceType: string;\n user_id?: Uuid | null;\n }): Promise<RecordsResult<Array<{ resource_id: Uuid }>>>;\n /** VIS-32. Bind a record or a view to a public address with a declared render mode. */\n publishBindingCreate(args: {\n slug: string;\n resourceType: string;\n resource_id: Uuid;\n renderMode?: string;\n }): Promise<RecordsResult<PublishBinding>>;\n publishBindingRevoke(args: { slug: string }): Promise<RecordsResult<unknown>>;\n /** What a SIGNED-OUT visitor resolves. Empty for an invented, revoked or unpublished address. */\n resolvePublishBinding(args: { slug: string }): Promise<RecordsResult<ResolvedPublishBinding[]>>;\n /** D-15. The ONE sentence admitting nothing was scanned, so four surfaces cannot drift. */\n worldPublishGapNotice(): Promise<RecordsResult<string>>;\n /** Put a resource in the world lane. Refuses by name while the lane is closed. */\n publishToWorld(args: {\n resourceType: string;\n resource_id: Uuid;\n discoverable?: boolean;\n }): Promise<RecordsResult<unknown>>;\n /**\n * Declare a Rule. It is NOT `recordWrite` into the rule kernel, and that is\n * the whole point: `custom.record_write` inserts `data_class = 'record'`, so a\n * document written that way is not a Rule and the store's own rule doors\n * (`custom.rule_members`, `custom.agg_subscriptions`) never see it. Writing\n * one through the record door and calling it a Rule would be a silent\n * failure — a screen that looked like it had subscribed you to something.\n */\n ruleDeclare(args: { spec: Record<string, unknown> }): Promise<RecordsResult<never>>;\n fieldPropose(proposal: FieldProposal): Promise<RecordsResult<never>>;\n tablePropose(proposal: TableProposal): Promise<RecordsResult<never>>;\n\n // ── promotion (REC-5) ────────────────────────────────────────────────────\n promoteTable(args: { table_id: Uuid }): Promise<RecordsResult<unknown>>;\n promoteField(args: { table_id: Uuid; field_id: Uuid }): Promise<RecordsResult<unknown>>;\n\n /** Is the store switched on for this organization? A product switch, never the boundary. */\n storeIsOpen(): Promise<RecordsResult<boolean>>;\n}\n\nexport function createRecordsClient(config: RecordsConfig): RecordsClient {\n const schema = config.schema ?? DEFAULT_SCHEMA;\n const org = config.organizationId;\n const scream = sink(config);\n\n async function callDoor<T>(\n door: string,\n args: Record<string, unknown>,\n where: string,\n ): Promise<RecordsResult<T>> {\n if (!doorExists(door)) {\n const refusal = doorAbsent(door);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where });\n return err(refusal);\n }\n // THE SCHEMA IS SAID OUT LOUD. A door of the store is `custom.<name>`, and\n // a host's supabase client resolves an unqualified `rpc()` against its own\n // default PostgREST profile — `public` in every client we ship. Leaving it\n // off therefore asked `public.store_is_open`, which the browser extension\n // found for us on its first real turn (2026-09-18, W6-EXT): \"Could not find\n // the function public.store_is_open(p_organization_id) in the schema cache\".\n // The package knows which schema it lives in, so it is the package that\n // says so, once, here — never every host remembering to.\n const response = await config.dataSource.rpc(`${door}`, args, { schema });\n if (response.error) {\n const refusal = mapPgError(response.error, where);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where });\n return err(refusal);\n }\n return ok(response.data as T);\n }\n\n /**\n * A TRUST DOOR — `iam`'s, not the store's.\n *\n * There is no `doorExists` check here on purpose: the store's generated\n * catalogue reads `custom` and only `custom`, so a census of it says nothing\n * true about `iam`. A trust door that is not there answers with Postgres's\n * own `42883`, which arrives through the same refusal funnel carrying the\n * name that was called — an honest \"no such function\", never an empty array\n * standing in for \"there is nothing\".\n */\n async function trustDoor<T>(\n door: string,\n args: Record<string, unknown>,\n where: string,\n ): Promise<RecordsResult<T>> {\n const response = await config.dataSource.rpc(door, args, { schema: TRUST_SCHEMA });\n if (response.error) {\n const refusal = mapPgError(response.error, where);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where });\n return err(refusal);\n }\n return ok(response.data as T);\n }\n\n /**\n * The read door returns ONE masked document with the notices folded in under\n * `_hidden` (`custom.mask_document`). A screen wants them apart: the values it\n * draws, and the reasons it shows where a value is missing. This splits them\n * and nothing else — it never decides what is hidden, it only reads what the\n * store already decided.\n */\n function unfold(document: unknown): { document: RecordDocument; hidden: Record<string, HiddenFieldNotice> } {\n const raw = (document ?? {}) as Record<string, unknown>;\n const hidden = (raw._hidden ?? {}) as Record<string, HiddenFieldNotice>;\n const values: RecordDocument = {};\n for (const [key, value] of Object.entries(raw)) {\n if (key === \"_hidden\") continue;\n values[key] = value;\n }\n return { document: values, hidden };\n }\n\n async function readValues(recordId: Uuid): Promise<RecordsResult<ReadValue[]>> {\n return callDoor<ReadValue[]>(\n DOORS.recordValuesVersioned,\n { p_organization_id: org, p_record_id: recordId },\n \"recordRead\",\n );\n }\n\n const client: RecordsClient = {\n config,\n\n async recordWrite({ table_id, data }) {\n return callDoor<Uuid>(\n DOORS.recordWrite,\n { p_organization_id: org, p_table_id: table_id, p_data: data },\n \"recordWrite\",\n );\n },\n\n async recordUpdate({ record_id, patch, expectedVersion }) {\n const result = await callDoor<number>(\n DOORS.recordUpdate,\n {\n p_organization_id: org,\n p_record_id: record_id,\n p_patch: patch,\n ...(expectedVersion === undefined ? {} : { p_expected_version: expectedVersion }),\n },\n \"recordUpdate\",\n );\n return result;\n },\n\n async recordDelete({ record_id }) {\n return callDoor<Timestamp>(\n DOORS.recordDelete,\n { p_organization_id: org, p_record_id: record_id },\n \"recordDelete\",\n );\n },\n\n async recordRestore({ record_id }) {\n return callDoor<void>(\n DOORS.recordRestore,\n { p_organization_id: org, p_record_id: record_id },\n \"recordRestore\",\n );\n },\n\n async recordRead({ record_id, withComputed = false }) {\n // DOOR-1: `custom.read_record` resolves the reader from the session,\n // refuses a record they have no visibility on in the store's own sentence,\n // and masks the fields their level does not reach. This client no longer\n // selects `custom.record` for a read — that path returned rows and fields\n // the store had not agreed this person could see.\n const door = await callDoor<unknown>(\n DOORS.readRecord,\n { p_organization_id: org, p_record_id: record_id },\n \"recordRead\",\n );\n if (!door.ok) return err(door.error);\n const { document, hidden } = unfold(door.data);\n\n let computed: RecordRead[\"computed\"] = [];\n if (withComputed) {\n const provenance = await callDoor<RecordRead[\"computed\"]>(\n DOORS.computedProvenance,\n { p_organization_id: org, p_record_id: record_id },\n \"recordRead.computed\",\n );\n if (!provenance.ok) return err(provenance.error);\n computed = provenance.data ?? [];\n }\n return ok({ record_id, document, hidden, computed });\n },\n\n async list({ table_id, limit = 50, offset = 0 }) {\n const door = await callDoor<Array<{ id: Uuid; document: unknown; level: string }>>(\n DOORS.readRecords,\n {\n p_organization_id: org,\n p_table_id: table_id,\n p_limit: limit,\n p_offset: offset,\n },\n \"list\",\n );\n if (!door.ok) return err(door.error);\n const rows: ReadRow[] = (door.data ?? []).map((row) => {\n const { document, hidden } = unfold(row.document);\n return { id: row.id, document, level: row.level, hidden };\n });\n // The door reads live records only — a deleted record is not in its set —\n // and it counts nothing, so `total` is honestly null rather than a number\n // taken from a table this reader may not see all of.\n return ok({ rows, total: null });\n },\n\n async query(input) {\n const plan = planQuery(input);\n const sets: Uuid[][] = [];\n for (const call of plan.relationCalls) {\n const result = await callDoor<Array<{ relation_targets: Uuid } | Uuid>>(\n DOORS.relationTargets,\n { p_organization_id: org, p_record_id: call.record_id, p_via_key: call.via_key },\n \"query.relations\",\n );\n if (!result.ok) return err(result.error);\n sets.push(\n (result.data ?? []).map((row) =>\n typeof row === \"string\" ? row : (row as { relation_targets: Uuid }).relation_targets,\n ),\n );\n }\n for (const call of plan.promotedCalls) {\n const result = await callDoor<Array<{ promoted_read: Uuid } | Uuid>>(\n DOORS.promotedRead,\n {\n p_organization_id: org,\n p_table_id: plan.read.table_id,\n p_field_key: call.field_key,\n p_value: call.value,\n },\n \"query.promoted\",\n );\n if (!result.ok) return err(result.error);\n sets.push(\n (result.data ?? []).map((row) =>\n typeof row === \"string\" ? row : (row as { promoted_read: Uuid }).promoted_read,\n ),\n );\n }\n\n const ids = plan.intersects ? intersectIds(sets) : null;\n if (ids !== null && ids.length === 0) {\n return ok({ rows: [], total: 0 });\n }\n\n // DOOR-8: an as-of read is the STORE'S question, on the store's two\n // clocks — `p_recorded_at` is what the store said at that moment, and\n // `p_world_on` is what was true of the world on that date. This client\n // used to answer the record clock itself with `updated_at <= at` and\n // refuse the world clock by name; both were workarounds for doors that\n // now exist (`custom.query_table_as_of` / `custom.query_record_as_of`),\n // and neither ever looked at a dated value.\n if (plan.read.asOf) {\n const clock = plan.read.asOf.clock === \"world\"\n ? { p_world_on: plan.read.asOf.at.slice(0, 10) }\n : { p_recorded_at: plan.read.asOf.at };\n if (ids !== null) {\n const answers = await Promise.all(\n ids.slice(0, plan.read.limit).map((id) =>\n callDoor<unknown>(\n DOORS.queryRecordAsOf,\n { p_organization_id: org, p_record_id: id, ...clock },\n \"query.asOf\",\n ).then((result) => ({ id, result })),\n ),\n );\n const rows: ReadRow[] = [];\n for (const { id, result } of answers) {\n if (!result.ok) return err(result.error);\n // A null answer is the door saying \"not visible to you at that\n // time\", which is an absence, not an empty record.\n if (result.data === null) continue;\n const { document, hidden } = unfold(result.data);\n rows.push({ id, document, level: \"viewer\", hidden });\n }\n return ok({ rows, total: rows.length });\n }\n const page = await callDoor<Array<{ record_id: Uuid; data: unknown }>>(\n DOORS.queryTableAsOf,\n {\n p_organization_id: org,\n p_table_id: plan.read.table_id,\n ...clock,\n p_limit: plan.read.limit,\n p_offset: plan.read.offset,\n },\n \"query.asOf\",\n );\n if (!page.ok) return err(page.error);\n const rows: ReadRow[] = (page.data ?? [])\n .filter((row) => row.data !== null)\n .map((row) => {\n const { document, hidden } = unfold(row.data);\n return { id: row.record_id, document, level: \"viewer\", hidden };\n });\n return ok({ rows, total: null });\n }\n\n // The live read, through the read door and nothing else. With a planned\n // id set the door is asked one record at a time (it is keyed by record),\n // bounded by the page size; without one it is asked for the page.\n if (ids !== null) {\n const answers = await Promise.all(\n ids.slice(0, plan.read.limit).map((id) =>\n callDoor<unknown>(\n DOORS.readRecord,\n { p_organization_id: org, p_record_id: id },\n \"query\",\n ).then((result) => ({ id, result })),\n ),\n );\n const rows: ReadRow[] = [];\n for (const { id, result } of answers) {\n if (!result.ok) {\n // `02000` is \"that record is not here (any more)\" — a planned id\n // that has since been deleted is an absence, not a failed query.\n if (result.error.sqlstate === \"02000\") continue;\n return err(result.error);\n }\n const { document, hidden } = unfold(result.data);\n rows.push({ id, document, level: \"viewer\", hidden });\n }\n return ok({ rows, total: rows.length });\n }\n\n return client.list({\n table_id: plan.read.table_id,\n limit: plan.read.limit,\n offset: plan.read.offset,\n });\n },\n\n async tableList() {\n // THROUGH THE READ DOOR, like everything else. A Table is a RECORD in the\n // Table kernel, so listing this organization's Tables is\n // `read_records(org, table_kernel_id())` — the store decides which of them\n // this reader may see. Until 2026-09-18 this method selected\n // `custom.table` directly, which (a) is the raw table access this package\n // exists to make impossible and (b) could never have worked from a client:\n // `authenticated` holds no privilege on ANY table in `custom`, by design.\n // The browser extension found it on its first real turn (W6-EXT).\n const kernel = await callDoor<Uuid>(DOORS.tableKernelId, {}, \"tableList.kernel\");\n if (!kernel.ok) return err(kernel.error);\n const door = await callDoor<Array<{ id: Uuid; document: unknown; level: string }>>(\n DOORS.readRecords,\n { p_organization_id: org, p_table_id: kernel.data, p_limit: 500, p_offset: 0 },\n \"tableList\",\n );\n if (!door.ok) return err(door.error);\n const tables = (door.data ?? []).map((row) => {\n const { document } = unfold(row.document);\n // The kernel record IS the Table's declaration; `id` is the Table's id.\n return { ...(document as Record<string, unknown>), id: row.id, organization_id: org } as unknown as Table;\n });\n tables.sort((a, b) => (a.name ?? \"\").localeCompare(b.name ?? \"\"));\n return ok(tables);\n },\n\n async fields({ table_id, recordType }) {\n // FLD-10: the store decides which Fields APPLY, from the record type. The\n // client asks the door rather than filtering a full list, because the\n // applicability Rule reads Values this client has not got.\n const applicable = await callDoor<Array<{ id: Uuid; data: unknown }>>(\n DOORS.applicableFields,\n {\n p_organization_id: org,\n p_table_id: table_id,\n ...(recordType === undefined ? {} : { p_record_type: recordType }),\n },\n \"fields\",\n );\n if (!applicable.ok) return err(applicable.error);\n const rows = applicable.data ?? [];\n return ok(\n rows.map((row) => ({ id: row.id, ...(row.data as object) }) as Field),\n );\n },\n\n async fieldOptions({ field_id }) {\n return callDoor<StoredRecord[]>(\n DOORS.fieldOptions,\n { p_organization_id: org, p_field_id: field_id },\n \"fieldOptions\",\n );\n },\n\n async tableCapacity({ table_id }) {\n return callDoor<TableCapacity>(\n DOORS.tableCapacity,\n { p_organization_id: org, p_table_id: table_id },\n \"tableCapacity\",\n );\n },\n\n async tableDeclare({ spec, homeId }) {\n return callDoor<Uuid>(\n DOORS.tableDeclare,\n { p_organization_id: org, p_spec: { ...spec, parent_id: homeId } },\n \"tableDeclare\",\n );\n },\n\n async personKernelId() {\n return callDoor<Uuid>(DOORS.personKernelId, {}, \"personKernelId\");\n },\n\n async fieldKernelId() {\n return callDoor<Uuid>(DOORS.fieldKernelId, {}, \"fieldKernelId\");\n },\n\n async ruleKernelId() {\n return callDoor<Uuid>(DOORS.ruleKernelId, {}, \"ruleKernelId\");\n },\n\n async ruleMembers({ rule_id }) {\n return callDoor<StoredRecord[]>(\n DOORS.ruleMembers,\n { p_organization_id: org, p_rule_id: rule_id },\n \"ruleMembers\",\n );\n },\n\n async ruleMembership({ rule_id, record_id }) {\n return callDoor<unknown>(\n DOORS.ruleMembership,\n { p_organization_id: org, p_rule_id: rule_id, p_record_id: record_id },\n \"ruleMembership\",\n );\n },\n\n async ruleRun({ rule_id, values, context }) {\n return callDoor<unknown>(\n DOORS.ruleRun,\n {\n p_organization_id: org,\n p_rule_id: rule_id,\n p_values: values,\n ...(context === undefined ? {} : { p_context: context }),\n },\n \"ruleRun\",\n );\n },\n\n async ruleEval({ expr, values, context }) {\n return callDoor<unknown>(\n DOORS.ruleEval,\n {\n p_organization_id: org,\n p_expr: expr,\n p_values: values,\n ...(context === undefined ? {} : { p_context: context }),\n },\n \"ruleEval\",\n );\n },\n\n async recordAggregate({ table_id, groupBy, measures, bucket, filter, limit }) {\n return callDoor<AggregateRow[]>(\n DOORS.recordAggregate,\n {\n p_organization_id: org,\n p_table_id: table_id,\n p_group_by: groupBy ?? [],\n p_measures: measures ?? [],\n p_bucket: bucket ?? null,\n p_filter: filter ?? {},\n p_limit: limit ?? 200,\n },\n \"recordAggregate\",\n );\n },\n\n async aggOperations() {\n return callDoor<string[]>(DOORS.aggOperations, {}, \"aggOperations\");\n },\n\n async aggBuckets() {\n return callDoor<string[]>(DOORS.aggBuckets, {}, \"aggBuckets\");\n },\n\n async aggSubscriptions(args) {\n return callDoor<Subscription[]>(\n DOORS.aggSubscriptions,\n {\n p_organization_id: org,\n p_saved_view_id: args?.saved_view_id ?? null,\n p_cadence: args?.cadence ?? null,\n },\n \"aggSubscriptions\",\n );\n },\n\n async aggSubscriptionCadences() {\n return callDoor<string[]>(DOORS.aggSubscriptionCadences, {}, \"aggSubscriptionCadences\");\n },\n\n async docTemplateSave({ table_id, name, body, template_id }) {\n return callDoor<Uuid>(\n DOORS.docTemplateSave,\n {\n p_organization_id: org,\n p_table_id: table_id,\n p_name: name,\n p_body: body,\n p_template_id: template_id ?? null,\n },\n \"docTemplateSave\",\n );\n },\n\n async docRenderBody({ template_id, record_id }) {\n return callDoor<string>(\n DOORS.docRenderBody,\n { p_organization_id: org, p_template_id: template_id, p_record_id: record_id },\n \"docRenderBody\",\n );\n },\n\n async docRenderDocument({ template_id, record_id }) {\n return callDoor<Uuid>(\n DOORS.docRenderDocument,\n { p_organization_id: org, p_template_id: template_id, p_record_id: record_id },\n \"docRenderDocument\",\n );\n },\n\n async docTokens({ body }) {\n return callDoor<DocToken[]>(DOORS.docTokens, { p_body: body }, \"docTokens\");\n },\n\n async docUnresolvedTokens({ table_id, body }) {\n return callDoor<DocUnresolvedToken[]>(\n DOORS.docUnresolvedTokens,\n { p_organization_id: org, p_table_id: table_id, p_body: body },\n \"docUnresolvedTokens\",\n );\n },\n\n async docSign({ render_id, field_key, signer_name, signer_user_id }) {\n return callDoor<Uuid>(\n DOORS.docSign,\n {\n p_organization_id: org,\n p_render_id: render_id,\n p_field_key: field_key,\n p_signer_name: signer_name,\n p_signer_user_id: signer_user_id ?? null,\n },\n \"docSign\",\n );\n },\n\n async docTemplates({ table_id }) {\n const response = await config.dataSource\n .schema(schema)\n .from(\"doc_template\")\n .select(\"*\")\n .eq(\"organization_id\", org)\n .eq(\"renders_table_id\", table_id)\n .order(\"name\");\n if (response.error) {\n const refusal = mapPgError(response.error, \"docTemplates\");\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"docTemplates\" });\n return err(refusal);\n }\n return ok((response.data ?? []) as DocTemplateRow[]);\n },\n\n async docRenders({ record_id }) {\n const response = await config.dataSource\n .schema(schema)\n .from(\"doc_render\")\n .select(\"*\")\n .eq(\"organization_id\", org)\n .eq(\"record_id\", record_id)\n .is(\"deleted_at\", null)\n .order(\"rendered_at\", { ascending: false });\n if (response.error) {\n const refusal = mapPgError(response.error, \"docRenders\");\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"docRenders\" });\n return err(refusal);\n }\n return ok((response.data ?? []) as DocRenderRow[]);\n },\n\n async docSignatures({ record_id }) {\n const response = await config.dataSource\n .schema(schema)\n .from(\"doc_signature\")\n .select(\"*\")\n .eq(\"organization_id\", org)\n .eq(\"record_id\", record_id)\n .is(\"deleted_at\", null)\n .order(\"signed_at\", { ascending: false });\n if (response.error) {\n const refusal = mapPgError(response.error, \"docSignatures\");\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"docSignatures\" });\n return err(refusal);\n }\n return ok((response.data ?? []) as DocSignatureRow[]);\n },\n\n async recordValuesVersioned({ record_id }) {\n return readValues(record_id);\n },\n\n async revisions({ record_id }) {\n return callDoor<RecordRevision[]>(\n DOORS.ioRevisions,\n { p_organization_id: org, p_record_id: record_id },\n \"revisions\",\n );\n },\n\n async docSignatureIntact({ signature_id }) {\n return callDoor<unknown>(\n DOORS.docSignatureIntact,\n { p_organization_id: org, p_signature_id: signature_id },\n \"docSignatureIntact\",\n );\n },\n\n // ── the anonymous lane ───────────────────────────────────────────────\n async anonTokenIssue({ mode, allowedOrigins, formId, savedViewId, recordId, expiresAt }) {\n // The door answers a one-row TABLE, so the array is unwrapped here rather\n // than in every caller. An empty answer is impossible — the door either\n // returns the pair or raises — so `[0]` is not a guess.\n const answered = await callDoor<Array<{ token_id: Uuid; secret: string }>>(\n DOORS.anonTokenIssue,\n {\n p_organization_id: org,\n p_mode: mode,\n p_allowed_origins: allowedOrigins,\n p_form_id: formId ?? null,\n p_saved_view_id: savedViewId ?? null,\n p_record_id: recordId ?? null,\n p_expires_at: expiresAt ?? null,\n },\n \"anonTokenIssue\",\n );\n if (!answered.ok) return answered;\n const pair = answered.data[0];\n if (!pair) {\n return err({\n code: \"internal\",\n message: \"custom.anon_token_issue returned no token, which it cannot do — it either mints one or raises.\",\n hint: \"Nothing was issued. Do not retry blindly: something between this client and the store changed the answer's shape.\",\n });\n }\n return ok(pair);\n },\n\n async anonTokenVerify({ secret, origin, requiredMode }) {\n const answered = await callDoor<AnonTokenBinding[]>(\n DOORS.anonTokenVerify,\n { p_secret: secret, p_origin: origin, p_required_mode: requiredMode ?? null },\n \"anonTokenVerify\",\n );\n if (!answered.ok) return answered;\n const binding = answered.data[0];\n if (!binding) {\n return err({\n code: \"internal\",\n message: \"custom.anon_token_verify returned no binding, which it cannot do — it either answers or raises.\",\n hint: \"Treat this as unverified. It is reported rather than read as 'not valid', because those are different sentences.\",\n });\n }\n return ok(binding);\n },\n\n async anonTokenRevoke({ token_id }) {\n return callDoor<boolean>(\n DOORS.anonTokenRevoke,\n { p_organization_id: org, p_token_id: token_id },\n \"anonTokenRevoke\",\n );\n },\n\n async anonWrite({ secret, origin, payload, clientKey, rawPayload }) {\n // No `p_organization_id`: the TOKEN supplies the organization. A stranger\n // naming one would be choosing which tenant to write into.\n return callDoor<Uuid>(\n DOORS.anonWrite,\n {\n p_secret: secret,\n p_origin: origin,\n p_payload: payload,\n p_client_key: clientKey ?? null,\n p_raw_payload: rawPayload ?? {},\n },\n \"anonWrite\",\n );\n },\n\n async anonCapture({ table_id, clientKey, payload, device, capturedAt }) {\n return callDoor<Uuid>(\n DOORS.anonCapture,\n {\n p_organization_id: org,\n p_client_key: clientKey,\n p_table_id: table_id,\n p_payload: payload,\n p_device: device ?? null,\n p_captured_at: capturedAt ?? null,\n },\n \"anonCapture\",\n );\n },\n\n async anonPublish({ form_id, published = true }) {\n return callDoor<Timestamp | null>(\n DOORS.anonPublish,\n { p_organization_id: org, p_form_id: form_id, p_published: published },\n \"anonPublish\",\n );\n },\n\n // ── work ─────────────────────────────────────────────────────────────\n async workStates() {\n return callDoor<WorkState[]>(DOORS.workStates, {}, \"workStates\");\n },\n\n async workTemplateRefusal({ graph }) {\n return callDoor<string | null>(DOORS.workTemplateRefusal, { p_graph: graph }, \"workTemplateRefusal\");\n },\n\n async workTemplateDeclare({ name, graph }) {\n return callDoor<Uuid>(\n DOORS.workTemplateDeclare,\n { p_organization_id: org, p_name: name, p_graph: graph },\n \"workTemplateDeclare\",\n );\n },\n\n async workTemplateInstantiate({ template_id, overrides }) {\n return callDoor<WorkInstantiation>(\n DOORS.workTemplateInstantiate,\n { p_organization_id: org, p_template_id: template_id, p_overrides: overrides ?? {} },\n \"workTemplateInstantiate\",\n );\n },\n\n async workTemplateShape({ template_id }) {\n return callDoor<unknown>(\n DOORS.workTemplateShape,\n { p_organization_id: org, p_template_id: template_id },\n \"workTemplateShape\",\n );\n },\n\n async workInstantiationShape({ instantiation_id }) {\n return callDoor<unknown>(\n DOORS.workInstantiationShape,\n { p_organization_id: org, p_instantiation_id: instantiation_id },\n \"workInstantiationShape\",\n );\n },\n\n async workWhoseTurn({ table_id, includeFinished = false }) {\n return callDoor<WorkTurn[]>(\n DOORS.workWhoseTurn,\n { p_organization_id: org, p_table_id: table_id, p_include_finished: includeFinished },\n \"workWhoseTurn\",\n );\n },\n\n async workHasAssignment({ table_id }) {\n return callDoor<boolean>(\n DOORS.workHasAssignment,\n { p_organization_id: org, p_table_id: table_id },\n \"workHasAssignment\",\n );\n },\n\n async workAssignmentFields(args) {\n return callDoor<WorkAssignmentField[]>(\n DOORS.workAssignmentFields,\n { p_options_table_id: args?.options_table_id ?? null },\n \"workAssignmentFields\",\n );\n },\n\n async workTakeAssignment({ table_id }) {\n return callDoor<unknown>(\n DOORS.workTakeAssignment,\n { p_organization_id: org, p_table_id: table_id },\n \"workTakeAssignment\",\n );\n },\n\n async workTransitionRefusal({ from_state_id, to_state_id }) {\n return callDoor<string | null>(\n DOORS.workTransitionRefusal,\n { p_organization_id: org, p_from_state_id: from_state_id, p_to_state_id: to_state_id },\n \"workTransitionRefusal\",\n );\n },\n\n async workSlotsDeclare({ name, slug, homeId }) {\n return callDoor<unknown>(\n DOORS.workSlotsDeclare,\n { p_organization_id: org, p_name: name, p_slug: slug, p_home_id: homeId ?? null },\n \"workSlotsDeclare\",\n );\n },\n\n async workSlotHold({ table_id, slotKey, holder, ttl }) {\n return callDoor<unknown>(\n DOORS.workSlotHold,\n {\n p_organization_id: org,\n p_table_id: table_id,\n p_slot_key: slotKey,\n p_holder: holder,\n ...(ttl ? { p_ttl: ttl } : {}),\n },\n \"workSlotHold\",\n );\n },\n\n async workSlotRelease({ hold_id }) {\n return callDoor<boolean>(\n DOORS.workSlotRelease,\n { p_organization_id: org, p_hold_id: hold_id },\n \"workSlotRelease\",\n );\n },\n\n async workSlotHolds({ table_id }) {\n return callDoor<WorkSlotHold[]>(\n DOORS.workSlotHolds,\n { p_organization_id: org, p_table_id: table_id },\n \"workSlotHolds\",\n );\n },\n\n async workSlotExpire({ table_id }) {\n return callDoor<number>(\n DOORS.workSlotExpire,\n { p_organization_id: org, p_table_id: table_id },\n \"workSlotExpire\",\n );\n },\n\n // ── the trust doors ──────────────────────────────────────────────────\n async isExternalPrincipal(args) {\n return trustDoor<boolean>(\n TRUST_DOORS.isExternalPrincipal,\n { p_user_id: args?.user_id ?? null },\n \"isExternalPrincipal\",\n );\n },\n\n async externalPrincipalCard(args) {\n return trustDoor<ExternalPrincipalCard>(\n TRUST_DOORS.externalPrincipalCard,\n { p_user_id: args?.user_id ?? null },\n \"externalPrincipalCard\",\n );\n },\n\n async externalPrincipalReach({ resourceType, user_id }) {\n return trustDoor<Array<{ resource_id: Uuid }>>(\n TRUST_DOORS.externalPrincipalReach,\n { p_resource_type: resourceType, p_user_id: user_id ?? null },\n \"externalPrincipalReach\",\n );\n },\n\n async publishBindingCreate({ slug, resourceType, resource_id, renderMode = \"page\" }) {\n return trustDoor<PublishBinding>(\n TRUST_DOORS.publishBindingCreate,\n {\n p_slug: slug,\n p_resource_type: resourceType,\n p_resource_id: resource_id,\n p_organization_id: org,\n p_render_mode: renderMode,\n },\n \"publishBindingCreate\",\n );\n },\n\n async publishBindingRevoke({ slug }) {\n return trustDoor<unknown>(TRUST_DOORS.publishBindingRevoke, { p_slug: slug }, \"publishBindingRevoke\");\n },\n\n async resolvePublishBinding({ slug }) {\n return trustDoor<ResolvedPublishBinding[]>(\n TRUST_DOORS.resolvePublishBinding,\n { p_slug: slug },\n \"resolvePublishBinding\",\n );\n },\n\n async worldPublishGapNotice() {\n return trustDoor<string>(TRUST_DOORS.worldPublishGapNotice, {}, \"worldPublishGapNotice\");\n },\n\n async publishToWorld({ resourceType, resource_id, discoverable = false }) {\n return trustDoor<unknown>(\n TRUST_DOORS.publishToWorld,\n {\n p_resource_type: resourceType,\n p_resource_id: resource_id,\n p_organization_id: org,\n p_discoverable: discoverable,\n },\n \"publishToWorld\",\n );\n },\n\n async ruleDeclare() {\n const refusal = doorAbsent(DOORS.ruleDeclare);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"ruleDeclare\" });\n return err(refusal);\n },\n\n async metadataSearch() {\n const refusal = doorAbsent(DOORS.metadataSearch);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"metadataSearch\" });\n return err(refusal);\n },\n\n async fieldPropose() {\n const refusal = doorAbsent(DOORS.fieldPropose);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"fieldPropose\" });\n return err(refusal);\n },\n\n async tablePropose() {\n const refusal = doorAbsent(DOORS.tablePropose);\n scream({ code: refusal.code, message: refusal.message, ...(refusal.hint ? { hint: refusal.hint } : {}), where: \"tablePropose\" });\n return err(refusal);\n },\n\n async promoteTable({ table_id }) {\n return callDoor<unknown>(\n DOORS.promoteTable,\n { p_organization_id: org, p_table_id: table_id },\n \"promoteTable\",\n );\n },\n\n async promoteField({ table_id, field_id }) {\n return callDoor<unknown>(\n DOORS.promoteField,\n { p_organization_id: org, p_table_id: table_id, p_field_id: field_id },\n \"promoteField\",\n );\n },\n\n async storeIsOpen() {\n return callDoor<boolean>(DOORS.storeIsOpen, { p_organization_id: org }, \"storeIsOpen\");\n },\n };\n\n return client;\n}\n\n/**\n * Turn a refusal into the conflict a screen can SHOW: which version you wrote\n * against, which one won, and every field you touched as it stands now. Returns\n * null when the refusal was not a stale write.\n */\nexport function asWriteConflict(error: RecordsError, recordId: Uuid): WriteConflict | null {\n const detail = staleWriteDetail(error);\n if (!detail) return null;\n return {\n ...detail,\n record_id: recordId,\n message: error.message,\n hint: error.hint ?? \"\",\n };\n}\n","\"use client\";\n\n// src/react/hooks.ts — @ai-matrx/records\n//\n// The hooks. Each one is a thin, honest wrapper over `/core`: it holds loading,\n// data and REFUSAL, and it never converts a refusal into an empty answer. A\n// screen that rendered \"no records\" because the door refused would be the lie\n// this package exists to prevent, so every hook's state carries `error` with the\n// store's own sentence in it, and a UI that ignores it is the UI's defect, not\n// a hidden one.\n\nimport { useCallback, useEffect, useMemo, useRef, useState } from \"react\";\n\nimport type { Field } from \"../field\";\nimport type { MergeFieldResolution } from \"../merge-field\";\nimport type { ReadRow, RecordRead, Uuid } from \"../record\";\nimport type { RecordsError } from \"../results\";\nimport type { Table } from \"../table\";\nimport { asWriteConflict, type RecordsClient } from \"../core/client\";\nimport type { WriteConflict } from \"../results\";\nimport { useRecordsClient } from \"./context\";\n\ninterface Async<T> {\n data: T | null;\n loading: boolean;\n /** The store's own refusal. Never null-and-empty at the same time. */\n error: RecordsError | null;\n reload: () => void;\n}\n\nfunction useAsync<T>(\n run: (client: RecordsClient) => Promise<{ ok: true; data: T } | { ok: false; error: RecordsError }>,\n deps: unknown[],\n): Async<T> {\n const client = useRecordsClient();\n const [state, setState] = useState<{ data: T | null; loading: boolean; error: RecordsError | null }>(\n { data: null, loading: true, error: null },\n );\n const [nonce, setNonce] = useState(0);\n const alive = useRef(true);\n\n useEffect(() => {\n alive.current = true;\n return () => {\n alive.current = false;\n };\n }, []);\n\n useEffect(() => {\n let cancelled = false;\n setState((s) => ({ ...s, loading: true }));\n void run(client).then((result) => {\n if (cancelled || !alive.current) return;\n setState(\n result.ok\n ? { data: result.data, loading: false, error: null }\n : { data: null, loading: false, error: result.error },\n );\n });\n return () => {\n cancelled = true;\n };\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [client, nonce, ...deps]);\n\n const reload = useCallback(() => setNonce((n) => n + 1), []);\n return { ...state, reload };\n}\n\n/** One Table's declaration. */\nexport function useTable(tableId: Uuid | null): Async<Table | null> {\n return useAsync<Table | null>(\n async (client) => {\n if (!tableId) return { ok: true, data: null };\n const result = await client.tableList();\n if (!result.ok) return result;\n return { ok: true, data: result.data.find((t) => t.id === tableId) ?? null };\n },\n [tableId],\n );\n}\n\n/** Every Table this person can see in this organization. */\nexport function useTables(): Async<Table[]> {\n return useAsync((client) => client.tableList(), []);\n}\n\n/**\n * FLD-10. The Fields that APPLY — the store decides, from the record type, and\n * the client asks rather than filtering a list it has.\n */\nexport function useFields(tableId: Uuid | null, recordType?: string): Async<Field[]> {\n return useAsync<Field[]>(\n async (client) => {\n if (!tableId) return { ok: true, data: [] };\n return client.fields({ table_id: tableId, ...(recordType === undefined ? {} : { recordType }) });\n },\n [tableId, recordType],\n );\n}\n\nexport interface UseRecordsOptions {\n pageSize?: number;\n page?: number;\n}\n\nexport interface UseRecordsState extends Async<{ rows: ReadRow[]; total: number | null }> {\n /**\n * Whether this list is actually live. FALSE with a reason is an answer a\n * screen can print; a list that silently stopped updating is not.\n */\n live: boolean;\n liveReason: string;\n}\n\n/** A page of records, realtime-aware when the host bound the port. */\nexport function useRecords(tableId: Uuid | null, options: UseRecordsOptions = {}): UseRecordsState {\n const client = useRecordsClient();\n const pageSize = options.pageSize ?? 50;\n const page = options.page ?? 0;\n\n // DOOR-1: the door reads live records only. There is no `includeDeleted`\n // here any more because there is no door that answers it — a screen that\n // wants a deleted record asks the restore path by name.\n const base = useAsync<{ rows: ReadRow[]; total: number | null }>(\n async (c) => {\n if (!tableId) return { ok: true, data: { rows: [], total: null } };\n return c.list({\n table_id: tableId,\n limit: pageSize,\n offset: page * pageSize,\n });\n },\n [tableId, pageSize, page],\n );\n\n const realtime = client.config.realtime;\n const { reload } = base;\n useEffect(() => {\n if (!realtime || !tableId) return;\n // A realtime payload has NOT passed the read door, so it is used as a\n // NUDGE and never as data: the hook re-reads through the door.\n return realtime.subscribeRecords(\n { organization_id: client.config.organizationId, table_id: tableId },\n () => reload(),\n );\n }, [realtime, tableId, client.config.organizationId, reload]);\n\n const live = Boolean(realtime && tableId);\n const liveReason = realtime\n ? tableId\n ? \"Live: changes to this table re-read through the read door.\"\n : \"Not live: no table selected.\"\n : \"Not live: this host bound no realtime port, so this list updates when you reload it.\";\n\n return { ...base, live, liveReason };\n}\n\n/** One record, its values and (optionally) which Rule version computed each. */\nexport function useRecord(recordId: Uuid | null, withComputed = false): Async<RecordRead | null> {\n return useAsync<RecordRead | null>(\n async (client) => {\n if (!recordId) return { ok: true, data: null };\n return client.recordRead({ record_id: recordId, withComputed });\n },\n [recordId, withComputed],\n );\n}\n\nexport interface UseRecordMutation {\n write: (args: { table_id: Uuid; data: Record<string, unknown> }) => Promise<Uuid | null>;\n update: (args: {\n record_id: Uuid;\n patch: Record<string, unknown>;\n expectedVersion?: number;\n }) => Promise<number | null>;\n remove: (args: { record_id: Uuid }) => Promise<string | null>;\n restore: (args: { record_id: Uuid }) => Promise<boolean>;\n saving: boolean;\n error: RecordsError | null;\n /**\n * THE CONFLICT, as something a screen can SHOW rather than a toast it flashes:\n * the version you wrote against, the version that won, and every field you\n * touched as it stands now. Nothing was overwritten and nothing was lost —\n * which is exactly what the store's own hint says, and it is carried here.\n */\n conflict: WriteConflict | null;\n clearConflict: () => void;\n}\n\n/** Writes, with optimistic concurrency surfaced instead of swallowed. */\nexport function useRecordMutation(): UseRecordMutation {\n const client = useRecordsClient();\n const [saving, setSaving] = useState(false);\n const [error, setError] = useState<RecordsError | null>(null);\n const [conflict, setConflict] = useState<WriteConflict | null>(null);\n\n const run = useCallback(\n async <T,>(\n recordId: Uuid | null,\n call: () => Promise<{ ok: true; data: T } | { ok: false; error: RecordsError }>,\n ): Promise<T | null> => {\n setSaving(true);\n setError(null);\n try {\n const result = await call();\n if (result.ok) {\n setConflict(null);\n return result.data;\n }\n setError(result.error);\n setConflict(recordId ? asWriteConflict(result.error, recordId) : null);\n return null;\n } finally {\n setSaving(false);\n }\n },\n [],\n );\n\n return useMemo(\n () => ({\n write: (args) =>\n run(null, () => client.recordWrite({ table_id: args.table_id, data: args.data })),\n update: (args) =>\n run(args.record_id, () =>\n client.recordUpdate({\n record_id: args.record_id,\n patch: args.patch,\n ...(args.expectedVersion === undefined ? {} : { expectedVersion: args.expectedVersion }),\n }),\n ),\n remove: (args) => run(args.record_id, () => client.recordDelete({ record_id: args.record_id })),\n restore: async (args) => {\n const result = await run(args.record_id, () => client.recordRestore({ record_id: args.record_id }));\n return result !== null;\n },\n saving,\n error,\n conflict,\n clearConflict: () => setConflict(null),\n }),\n [client, run, saving, error, conflict],\n );\n}\n\n/**\n * DYN-14 / AGT-N-7. A merge field's value — and while the resolver's server half\n * does not exist, `pending` WITH THE REASON. Never a blank, never a leftover\n * `{{brace}}`, never an empty string that a prompt would carry into a model.\n */\nexport function useMergeField(key: string | null, state?: Record<string, unknown>) {\n const client = useRecordsClient();\n const [resolution, setResolution] = useState<MergeFieldResolution | null>(null);\n const resolver = client.config.resolver;\n\n useEffect(() => {\n if (!key) {\n setResolution(null);\n return;\n }\n if (!resolver) {\n setResolution({\n state: \"pending\",\n reason:\n `The merge field \"${key}\" cannot be resolved here yet: this host bound no resolver, and ` +\n `the resolver's server half is W5-MERGE-B's. Nothing is shown in its place — a blank would ` +\n `read as \"there is no value\", which is a different sentence.`,\n });\n return;\n }\n let cancelled = false;\n void resolver\n .resolve({\n organization_id: client.config.organizationId,\n merge_field_keys: [key],\n ...(state === undefined ? {} : { state }),\n })\n .then((answer) => {\n if (cancelled) return;\n const byKey = (answer as Record<string, MergeFieldResolution> | null) ?? {};\n setResolution(\n byKey[key] ?? {\n state: \"pending\",\n reason: `The resolver answered, and it said nothing about \"${key}\". Nothing is shown in its place.`,\n },\n );\n });\n return () => {\n cancelled = true;\n };\n }, [key, resolver, client.config.organizationId, state]);\n\n return resolution;\n}\n","// src/vocabulary.ts — @ai-matrx/records\n//\n// THE CLOSED VOCABULARIES. Every list here is a word set the STORE enforces,\n// and the store is the only place any of them is decided. The literal values\n// are not typed by hand: `src/store.generated.ts` is regenerated from the live\n// catalogue by `pnpm records:generate`, and `pnpm check:store-registry` fails\n// the build the moment this package and the database disagree. What lives HERE\n// is the type layer over those literals, so a wrong word is a compile error in\n// a consumer rather than a `23514` at three in the morning.\n\nimport {\n ACTOR_VOCABULARY,\n ABSENCE_REASONS,\n VALUE_ENVELOPE_KEYS,\n VALUE_ALTERNATE_KEYS,\n STORAGE_MODES,\n RULE_USES,\n PER_VALUE_ACCESS_WORDS,\n PARITY_FIELD_TYPES,\n RULE_NODE_KINDS,\n RETIRED_ACTOR_WORDS,\n} from \"./store.generated\";\n\n/**\n * VAL-8. Who wrote a value. `user`, `agent`, `system` — enforced by every write\n * door, and the three retired words (`human`, `ai`, `code`) are translated by\n * the store's own `custom.actor_word`, never by a caller.\n */\nexport type Actor = (typeof ACTOR_VOCABULARY)[number];\n\n/** The words the store still accepts and rewrites, mapped to what they become. */\nexport type RetiredActorWord = keyof typeof RETIRED_ACTOR_WORDS;\n\n/**\n * VAL-2. Why a value is missing. A value is never blank for an unexplained\n * reason: it either holds something or it says one of these four words.\n */\nexport type AbsenceReason = (typeof ABSENCE_REASONS)[number];\n\n/** The closed key set of one value envelope (VAL-1 … VAL-4). */\nexport type ValueEnvelopeKey = (typeof VALUE_ENVELOPE_KEYS)[number];\n\n/** The closed key set of one ranked alternate (VAL-3). */\nexport type ValueAlternateKey = (typeof VALUE_ALTERNATE_KEYS)[number];\n\n/**\n * REC-4. `heavy` is indexed storage with Rules on write; `light` is\n * whole-document storage with Rules on read. Per Table, one store.\n */\nexport type StorageMode = (typeof STORAGE_MODES)[number];\n\n/** REC-15. One Rule object, four uses. */\nexport type RuleUse = (typeof RULE_USES)[number];\n\n/**\n * VAL-5 / VAL-6. The words that may NOT appear inside a value envelope:\n * visibility and access belong to a Field and to a Record, never to a value.\n * The store refuses each of them by name and so does this package's mirror.\n */\nexport type PerValueAccessWord = (typeof PER_VALUE_ACCESS_WORDS)[number];\n\n/** FLD-11. The parity floor: the field type a person picks in the UI. */\nexport type ParityFieldType = (typeof PARITY_FIELD_TYPES)[number][\"parity_type\"];\n\n/** FLD-1. The five behaviours a Field can have. One, exactly, and closed. */\nexport type FieldBehavior = (typeof PARITY_FIELD_TYPES)[number][\"behavior\"];\n\n/** The node kinds `custom.rule_eval` evaluates. */\nexport type RuleNodeKind = (typeof RULE_NODE_KINDS)[number][\"node\"];\n\n/**\n * REC-32. The seven table types, closed. The parenthesised names are the\n * retired ones the doctrine records; never coin an eighth.\n */\nexport const TABLE_TYPES = [\n \"entity\",\n \"detail\",\n \"reference\",\n \"ledger\",\n \"restricted\",\n \"system\",\n \"deprecated\",\n] as const;\nexport type TableType = (typeof TABLE_TYPES)[number];\n\n/** REC-33. The two origins. A table we ship in schema `custom` is `standard`. */\nexport const TABLE_ORIGINS = [\"standard\", \"custom\"] as const;\nexport type TableOrigin = (typeof TABLE_ORIGINS)[number];\n\n/** REL-1. Ownership is one fact, stored once, read from the field's side. */\nexport const RELATION_FLAVORS = [\"owned\", \"referenced\"] as const;\nexport type RelationFlavor = (typeof RELATION_FLAVORS)[number];\n\n/** REL-2. What happens to the far side, separate from flavour. */\nexport const ON_DELETE = [\"cascade\", \"set_null\", \"restrict\"] as const;\nexport type OnDelete = (typeof ON_DELETE)[number];\n\n/** REL-3. A snapshot is a frozen copy in the relation's payload, never a pointer. */\nexport const RELATION_BINDINGS = [\"live\", \"snapshot\"] as const;\nexport type RelationBinding = (typeof RELATION_BINDINGS)[number];\n\n/** REL-7. */\nexport const RELATION_CARDINALITIES = [\"one\", \"many\"] as const;\nexport type RelationCardinality = (typeof RELATION_CARDINALITIES)[number];\n\n/** FLD-7. Where a Field's values come from. */\nexport const FIELD_SOURCES = [\"manual\", \"formula\", \"agent\", \"synced\"] as const;\nexport type FieldSource = (typeof FIELD_SOURCES)[number];\n\n/** FLD-9. A Formula declares whether it computes on read or on write. */\nexport const COMPUTE_ON = [\"read\", \"write\"] as const;\nexport type ComputeOn = (typeof COMPUTE_ON)[number];\n\n/**\n * AGT-7 / FLD-12. A Field's sensitivity sets a ceiling a merge field can never\n * widen — and these are THE STORE'S four words, checked against its own guard.\n *\n * This list used to read `standard · sensitive · secret`, which the store has\n * never accepted: writing a Field with `sensitivity: \"standard\"` is refused\n * with \"the field <name> has to say how sensitive its values are, and it says\n * standard\". The knob `custom/field_sensitivity_levels` keys off these same\n * four words to decide which level may read and edit each one, so a package\n * carrying three different words could never have agreed with it. Corrected\n * against the live store, 2026-09-18.\n */\nexport const FIELD_SENSITIVITIES = [\"public\", \"internal\", \"confidential\", \"restricted\"] as const;\nexport type FieldSensitivity = (typeof FIELD_SENSITIVITIES)[number];\n\n/** DYN-17 / §D. Which tier a MERGE FIELD's value is delivered in. */\nexport const DELIVERIES = [\"inline\", \"on_demand\", \"auto\"] as const;\nexport type Delivery = (typeof DELIVERIES)[number];\n\n/**\n * FLD-12. WHETHER AN AGENT MAY SEE A FIELD'S VALUES, and these are the STORE'S\n * four words — not the merge field's delivery tiers.\n *\n * `Field.context_policy` used to be typed as `Delivery` here, which is a\n * different question with a different vocabulary: writing a Field with\n * `context_policy: \"inline\"` is refused with \"the field <name> has to say\n * whether an agent may see its values, and it says inline\". Delivery is about\n * HOW MUCH of a value a merge field carries into a turn; this is about WHETHER\n * the value reaches an agent at all, and conflating them let a screen offer a\n * word the store has never accepted. Corrected against the live store,\n * 2026-09-18.\n */\nexport const CONTEXT_POLICIES = [\"include\", \"summarize\", \"exclude\", \"on_request\"] as const;\nexport type ContextPolicy = (typeof CONTEXT_POLICIES)[number];\n\n/** DYN-3. The eight sources, closed. Relationships and rules are not sources. */\nexport const MERGE_FIELD_SOURCES = [\n \"literal\",\n \"record\",\n \"state\",\n \"actor\",\n \"platform\",\n \"user_input\",\n \"tool\",\n \"derived\",\n] as const;\nexport type MergeFieldSource = (typeof MERGE_FIELD_SOURCES)[number];\n\n/** DYN-4. What a merge field resolves INTO. The consumer never learns which. */\nexport const MERGE_FIELD_SEMANTIC_TYPES = [\n \"value\",\n \"reference\",\n \"resolver\",\n \"computed\",\n \"collection\",\n] as const;\nexport type MergeFieldSemanticType = (typeof MERGE_FIELD_SEMANTIC_TYPES)[number];\n\n/** DYNAMIC-VALUES §A. Any number of these; never fused into the source. */\nexport const MERGE_FIELD_MODIFIERS = [\n \"scoped\",\n \"temporal\",\n \"collection\",\n \"live\",\n \"fallback\",\n \"formatted\",\n \"required\",\n] as const;\nexport type MergeFieldModifier = (typeof MERGE_FIELD_MODIFIERS)[number];\n\n/** DYN-12. The five override policies. Exactly one, and it outranks the ladder. */\nexport const OVERRIDE_POLICIES = [\n \"must_supply\",\n \"shown_overridable\",\n \"shown_locked\",\n \"server_fixed\",\n \"derived\",\n] as const;\nexport type OverridePolicy = (typeof OVERRIDE_POLICIES)[number];\n\n/** DYNAMIC-VALUES §C. What a resolved merge field's freshness was. */\nexport const FRESHNESS = [\"live\", \"cached\", \"snapshot\"] as const;\nexport type Freshness = (typeof FRESHNESS)[number];\n\n/** REC-1. How a Table shows itself. */\nexport const TABLE_DISPLAYS = [\"list\", \"grid\", \"board\", \"calendar\", \"timeline\"] as const;\nexport type TableDisplay = (typeof TABLE_DISPLAYS)[number];\n","// src/aggregate.ts — @ai-matrx/records\n//\n// THE EIGHTH VERB (AGT-N-8). `custom.record_aggregate` groups, buckets, filters\n// and measures INSIDE the read door's own query: the aggregate node sits above\n// the join to `custom.query_visible_ids`, so a chart is computed over the rows\n// this principal may see and the rest are never fetched at all.\n//\n// That is why a chart in this platform is not \"read everything, then sum in the\n// browser\". Summing in the browser would either read rows a person may not see\n// or quietly under-count them, and both of those are a screen telling a lie.\n\n/** The measures the store offers. Asked of `custom.agg_operations()` at run time too. */\nexport type AggregateOperation = \"count\" | \"sum\" | \"avg\" | \"min\" | \"max\";\n\n/** The periods a date Field can be bucketed into (`custom.agg_buckets()`). */\nexport type AggregateBucket = \"day\" | \"week\" | \"month\" | \"quarter\" | \"year\";\n\n/** One measure. `count` counts rows and needs no Field; the rest read one. */\nexport interface AggregateMeasure {\n op: AggregateOperation;\n /** The Field's key. Required for every operation except `count`. */\n key?: string;\n}\n\n/**\n * One row of an aggregate: which group it is, what each measure came to, and\n * how many records it was worked out from. The measure keys are the store's\n * own (`count`, `sum_amount`, `avg_amount`, …), never renamed on the way out.\n */\nexport interface AggregateRow {\n groups: Record<string, string | null>;\n measures: Record<string, number | null>;\n row_count: number;\n}\n\n/** The measure key the store answers with, so a chart can find its own series. */\nexport function measureKey(measure: AggregateMeasure): string {\n return measure.op === \"count\" ? \"count\" : `${measure.op}_${measure.key ?? \"\"}`;\n}\n"],"mappings":"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;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA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","names":["rows","import_react"]}
|