@prisma/orm-target-postgres 8.0.0-rc.2-dev.1 → 8.0.0-rc.2-dev.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.
|
@@ -1230,11 +1230,15 @@ function createPostgresTypeMap(enumTypeNames) {
|
|
|
1230
1230
|
* Relation inference, name transforms, generic default mapping, and raw-default
|
|
1231
1231
|
* parsing are shape-neutral utilities imported from the SQL family.
|
|
1232
1232
|
*
|
|
1233
|
-
*
|
|
1234
|
-
*
|
|
1235
|
-
*
|
|
1236
|
-
*
|
|
1237
|
-
*
|
|
1233
|
+
* The tree's tables (across its namespaces — `contract infer` introspects a
|
|
1234
|
+
* single live namespace) are gathered into the model set and emitted in one
|
|
1235
|
+
* bucket, alongside native-enum and RLS policy blocks. That bucket is named
|
|
1236
|
+
* after the introspected schema when the content needs a `namespace { … }`
|
|
1237
|
+
* wrap, and is the flat `UNSPECIFIED_PSL_NAMESPACE_ID` bucket otherwise. This
|
|
1238
|
+
* entry point emits nothing else, so its output is always exactly one bucket
|
|
1239
|
+
* and byte-identical to the prior flat inference. {@link buildPslDocumentAst}
|
|
1240
|
+
* can emit a second, always-flat bucket for content that must stay top-level
|
|
1241
|
+
* even under a wrap; no caller asks for one yet.
|
|
1238
1242
|
*
|
|
1239
1243
|
* `describedContracts` — the stack's extension packs' already-assembled
|
|
1240
1244
|
* contracts, each paired with its space id — is consulted while gathering
|
|
@@ -1322,7 +1326,24 @@ function inferPostgresPslContract(tree, describedContracts) {
|
|
|
1322
1326
|
policiesByTable
|
|
1323
1327
|
});
|
|
1324
1328
|
}
|
|
1325
|
-
|
|
1329
|
+
/**
|
|
1330
|
+
* Builds the PSL document for one introspected schema.
|
|
1331
|
+
*
|
|
1332
|
+
* `namespaceName` wraps the output in `namespace <name> { … }`; omit it for
|
|
1333
|
+
* flat output. `topLevelExtensionBlocks` are declarations that must stay
|
|
1334
|
+
* top-level even when a wrap applies, such as a recovered domain enum — a
|
|
1335
|
+
* family `enum` inside a namespace is a hard diagnostic. They land in their
|
|
1336
|
+
* own always-flat bucket when a wrap applies, and in the single flat bucket
|
|
1337
|
+
* when none does; either way they print unwrapped.
|
|
1338
|
+
*
|
|
1339
|
+
* Their names are reserved before the policy blocks are built, so a policy
|
|
1340
|
+
* renames itself out of the way. Against the rest of the top-level scope — the
|
|
1341
|
+
* models, the native enums, PSL's scalar type names, and the other blocks in
|
|
1342
|
+
* the list — a clash throws instead: a block's name is its contract key
|
|
1343
|
+
* (`entries.valueSet[name]`, with no `@@map` escape), so it cannot be rewritten
|
|
1344
|
+
* here.
|
|
1345
|
+
*/
|
|
1346
|
+
function buildPslDocumentAst(schemaIR, options, foreignKeyExtras, namespaceName, rlsExtras, topLevelExtensionBlocks = []) {
|
|
1326
1347
|
const { typeMap, defaultMapping, parseRawDefault: rawDefaultParser } = options;
|
|
1327
1348
|
const { extraRelationsByTable, crossSpaceFieldNamesByTable, danglingForeignKeysByTable } = foreignKeyExtras;
|
|
1328
1349
|
const modelNames = buildTopLevelNameMap(Object.keys(schemaIR.tables), toModelName, "model", "table");
|
|
@@ -1332,19 +1353,48 @@ function buildPslDocumentAst(schemaIR, options, foreignKeyExtras, namespaceName,
|
|
|
1332
1353
|
if (namespaceName !== void 0) for (const [typeName, pslName] of bareEnumNameMap) enumNameMap.set(`${namespaceName}.${typeName}`, pslName);
|
|
1333
1354
|
const fieldNamesByTable = new Map([...crossSpaceFieldNamesByTable, ...buildFieldNamesByTable(schemaIR.tables)]);
|
|
1334
1355
|
const { relationsByTable } = inferRelations(schemaIR.tables, modelNameMap);
|
|
1335
|
-
const policyEmission = buildPolicyBlocks(rlsExtras?.policiesByTable ?? /* @__PURE__ */ new Map(), modelNameMap, /* @__PURE__ */ new Set([
|
|
1356
|
+
const policyEmission = buildPolicyBlocks(rlsExtras?.policiesByTable ?? /* @__PURE__ */ new Map(), modelNameMap, /* @__PURE__ */ new Set([
|
|
1357
|
+
...modelNameMap.values(),
|
|
1358
|
+
...bareEnumNameMap.values(),
|
|
1359
|
+
...topLevelExtensionBlocks.map((block) => block.name)
|
|
1360
|
+
]));
|
|
1361
|
+
const claimedTopLevelNames = /* @__PURE__ */ new Set([
|
|
1362
|
+
...PSL_SCALAR_TYPE_NAMES,
|
|
1363
|
+
...modelNameMap.values(),
|
|
1364
|
+
...bareEnumNameMap.values()
|
|
1365
|
+
]);
|
|
1366
|
+
for (const block of topLevelExtensionBlocks) {
|
|
1367
|
+
if (claimedTopLevelNames.has(block.name)) throw postgresError("CONTRACT.NAME_DUPLICATE", `contract infer: recovered ${block.keyword} "${block.name}" collides with a model, a native enum, a PSL scalar type, or another recovered declaration of the same name. Rename the recovered declaration, or exclude it.`, { meta: {
|
|
1368
|
+
kind: block.keyword,
|
|
1369
|
+
name: block.name
|
|
1370
|
+
} });
|
|
1371
|
+
claimedTopLevelNames.add(block.name);
|
|
1372
|
+
}
|
|
1336
1373
|
const models = [];
|
|
1337
1374
|
for (const table of Object.values(schemaIR.tables)) models.push(buildModel(table, typeMap, enumNameMap, fieldNamesByTable, defaultMapping, rawDefaultParser, [...relationsByTable.get(table.name) ?? [], ...extraRelationsByTable.get(table.name) ?? []], danglingForeignKeysByTable.get(table.name) ?? [], rlsExtras?.rlsEnabledTables.has(table.name) ?? false, policyEmission.skipNotesByTable.get(table.name) ?? []));
|
|
1338
1375
|
const sortedModels = topologicalSort(models, schemaIR.tables, modelNameMap);
|
|
1376
|
+
const separateTopLevelBucket = namespaceName !== void 0 && namespaceName !== UNSPECIFIED_PSL_NAMESPACE_ID && topLevelExtensionBlocks.length > 0;
|
|
1377
|
+
const namespaces = [];
|
|
1378
|
+
if (separateTopLevelBucket) namespaces.push(makePslNamespace({
|
|
1379
|
+
kind: "namespace",
|
|
1380
|
+
name: UNSPECIFIED_PSL_NAMESPACE_ID,
|
|
1381
|
+
entries: makePslNamespaceEntries([], [], topLevelExtensionBlocks),
|
|
1382
|
+
span: SYNTHETIC_SPAN
|
|
1383
|
+
}));
|
|
1384
|
+
namespaces.push(makePslNamespace({
|
|
1385
|
+
kind: "namespace",
|
|
1386
|
+
name: namespaceName ?? UNSPECIFIED_PSL_NAMESPACE_ID,
|
|
1387
|
+
entries: makePslNamespaceEntries(sortedModels, [], [
|
|
1388
|
+
...separateTopLevelBucket ? [] : topLevelExtensionBlocks,
|
|
1389
|
+
...enumBlocks,
|
|
1390
|
+
...policyEmission.blocks
|
|
1391
|
+
]),
|
|
1392
|
+
span: SYNTHETIC_SPAN
|
|
1393
|
+
}));
|
|
1339
1394
|
return {
|
|
1340
1395
|
kind: "document",
|
|
1341
1396
|
sourceId: "<sql-schema-ir>",
|
|
1342
|
-
namespaces
|
|
1343
|
-
kind: "namespace",
|
|
1344
|
-
name: namespaceName ?? UNSPECIFIED_PSL_NAMESPACE_ID,
|
|
1345
|
-
entries: makePslNamespaceEntries(sortedModels, [], [...enumBlocks, ...policyEmission.blocks]),
|
|
1346
|
-
span: SYNTHETIC_SPAN
|
|
1347
|
-
})],
|
|
1397
|
+
namespaces,
|
|
1348
1398
|
span: SYNTHETIC_SPAN
|
|
1349
1399
|
};
|
|
1350
1400
|
}
|
|
@@ -1406,4 +1456,4 @@ const postgresTargetDescriptor = {
|
|
|
1406
1456
|
//#endregion
|
|
1407
1457
|
export { postgresTargetDescriptor as n, postgresRenderDefault as t };
|
|
1408
1458
|
|
|
1409
|
-
//# sourceMappingURL=control-
|
|
1459
|
+
//# sourceMappingURL=control-V7OkAC55.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control-Drq2rquV.mjs","names":[],"sources":["../../../../3-targets/3-targets/postgres/dist/control.mjs"],"sourcesContent":["import { n as postgresError } from \"./errors-DKjQzNaN.mjs\";\nimport { n as postgresResolveDefault } from \"./default-normalizer-Ba5ZebHM.mjs\";\nimport { t as postgresRenderCheckExpressions } from \"./check-expressions-5vhxWaFy.mjs\";\nimport { t as postgresTargetDescriptorMeta } from \"./descriptor-meta-rilAH3ep.mjs\";\nimport { a as postgresDiffSubjectGranularity, i as postgresDiffSubjectEntityKind } from \"./postgres-table-schema-node-BBkitBQh.mjs\";\nimport { i as PostgresDatabaseSchemaNode } from \"./postgres-role-schema-node-B8Z5i5D-.mjs\";\nimport { n as diffPostgresSchema, r as contractToPostgresDatabaseSchemaNode } from \"./diff-database-schema-DKq76rCk.mjs\";\nimport { r as renderDefaultLiteral } from \"./planner-ddl-builders-Chxh-LEQ.mjs\";\nimport { n as PostgresContractSerializer } from \"./postgres-contract-view-B8ykf2cO.mjs\";\nimport { t as createPostgresMigrationPlanner } from \"./planner-D0uogzvT.mjs\";\nimport { blindCast } from \"@internal/utils/casts\";\nimport { UNBOUND_NAMESPACE_ID, coordinateKey, elementCoordinates } from \"@internal/framework-components/ir\";\nimport { buildNativeTypeExpander, runnerFailure, runnerSuccess } from \"@internal/family-sql/control\";\nimport { ifDefined } from \"@internal/utils/defined\";\nimport { composeCheckWirePrefix, computeCheckContentHash, computeIndexContentHash, formatWireName, parseWireName } from \"@internal/sql-schema-ir/naming\";\nimport { assertDefined } from \"@internal/utils/assertions\";\nimport { SqlSchemaIR, SqlTableIR } from \"@internal/sql-schema-ir/types\";\nimport { APP_SPACE_ID } from \"@internal/framework-components/control\";\nimport { notOk, ok, okVoid } from \"@internal/utils/result\";\nimport { InternalError } from \"@internal/utils/internal-error\";\nimport { SqlSchemaVerifierBase } from \"@internal/family-sql/ir\";\nimport { SqlQueryError } from \"@internal/sql-errors\";\nimport { buildChildRelationField, deriveRelationFieldName, inferRelations, mapDefault, parseRawDefault, toEnumMemberName, toEnumName, toFieldName, toModelName } from \"@internal/family-sql/psl-infer\";\nimport { UNSPECIFIED_PSL_NAMESPACE_ID, makePslNamespace, makePslNamespaceEntries } from \"@internal/framework-components/psl-ast\";\nimport { isColumnDefault } from \"@internal/contract/types\";\n//#region src/core/migrations/runner.ts\nconst LOCK_DOMAIN = \"prisma_next.contract.marker\";\n/**\n* Deep clones and freezes a record object to prevent mutation.\n* Recursively clones nested objects and arrays to ensure complete isolation.\n*/\nfunction cloneAndFreezeRecord(value) {\n\tconst cloned = {};\n\tfor (const [key, val] of Object.entries(value)) if (val === null || val === void 0) cloned[key] = val;\n\telse if (Array.isArray(val)) cloned[key] = Object.freeze([...val]);\n\telse if (typeof val === \"object\") cloned[key] = cloneAndFreezeRecord(val);\n\telse cloned[key] = val;\n\treturn Object.freeze(cloned);\n}\nfunction createPostgresMigrationRunner(family) {\n\treturn new PostgresMigrationRunner(family);\n}\nvar PostgresMigrationRunner = class {\n\tfamily;\n\tconstructor(family) {\n\t\tthis.family = family;\n\t}\n\t/**\n\t* Body of the migration runner without transaction management. The\n\t* caller ({@link PostgresMigrationRunner.execute}) owns the\n\t* `BEGIN`/`COMMIT`/`ROLLBACK` lifecycle.\n\t*/\n\tasync executeOnConnection(options) {\n\t\tconst schema = options.schemaName ?? Object.keys(options.destinationContract.storage.namespaces).find((id) => id !== UNBOUND_NAMESPACE_ID) ?? UNBOUND_NAMESPACE_ID;\n\t\tconst driver = options.driver;\n\t\tif (options.space !== void 0 && options.space !== options.plan.spaceId) throw postgresError(\"MIGRATION.CONTRACT_SPACE_VIOLATION\", `SqlMigrationRunner: options.space (${options.space}) does not match plan.spaceId (${options.plan.spaceId})`, { meta: {\n\t\t\tspace: options.space,\n\t\t\tplanSpaceId: options.plan.spaceId\n\t\t} });\n\t\tconst space = options.plan.spaceId;\n\t\tconst lockKey = `${LOCK_DOMAIN}:${schema}:${space}`;\n\t\tconst planOps = blindCast(await Promise.all(options.plan.operations));\n\t\tconst destinationCheck = this.ensurePlanMatchesDestinationContract(options.plan.destination, options.destinationContract);\n\t\tif (!destinationCheck.ok) return destinationCheck;\n\t\tconst policyCheck = this.enforcePolicyCompatibility(options.policy, planOps);\n\t\tif (!policyCheck.ok) return policyCheck;\n\t\tawait this.acquireLock(driver, lockKey);\n\t\tconst ensureResult = await this.ensureControlTables(driver, options.destinationContract);\n\t\tif (!ensureResult.ok) return ensureResult;\n\t\tconst existingMarker = await this.family.readMarker({\n\t\t\tdriver,\n\t\t\tspace\n\t\t});\n\t\tconst markerCheck = this.ensureMarkerCompatibility(existingMarker, options.plan);\n\t\tif (!markerCheck.ok) return markerCheck;\n\t\tconst markerAtDestination = this.markerMatchesDestination(existingMarker, options.plan);\n\t\tconst isSelfEdge = options.plan.origin?.storageHash === options.plan.destination.storageHash;\n\t\tconst skipOperations = markerAtDestination && options.plan.origin != null && !isSelfEdge;\n\t\tlet applyValue;\n\t\tif (skipOperations) applyValue = {\n\t\t\toperationsExecuted: 0,\n\t\t\texecutedOperations: []\n\t\t};\n\t\telse {\n\t\t\tconst applyResult = await this.applyPlan(driver, options, planOps);\n\t\t\tif (!applyResult.ok) return applyResult;\n\t\t\tapplyValue = applyResult.value;\n\t\t}\n\t\tif (space === APP_SPACE_ID) {\n\t\t\tconst schemaNode = await this.family.introspect({\n\t\t\t\tdriver,\n\t\t\t\tcontract: options.destinationContract\n\t\t\t});\n\t\t\tconst schemaVerifyResult = this.family.verifySchema({\n\t\t\t\tcontract: options.destinationContract,\n\t\t\t\tschema: schemaNode,\n\t\t\t\tstrict: options.strictVerification ?? true,\n\t\t\t\tframeworkComponents: options.frameworkComponents\n\t\t\t});\n\t\t\tif (!schemaVerifyResult.ok) return runnerFailure(\"MIGRATION.SCHEMA_VERIFY_FAILED\", schemaVerifyResult.summary, {\n\t\t\t\twhy: \"The resulting database schema does not satisfy the destination contract.\",\n\t\t\t\tmeta: { issues: schemaVerifyResult.schema.issues }\n\t\t\t});\n\t\t}\n\t\tconst incomingInvariants = options.plan.providedInvariants ?? [];\n\t\tconst existingInvariants = new Set(existingMarker?.invariants ?? []);\n\t\tconst incomingIsSubsetOfExisting = incomingInvariants.every((id) => existingInvariants.has(id));\n\t\tif (!(isSelfEdge && applyValue.operationsExecuted === 0 && incomingIsSubsetOfExisting)) {\n\t\t\tconst markerResult = await this.upsertMarker(driver, options, existingMarker, space);\n\t\t\tif (!markerResult.ok) return markerResult;\n\t\t\tawait this.recordLedgerEntries(driver, options, applyValue.executedOperations, planOps.length);\n\t\t}\n\t\treturn runnerSuccess({\n\t\t\toperationsPlanned: planOps.length,\n\t\t\toperationsExecuted: applyValue.operationsExecuted\n\t\t});\n\t}\n\tasync execute(options) {\n\t\tconst driver = options.driver;\n\t\tconst perSpaceOptions = options.perSpaceOptions;\n\t\tif (perSpaceOptions.length === 0) return ok({ perSpaceResults: [] });\n\t\tawait this.beginTransaction(driver);\n\t\tlet committed = false;\n\t\ttry {\n\t\t\tconst perSpaceResults = [];\n\t\t\tfor (const spaceOptions of perSpaceOptions) {\n\t\t\t\tconst space = spaceOptions.space ?? spaceOptions.plan.spaceId;\n\t\t\t\tconst result = await this.executeOnConnection({\n\t\t\t\t\t...spaceOptions,\n\t\t\t\t\tdriver,\n\t\t\t\t\tspace\n\t\t\t\t});\n\t\t\t\tif (!result.ok) return notOk({\n\t\t\t\t\t...result.failure,\n\t\t\t\t\tfailingSpace: space\n\t\t\t\t});\n\t\t\t\tperSpaceResults.push({\n\t\t\t\t\tspace,\n\t\t\t\t\tvalue: result.value\n\t\t\t\t});\n\t\t\t}\n\t\t\tawait this.commitTransaction(driver);\n\t\t\tcommitted = true;\n\t\t\treturn ok({ perSpaceResults });\n\t\t} finally {\n\t\t\tif (!committed) await this.rollbackTransaction(driver);\n\t\t}\n\t}\n\tasync applyPlan(driver, options, ops) {\n\t\tconst checks = options.executionChecks;\n\t\tconst runPrechecks = checks?.prechecks !== false;\n\t\tconst runPostchecks = checks?.postchecks !== false;\n\t\tconst runIdempotency = checks?.idempotencyChecks !== false;\n\t\tlet operationsExecuted = 0;\n\t\tconst executedOperations = [];\n\t\tfor (const operation of ops) {\n\t\t\toptions.callbacks?.onOperationStart?.(operation);\n\t\t\ttry {\n\t\t\t\tif (runPostchecks && runIdempotency) {\n\t\t\t\t\tif (await this.expectationsAreSatisfied(driver, operation.postcheck)) {\n\t\t\t\t\t\texecutedOperations.push(this.createPostcheckPreSatisfiedSkipRecord(operation));\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (runPrechecks) {\n\t\t\t\t\tconst precheckResult = await this.runExpectationSteps(driver, operation.precheck, operation, \"precheck\");\n\t\t\t\t\tif (!precheckResult.ok) return precheckResult;\n\t\t\t\t}\n\t\t\t\tconst executeResult = await this.runExecuteSteps(driver, operation.execute, operation);\n\t\t\t\tif (!executeResult.ok) return executeResult;\n\t\t\t\tif (runPostchecks) {\n\t\t\t\t\tconst postcheckResult = await this.runExpectationSteps(driver, operation.postcheck, operation, \"postcheck\");\n\t\t\t\t\tif (!postcheckResult.ok) return postcheckResult;\n\t\t\t\t}\n\t\t\t\texecutedOperations.push(operation);\n\t\t\t\toperationsExecuted += 1;\n\t\t\t} finally {\n\t\t\t\toptions.callbacks?.onOperationComplete?.(operation);\n\t\t\t}\n\t\t}\n\t\treturn ok({\n\t\t\toperationsExecuted,\n\t\t\texecutedOperations\n\t\t});\n\t}\n\tasync ensureControlTables(driver, contract) {\n\t\tconst lowererContext = { contract };\n\t\tconst [schemaQuery, ...tableQueries] = this.family.bootstrapControlTableQueries();\n\t\tif (schemaQuery === void 0) throw new InternalError(\"Postgres control-table bootstrap must include CREATE SCHEMA\");\n\t\tawait this.executeStatement(driver, await this.family.lowerAst(schemaQuery, lowererContext));\n\t\tconst legacyDetection = await this.detectLegacyMarkerShape(driver);\n\t\tif (!legacyDetection.ok) return legacyDetection;\n\t\tfor (const query of tableQueries) await this.executeStatement(driver, await this.family.lowerAst(query, lowererContext));\n\t\treturn okVoid();\n\t}\n\tasync detectLegacyMarkerShape(driver) {\n\t\tconst result = await driver.query(`select column_name\n from information_schema.columns\n where table_schema = 'prisma_contract'\n and table_name = 'marker'`);\n\t\tif (result.rows.length === 0) return okVoid();\n\t\tconst columns = new Set(result.rows.map((row) => row.column_name));\n\t\tif (columns.has(\"space\")) return okVoid();\n\t\treturn runnerFailure(\"MIGRATION.LEGACY_MARKER_SHAPE\", \"Legacy marker-table shape detected on prisma_contract.marker (no `space` column). Prisma Next is in pre-1.0; the previous transitional auto-migration to the per-space-row schema has been removed. Drop `prisma_contract.marker` and re-run `dbInit` to reinitialise from a clean baseline.\", { meta: {\n\t\t\ttable: \"prisma_contract.marker\",\n\t\t\tcolumns: [...columns].sort()\n\t\t} });\n\t}\n\tasync runExpectationSteps(driver, steps, operation, phase) {\n\t\tfor (const step of steps) {\n\t\t\tconst result = await driver.query(step.sql, step.params ?? []);\n\t\t\tif (!this.stepResultIsTrue(result.rows)) return runnerFailure(phase === \"precheck\" ? \"MIGRATION.PRECHECK_FAILED\" : \"MIGRATION.POSTCHECK_FAILED\", `Operation ${operation.id} failed during ${phase}: ${step.description}`, { meta: {\n\t\t\t\toperationId: operation.id,\n\t\t\t\tphase,\n\t\t\t\tstepDescription: step.description\n\t\t\t} });\n\t\t}\n\t\treturn okVoid();\n\t}\n\tasync runExecuteSteps(driver, steps, operation) {\n\t\tfor (const step of steps) try {\n\t\t\tawait driver.query(step.sql, step.params ?? []);\n\t\t} catch (error) {\n\t\t\tif (SqlQueryError.is(error)) return runnerFailure(\"MIGRATION.EXECUTION_FAILED\", `Operation ${operation.id} failed during execution: ${step.description}`, {\n\t\t\t\twhy: error.message,\n\t\t\t\tmeta: {\n\t\t\t\t\toperationId: operation.id,\n\t\t\t\t\tstepDescription: step.description,\n\t\t\t\t\tsql: step.sql,\n\t\t\t\t\tsqlState: error.sqlState,\n\t\t\t\t\tconstraint: error.constraint,\n\t\t\t\t\ttable: error.table,\n\t\t\t\t\tcolumn: error.column,\n\t\t\t\t\tdetail: error.detail\n\t\t\t\t}\n\t\t\t});\n\t\t\tthrow error;\n\t\t}\n\t\treturn okVoid();\n\t}\n\tstepResultIsTrue(rows) {\n\t\tif (!rows || rows.length === 0) return false;\n\t\tconst firstRow = rows[0];\n\t\tconst firstValue = firstRow ? Object.values(firstRow)[0] : void 0;\n\t\tif (typeof firstValue === \"boolean\") return firstValue;\n\t\tif (typeof firstValue === \"number\") return firstValue !== 0;\n\t\tif (typeof firstValue === \"string\") {\n\t\t\tconst lower = firstValue.toLowerCase();\n\t\t\tif (lower === \"t\" || lower === \"true\" || lower === \"1\") return true;\n\t\t\tif (lower === \"f\" || lower === \"false\" || lower === \"0\") return false;\n\t\t\treturn firstValue.length > 0;\n\t\t}\n\t\treturn Boolean(firstValue);\n\t}\n\tasync expectationsAreSatisfied(driver, steps) {\n\t\tif (steps.length === 0) return false;\n\t\tfor (const step of steps) {\n\t\t\tconst result = await driver.query(step.sql, step.params ?? []);\n\t\t\tif (!this.stepResultIsTrue(result.rows)) return false;\n\t\t}\n\t\treturn true;\n\t}\n\tcreatePostcheckPreSatisfiedSkipRecord(operation) {\n\t\tconst clonedMeta = operation.meta ? cloneAndFreezeRecord(operation.meta) : void 0;\n\t\tconst runnerMeta = Object.freeze({\n\t\t\tskipped: true,\n\t\t\treason: \"postcheck_pre_satisfied\"\n\t\t});\n\t\tconst mergedMeta = Object.freeze({\n\t\t\t...clonedMeta ?? {},\n\t\t\trunner: runnerMeta\n\t\t});\n\t\tconst frozenPostcheck = Object.freeze([...operation.postcheck]);\n\t\treturn Object.freeze({\n\t\t\tid: operation.id,\n\t\t\tlabel: operation.label,\n\t\t\t...ifDefined(\"summary\", operation.summary),\n\t\t\toperationClass: operation.operationClass,\n\t\t\ttarget: operation.target,\n\t\t\tprecheck: Object.freeze([]),\n\t\t\texecute: Object.freeze([]),\n\t\t\tpostcheck: frozenPostcheck,\n\t\t\t...ifDefined(\"meta\", operation.meta || mergedMeta ? mergedMeta : void 0)\n\t\t});\n\t}\n\tmarkerMatchesDestination(marker, plan) {\n\t\tif (!marker) return false;\n\t\tif (marker.storageHash !== plan.destination.storageHash) return false;\n\t\tif (plan.destination.profileHash && marker.profileHash !== plan.destination.profileHash) return false;\n\t\treturn true;\n\t}\n\tenforcePolicyCompatibility(policy, operations) {\n\t\tconst allowedClasses = new Set(policy.allowedOperationClasses);\n\t\tfor (const operation of operations) if (!allowedClasses.has(operation.operationClass)) return runnerFailure(\"MIGRATION.POLICY_VIOLATION\", `Operation ${operation.id} has class \"${operation.operationClass}\" which is not allowed by policy.`, {\n\t\t\twhy: `Policy only allows: ${policy.allowedOperationClasses.join(\", \")}.`,\n\t\t\tmeta: {\n\t\t\t\toperationId: operation.id,\n\t\t\t\toperationClass: operation.operationClass,\n\t\t\t\tallowedClasses: policy.allowedOperationClasses\n\t\t\t}\n\t\t});\n\t\treturn okVoid();\n\t}\n\tensureMarkerCompatibility(marker, plan) {\n\t\tconst origin = plan.origin ?? null;\n\t\tif (!origin) return okVoid();\n\t\tif (!marker) return runnerFailure(\"MIGRATION.MARKER_ORIGIN_MISMATCH\", `Missing contract marker: expected origin storage hash ${origin.storageHash}.`, { meta: { expectedOriginStorageHash: origin.storageHash } });\n\t\tif (marker.storageHash !== origin.storageHash) return runnerFailure(\"MIGRATION.MARKER_ORIGIN_MISMATCH\", `Existing contract marker (${marker.storageHash}) does not match plan origin (${origin.storageHash}).`, { meta: {\n\t\t\tmarkerStorageHash: marker.storageHash,\n\t\t\texpectedOriginStorageHash: origin.storageHash\n\t\t} });\n\t\tif (origin.profileHash && marker.profileHash !== origin.profileHash) return runnerFailure(\"MIGRATION.MARKER_ORIGIN_MISMATCH\", `Existing contract marker profile hash (${marker.profileHash}) does not match plan origin profile hash (${origin.profileHash}).`, { meta: {\n\t\t\tmarkerProfileHash: marker.profileHash,\n\t\t\texpectedOriginProfileHash: origin.profileHash\n\t\t} });\n\t\treturn okVoid();\n\t}\n\tensurePlanMatchesDestinationContract(destination, contract) {\n\t\tif (destination.storageHash !== contract.storage.storageHash) return runnerFailure(\"MIGRATION.DESTINATION_CONTRACT_MISMATCH\", `Plan destination storage hash (${destination.storageHash}) does not match provided contract storage hash (${contract.storage.storageHash}).`, { meta: {\n\t\t\tplanStorageHash: destination.storageHash,\n\t\t\tcontractStorageHash: contract.storage.storageHash\n\t\t} });\n\t\tif (destination.profileHash && contract.profileHash && destination.profileHash !== contract.profileHash) return runnerFailure(\"MIGRATION.DESTINATION_CONTRACT_MISMATCH\", `Plan destination profile hash (${destination.profileHash}) does not match provided contract profile hash (${contract.profileHash}).`, { meta: {\n\t\t\tplanProfileHash: destination.profileHash,\n\t\t\tcontractProfileHash: contract.profileHash\n\t\t} });\n\t\treturn okVoid();\n\t}\n\tasync upsertMarker(driver, options, existingMarker, space) {\n\t\tconst destination = {\n\t\t\tstorageHash: options.plan.destination.storageHash,\n\t\t\tprofileHash: options.plan.destination.profileHash ?? options.destinationContract.profileHash ?? options.plan.destination.storageHash,\n\t\t\tinvariants: options.plan.providedInvariants ?? []\n\t\t};\n\t\tif (!existingMarker) {\n\t\t\tawait this.family.initMarker({\n\t\t\t\tdriver,\n\t\t\t\tspace,\n\t\t\t\tdestination\n\t\t\t});\n\t\t\treturn okVoid();\n\t\t}\n\t\tif (!await this.family.updateMarker({\n\t\t\tdriver,\n\t\t\tspace,\n\t\t\texpectedFrom: existingMarker.storageHash,\n\t\t\tdestination\n\t\t})) return runnerFailure(\"MIGRATION.MARKER_CAS_FAILURE\", \"Marker was modified by another process during migration execution.\", { meta: {\n\t\t\tspace,\n\t\t\texpectedStorageHash: existingMarker.storageHash,\n\t\t\tdestinationStorageHash: options.plan.destination.storageHash\n\t\t} });\n\t\treturn okVoid();\n\t}\n\tasync recordLedgerEntries(driver, options, executedOperations, planOpsLength) {\n\t\tconst space = options.plan.spaceId;\n\t\tconst edges = options.migrationEdges;\n\t\tconst totalEdgeOps = edges.reduce((sum, edge) => sum + edge.operationCount, 0);\n\t\tif (totalEdgeOps !== planOpsLength) throw new InternalError(`Ledger write: plan.operations length (${planOpsLength}) does not match sum of migrationEdges operationCount (${totalEdgeOps})`);\n\t\tlet offset = 0;\n\t\tfor (const edge of edges) {\n\t\t\tconst edgeOps = executedOperations.slice(offset, offset + edge.operationCount);\n\t\t\toffset += edge.operationCount;\n\t\t\tawait this.family.writeLedgerEntry({\n\t\t\t\tdriver,\n\t\t\t\tspace,\n\t\t\t\tentry: {\n\t\t\t\t\tedgeId: `${edge.from}->${edge.to}`,\n\t\t\t\t\tfrom: edge.from,\n\t\t\t\t\tto: edge.to,\n\t\t\t\t\tmigrationName: edge.dirName,\n\t\t\t\t\tmigrationHash: edge.migrationHash,\n\t\t\t\t\toperations: edgeOps,\n\t\t\t\t\t...ifDefined(\"destinationContractJson\", edge.destinationContractJson)\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t}\n\tasync acquireLock(driver, key) {\n\t\tawait driver.query(\"select pg_advisory_xact_lock(hashtext($1))\", [key]);\n\t}\n\tasync beginTransaction(driver) {\n\t\tawait driver.query(\"BEGIN\");\n\t}\n\tasync commitTransaction(driver) {\n\t\tawait driver.query(\"COMMIT\");\n\t}\n\tasync rollbackTransaction(driver) {\n\t\tawait driver.query(\"ROLLBACK\");\n\t}\n\tasync executeStatement(driver, statement) {\n\t\tawait driver.query(statement.sql, statement.params);\n\t}\n};\n//#endregion\n//#region src/core/postgres-schema-verifier.ts\n/**\n* Postgres target `SchemaVerifier` concretion. Plugs into the\n* SQL-shared verification surface; production verification today still\n* routes through the family verify verdict (`verifySqlSchemaByDiff` over\n* `diffPostgresSchema`), which carries options (codec hooks,\n* normalizers, framework components) that the framework-level\n* `SchemaVerifyOptions` shape does not yet surface.\n*\n* The hooks return the empty list pending the call-site migration that\n* routes the existing verifier behaviour through the SPI — at that\n* point `verifyCommonSqlSchema` will likely lift onto the family base\n* (mirroring `verifyCommonMongoSchema`) and `verifyTargetExtensions`\n* will house Postgres-only kinds (functions, RLS policies in a future\n* project).\n*/\nvar PostgresSchemaVerifier = class extends SqlSchemaVerifierBase {\n\tverifyCommonSqlSchema(_options) {\n\t\treturn [];\n\t}\n\tverifyTargetExtensions(_options) {\n\t\treturn [];\n\t}\n};\n//#endregion\n//#region src/core/psl-infer/infer-names.ts\nfunction buildFieldNamesByTable(tables) {\n\tconst fieldNamesByTable = /* @__PURE__ */ new Map();\n\tfor (const table of Object.values(tables)) {\n\t\tconst assignmentOrder = [...Object.values(table.columns).map((column, index) => {\n\t\t\tconst { name, map } = toFieldName(column.name);\n\t\t\treturn {\n\t\t\t\tcolumnName: column.name,\n\t\t\t\tdesiredFieldName: name,\n\t\t\t\tfieldMap: map,\n\t\t\t\tindex\n\t\t\t};\n\t\t})].sort((left, right) => {\n\t\t\tconst mapComparison = Number(left.fieldMap !== void 0) - Number(right.fieldMap !== void 0);\n\t\t\tif (mapComparison !== 0) return mapComparison;\n\t\t\treturn left.index - right.index;\n\t\t});\n\t\tconst usedFieldNames = /* @__PURE__ */ new Set();\n\t\tconst tableFieldNames = /* @__PURE__ */ new Map();\n\t\tfor (const column of assignmentOrder) {\n\t\t\tconst fieldName = createUniqueFieldName(column.desiredFieldName, usedFieldNames);\n\t\t\tusedFieldNames.add(fieldName);\n\t\t\ttableFieldNames.set(column.columnName, {\n\t\t\t\tfieldName,\n\t\t\t\tfieldMap: column.fieldMap\n\t\t\t});\n\t\t}\n\t\tfieldNamesByTable.set(table.name, tableFieldNames);\n\t}\n\treturn fieldNamesByTable;\n}\nfunction resolveColumnFieldName(fieldNamesByTable, tableName, columnName) {\n\treturn fieldNamesByTable.get(tableName)?.get(columnName)?.fieldName ?? toFieldName(columnName).name;\n}\nfunction createUniqueFieldName(desiredName, usedFieldNames) {\n\tif (!usedFieldNames.has(desiredName)) return desiredName;\n\tlet counter = 2;\n\twhile (usedFieldNames.has(`${desiredName}${counter}`)) counter++;\n\treturn `${desiredName}${counter}`;\n}\nfunction buildTopLevelNameMap(sources, normalize, kind, sourceKind) {\n\tconst results = /* @__PURE__ */ new Map();\n\tconst normalizedToSources = /* @__PURE__ */ new Map();\n\tfor (const source of sources) {\n\t\tconst normalized = normalize(source);\n\t\tresults.set(source, normalized);\n\t\tnormalizedToSources.set(normalized.name, [...normalizedToSources.get(normalized.name) ?? [], source]);\n\t}\n\tconst duplicates = [...normalizedToSources.entries()].filter(([, conflictingSources]) => conflictingSources.length > 1);\n\tif (duplicates.length > 0) throw postgresError(\"CONTRACT.NAME_DUPLICATE\", `PSL ${kind} name collisions detected:\\n${duplicates.map(([normalizedName, conflictingSources]) => `- ${kind} \"${normalizedName}\" from ${sourceKind}s ${conflictingSources.map((source) => `\"${source}\"`).join(\", \")}`).join(\"\\n\")}`, { meta: {\n\t\tkind,\n\t\tnames: duplicates.map(([normalizedName]) => normalizedName)\n\t} });\n\treturn results;\n}\nfunction topologicalSort(models, tables, modelNameMap) {\n\tconst modelByName = /* @__PURE__ */ new Map();\n\tfor (const model of models) modelByName.set(model.name, model);\n\tconst deps = /* @__PURE__ */ new Map();\n\tconst tableToModel = /* @__PURE__ */ new Map();\n\tfor (const tableName of Object.keys(tables)) {\n\t\tconst modelName = modelNameMap.get(tableName);\n\t\tassertDefined(modelName, `topologicalSort: no model name mapped for table \"${tableName}\"`);\n\t\ttableToModel.set(tableName, modelName);\n\t\tdeps.set(modelName, /* @__PURE__ */ new Set());\n\t}\n\tfor (const [tableName, table] of Object.entries(tables)) {\n\t\tconst modelName = tableToModel.get(tableName);\n\t\tassertDefined(modelName, `topologicalSort: no model name recorded for table \"${tableName}\"`);\n\t\tconst modelDeps = deps.get(modelName);\n\t\tassertDefined(modelDeps, `topologicalSort: no dependency set recorded for model \"${modelName}\"`);\n\t\tfor (const fk of table.foreignKeys) {\n\t\t\tconst refModelName = tableToModel.get(fk.referencedTable);\n\t\t\tif (refModelName && refModelName !== modelName) modelDeps.add(refModelName);\n\t\t}\n\t}\n\tconst result = [];\n\tconst visited = /* @__PURE__ */ new Set();\n\tconst visiting = /* @__PURE__ */ new Set();\n\tconst sortedNames = [...deps.keys()].sort();\n\tfunction visit(name) {\n\t\tif (visited.has(name)) return;\n\t\tif (visiting.has(name)) return;\n\t\tvisiting.add(name);\n\t\tconst nameDeps = deps.get(name);\n\t\tassertDefined(nameDeps, `topologicalSort: no dependency set recorded for model \"${name}\"`);\n\t\tconst sortedDeps = [...nameDeps].sort();\n\t\tfor (const dep of sortedDeps) visit(dep);\n\t\tvisiting.delete(name);\n\t\tvisited.add(name);\n\t\tconst model = modelByName.get(name);\n\t\tassertDefined(model, `topologicalSort: no model block recorded for \"${name}\"`);\n\t\tresult.push(model);\n\t}\n\tfor (const name of sortedNames) visit(name);\n\treturn result;\n}\n//#endregion\n//#region src/core/psl-infer/psl-literals.ts\nconst SYNTHETIC_SPAN = {\n\tstart: {\n\t\toffset: 0,\n\t\tline: 1,\n\t\tcolumn: 1\n\t},\n\tend: {\n\t\toffset: 0,\n\t\tline: 1,\n\t\tcolumn: 1\n\t}\n};\nfunction buildSimpleConstraintFieldAttribute(name, constraintName) {\n\tif (constraintName === void 0) return buildAttribute(\"field\", name, []);\n\treturn buildAttribute(\"field\", name, [namedArg(\"map\", `\"${escapePslString(constraintName)}\"`)]);\n}\nfunction parseDefaultAttributeString(attributeText) {\n\treturn buildAttribute(\"field\", \"default\", [positionalArg(attributeText.replace(/^@default\\(/, \"\").replace(/\\)$/, \"\"))]);\n}\nfunction buildMapAttribute(target, mapName) {\n\treturn buildAttribute(target, \"map\", [positionalArg(`\"${escapePslString(mapName)}\"`)]);\n}\nfunction buildAttribute(target, name, args) {\n\treturn {\n\t\tkind: \"attribute\",\n\t\ttarget,\n\t\tname,\n\t\targs,\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\nfunction positionalArg(value) {\n\treturn {\n\t\tkind: \"positional\",\n\t\tvalue,\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\nfunction namedArg(name, value) {\n\treturn {\n\t\tkind: \"named\",\n\t\tname,\n\t\tvalue,\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\nfunction escapePslString(value) {\n\treturn value.replace(/\\\\/g, \"\\\\\\\\\").replace(/\"/g, \"\\\\\\\"\").replace(/\\n/g, \"\\\\n\").replace(/\\r/g, \"\\\\r\");\n}\n/**\n* Formats a resolved literal-default array as PSL literal-list syntax\n* (`[1, 2, 3]`, `[\"a\", \"b\"]`, `[]`). PSL's list-literal grammar only accepts\n* string/number/boolean elements, so any other element (e.g. `null`, a\n* nested array/object) makes the value unrepresentable and this returns\n* `undefined`.\n*/\nfunction formatPslListLiteralValue(elements) {\n\tconst parts = [];\n\tfor (const element of elements) if (typeof element === \"string\") parts.push(`\"${escapePslString(element)}\"`);\n\telse if (typeof element === \"number\" || typeof element === \"boolean\") parts.push(String(element));\n\telse return;\n\treturn `[${parts.join(\", \")}]`;\n}\n/**\n* Resolves a `SqlColumnIR.default` value into a normalized {@link ColumnDefault}.\n*\n* `SqlSchemaIR` types the column default as `string` (a raw database default\n* expression). Some legacy fixtures and tests still pass already-normalized\n* `ColumnDefault` objects in the same slot, so we accept either shape\n* defensively at runtime.\n*/\nfunction parseColumnDefault(value, nativeType, rawDefaultParser) {\n\tif (typeof value === \"string\") return rawDefaultParser ? rawDefaultParser(value, nativeType) : void 0;\n\treturn isColumnDefault(value) ? value : void 0;\n}\n//#endregion\n//#region src/core/psl-infer/infer-enum-blocks.ts\nconst PSL_SCALAR_TYPE_NAMES = /* @__PURE__ */ new Set([\n\t\"String\",\n\t\"Boolean\",\n\t\"Int\",\n\t\"BigInt\",\n\t\"Float\",\n\t\"Decimal\",\n\t\"DateTime\",\n\t\"Json\",\n\t\"Bytes\"\n]);\n/**\n* Builds one `native_enum` extension-block AST node per introspected enum\n* definition. Block names go through the shared top-level transform\n* (`toEnumName`, intra-enum collisions throw like model collisions) and are\n* then reserved against the model names — an enum whose PSL name a model\n* already claims gets a numeric suffix, with `@@map` carrying the real type\n* name. Members print as explicit `member = \"value\"` pairs: the member name\n* is the sanitized value (deduplicated within the block), the JSON-encoded\n* value carries the truth verbatim.\n*/\nfunction buildNativeEnumBlocks(definitions, modelNames) {\n\tconst enumNames = buildTopLevelNameMap([...definitions.keys()].sort(), toEnumName, \"enum\", \"enum type\");\n\tconst usedTopLevelNames = new Set(PSL_SCALAR_TYPE_NAMES);\n\tfor (const result of modelNames.values()) usedTopLevelNames.add(result.name);\n\tconst enumNameMap = /* @__PURE__ */ new Map();\n\tconst enumBlocks = [];\n\tfor (const [typeName, result] of enumNames) {\n\t\tconst name = createUniqueFieldName(result.name, usedTopLevelNames);\n\t\tusedTopLevelNames.add(name);\n\t\tenumNameMap.set(typeName, name);\n\t\tenumBlocks.push(buildNativeEnumBlock(name, typeName, definitions.get(typeName) ?? []));\n\t}\n\treturn {\n\t\tenumNameMap,\n\t\tenumBlocks\n\t};\n}\nfunction buildNativeEnumBlock(name, typeName, values) {\n\tconst usedMemberNames = /* @__PURE__ */ new Set();\n\tconst parameters = {};\n\tfor (const value of values) {\n\t\tconst memberName = createUniqueFieldName(toEnumMemberName(value), usedMemberNames);\n\t\tusedMemberNames.add(memberName);\n\t\tparameters[memberName] = {\n\t\t\tkind: \"value\",\n\t\t\traw: JSON.stringify(value),\n\t\t\tspan: SYNTHETIC_SPAN\n\t\t};\n\t}\n\treturn {\n\t\tkind: \"native_enum\",\n\t\tkeyword: \"native_enum\",\n\t\tname,\n\t\tparameters,\n\t\tblockAttributes: name === typeName ? [] : [{\n\t\t\tname: \"map\",\n\t\t\targs: [{\n\t\t\t\tkind: \"positional\",\n\t\t\t\tvalue: `\"${escapePslString(typeName)}\"`,\n\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t}],\n\t\t\tspan: SYNTHETIC_SPAN\n\t\t}],\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\n//#endregion\n//#region src/core/psl-infer/infer-foreign-keys.ts\n/**\n* Coordinates every element a set of already-assembled contracts declare,\n* mapped to the {@link SqlDescribedContractSpace} that owns it and keyed by\n* the shared {@link coordinateKey} helper. `contract infer` uses this to omit\n* database elements a stack extension pack's contract space already\n* describes — reusing the same coordinate walk the contract-space aggregate\n* and cross-space collision check use (`elementCoordinates`), rather than a\n* bespoke per-entity-kind membership test — and, for a foreign key whose\n* referenced table an entry owns, to resolve the qualified cross-space\n* relation it describes.\n*/\nfunction describedContractOwners(describedContracts) {\n\tconst owners = /* @__PURE__ */ new Map();\n\tfor (const entry of describedContracts) for (const coordinate of elementCoordinates(entry.contract.storage)) owners.set(coordinateKey(coordinate), entry);\n\treturn owners;\n}\nfunction resolveCrossSpaceTarget(owner, namespaceId, tableName) {\n\tconst domainNamespace = owner.contract.domain.namespaces[namespaceId];\n\tif (domainNamespace === void 0) return;\n\tfor (const [modelName, model] of Object.entries(domainNamespace.models)) {\n\t\tconst storage = blindCast(model.storage);\n\t\tif (storage.namespaceId !== namespaceId || storage.table !== tableName) continue;\n\t\tconst fieldNamesByColumn = /* @__PURE__ */ new Map();\n\t\tfor (const [fieldName, fieldStorage] of Object.entries(storage.fields)) fieldNamesByColumn.set(fieldStorage.column, { fieldName });\n\t\treturn {\n\t\t\tspaceId: owner.spaceId,\n\t\t\tnamespaceId,\n\t\t\tmodelName,\n\t\t\tfieldNamesByColumn\n\t\t};\n\t}\n}\n/**\n* Classifies every foreign key on a surviving table into one of three cases.\n* A foreign key that carries a `referencedSchema` is checked against the\n* pack-owned coordinates first, so a pack-owned target wins even when a local\n* table happens to share its bare name; only foreign keys with no owned\n* coordinate fall through to the local/dangling distinction.\n*\n* - **Cross-space**: `referencedSchema` is set and a described contract owns\n* the coordinate `(referencedSchema, 'table', referencedTable)`. The\n* referenced table is absent from the tree (omitted because the pack\n* describes it, or never introspected — `contract infer` walks a single\n* namespace). Removed from `foreignKeys` (so `inferRelations` never falls\n* back to a bare, unqualified table name for it) and replaced with a\n* `RelationField` qualified with the owning pack's space id and namespace\n* id. `owners` holds only pack-declared coordinates, so an app's own table\n* (e.g. `public.users`) is never owned and cannot be captured here.\n* - **Local**: not a pack-owned coordinate, and the referenced table survived\n* introspection — left untouched, `inferRelations` handles it as before.\n* - **Dangling**: not a pack-owned coordinate, and the referenced table is\n* neither in the tree nor owned by any described contract. Removed from\n* `foreignKeys`, keeping the scalar column, rather than emitting a relation\n* to a model that was never defined.\n*\n* A pack that owns the referenced coordinate but declares no domain model\n* mapped to it is malformed; that case throws rather than degrading to a\n* silent drop, which would contradict the dangling definition above.\n*/\nfunction resolveForeignKeys(tables, owners) {\n\tconst resultTables = {};\n\tconst extraRelationsByTable = /* @__PURE__ */ new Map();\n\tconst crossSpaceFieldNamesByTable = /* @__PURE__ */ new Map();\n\tconst danglingForeignKeysByTable = /* @__PURE__ */ new Map();\n\tfor (const [tableName, table] of Object.entries(tables)) {\n\t\tconst keptForeignKeys = [];\n\t\tfor (const fk of table.foreignKeys) {\n\t\t\tif (fk.referencedSchema !== void 0) {\n\t\t\t\tconst owner = owners.get(coordinateKey({\n\t\t\t\t\tnamespaceId: fk.referencedSchema,\n\t\t\t\t\tentityKind: \"table\",\n\t\t\t\t\tentityName: fk.referencedTable\n\t\t\t\t}));\n\t\t\t\tif (owner !== void 0) {\n\t\t\t\t\tconst target = resolveCrossSpaceTarget(owner, fk.referencedSchema, fk.referencedTable);\n\t\t\t\t\tif (target === void 0) throw postgresError(\"CONTRACT.PACK_CONTRIBUTION_INVALID\", `contract infer: described contract space \"${owner.spaceId}\" owns storage coordinate \"${fk.referencedSchema}.${fk.referencedTable}\" but declares no domain model mapped to it. A pack that describes a table must also declare the domain model it maps to; this pack is malformed.`, { meta: {\n\t\t\t\t\t\tspaceId: owner.spaceId,\n\t\t\t\t\t\ttableName: fk.referencedTable\n\t\t\t\t\t} });\n\t\t\t\t\tif (!crossSpaceFieldNamesByTable.has(fk.referencedTable)) crossSpaceFieldNamesByTable.set(fk.referencedTable, target.fieldNamesByColumn);\n\t\t\t\t\tconst fieldName = deriveRelationFieldName(fk.columns, fk.referencedTable);\n\t\t\t\t\tconst optional = fk.columns.some((columnName) => table.columns[columnName]?.nullable ?? false);\n\t\t\t\t\tconst relationField = {\n\t\t\t\t\t\t...buildChildRelationField(fieldName, target.modelName, fk, optional, void 0, table),\n\t\t\t\t\t\ttypeNamespaceId: target.namespaceId,\n\t\t\t\t\t\ttypeContractSpaceId: target.spaceId\n\t\t\t\t\t};\n\t\t\t\t\tconst existingRelations = extraRelationsByTable.get(tableName);\n\t\t\t\t\tif (existingRelations) existingRelations.push(relationField);\n\t\t\t\t\telse extraRelationsByTable.set(tableName, [relationField]);\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (tables[fk.referencedTable] !== void 0) keptForeignKeys.push(fk);\n\t\t\telse {\n\t\t\t\tconst dangling = {\n\t\t\t\t\tcolumns: fk.columns,\n\t\t\t\t\treferencedSchema: fk.referencedSchema,\n\t\t\t\t\treferencedTable: fk.referencedTable\n\t\t\t\t};\n\t\t\t\tconst existingDangling = danglingForeignKeysByTable.get(tableName);\n\t\t\t\tif (existingDangling) existingDangling.push(dangling);\n\t\t\t\telse danglingForeignKeysByTable.set(tableName, [dangling]);\n\t\t\t}\n\t\t}\n\t\tresultTables[tableName] = keptForeignKeys.length === table.foreignKeys.length ? table : new SqlTableIR({\n\t\t\t...table,\n\t\t\tforeignKeys: keptForeignKeys\n\t\t});\n\t}\n\treturn {\n\t\ttables: resultTables,\n\t\textraRelationsByTable,\n\t\tcrossSpaceFieldNamesByTable,\n\t\tdanglingForeignKeysByTable\n\t};\n}\n/**\n* Explains a foreign key `resolveForeignKeys` dropped as dangling: the\n* database enforces it, but its target lives outside the introspected\n* schema, so infer has no model to point a relation at. The suggested fix\n* targets the common cause — an unconfigured extension pack's schema\n* (e.g. Supabase's `auth`).\n*/\nfunction buildDanglingForeignKeyWarning(danglingForeignKeys, fieldNamesByTable, tableName) {\n\treturn `Foreign key ${danglingForeignKeys.map((fk) => {\n\t\tconst fieldNames = fk.columns.map((columnName) => resolveColumnFieldName(fieldNamesByTable, tableName, columnName));\n\t\tconst target = fk.referencedSchema !== void 0 ? `${fk.referencedSchema}.${fk.referencedTable}` : fk.referencedTable;\n\t\treturn `\"${fieldNames.join(\", \")}\" -> \"${target}\"`;\n\t}).join(\", \")} exists in the database, but its target schema is outside the introspected scope, so no relation field was generated. If the target schema is described by an extension pack, add it to extensions and re-run infer.`;\n}\n//#endregion\n//#region src/core/psl-infer/infer-index-attributes.ts\nfunction buildModelConstraintAttribute(name, fields, constraintName) {\n\tconst args = [positionalArg(`[${fields.join(\", \")}]`)];\n\tif (constraintName !== void 0) args.push(namedArg(\"map\", `\"${escapePslString(constraintName)}\"`));\n\treturn buildAttribute(\"model\", name, args);\n}\n/**\n* Emits one `@@index` attribute at full fidelity. The index's identity is\n* re-detected rather than trusted: `name:` is emitted only when the live name\n* parses as a wire name AND that hash recomputes from the introspected\n* content; otherwise the live name is adopted verbatim with `map:`.\n*/\nfunction buildIndexAttribute(index, fieldNames) {\n\tconst args = [];\n\tif (fieldNames !== void 0) args.push(positionalArg(`[${fieldNames.join(\", \")}]`));\n\telse {\n\t\tassertDefined(index.expression, `buildIndexAttribute: index \"${index.name}\" carries neither columns nor expression; SqlIndexIR enforces exactly one`);\n\t\targs.push(namedArg(\"expression\", `\"${escapePslString(index.expression)}\"`));\n\t}\n\tconst parsed = parseWireName(index.name);\n\tconst recomputed = computeIndexContentHash({\n\t\t...index.columns !== void 0 ? { columns: index.columns } : {},\n\t\t...index.expression !== void 0 ? { expression: index.expression } : {},\n\t\t...index.where !== void 0 ? { where: index.where } : {},\n\t\tunique: index.unique,\n\t\t...index.type !== void 0 ? { type: index.type } : {},\n\t\t...index.options !== void 0 ? { options: index.options } : {}\n\t});\n\tif (parsed !== void 0 && parsed.hash === recomputed) args.push(namedArg(\"name\", `\"${escapePslString(parsed.prefix)}\"`));\n\telse args.push(namedArg(\"map\", `\"${escapePslString(index.name)}\"`));\n\tif (index.where !== void 0) args.push(namedArg(\"where\", `\"${escapePslString(index.where)}\"`));\n\tif (index.unique) args.push(namedArg(\"unique\", \"true\"));\n\tconst hasOptions = index.options !== void 0 && Object.keys(index.options).length > 0;\n\tif (index.type !== void 0 || hasOptions) args.push(namedArg(\"type\", `\"${escapePslString(index.type ?? \"btree\")}\"`));\n\tif (hasOptions) {\n\t\tconst entries = Object.entries(index.options ?? {}).sort(([a], [b]) => a < b ? -1 : a > b ? 1 : 0).map(([key, value]) => `${key}: \"${escapePslString(String(value))}\"`);\n\t\targs.push(namedArg(\"options\", `{ ${entries.join(\", \")} }`));\n\t}\n\treturn buildAttribute(\"model\", \"index\", args);\n}\n/**\n* Emits one `@@check` attribute for a live, non-derived check, always in the\n* `map:` form. Re-detecting `name:` is not attempted: the live expression is\n* Postgres's own reprint, but a wire-named check's hash was taken over the\n* author's original text, so recomputing the hash from the reprint would\n* essentially never match. `map:` plus the verbatim reprint is correct\n* regardless — a reprint compared against a later reprint of the same\n* expression is stable, so the emitted contract signs the live database with\n* zero pending operations. `buildPolicyBlocks` makes the same call for\n* `@@map` on adopted RLS policies, for the same reason.\n*/\nfunction buildCheckAttribute(check) {\n\treturn buildAttribute(\"model\", \"check\", [namedArg(\"expression\", `\"${escapePslString(check.expression)}\"`), namedArg(\"map\", `\"${escapePslString(check.name)}\"`)]);\n}\n//#endregion\n//#region src/core/psl-infer/infer-model-blocks.ts\nfunction buildModel(table, typeMap, enumNameMap, fieldNamesByTable, defaultMapping, rawDefaultParser, relationFields, danglingForeignKeys, rlsEnabled = false, policySkipNotes = []) {\n\tconst { name: modelName, map: mapName } = toModelName(table.name);\n\tconst fieldNameMap = fieldNamesByTable.get(table.name);\n\tconst pkColumns = new Set(table.primaryKey?.columns ?? []);\n\tconst isSinglePk = pkColumns.size === 1;\n\tconst singlePkConstraintName = isSinglePk ? table.primaryKey?.name : void 0;\n\tconst uniqueColumns = /* @__PURE__ */ new Map();\n\tfor (const unique of table.uniques) if (unique.columns.length === 1) {\n\t\tconst [columnName = \"\"] = unique.columns;\n\t\tconst existingConstraintName = uniqueColumns.get(columnName);\n\t\tif (!uniqueColumns.has(columnName) || existingConstraintName === void 0 && unique.name) uniqueColumns.set(columnName, unique.name);\n\t}\n\tconst derivedCheckNames = computeDerivedCheckNames(table);\n\tconst fields = [];\n\tfor (const column of Object.values(table.columns)) fields.push(buildScalarField(column, table, typeMap, enumNameMap, fieldNameMap, defaultMapping, rawDefaultParser, pkColumns, isSinglePk, singlePkConstraintName, uniqueColumns, derivedCheckNames));\n\tconst usedFieldNames = new Set(fields.map((field) => field.name));\n\tfor (const rel of relationFields) fields.push(buildRelationField(rel, table.name, fieldNamesByTable, usedFieldNames));\n\tconst modelAttributes = [];\n\tif (table.primaryKey && table.primaryKey.columns.length > 1) {\n\t\tconst pkFieldNames = table.primaryKey.columns.map((columnName) => resolveColumnFieldName(fieldNamesByTable, table.name, columnName));\n\t\tmodelAttributes.push(buildModelConstraintAttribute(\"id\", pkFieldNames, table.primaryKey.name));\n\t}\n\tfor (const unique of table.uniques) if (unique.columns.length > 1) {\n\t\tconst uniqueFieldNames = unique.columns.map((columnName) => resolveColumnFieldName(fieldNamesByTable, table.name, columnName));\n\t\tmodelAttributes.push(buildModelConstraintAttribute(\"unique\", uniqueFieldNames, unique.name));\n\t}\n\tfor (const index of table.indexes) {\n\t\tconst indexFieldNames = index.columns?.map((columnName) => resolveColumnFieldName(fieldNamesByTable, table.name, columnName));\n\t\tmodelAttributes.push(buildIndexAttribute(index, indexFieldNames));\n\t}\n\tfor (const check of table.checks ?? []) if (!derivedCheckNames.has(check.name)) modelAttributes.push(buildCheckAttribute(check));\n\tif (mapName) modelAttributes.push(buildMapAttribute(\"model\", mapName));\n\tif (rlsEnabled) modelAttributes.push(buildAttribute(\"model\", \"rls\", []));\n\tconst warnings = [];\n\tif (!table.primaryKey) warnings.push(\"This table has no primary key in the database\");\n\tif (danglingForeignKeys.length > 0) warnings.push(buildDanglingForeignKeyWarning(danglingForeignKeys, fieldNamesByTable, table.name));\n\tconst commentLines = [...warnings.length > 0 ? [`// WARNING: ${warnings.join(\" \")}`] : [], ...policySkipNotes];\n\tconst comment = commentLines.length > 0 ? commentLines.join(\"\\n\") : void 0;\n\treturn {\n\t\tkind: \"model\",\n\t\tname: modelName,\n\t\tfields,\n\t\tattributes: modelAttributes,\n\t\tspan: SYNTHETIC_SPAN,\n\t\t...comment !== void 0 ? { comment } : {}\n\t};\n}\n/**\n* The live check names that are derived: a live check's name matches\n* `formatWireName(composeCheckWirePrefix(table, column, kind), computeCheckContentHash(expression))`\n* for some column of the table and some candidate `postgresRenderCheckExpressions`\n* would render for that column. Never by comparing expressions — the live\n* body is a Postgres reprint, never the authored text. One set serves both\n* the `@noCheck` waiver below and `@@check` exclusion in `buildModel`, so the\n* two decisions cannot drift apart.\n*\n* `membership` is unreachable here today: infer never emits domain enums\n* (`enumType()` is not inferred), so no inferred column has member values and\n* no membership check is ever derived. The day domain-enum inference exists,\n* its slice extends this by threading the column's member values through.\n*/\nfunction computeDerivedCheckNames(table) {\n\tconst liveCheckNames = new Set((table.checks ?? []).map((check) => check.name));\n\tconst derivedCheckNames = /* @__PURE__ */ new Set();\n\tfor (const column of Object.values(table.columns)) for (const candidate of postgresRenderCheckExpressions({\n\t\ttableName: table.name,\n\t\tcolumnName: column.name,\n\t\tmany: column.many === true,\n\t\tmemberValues: void 0\n\t})) {\n\t\tconst derivedName = formatWireName(composeCheckWirePrefix(table.name, column.name, candidate.kind), computeCheckContentHash(candidate.expression));\n\t\tif (liveCheckNames.has(derivedName)) derivedCheckNames.add(derivedName);\n\t}\n\treturn derivedCheckNames;\n}\nfunction buildScalarField(column, table, typeMap, enumNameMap, fieldNameMap, defaultMapping, rawDefaultParser, pkColumns, isSinglePk, singlePkConstraintName, uniqueColumns, derivedCheckNames) {\n\tconst resolvedField = fieldNameMap?.get(column.name);\n\tconst fieldName = resolvedField?.fieldName ?? toFieldName(column.name).name;\n\tconst fieldMap = resolvedField?.fieldMap;\n\tconst resolution = typeMap.resolve(column.nativeType, table.annotations);\n\tif (\"unsupported\" in resolution) {\n\t\tconst attrs = [];\n\t\tif (fieldMap !== void 0) attrs.push(buildMapAttribute(\"field\", fieldMap));\n\t\treturn {\n\t\t\tkind: \"field\",\n\t\t\tname: fieldName,\n\t\t\ttypeName: `Unsupported(\"${escapePslString(resolution.nativeType)}\")`,\n\t\t\toptional: column.nullable,\n\t\t\tlist: column.many === true,\n\t\t\tattributes: attrs,\n\t\t\tspan: SYNTHETIC_SPAN\n\t\t};\n\t}\n\tlet typeName = resolution.pslType.name;\n\tlet typeConstructor = resolution.pslType.args ? {\n\t\tkind: \"typeConstructor\",\n\t\tpath: [resolution.pslType.name],\n\t\targs: resolution.pslType.args.map(positionalArg),\n\t\tspan: SYNTHETIC_SPAN\n\t} : void 0;\n\tconst enumPslName = enumNameMap.get(column.nativeType);\n\tif (enumPslName) {\n\t\ttypeName = enumPslName;\n\t\ttypeConstructor = {\n\t\t\tkind: \"typeConstructor\",\n\t\t\tpath: [\"pg\", \"enum\"],\n\t\t\targs: [positionalArg(enumPslName)],\n\t\t\tspan: SYNTHETIC_SPAN\n\t\t};\n\t}\n\tconst attributes = [];\n\tconst isId = isSinglePk && pkColumns.has(column.name);\n\tif (isId) attributes.push(buildSimpleConstraintFieldAttribute(\"id\", singlePkConstraintName));\n\tif (column.default === void 0 && column.resolvedDefault?.kind === \"function\" && column.resolvedDefault.expression === \"autoincrement()\") attributes.push(parseDefaultAttributeString(\"@default(autoincrement())\"));\n\telse if (column.many === true && column.resolvedDefault?.kind === \"literal\") {\n\t\tconst formatted = Array.isArray(column.resolvedDefault.value) ? formatPslListLiteralValue(column.resolvedDefault.value) : void 0;\n\t\tif (formatted !== void 0) attributes.push(parseDefaultAttributeString(`@default(${formatted})`));\n\t} else if (column.default !== void 0) {\n\t\tconst parsed = parseColumnDefault(column.default, column.nativeType, rawDefaultParser);\n\t\tif (parsed) {\n\t\t\tconst result = mapDefault(parsed, defaultMapping);\n\t\t\tif (\"attribute\" in result) attributes.push(parseDefaultAttributeString(result.attribute));\n\t\t}\n\t}\n\tif (uniqueColumns.has(column.name) && !isId) {\n\t\tconst uniqueConstraintName = uniqueColumns.get(column.name);\n\t\tattributes.push(buildSimpleConstraintFieldAttribute(\"unique\", uniqueConstraintName));\n\t}\n\tif (column.many === true) {\n\t\tconst waivedKinds = postgresRenderCheckExpressions({\n\t\t\ttableName: table.name,\n\t\t\tcolumnName: column.name,\n\t\t\tmany: true,\n\t\t\tmemberValues: void 0\n\t\t}).filter((candidate) => !derivedCheckNames.has(formatWireName(composeCheckWirePrefix(table.name, column.name, candidate.kind), computeCheckContentHash(candidate.expression)))).map((candidate) => candidate.kind);\n\t\tif (waivedKinds.length > 0) attributes.push(buildAttribute(\"field\", \"noCheck\", waivedKinds.map(positionalArg)));\n\t}\n\tif (fieldMap !== void 0) attributes.push(buildMapAttribute(\"field\", fieldMap));\n\treturn {\n\t\tkind: \"field\",\n\t\tname: fieldName,\n\t\ttypeName,\n\t\t...ifDefined(\"typeConstructor\", typeConstructor),\n\t\toptional: column.nullable,\n\t\tlist: column.many === true,\n\t\tattributes,\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\nfunction buildRelationField(rel, hostTableName, fieldNamesByTable, usedFieldNames) {\n\tconst fieldName = createUniqueFieldName(rel.fieldName, usedFieldNames);\n\tusedFieldNames.add(fieldName);\n\tconst args = [];\n\tif (rel.fields && rel.references) {\n\t\tif (rel.relationName) args.push(namedArg(\"name\", `\"${escapePslString(rel.relationName)}\"`));\n\t\targs.push(namedArg(\"fields\", `[${rel.fields.map((columnName) => resolveColumnFieldName(fieldNamesByTable, hostTableName, columnName)).join(\", \")}]`));\n\t\targs.push(namedArg(\"references\", `[${rel.references.map((columnName) => resolveColumnFieldName(fieldNamesByTable, rel.referencedTableName ?? \"\", columnName)).join(\", \")}]`));\n\t\tif (rel.onDelete) args.push(namedArg(\"onDelete\", rel.onDelete));\n\t\tif (rel.onUpdate) args.push(namedArg(\"onUpdate\", rel.onUpdate));\n\t\tif (rel.fkName) args.push(namedArg(\"map\", `\"${escapePslString(rel.fkName)}\"`));\n\t\tif (rel.index === false) args.push(namedArg(\"index\", \"false\"));\n\t} else if (rel.relationName) args.push(namedArg(\"name\", `\"${escapePslString(rel.relationName)}\"`));\n\tconst attrs = args.length > 0 ? [buildAttribute(\"field\", \"relation\", args)] : [];\n\treturn {\n\t\tkind: \"field\",\n\t\tname: fieldName,\n\t\ttypeName: rel.typeName,\n\t\t...ifDefined(\"typeNamespaceId\", rel.typeNamespaceId),\n\t\t...ifDefined(\"typeContractSpaceId\", rel.typeContractSpaceId),\n\t\toptional: rel.optional,\n\t\tlist: rel.list,\n\t\tattributes: attrs,\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\n//#endregion\n//#region src/core/psl-infer/infer-policy-blocks.ts\nconst POLICY_OPERATION_KEYWORD = {\n\tselect: \"policy_select\",\n\tinsert: \"policy_insert\",\n\tupdate: \"policy_update\",\n\tdelete: \"policy_delete\",\n\tall: \"policy_all\"\n};\n/** The PSL tokenizer's identifier grammar: leading letter/underscore, then letters/digits/`_`/`-`. */\nconst PSL_IDENTIFIER = /^[\\p{L}_][\\p{L}\\p{N}_-]*$/u;\n/** Replaces invalid character runs with `_`; prepends `_` when the first character is invalid. */\nfunction sanitizePolicyHead(raw) {\n\tlet head = raw.replace(/[^\\p{L}\\p{N}_-]+/gu, \"_\");\n\tif (!/^[\\p{L}_]/u.test(head)) head = `_${head}`;\n\treturn head;\n}\n/**\n* Builds one `policy_<operation>` block per introspected policy. Every\n* adopted policy is exact-named: a reprinted body never reliably re-hashes to\n* the live suffix, so `@@map` always carries the physical name and the head\n* is only an identifier. A policy granting to a role whose name is not a\n* legal identifier cannot be authored at all — role references have no\n* `@@map` escape — so it is skipped with a note.\n*/\nfunction buildPolicyBlocks(policiesByTable, modelNameMap, reservedHeads = /* @__PURE__ */ new Set()) {\n\tconst all = [];\n\tfor (const [tableName, policies] of policiesByTable) for (const policy of policies) all.push({\n\t\tpolicy,\n\t\ttableName\n\t});\n\tall.sort((a, b) => {\n\t\tif (a.policy.name !== b.policy.name) return a.policy.name < b.policy.name ? -1 : 1;\n\t\tif (a.tableName !== b.tableName) return a.tableName < b.tableName ? -1 : 1;\n\t\treturn a.policy.operation < b.policy.operation ? -1 : a.policy.operation > b.policy.operation ? 1 : 0;\n\t});\n\tconst usedHeads = new Set(reservedHeads);\n\tconst blocks = [];\n\tconst skipNotesByTable = /* @__PURE__ */ new Map();\n\tfor (const { policy, tableName } of all) {\n\t\tconst modelName = modelNameMap.get(tableName);\n\t\tassertDefined(modelName, `buildPolicyBlocks: policy \"${policy.name}\" targets table \"${tableName}\" with no emitted model; tables and policies come from the same introspection walk`);\n\t\tconst badRole = policy.roles.find((role) => !PSL_IDENTIFIER.test(role));\n\t\tif (badRole !== void 0) {\n\t\t\tconst notes = skipNotesByTable.get(tableName) ?? [];\n\t\t\tnotes.push(`// prisma-next: skipped policy \"${policy.name}\": role \"${badRole}\" is not a valid PSL identifier and role references cannot be escaped`);\n\t\t\tskipNotesByTable.set(tableName, notes);\n\t\t\tcontinue;\n\t\t}\n\t\tlet head = sanitizePolicyHead(parseWireName(policy.name)?.prefix ?? policy.name);\n\t\tif (usedHeads.has(head)) {\n\t\t\tlet n = 2;\n\t\t\twhile (usedHeads.has(`${head}_${n}`)) n += 1;\n\t\t\thead = `${head}_${n}`;\n\t\t}\n\t\tusedHeads.add(head);\n\t\tblocks.push({\n\t\t\tkind: \"policy\",\n\t\t\tkeyword: POLICY_OPERATION_KEYWORD[policy.operation],\n\t\t\tname: head,\n\t\t\tparameters: {\n\t\t\t\ttarget: {\n\t\t\t\t\tkind: \"ref\",\n\t\t\t\t\tidentifier: modelName,\n\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t},\n\t\t\t\troles: {\n\t\t\t\t\tkind: \"list\",\n\t\t\t\t\titems: policy.roles.map((role) => ({\n\t\t\t\t\t\tkind: \"ref\",\n\t\t\t\t\t\tidentifier: role,\n\t\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t\t})),\n\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t},\n\t\t\t\t...policy.using !== void 0 ? { using: {\n\t\t\t\t\tkind: \"value\",\n\t\t\t\t\traw: JSON.stringify(policy.using),\n\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t} } : {},\n\t\t\t\t...policy.withCheck !== void 0 ? { withCheck: {\n\t\t\t\t\tkind: \"value\",\n\t\t\t\t\traw: JSON.stringify(policy.withCheck),\n\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t} } : {},\n\t\t\t\t...policy.permissive ? {} : { permissive: {\n\t\t\t\t\tkind: \"value\",\n\t\t\t\t\traw: \"false\",\n\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t} }\n\t\t\t},\n\t\t\tblockAttributes: [{\n\t\t\t\tname: \"map\",\n\t\t\t\targs: [{\n\t\t\t\t\tkind: \"positional\",\n\t\t\t\t\tvalue: `\"${escapePslString(policy.name)}\"`,\n\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t}],\n\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t}],\n\t\t\tspan: SYNTHETIC_SPAN\n\t\t});\n\t}\n\treturn {\n\t\tblocks,\n\t\tskipNotesByTable\n\t};\n}\n//#endregion\n//#region src/core/psl-infer/postgres-default-mapping.ts\nconst POSTGRES_FUNCTION_ATTRIBUTES = { \"gen_random_uuid()\": \"@default(dbgenerated(\\\"gen_random_uuid()\\\"))\" };\nfunction formatDbGeneratedAttribute(expression) {\n\treturn `@default(dbgenerated(${JSON.stringify(expression)}))`;\n}\nfunction createPostgresDefaultMapping() {\n\treturn {\n\t\tfunctionAttributes: POSTGRES_FUNCTION_ATTRIBUTES,\n\t\tfallbackFunctionAttribute: formatDbGeneratedAttribute\n\t};\n}\n//#endregion\n//#region src/core/psl-infer/postgres-type-map.ts\nconst POSTGRES_TO_PSL = {\n\ttext: \"String\",\n\tbool: \"Boolean\",\n\tboolean: \"Boolean\",\n\tint4: \"Int\",\n\tinteger: \"Int\",\n\tint8: \"BigInt\",\n\tbigint: \"BigInt\",\n\tfloat8: \"Float\",\n\t\"double precision\": \"Float\",\n\tjsonb: \"Jsonb\",\n\tbytea: \"Bytes\"\n};\nconst PRESERVED_NATIVE_TYPES = {\n\t\"character varying\": \"VarChar\",\n\tcharacter: \"Char\",\n\tchar: \"Char\",\n\tvarchar: \"VarChar\",\n\tuuid: \"Uuid\",\n\tinet: \"Inet\",\n\tint2: \"SmallInt\",\n\tsmallint: \"SmallInt\",\n\tfloat4: \"Real\",\n\treal: \"Real\",\n\tnumeric: \"Numeric\",\n\tdecimal: \"Numeric\",\n\ttimestamp: \"Timestamp\",\n\t\"timestamp without time zone\": \"Timestamp\",\n\ttimestamptz: \"Timestamptz\",\n\t\"timestamp with time zone\": \"Timestamptz\",\n\tdate: \"Date\",\n\ttime: \"Time\",\n\t\"time without time zone\": \"Time\",\n\ttimetz: \"Timetz\",\n\t\"time with time zone\": \"Timetz\",\n\tjson: \"Json\"\n};\nconst PARAMETERIZED_NATIVE_TYPES = {\n\t\"character varying\": \"VarChar\",\n\tcharacter: \"Char\",\n\tchar: \"Char\",\n\tvarchar: \"VarChar\",\n\tnumeric: \"Numeric\",\n\tdecimal: \"Numeric\",\n\ttimestamp: \"Timestamp\",\n\ttimestamptz: \"Timestamptz\",\n\ttime: \"Time\",\n\ttimetz: \"Timetz\"\n};\nconst PARAMETERIZED_TYPE_PATTERN = /^(.+?)\\((.+)\\)$/;\nfunction getOwnMappingValue(map, key) {\n\treturn Object.hasOwn(map, key) ? map[key] : void 0;\n}\nfunction splitTypeParameterList(params) {\n\treturn params.split(\",\").map((part) => part.trim()).filter((part) => part.length > 0);\n}\nfunction createPostgresTypeMap(enumTypeNames) {\n\treturn { resolve(nativeType) {\n\t\tif (enumTypeNames?.has(nativeType)) return {\n\t\t\tpslType: { name: nativeType },\n\t\t\tnativeType\n\t\t};\n\t\tconst paramMatch = nativeType.match(PARAMETERIZED_TYPE_PATTERN);\n\t\tif (paramMatch) {\n\t\t\tconst [, baseType = nativeType, params = \"\"] = paramMatch;\n\t\t\tconst typeName = getOwnMappingValue(PARAMETERIZED_NATIVE_TYPES, baseType);\n\t\t\tif (typeName) return {\n\t\t\t\tpslType: {\n\t\t\t\t\tname: typeName,\n\t\t\t\t\targs: splitTypeParameterList(params)\n\t\t\t\t},\n\t\t\t\tnativeType,\n\t\t\t\ttypeParams: {\n\t\t\t\t\tbaseType,\n\t\t\t\t\tparams\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\tconst preservedType = getOwnMappingValue(PRESERVED_NATIVE_TYPES, nativeType);\n\t\tif (preservedType) return {\n\t\t\tpslType: { name: preservedType },\n\t\t\tnativeType\n\t\t};\n\t\tconst pslType = getOwnMappingValue(POSTGRES_TO_PSL, nativeType);\n\t\tif (pslType) return {\n\t\t\tpslType: { name: pslType },\n\t\t\tnativeType\n\t\t};\n\t\treturn {\n\t\t\tunsupported: true,\n\t\t\tnativeType\n\t\t};\n\t} };\n}\n//#endregion\n//#region src/core/psl-infer/infer-psl-contract.ts\n/**\n* Infers a PSL AST (for `printPsl`) from an introspected Postgres schema tree.\n*\n* Target-owned inference: it walks the `PostgresDatabaseSchemaNode` tree and\n* owns the Postgres dialect knowledge — the native type map and default map.\n* Relation inference, name transforms, generic default mapping, and raw-default\n* parsing are shape-neutral utilities imported from the SQL family.\n*\n* This slice emits relational-only PSL, byte-identical to the prior flat\n* inference: the tree's tables (across its namespaces — `contract infer`\n* introspects a single live namespace) are gathered into the model set and\n* emitted as one `UNSPECIFIED_PSL_NAMESPACE_ID` bucket. Top-level entities\n* (policies/roles → PSL extension blocks) are a later slice.\n*\n* `describedContracts` — the stack's extension packs' already-assembled\n* contracts, each paired with its space id — is consulted while gathering\n* tables: a table whose coordinate `(schemaName, 'table', tableName)` one of\n* those contracts already declares is omitted, before the duplicate-name\n* check below and before relation inference, so it cannot spuriously\n* collide with an app table and never contributes a bare relation field. A\n* surviving table's foreign key into an omitted, pack-owned table is not\n* dropped: {@link resolveForeignKeys} rewrites it into a relation qualified\n* with the pack's space id (`<spaceId>:<namespaceId>.<Model>`) instead.\n*/\nfunction inferPostgresPslContract(tree, describedContracts) {\n\tconst namespaces = Object.values(tree.namespaces);\n\tconst owners = describedContractOwners(describedContracts ?? []);\n\tconst enumDefinitions = /* @__PURE__ */ new Map();\n\tconst packOwnedEnumTypesByNamespace = /* @__PURE__ */ new Map();\n\tconst enumNamespaceNames = /* @__PURE__ */ new Set();\n\tfor (const namespace of namespaces) for (const { typeName, members } of namespace.nativeEnums) {\n\t\tconst owner = owners.get(coordinateKey({\n\t\t\tnamespaceId: namespace.schemaName,\n\t\t\tentityKind: \"native_enum\",\n\t\t\tentityName: typeName\n\t\t}));\n\t\tif (owner !== void 0) {\n\t\t\tconst owned = packOwnedEnumTypesByNamespace.get(namespace.schemaName) ?? /* @__PURE__ */ new Map();\n\t\t\towned.set(typeName, owner.spaceId);\n\t\t\towned.set(`${namespace.schemaName}.${typeName}`, owner.spaceId);\n\t\t\tpackOwnedEnumTypesByNamespace.set(namespace.schemaName, owned);\n\t\t\tcontinue;\n\t\t}\n\t\tenumDefinitions.set(typeName, members);\n\t\tenumNamespaceNames.add(namespace.schemaName);\n\t}\n\tconst tables = {};\n\tconst tableNamespaceNames = /* @__PURE__ */ new Set();\n\tconst rlsEnabledTables = /* @__PURE__ */ new Set();\n\tconst policiesByTable = /* @__PURE__ */ new Map();\n\tfor (const namespace of namespaces) {\n\t\tconst ownedEnumTypes = packOwnedEnumTypesByNamespace.get(namespace.schemaName);\n\t\tfor (const [tableName, table] of Object.entries(namespace.tables)) {\n\t\t\tif (owners.has(coordinateKey({\n\t\t\t\tnamespaceId: namespace.schemaName,\n\t\t\t\tentityKind: \"table\",\n\t\t\t\tentityName: tableName\n\t\t\t}))) continue;\n\t\t\tif (tables[tableName] !== void 0) throw postgresError(\"CONTRACT.INFER_UNSUPPORTED\", `contract infer: duplicate table name \"${tableName}\" across schemas is not yet supported (single-namespace PSL inference emits one flat bucket; multi-namespace \\`namespace { … }\\` output is a later slice).`, { meta: { tableName } });\n\t\t\tif (ownedEnumTypes !== void 0) for (const column of Object.values(table.columns)) {\n\t\t\t\tconst owningSpaceId = ownedEnumTypes.get(column.nativeType);\n\t\t\t\tif (owningSpaceId !== void 0) throw postgresError(\"CONTRACT.INFER_UNSUPPORTED\", `contract infer: column \"${tableName}\".\"${column.name}\" is typed by native enum type \"${column.nativeType}\", which extension pack space \"${owningSpaceId}\" already describes. A cross-space enum-typed column has no authorable PSL form yet; describe the table in that pack's contract or retype the column before re-running contract infer.`, { meta: {\n\t\t\t\t\ttableName,\n\t\t\t\t\tcolumnName: column.name\n\t\t\t\t} });\n\t\t\t}\n\t\t\ttables[tableName] = new SqlTableIR(table);\n\t\t\ttableNamespaceNames.add(namespace.schemaName);\n\t\t\tif (table.rlsEnabled) rlsEnabledTables.add(tableName);\n\t\t\tif (table.policies.length > 0) policiesByTable.set(tableName, table.policies);\n\t\t}\n\t}\n\tlet wrapNamespaceName;\n\tif (enumDefinitions.size > 0 || policiesByTable.size > 0) {\n\t\tconst contentNamespaces = /* @__PURE__ */ new Set([...enumNamespaceNames, ...tableNamespaceNames]);\n\t\tif (contentNamespaces.size > 1) throw postgresError(\"CONTRACT.INFER_UNSUPPORTED\", `contract infer: adopting native enums or RLS policies with content across multiple schemas is not yet supported (single-namespace PSL inference emits one \\`namespace { … }\\` block; multi-namespace output is a later slice). Schemas: ${[...contentNamespaces].sort().join(\", \")}.`, { meta: { schemas: [...contentNamespaces].sort() } });\n\t\twrapNamespaceName = [...contentNamespaces][0];\n\t}\n\tconst { tables: resolvedTables, extraRelationsByTable, crossSpaceFieldNamesByTable, danglingForeignKeysByTable } = resolveForeignKeys(tables, owners);\n\tconst schemaIR = new SqlSchemaIR({ tables: resolvedTables });\n\tconst enumTypeNames = new Set(enumDefinitions.keys());\n\tif (wrapNamespaceName !== void 0) for (const typeName of enumDefinitions.keys()) enumTypeNames.add(`${wrapNamespaceName}.${typeName}`);\n\tconst enumInfo = {\n\t\ttypeNames: enumTypeNames,\n\t\tdefinitions: enumDefinitions\n\t};\n\treturn buildPslDocumentAst(schemaIR, {\n\t\ttypeMap: createPostgresTypeMap(enumInfo.typeNames),\n\t\tdefaultMapping: createPostgresDefaultMapping(),\n\t\tparseRawDefault,\n\t\t...enumDefinitions.size > 0 ? { enumInfo } : {}\n\t}, {\n\t\textraRelationsByTable,\n\t\tcrossSpaceFieldNamesByTable,\n\t\tdanglingForeignKeysByTable\n\t}, wrapNamespaceName, {\n\t\trlsEnabledTables,\n\t\tpoliciesByTable\n\t});\n}\nfunction buildPslDocumentAst(schemaIR, options, foreignKeyExtras, namespaceName, rlsExtras) {\n\tconst { typeMap, defaultMapping, parseRawDefault: rawDefaultParser } = options;\n\tconst { extraRelationsByTable, crossSpaceFieldNamesByTable, danglingForeignKeysByTable } = foreignKeyExtras;\n\tconst modelNames = buildTopLevelNameMap(Object.keys(schemaIR.tables), toModelName, \"model\", \"table\");\n\tconst modelNameMap = new Map([...modelNames].map(([tableName, result]) => [tableName, result.name]));\n\tconst { enumNameMap: bareEnumNameMap, enumBlocks } = buildNativeEnumBlocks(options.enumInfo?.definitions ?? /* @__PURE__ */ new Map(), modelNames);\n\tconst enumNameMap = new Map(bareEnumNameMap);\n\tif (namespaceName !== void 0) for (const [typeName, pslName] of bareEnumNameMap) enumNameMap.set(`${namespaceName}.${typeName}`, pslName);\n\tconst fieldNamesByTable = new Map([...crossSpaceFieldNamesByTable, ...buildFieldNamesByTable(schemaIR.tables)]);\n\tconst { relationsByTable } = inferRelations(schemaIR.tables, modelNameMap);\n\tconst policyEmission = buildPolicyBlocks(rlsExtras?.policiesByTable ?? /* @__PURE__ */ new Map(), modelNameMap, /* @__PURE__ */ new Set([...modelNameMap.values(), ...bareEnumNameMap.values()]));\n\tconst models = [];\n\tfor (const table of Object.values(schemaIR.tables)) models.push(buildModel(table, typeMap, enumNameMap, fieldNamesByTable, defaultMapping, rawDefaultParser, [...relationsByTable.get(table.name) ?? [], ...extraRelationsByTable.get(table.name) ?? []], danglingForeignKeysByTable.get(table.name) ?? [], rlsExtras?.rlsEnabledTables.has(table.name) ?? false, policyEmission.skipNotesByTable.get(table.name) ?? []));\n\tconst sortedModels = topologicalSort(models, schemaIR.tables, modelNameMap);\n\treturn {\n\t\tkind: \"document\",\n\t\tsourceId: \"<sql-schema-ir>\",\n\t\tnamespaces: [makePslNamespace({\n\t\t\tkind: \"namespace\",\n\t\t\tname: namespaceName ?? UNSPECIFIED_PSL_NAMESPACE_ID,\n\t\t\tentries: makePslNamespaceEntries(sortedModels, [], [...enumBlocks, ...policyEmission.blocks]),\n\t\t\tspan: SYNTHETIC_SPAN\n\t\t})],\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\n//#endregion\n//#region src/exports/control.ts\nfunction postgresRenderDefault(def, column) {\n\tif (def.kind === \"function\") return def.expression;\n\treturn renderDefaultLiteral(def.value, column);\n}\nconst postgresTargetDescriptor = {\n\t...postgresTargetDescriptorMeta,\n\tcontractSerializer: new PostgresContractSerializer(),\n\tschemaVerifier: new PostgresSchemaVerifier(),\n\tinferPslContract(schema, describedContracts) {\n\t\tPostgresDatabaseSchemaNode.assert(schema);\n\t\treturn inferPostgresPslContract(schema, describedContracts);\n\t},\n\tdiffSchema(input) {\n\t\treturn diffPostgresSchema(input);\n\t},\n\tclassifySubjectGranularity: postgresDiffSubjectGranularity,\n\tclassifyEntityKind: postgresDiffSubjectEntityKind,\n\tmigrations: {\n\t\tcreatePlanner(adapter) {\n\t\t\treturn createPostgresMigrationPlanner(adapter);\n\t\t},\n\t\tcreateRunner(family) {\n\t\t\treturn createPostgresMigrationRunner(family);\n\t\t},\n\t\tcontractToSchema(contract, frameworkComponents) {\n\t\t\tconst expander = buildNativeTypeExpander(frameworkComponents);\n\t\t\treturn contractToPostgresDatabaseSchemaNode(blindCast(contract), {\n\t\t\t\tannotationNamespace: \"pg\",\n\t\t\t\t...ifDefined(\"expandNativeType\", expander),\n\t\t\t\trenderDefault: postgresRenderDefault,\n\t\t\t\tresolveDefault: postgresResolveDefault\n\t\t\t});\n\t\t}\n\t},\n\tcreate() {\n\t\treturn {\n\t\t\tfamilyId: \"sql\",\n\t\t\ttargetId: \"postgres\"\n\t\t};\n\t},\n\t/**\n\t* Direct method for SQL-specific usage.\n\t* @deprecated Use migrations.createPlanner() for CLI compatibility.\n\t*/\n\tcreatePlanner(adapter) {\n\t\treturn createPostgresMigrationPlanner(adapter);\n\t},\n\t/**\n\t* Direct method for SQL-specific usage.\n\t* @deprecated Use migrations.createRunner() for CLI compatibility.\n\t*/\n\tcreateRunner(family) {\n\t\treturn createPostgresMigrationRunner(family);\n\t}\n};\n//#endregion\nexport { postgresTargetDescriptor as default, postgresRenderDefault };\n\n//# sourceMappingURL=control.mjs.map"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"control-V7OkAC55.mjs","names":[],"sources":["../../../../3-targets/3-targets/postgres/dist/control.mjs"],"sourcesContent":["import { n as postgresError } from \"./errors-DKjQzNaN.mjs\";\nimport { n as postgresResolveDefault } from \"./default-normalizer-Ba5ZebHM.mjs\";\nimport { t as postgresRenderCheckExpressions } from \"./check-expressions-5vhxWaFy.mjs\";\nimport { t as postgresTargetDescriptorMeta } from \"./descriptor-meta-rilAH3ep.mjs\";\nimport { a as postgresDiffSubjectGranularity, i as postgresDiffSubjectEntityKind } from \"./postgres-table-schema-node-BBkitBQh.mjs\";\nimport { i as PostgresDatabaseSchemaNode } from \"./postgres-role-schema-node-B8Z5i5D-.mjs\";\nimport { n as diffPostgresSchema, r as contractToPostgresDatabaseSchemaNode } from \"./diff-database-schema-DKq76rCk.mjs\";\nimport { r as renderDefaultLiteral } from \"./planner-ddl-builders-Chxh-LEQ.mjs\";\nimport { n as PostgresContractSerializer } from \"./postgres-contract-view-B8ykf2cO.mjs\";\nimport { t as createPostgresMigrationPlanner } from \"./planner-D0uogzvT.mjs\";\nimport { blindCast } from \"@internal/utils/casts\";\nimport { UNBOUND_NAMESPACE_ID, coordinateKey, elementCoordinates } from \"@internal/framework-components/ir\";\nimport { buildNativeTypeExpander, runnerFailure, runnerSuccess } from \"@internal/family-sql/control\";\nimport { ifDefined } from \"@internal/utils/defined\";\nimport { composeCheckWirePrefix, computeCheckContentHash, computeIndexContentHash, formatWireName, parseWireName } from \"@internal/sql-schema-ir/naming\";\nimport { assertDefined } from \"@internal/utils/assertions\";\nimport { SqlSchemaIR, SqlTableIR } from \"@internal/sql-schema-ir/types\";\nimport { APP_SPACE_ID } from \"@internal/framework-components/control\";\nimport { notOk, ok, okVoid } from \"@internal/utils/result\";\nimport { InternalError } from \"@internal/utils/internal-error\";\nimport { SqlSchemaVerifierBase } from \"@internal/family-sql/ir\";\nimport { SqlQueryError } from \"@internal/sql-errors\";\nimport { buildChildRelationField, deriveRelationFieldName, inferRelations, mapDefault, parseRawDefault, toEnumMemberName, toEnumName, toFieldName, toModelName } from \"@internal/family-sql/psl-infer\";\nimport { UNSPECIFIED_PSL_NAMESPACE_ID, makePslNamespace, makePslNamespaceEntries } from \"@internal/framework-components/psl-ast\";\nimport { isColumnDefault } from \"@internal/contract/types\";\n//#region src/core/migrations/runner.ts\nconst LOCK_DOMAIN = \"prisma_next.contract.marker\";\n/**\n* Deep clones and freezes a record object to prevent mutation.\n* Recursively clones nested objects and arrays to ensure complete isolation.\n*/\nfunction cloneAndFreezeRecord(value) {\n\tconst cloned = {};\n\tfor (const [key, val] of Object.entries(value)) if (val === null || val === void 0) cloned[key] = val;\n\telse if (Array.isArray(val)) cloned[key] = Object.freeze([...val]);\n\telse if (typeof val === \"object\") cloned[key] = cloneAndFreezeRecord(val);\n\telse cloned[key] = val;\n\treturn Object.freeze(cloned);\n}\nfunction createPostgresMigrationRunner(family) {\n\treturn new PostgresMigrationRunner(family);\n}\nvar PostgresMigrationRunner = class {\n\tfamily;\n\tconstructor(family) {\n\t\tthis.family = family;\n\t}\n\t/**\n\t* Body of the migration runner without transaction management. The\n\t* caller ({@link PostgresMigrationRunner.execute}) owns the\n\t* `BEGIN`/`COMMIT`/`ROLLBACK` lifecycle.\n\t*/\n\tasync executeOnConnection(options) {\n\t\tconst schema = options.schemaName ?? Object.keys(options.destinationContract.storage.namespaces).find((id) => id !== UNBOUND_NAMESPACE_ID) ?? UNBOUND_NAMESPACE_ID;\n\t\tconst driver = options.driver;\n\t\tif (options.space !== void 0 && options.space !== options.plan.spaceId) throw postgresError(\"MIGRATION.CONTRACT_SPACE_VIOLATION\", `SqlMigrationRunner: options.space (${options.space}) does not match plan.spaceId (${options.plan.spaceId})`, { meta: {\n\t\t\tspace: options.space,\n\t\t\tplanSpaceId: options.plan.spaceId\n\t\t} });\n\t\tconst space = options.plan.spaceId;\n\t\tconst lockKey = `${LOCK_DOMAIN}:${schema}:${space}`;\n\t\tconst planOps = blindCast(await Promise.all(options.plan.operations));\n\t\tconst destinationCheck = this.ensurePlanMatchesDestinationContract(options.plan.destination, options.destinationContract);\n\t\tif (!destinationCheck.ok) return destinationCheck;\n\t\tconst policyCheck = this.enforcePolicyCompatibility(options.policy, planOps);\n\t\tif (!policyCheck.ok) return policyCheck;\n\t\tawait this.acquireLock(driver, lockKey);\n\t\tconst ensureResult = await this.ensureControlTables(driver, options.destinationContract);\n\t\tif (!ensureResult.ok) return ensureResult;\n\t\tconst existingMarker = await this.family.readMarker({\n\t\t\tdriver,\n\t\t\tspace\n\t\t});\n\t\tconst markerCheck = this.ensureMarkerCompatibility(existingMarker, options.plan);\n\t\tif (!markerCheck.ok) return markerCheck;\n\t\tconst markerAtDestination = this.markerMatchesDestination(existingMarker, options.plan);\n\t\tconst isSelfEdge = options.plan.origin?.storageHash === options.plan.destination.storageHash;\n\t\tconst skipOperations = markerAtDestination && options.plan.origin != null && !isSelfEdge;\n\t\tlet applyValue;\n\t\tif (skipOperations) applyValue = {\n\t\t\toperationsExecuted: 0,\n\t\t\texecutedOperations: []\n\t\t};\n\t\telse {\n\t\t\tconst applyResult = await this.applyPlan(driver, options, planOps);\n\t\t\tif (!applyResult.ok) return applyResult;\n\t\t\tapplyValue = applyResult.value;\n\t\t}\n\t\tif (space === APP_SPACE_ID) {\n\t\t\tconst schemaNode = await this.family.introspect({\n\t\t\t\tdriver,\n\t\t\t\tcontract: options.destinationContract\n\t\t\t});\n\t\t\tconst schemaVerifyResult = this.family.verifySchema({\n\t\t\t\tcontract: options.destinationContract,\n\t\t\t\tschema: schemaNode,\n\t\t\t\tstrict: options.strictVerification ?? true,\n\t\t\t\tframeworkComponents: options.frameworkComponents\n\t\t\t});\n\t\t\tif (!schemaVerifyResult.ok) return runnerFailure(\"MIGRATION.SCHEMA_VERIFY_FAILED\", schemaVerifyResult.summary, {\n\t\t\t\twhy: \"The resulting database schema does not satisfy the destination contract.\",\n\t\t\t\tmeta: { issues: schemaVerifyResult.schema.issues }\n\t\t\t});\n\t\t}\n\t\tconst incomingInvariants = options.plan.providedInvariants ?? [];\n\t\tconst existingInvariants = new Set(existingMarker?.invariants ?? []);\n\t\tconst incomingIsSubsetOfExisting = incomingInvariants.every((id) => existingInvariants.has(id));\n\t\tif (!(isSelfEdge && applyValue.operationsExecuted === 0 && incomingIsSubsetOfExisting)) {\n\t\t\tconst markerResult = await this.upsertMarker(driver, options, existingMarker, space);\n\t\t\tif (!markerResult.ok) return markerResult;\n\t\t\tawait this.recordLedgerEntries(driver, options, applyValue.executedOperations, planOps.length);\n\t\t}\n\t\treturn runnerSuccess({\n\t\t\toperationsPlanned: planOps.length,\n\t\t\toperationsExecuted: applyValue.operationsExecuted\n\t\t});\n\t}\n\tasync execute(options) {\n\t\tconst driver = options.driver;\n\t\tconst perSpaceOptions = options.perSpaceOptions;\n\t\tif (perSpaceOptions.length === 0) return ok({ perSpaceResults: [] });\n\t\tawait this.beginTransaction(driver);\n\t\tlet committed = false;\n\t\ttry {\n\t\t\tconst perSpaceResults = [];\n\t\t\tfor (const spaceOptions of perSpaceOptions) {\n\t\t\t\tconst space = spaceOptions.space ?? spaceOptions.plan.spaceId;\n\t\t\t\tconst result = await this.executeOnConnection({\n\t\t\t\t\t...spaceOptions,\n\t\t\t\t\tdriver,\n\t\t\t\t\tspace\n\t\t\t\t});\n\t\t\t\tif (!result.ok) return notOk({\n\t\t\t\t\t...result.failure,\n\t\t\t\t\tfailingSpace: space\n\t\t\t\t});\n\t\t\t\tperSpaceResults.push({\n\t\t\t\t\tspace,\n\t\t\t\t\tvalue: result.value\n\t\t\t\t});\n\t\t\t}\n\t\t\tawait this.commitTransaction(driver);\n\t\t\tcommitted = true;\n\t\t\treturn ok({ perSpaceResults });\n\t\t} finally {\n\t\t\tif (!committed) await this.rollbackTransaction(driver);\n\t\t}\n\t}\n\tasync applyPlan(driver, options, ops) {\n\t\tconst checks = options.executionChecks;\n\t\tconst runPrechecks = checks?.prechecks !== false;\n\t\tconst runPostchecks = checks?.postchecks !== false;\n\t\tconst runIdempotency = checks?.idempotencyChecks !== false;\n\t\tlet operationsExecuted = 0;\n\t\tconst executedOperations = [];\n\t\tfor (const operation of ops) {\n\t\t\toptions.callbacks?.onOperationStart?.(operation);\n\t\t\ttry {\n\t\t\t\tif (runPostchecks && runIdempotency) {\n\t\t\t\t\tif (await this.expectationsAreSatisfied(driver, operation.postcheck)) {\n\t\t\t\t\t\texecutedOperations.push(this.createPostcheckPreSatisfiedSkipRecord(operation));\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (runPrechecks) {\n\t\t\t\t\tconst precheckResult = await this.runExpectationSteps(driver, operation.precheck, operation, \"precheck\");\n\t\t\t\t\tif (!precheckResult.ok) return precheckResult;\n\t\t\t\t}\n\t\t\t\tconst executeResult = await this.runExecuteSteps(driver, operation.execute, operation);\n\t\t\t\tif (!executeResult.ok) return executeResult;\n\t\t\t\tif (runPostchecks) {\n\t\t\t\t\tconst postcheckResult = await this.runExpectationSteps(driver, operation.postcheck, operation, \"postcheck\");\n\t\t\t\t\tif (!postcheckResult.ok) return postcheckResult;\n\t\t\t\t}\n\t\t\t\texecutedOperations.push(operation);\n\t\t\t\toperationsExecuted += 1;\n\t\t\t} finally {\n\t\t\t\toptions.callbacks?.onOperationComplete?.(operation);\n\t\t\t}\n\t\t}\n\t\treturn ok({\n\t\t\toperationsExecuted,\n\t\t\texecutedOperations\n\t\t});\n\t}\n\tasync ensureControlTables(driver, contract) {\n\t\tconst lowererContext = { contract };\n\t\tconst [schemaQuery, ...tableQueries] = this.family.bootstrapControlTableQueries();\n\t\tif (schemaQuery === void 0) throw new InternalError(\"Postgres control-table bootstrap must include CREATE SCHEMA\");\n\t\tawait this.executeStatement(driver, await this.family.lowerAst(schemaQuery, lowererContext));\n\t\tconst legacyDetection = await this.detectLegacyMarkerShape(driver);\n\t\tif (!legacyDetection.ok) return legacyDetection;\n\t\tfor (const query of tableQueries) await this.executeStatement(driver, await this.family.lowerAst(query, lowererContext));\n\t\treturn okVoid();\n\t}\n\tasync detectLegacyMarkerShape(driver) {\n\t\tconst result = await driver.query(`select column_name\n from information_schema.columns\n where table_schema = 'prisma_contract'\n and table_name = 'marker'`);\n\t\tif (result.rows.length === 0) return okVoid();\n\t\tconst columns = new Set(result.rows.map((row) => row.column_name));\n\t\tif (columns.has(\"space\")) return okVoid();\n\t\treturn runnerFailure(\"MIGRATION.LEGACY_MARKER_SHAPE\", \"Legacy marker-table shape detected on prisma_contract.marker (no `space` column). Prisma Next is in pre-1.0; the previous transitional auto-migration to the per-space-row schema has been removed. Drop `prisma_contract.marker` and re-run `dbInit` to reinitialise from a clean baseline.\", { meta: {\n\t\t\ttable: \"prisma_contract.marker\",\n\t\t\tcolumns: [...columns].sort()\n\t\t} });\n\t}\n\tasync runExpectationSteps(driver, steps, operation, phase) {\n\t\tfor (const step of steps) {\n\t\t\tconst result = await driver.query(step.sql, step.params ?? []);\n\t\t\tif (!this.stepResultIsTrue(result.rows)) return runnerFailure(phase === \"precheck\" ? \"MIGRATION.PRECHECK_FAILED\" : \"MIGRATION.POSTCHECK_FAILED\", `Operation ${operation.id} failed during ${phase}: ${step.description}`, { meta: {\n\t\t\t\toperationId: operation.id,\n\t\t\t\tphase,\n\t\t\t\tstepDescription: step.description\n\t\t\t} });\n\t\t}\n\t\treturn okVoid();\n\t}\n\tasync runExecuteSteps(driver, steps, operation) {\n\t\tfor (const step of steps) try {\n\t\t\tawait driver.query(step.sql, step.params ?? []);\n\t\t} catch (error) {\n\t\t\tif (SqlQueryError.is(error)) return runnerFailure(\"MIGRATION.EXECUTION_FAILED\", `Operation ${operation.id} failed during execution: ${step.description}`, {\n\t\t\t\twhy: error.message,\n\t\t\t\tmeta: {\n\t\t\t\t\toperationId: operation.id,\n\t\t\t\t\tstepDescription: step.description,\n\t\t\t\t\tsql: step.sql,\n\t\t\t\t\tsqlState: error.sqlState,\n\t\t\t\t\tconstraint: error.constraint,\n\t\t\t\t\ttable: error.table,\n\t\t\t\t\tcolumn: error.column,\n\t\t\t\t\tdetail: error.detail\n\t\t\t\t}\n\t\t\t});\n\t\t\tthrow error;\n\t\t}\n\t\treturn okVoid();\n\t}\n\tstepResultIsTrue(rows) {\n\t\tif (!rows || rows.length === 0) return false;\n\t\tconst firstRow = rows[0];\n\t\tconst firstValue = firstRow ? Object.values(firstRow)[0] : void 0;\n\t\tif (typeof firstValue === \"boolean\") return firstValue;\n\t\tif (typeof firstValue === \"number\") return firstValue !== 0;\n\t\tif (typeof firstValue === \"string\") {\n\t\t\tconst lower = firstValue.toLowerCase();\n\t\t\tif (lower === \"t\" || lower === \"true\" || lower === \"1\") return true;\n\t\t\tif (lower === \"f\" || lower === \"false\" || lower === \"0\") return false;\n\t\t\treturn firstValue.length > 0;\n\t\t}\n\t\treturn Boolean(firstValue);\n\t}\n\tasync expectationsAreSatisfied(driver, steps) {\n\t\tif (steps.length === 0) return false;\n\t\tfor (const step of steps) {\n\t\t\tconst result = await driver.query(step.sql, step.params ?? []);\n\t\t\tif (!this.stepResultIsTrue(result.rows)) return false;\n\t\t}\n\t\treturn true;\n\t}\n\tcreatePostcheckPreSatisfiedSkipRecord(operation) {\n\t\tconst clonedMeta = operation.meta ? cloneAndFreezeRecord(operation.meta) : void 0;\n\t\tconst runnerMeta = Object.freeze({\n\t\t\tskipped: true,\n\t\t\treason: \"postcheck_pre_satisfied\"\n\t\t});\n\t\tconst mergedMeta = Object.freeze({\n\t\t\t...clonedMeta ?? {},\n\t\t\trunner: runnerMeta\n\t\t});\n\t\tconst frozenPostcheck = Object.freeze([...operation.postcheck]);\n\t\treturn Object.freeze({\n\t\t\tid: operation.id,\n\t\t\tlabel: operation.label,\n\t\t\t...ifDefined(\"summary\", operation.summary),\n\t\t\toperationClass: operation.operationClass,\n\t\t\ttarget: operation.target,\n\t\t\tprecheck: Object.freeze([]),\n\t\t\texecute: Object.freeze([]),\n\t\t\tpostcheck: frozenPostcheck,\n\t\t\t...ifDefined(\"meta\", operation.meta || mergedMeta ? mergedMeta : void 0)\n\t\t});\n\t}\n\tmarkerMatchesDestination(marker, plan) {\n\t\tif (!marker) return false;\n\t\tif (marker.storageHash !== plan.destination.storageHash) return false;\n\t\tif (plan.destination.profileHash && marker.profileHash !== plan.destination.profileHash) return false;\n\t\treturn true;\n\t}\n\tenforcePolicyCompatibility(policy, operations) {\n\t\tconst allowedClasses = new Set(policy.allowedOperationClasses);\n\t\tfor (const operation of operations) if (!allowedClasses.has(operation.operationClass)) return runnerFailure(\"MIGRATION.POLICY_VIOLATION\", `Operation ${operation.id} has class \"${operation.operationClass}\" which is not allowed by policy.`, {\n\t\t\twhy: `Policy only allows: ${policy.allowedOperationClasses.join(\", \")}.`,\n\t\t\tmeta: {\n\t\t\t\toperationId: operation.id,\n\t\t\t\toperationClass: operation.operationClass,\n\t\t\t\tallowedClasses: policy.allowedOperationClasses\n\t\t\t}\n\t\t});\n\t\treturn okVoid();\n\t}\n\tensureMarkerCompatibility(marker, plan) {\n\t\tconst origin = plan.origin ?? null;\n\t\tif (!origin) return okVoid();\n\t\tif (!marker) return runnerFailure(\"MIGRATION.MARKER_ORIGIN_MISMATCH\", `Missing contract marker: expected origin storage hash ${origin.storageHash}.`, { meta: { expectedOriginStorageHash: origin.storageHash } });\n\t\tif (marker.storageHash !== origin.storageHash) return runnerFailure(\"MIGRATION.MARKER_ORIGIN_MISMATCH\", `Existing contract marker (${marker.storageHash}) does not match plan origin (${origin.storageHash}).`, { meta: {\n\t\t\tmarkerStorageHash: marker.storageHash,\n\t\t\texpectedOriginStorageHash: origin.storageHash\n\t\t} });\n\t\tif (origin.profileHash && marker.profileHash !== origin.profileHash) return runnerFailure(\"MIGRATION.MARKER_ORIGIN_MISMATCH\", `Existing contract marker profile hash (${marker.profileHash}) does not match plan origin profile hash (${origin.profileHash}).`, { meta: {\n\t\t\tmarkerProfileHash: marker.profileHash,\n\t\t\texpectedOriginProfileHash: origin.profileHash\n\t\t} });\n\t\treturn okVoid();\n\t}\n\tensurePlanMatchesDestinationContract(destination, contract) {\n\t\tif (destination.storageHash !== contract.storage.storageHash) return runnerFailure(\"MIGRATION.DESTINATION_CONTRACT_MISMATCH\", `Plan destination storage hash (${destination.storageHash}) does not match provided contract storage hash (${contract.storage.storageHash}).`, { meta: {\n\t\t\tplanStorageHash: destination.storageHash,\n\t\t\tcontractStorageHash: contract.storage.storageHash\n\t\t} });\n\t\tif (destination.profileHash && contract.profileHash && destination.profileHash !== contract.profileHash) return runnerFailure(\"MIGRATION.DESTINATION_CONTRACT_MISMATCH\", `Plan destination profile hash (${destination.profileHash}) does not match provided contract profile hash (${contract.profileHash}).`, { meta: {\n\t\t\tplanProfileHash: destination.profileHash,\n\t\t\tcontractProfileHash: contract.profileHash\n\t\t} });\n\t\treturn okVoid();\n\t}\n\tasync upsertMarker(driver, options, existingMarker, space) {\n\t\tconst destination = {\n\t\t\tstorageHash: options.plan.destination.storageHash,\n\t\t\tprofileHash: options.plan.destination.profileHash ?? options.destinationContract.profileHash ?? options.plan.destination.storageHash,\n\t\t\tinvariants: options.plan.providedInvariants ?? []\n\t\t};\n\t\tif (!existingMarker) {\n\t\t\tawait this.family.initMarker({\n\t\t\t\tdriver,\n\t\t\t\tspace,\n\t\t\t\tdestination\n\t\t\t});\n\t\t\treturn okVoid();\n\t\t}\n\t\tif (!await this.family.updateMarker({\n\t\t\tdriver,\n\t\t\tspace,\n\t\t\texpectedFrom: existingMarker.storageHash,\n\t\t\tdestination\n\t\t})) return runnerFailure(\"MIGRATION.MARKER_CAS_FAILURE\", \"Marker was modified by another process during migration execution.\", { meta: {\n\t\t\tspace,\n\t\t\texpectedStorageHash: existingMarker.storageHash,\n\t\t\tdestinationStorageHash: options.plan.destination.storageHash\n\t\t} });\n\t\treturn okVoid();\n\t}\n\tasync recordLedgerEntries(driver, options, executedOperations, planOpsLength) {\n\t\tconst space = options.plan.spaceId;\n\t\tconst edges = options.migrationEdges;\n\t\tconst totalEdgeOps = edges.reduce((sum, edge) => sum + edge.operationCount, 0);\n\t\tif (totalEdgeOps !== planOpsLength) throw new InternalError(`Ledger write: plan.operations length (${planOpsLength}) does not match sum of migrationEdges operationCount (${totalEdgeOps})`);\n\t\tlet offset = 0;\n\t\tfor (const edge of edges) {\n\t\t\tconst edgeOps = executedOperations.slice(offset, offset + edge.operationCount);\n\t\t\toffset += edge.operationCount;\n\t\t\tawait this.family.writeLedgerEntry({\n\t\t\t\tdriver,\n\t\t\t\tspace,\n\t\t\t\tentry: {\n\t\t\t\t\tedgeId: `${edge.from}->${edge.to}`,\n\t\t\t\t\tfrom: edge.from,\n\t\t\t\t\tto: edge.to,\n\t\t\t\t\tmigrationName: edge.dirName,\n\t\t\t\t\tmigrationHash: edge.migrationHash,\n\t\t\t\t\toperations: edgeOps,\n\t\t\t\t\t...ifDefined(\"destinationContractJson\", edge.destinationContractJson)\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t}\n\tasync acquireLock(driver, key) {\n\t\tawait driver.query(\"select pg_advisory_xact_lock(hashtext($1))\", [key]);\n\t}\n\tasync beginTransaction(driver) {\n\t\tawait driver.query(\"BEGIN\");\n\t}\n\tasync commitTransaction(driver) {\n\t\tawait driver.query(\"COMMIT\");\n\t}\n\tasync rollbackTransaction(driver) {\n\t\tawait driver.query(\"ROLLBACK\");\n\t}\n\tasync executeStatement(driver, statement) {\n\t\tawait driver.query(statement.sql, statement.params);\n\t}\n};\n//#endregion\n//#region src/core/postgres-schema-verifier.ts\n/**\n* Postgres target `SchemaVerifier` concretion. Plugs into the\n* SQL-shared verification surface; production verification today still\n* routes through the family verify verdict (`verifySqlSchemaByDiff` over\n* `diffPostgresSchema`), which carries options (codec hooks,\n* normalizers, framework components) that the framework-level\n* `SchemaVerifyOptions` shape does not yet surface.\n*\n* The hooks return the empty list pending the call-site migration that\n* routes the existing verifier behaviour through the SPI — at that\n* point `verifyCommonSqlSchema` will likely lift onto the family base\n* (mirroring `verifyCommonMongoSchema`) and `verifyTargetExtensions`\n* will house Postgres-only kinds (functions, RLS policies in a future\n* project).\n*/\nvar PostgresSchemaVerifier = class extends SqlSchemaVerifierBase {\n\tverifyCommonSqlSchema(_options) {\n\t\treturn [];\n\t}\n\tverifyTargetExtensions(_options) {\n\t\treturn [];\n\t}\n};\n//#endregion\n//#region src/core/psl-infer/infer-names.ts\nfunction buildFieldNamesByTable(tables) {\n\tconst fieldNamesByTable = /* @__PURE__ */ new Map();\n\tfor (const table of Object.values(tables)) {\n\t\tconst assignmentOrder = [...Object.values(table.columns).map((column, index) => {\n\t\t\tconst { name, map } = toFieldName(column.name);\n\t\t\treturn {\n\t\t\t\tcolumnName: column.name,\n\t\t\t\tdesiredFieldName: name,\n\t\t\t\tfieldMap: map,\n\t\t\t\tindex\n\t\t\t};\n\t\t})].sort((left, right) => {\n\t\t\tconst mapComparison = Number(left.fieldMap !== void 0) - Number(right.fieldMap !== void 0);\n\t\t\tif (mapComparison !== 0) return mapComparison;\n\t\t\treturn left.index - right.index;\n\t\t});\n\t\tconst usedFieldNames = /* @__PURE__ */ new Set();\n\t\tconst tableFieldNames = /* @__PURE__ */ new Map();\n\t\tfor (const column of assignmentOrder) {\n\t\t\tconst fieldName = createUniqueFieldName(column.desiredFieldName, usedFieldNames);\n\t\t\tusedFieldNames.add(fieldName);\n\t\t\ttableFieldNames.set(column.columnName, {\n\t\t\t\tfieldName,\n\t\t\t\tfieldMap: column.fieldMap\n\t\t\t});\n\t\t}\n\t\tfieldNamesByTable.set(table.name, tableFieldNames);\n\t}\n\treturn fieldNamesByTable;\n}\nfunction resolveColumnFieldName(fieldNamesByTable, tableName, columnName) {\n\treturn fieldNamesByTable.get(tableName)?.get(columnName)?.fieldName ?? toFieldName(columnName).name;\n}\nfunction createUniqueFieldName(desiredName, usedFieldNames) {\n\tif (!usedFieldNames.has(desiredName)) return desiredName;\n\tlet counter = 2;\n\twhile (usedFieldNames.has(`${desiredName}${counter}`)) counter++;\n\treturn `${desiredName}${counter}`;\n}\nfunction buildTopLevelNameMap(sources, normalize, kind, sourceKind) {\n\tconst results = /* @__PURE__ */ new Map();\n\tconst normalizedToSources = /* @__PURE__ */ new Map();\n\tfor (const source of sources) {\n\t\tconst normalized = normalize(source);\n\t\tresults.set(source, normalized);\n\t\tnormalizedToSources.set(normalized.name, [...normalizedToSources.get(normalized.name) ?? [], source]);\n\t}\n\tconst duplicates = [...normalizedToSources.entries()].filter(([, conflictingSources]) => conflictingSources.length > 1);\n\tif (duplicates.length > 0) throw postgresError(\"CONTRACT.NAME_DUPLICATE\", `PSL ${kind} name collisions detected:\\n${duplicates.map(([normalizedName, conflictingSources]) => `- ${kind} \"${normalizedName}\" from ${sourceKind}s ${conflictingSources.map((source) => `\"${source}\"`).join(\", \")}`).join(\"\\n\")}`, { meta: {\n\t\tkind,\n\t\tnames: duplicates.map(([normalizedName]) => normalizedName)\n\t} });\n\treturn results;\n}\nfunction topologicalSort(models, tables, modelNameMap) {\n\tconst modelByName = /* @__PURE__ */ new Map();\n\tfor (const model of models) modelByName.set(model.name, model);\n\tconst deps = /* @__PURE__ */ new Map();\n\tconst tableToModel = /* @__PURE__ */ new Map();\n\tfor (const tableName of Object.keys(tables)) {\n\t\tconst modelName = modelNameMap.get(tableName);\n\t\tassertDefined(modelName, `topologicalSort: no model name mapped for table \"${tableName}\"`);\n\t\ttableToModel.set(tableName, modelName);\n\t\tdeps.set(modelName, /* @__PURE__ */ new Set());\n\t}\n\tfor (const [tableName, table] of Object.entries(tables)) {\n\t\tconst modelName = tableToModel.get(tableName);\n\t\tassertDefined(modelName, `topologicalSort: no model name recorded for table \"${tableName}\"`);\n\t\tconst modelDeps = deps.get(modelName);\n\t\tassertDefined(modelDeps, `topologicalSort: no dependency set recorded for model \"${modelName}\"`);\n\t\tfor (const fk of table.foreignKeys) {\n\t\t\tconst refModelName = tableToModel.get(fk.referencedTable);\n\t\t\tif (refModelName && refModelName !== modelName) modelDeps.add(refModelName);\n\t\t}\n\t}\n\tconst result = [];\n\tconst visited = /* @__PURE__ */ new Set();\n\tconst visiting = /* @__PURE__ */ new Set();\n\tconst sortedNames = [...deps.keys()].sort();\n\tfunction visit(name) {\n\t\tif (visited.has(name)) return;\n\t\tif (visiting.has(name)) return;\n\t\tvisiting.add(name);\n\t\tconst nameDeps = deps.get(name);\n\t\tassertDefined(nameDeps, `topologicalSort: no dependency set recorded for model \"${name}\"`);\n\t\tconst sortedDeps = [...nameDeps].sort();\n\t\tfor (const dep of sortedDeps) visit(dep);\n\t\tvisiting.delete(name);\n\t\tvisited.add(name);\n\t\tconst model = modelByName.get(name);\n\t\tassertDefined(model, `topologicalSort: no model block recorded for \"${name}\"`);\n\t\tresult.push(model);\n\t}\n\tfor (const name of sortedNames) visit(name);\n\treturn result;\n}\n//#endregion\n//#region src/core/psl-infer/psl-literals.ts\nconst SYNTHETIC_SPAN = {\n\tstart: {\n\t\toffset: 0,\n\t\tline: 1,\n\t\tcolumn: 1\n\t},\n\tend: {\n\t\toffset: 0,\n\t\tline: 1,\n\t\tcolumn: 1\n\t}\n};\nfunction buildSimpleConstraintFieldAttribute(name, constraintName) {\n\tif (constraintName === void 0) return buildAttribute(\"field\", name, []);\n\treturn buildAttribute(\"field\", name, [namedArg(\"map\", `\"${escapePslString(constraintName)}\"`)]);\n}\nfunction parseDefaultAttributeString(attributeText) {\n\treturn buildAttribute(\"field\", \"default\", [positionalArg(attributeText.replace(/^@default\\(/, \"\").replace(/\\)$/, \"\"))]);\n}\nfunction buildMapAttribute(target, mapName) {\n\treturn buildAttribute(target, \"map\", [positionalArg(`\"${escapePslString(mapName)}\"`)]);\n}\nfunction buildAttribute(target, name, args) {\n\treturn {\n\t\tkind: \"attribute\",\n\t\ttarget,\n\t\tname,\n\t\targs,\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\nfunction positionalArg(value) {\n\treturn {\n\t\tkind: \"positional\",\n\t\tvalue,\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\nfunction namedArg(name, value) {\n\treturn {\n\t\tkind: \"named\",\n\t\tname,\n\t\tvalue,\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\nfunction escapePslString(value) {\n\treturn value.replace(/\\\\/g, \"\\\\\\\\\").replace(/\"/g, \"\\\\\\\"\").replace(/\\n/g, \"\\\\n\").replace(/\\r/g, \"\\\\r\");\n}\n/**\n* Formats a resolved literal-default array as PSL literal-list syntax\n* (`[1, 2, 3]`, `[\"a\", \"b\"]`, `[]`). PSL's list-literal grammar only accepts\n* string/number/boolean elements, so any other element (e.g. `null`, a\n* nested array/object) makes the value unrepresentable and this returns\n* `undefined`.\n*/\nfunction formatPslListLiteralValue(elements) {\n\tconst parts = [];\n\tfor (const element of elements) if (typeof element === \"string\") parts.push(`\"${escapePslString(element)}\"`);\n\telse if (typeof element === \"number\" || typeof element === \"boolean\") parts.push(String(element));\n\telse return;\n\treturn `[${parts.join(\", \")}]`;\n}\n/**\n* Resolves a `SqlColumnIR.default` value into a normalized {@link ColumnDefault}.\n*\n* `SqlSchemaIR` types the column default as `string` (a raw database default\n* expression). Some legacy fixtures and tests still pass already-normalized\n* `ColumnDefault` objects in the same slot, so we accept either shape\n* defensively at runtime.\n*/\nfunction parseColumnDefault(value, nativeType, rawDefaultParser) {\n\tif (typeof value === \"string\") return rawDefaultParser ? rawDefaultParser(value, nativeType) : void 0;\n\treturn isColumnDefault(value) ? value : void 0;\n}\n//#endregion\n//#region src/core/psl-infer/infer-enum-blocks.ts\nconst PSL_SCALAR_TYPE_NAMES = /* @__PURE__ */ new Set([\n\t\"String\",\n\t\"Boolean\",\n\t\"Int\",\n\t\"BigInt\",\n\t\"Float\",\n\t\"Decimal\",\n\t\"DateTime\",\n\t\"Json\",\n\t\"Bytes\"\n]);\n/**\n* Builds one `native_enum` extension-block AST node per introspected enum\n* definition. Block names go through the shared top-level transform\n* (`toEnumName`, intra-enum collisions throw like model collisions) and are\n* then reserved against the model names — an enum whose PSL name a model\n* already claims gets a numeric suffix, with `@@map` carrying the real type\n* name. Members print as explicit `member = \"value\"` pairs: the member name\n* is the sanitized value (deduplicated within the block), the JSON-encoded\n* value carries the truth verbatim.\n*/\nfunction buildNativeEnumBlocks(definitions, modelNames) {\n\tconst enumNames = buildTopLevelNameMap([...definitions.keys()].sort(), toEnumName, \"enum\", \"enum type\");\n\tconst usedTopLevelNames = new Set(PSL_SCALAR_TYPE_NAMES);\n\tfor (const result of modelNames.values()) usedTopLevelNames.add(result.name);\n\tconst enumNameMap = /* @__PURE__ */ new Map();\n\tconst enumBlocks = [];\n\tfor (const [typeName, result] of enumNames) {\n\t\tconst name = createUniqueFieldName(result.name, usedTopLevelNames);\n\t\tusedTopLevelNames.add(name);\n\t\tenumNameMap.set(typeName, name);\n\t\tenumBlocks.push(buildNativeEnumBlock(name, typeName, definitions.get(typeName) ?? []));\n\t}\n\treturn {\n\t\tenumNameMap,\n\t\tenumBlocks\n\t};\n}\nfunction buildNativeEnumBlock(name, typeName, values) {\n\tconst usedMemberNames = /* @__PURE__ */ new Set();\n\tconst parameters = {};\n\tfor (const value of values) {\n\t\tconst memberName = createUniqueFieldName(toEnumMemberName(value), usedMemberNames);\n\t\tusedMemberNames.add(memberName);\n\t\tparameters[memberName] = {\n\t\t\tkind: \"value\",\n\t\t\traw: JSON.stringify(value),\n\t\t\tspan: SYNTHETIC_SPAN\n\t\t};\n\t}\n\treturn {\n\t\tkind: \"native_enum\",\n\t\tkeyword: \"native_enum\",\n\t\tname,\n\t\tparameters,\n\t\tblockAttributes: name === typeName ? [] : [{\n\t\t\tname: \"map\",\n\t\t\targs: [{\n\t\t\t\tkind: \"positional\",\n\t\t\t\tvalue: `\"${escapePslString(typeName)}\"`,\n\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t}],\n\t\t\tspan: SYNTHETIC_SPAN\n\t\t}],\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\n//#endregion\n//#region src/core/psl-infer/infer-foreign-keys.ts\n/**\n* Coordinates every element a set of already-assembled contracts declare,\n* mapped to the {@link SqlDescribedContractSpace} that owns it and keyed by\n* the shared {@link coordinateKey} helper. `contract infer` uses this to omit\n* database elements a stack extension pack's contract space already\n* describes — reusing the same coordinate walk the contract-space aggregate\n* and cross-space collision check use (`elementCoordinates`), rather than a\n* bespoke per-entity-kind membership test — and, for a foreign key whose\n* referenced table an entry owns, to resolve the qualified cross-space\n* relation it describes.\n*/\nfunction describedContractOwners(describedContracts) {\n\tconst owners = /* @__PURE__ */ new Map();\n\tfor (const entry of describedContracts) for (const coordinate of elementCoordinates(entry.contract.storage)) owners.set(coordinateKey(coordinate), entry);\n\treturn owners;\n}\nfunction resolveCrossSpaceTarget(owner, namespaceId, tableName) {\n\tconst domainNamespace = owner.contract.domain.namespaces[namespaceId];\n\tif (domainNamespace === void 0) return;\n\tfor (const [modelName, model] of Object.entries(domainNamespace.models)) {\n\t\tconst storage = blindCast(model.storage);\n\t\tif (storage.namespaceId !== namespaceId || storage.table !== tableName) continue;\n\t\tconst fieldNamesByColumn = /* @__PURE__ */ new Map();\n\t\tfor (const [fieldName, fieldStorage] of Object.entries(storage.fields)) fieldNamesByColumn.set(fieldStorage.column, { fieldName });\n\t\treturn {\n\t\t\tspaceId: owner.spaceId,\n\t\t\tnamespaceId,\n\t\t\tmodelName,\n\t\t\tfieldNamesByColumn\n\t\t};\n\t}\n}\n/**\n* Classifies every foreign key on a surviving table into one of three cases.\n* A foreign key that carries a `referencedSchema` is checked against the\n* pack-owned coordinates first, so a pack-owned target wins even when a local\n* table happens to share its bare name; only foreign keys with no owned\n* coordinate fall through to the local/dangling distinction.\n*\n* - **Cross-space**: `referencedSchema` is set and a described contract owns\n* the coordinate `(referencedSchema, 'table', referencedTable)`. The\n* referenced table is absent from the tree (omitted because the pack\n* describes it, or never introspected — `contract infer` walks a single\n* namespace). Removed from `foreignKeys` (so `inferRelations` never falls\n* back to a bare, unqualified table name for it) and replaced with a\n* `RelationField` qualified with the owning pack's space id and namespace\n* id. `owners` holds only pack-declared coordinates, so an app's own table\n* (e.g. `public.users`) is never owned and cannot be captured here.\n* - **Local**: not a pack-owned coordinate, and the referenced table survived\n* introspection — left untouched, `inferRelations` handles it as before.\n* - **Dangling**: not a pack-owned coordinate, and the referenced table is\n* neither in the tree nor owned by any described contract. Removed from\n* `foreignKeys`, keeping the scalar column, rather than emitting a relation\n* to a model that was never defined.\n*\n* A pack that owns the referenced coordinate but declares no domain model\n* mapped to it is malformed; that case throws rather than degrading to a\n* silent drop, which would contradict the dangling definition above.\n*/\nfunction resolveForeignKeys(tables, owners) {\n\tconst resultTables = {};\n\tconst extraRelationsByTable = /* @__PURE__ */ new Map();\n\tconst crossSpaceFieldNamesByTable = /* @__PURE__ */ new Map();\n\tconst danglingForeignKeysByTable = /* @__PURE__ */ new Map();\n\tfor (const [tableName, table] of Object.entries(tables)) {\n\t\tconst keptForeignKeys = [];\n\t\tfor (const fk of table.foreignKeys) {\n\t\t\tif (fk.referencedSchema !== void 0) {\n\t\t\t\tconst owner = owners.get(coordinateKey({\n\t\t\t\t\tnamespaceId: fk.referencedSchema,\n\t\t\t\t\tentityKind: \"table\",\n\t\t\t\t\tentityName: fk.referencedTable\n\t\t\t\t}));\n\t\t\t\tif (owner !== void 0) {\n\t\t\t\t\tconst target = resolveCrossSpaceTarget(owner, fk.referencedSchema, fk.referencedTable);\n\t\t\t\t\tif (target === void 0) throw postgresError(\"CONTRACT.PACK_CONTRIBUTION_INVALID\", `contract infer: described contract space \"${owner.spaceId}\" owns storage coordinate \"${fk.referencedSchema}.${fk.referencedTable}\" but declares no domain model mapped to it. A pack that describes a table must also declare the domain model it maps to; this pack is malformed.`, { meta: {\n\t\t\t\t\t\tspaceId: owner.spaceId,\n\t\t\t\t\t\ttableName: fk.referencedTable\n\t\t\t\t\t} });\n\t\t\t\t\tif (!crossSpaceFieldNamesByTable.has(fk.referencedTable)) crossSpaceFieldNamesByTable.set(fk.referencedTable, target.fieldNamesByColumn);\n\t\t\t\t\tconst fieldName = deriveRelationFieldName(fk.columns, fk.referencedTable);\n\t\t\t\t\tconst optional = fk.columns.some((columnName) => table.columns[columnName]?.nullable ?? false);\n\t\t\t\t\tconst relationField = {\n\t\t\t\t\t\t...buildChildRelationField(fieldName, target.modelName, fk, optional, void 0, table),\n\t\t\t\t\t\ttypeNamespaceId: target.namespaceId,\n\t\t\t\t\t\ttypeContractSpaceId: target.spaceId\n\t\t\t\t\t};\n\t\t\t\t\tconst existingRelations = extraRelationsByTable.get(tableName);\n\t\t\t\t\tif (existingRelations) existingRelations.push(relationField);\n\t\t\t\t\telse extraRelationsByTable.set(tableName, [relationField]);\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (tables[fk.referencedTable] !== void 0) keptForeignKeys.push(fk);\n\t\t\telse {\n\t\t\t\tconst dangling = {\n\t\t\t\t\tcolumns: fk.columns,\n\t\t\t\t\treferencedSchema: fk.referencedSchema,\n\t\t\t\t\treferencedTable: fk.referencedTable\n\t\t\t\t};\n\t\t\t\tconst existingDangling = danglingForeignKeysByTable.get(tableName);\n\t\t\t\tif (existingDangling) existingDangling.push(dangling);\n\t\t\t\telse danglingForeignKeysByTable.set(tableName, [dangling]);\n\t\t\t}\n\t\t}\n\t\tresultTables[tableName] = keptForeignKeys.length === table.foreignKeys.length ? table : new SqlTableIR({\n\t\t\t...table,\n\t\t\tforeignKeys: keptForeignKeys\n\t\t});\n\t}\n\treturn {\n\t\ttables: resultTables,\n\t\textraRelationsByTable,\n\t\tcrossSpaceFieldNamesByTable,\n\t\tdanglingForeignKeysByTable\n\t};\n}\n/**\n* Explains a foreign key `resolveForeignKeys` dropped as dangling: the\n* database enforces it, but its target lives outside the introspected\n* schema, so infer has no model to point a relation at. The suggested fix\n* targets the common cause — an unconfigured extension pack's schema\n* (e.g. Supabase's `auth`).\n*/\nfunction buildDanglingForeignKeyWarning(danglingForeignKeys, fieldNamesByTable, tableName) {\n\treturn `Foreign key ${danglingForeignKeys.map((fk) => {\n\t\tconst fieldNames = fk.columns.map((columnName) => resolveColumnFieldName(fieldNamesByTable, tableName, columnName));\n\t\tconst target = fk.referencedSchema !== void 0 ? `${fk.referencedSchema}.${fk.referencedTable}` : fk.referencedTable;\n\t\treturn `\"${fieldNames.join(\", \")}\" -> \"${target}\"`;\n\t}).join(\", \")} exists in the database, but its target schema is outside the introspected scope, so no relation field was generated. If the target schema is described by an extension pack, add it to extensions and re-run infer.`;\n}\n//#endregion\n//#region src/core/psl-infer/infer-index-attributes.ts\nfunction buildModelConstraintAttribute(name, fields, constraintName) {\n\tconst args = [positionalArg(`[${fields.join(\", \")}]`)];\n\tif (constraintName !== void 0) args.push(namedArg(\"map\", `\"${escapePslString(constraintName)}\"`));\n\treturn buildAttribute(\"model\", name, args);\n}\n/**\n* Emits one `@@index` attribute at full fidelity. The index's identity is\n* re-detected rather than trusted: `name:` is emitted only when the live name\n* parses as a wire name AND that hash recomputes from the introspected\n* content; otherwise the live name is adopted verbatim with `map:`.\n*/\nfunction buildIndexAttribute(index, fieldNames) {\n\tconst args = [];\n\tif (fieldNames !== void 0) args.push(positionalArg(`[${fieldNames.join(\", \")}]`));\n\telse {\n\t\tassertDefined(index.expression, `buildIndexAttribute: index \"${index.name}\" carries neither columns nor expression; SqlIndexIR enforces exactly one`);\n\t\targs.push(namedArg(\"expression\", `\"${escapePslString(index.expression)}\"`));\n\t}\n\tconst parsed = parseWireName(index.name);\n\tconst recomputed = computeIndexContentHash({\n\t\t...index.columns !== void 0 ? { columns: index.columns } : {},\n\t\t...index.expression !== void 0 ? { expression: index.expression } : {},\n\t\t...index.where !== void 0 ? { where: index.where } : {},\n\t\tunique: index.unique,\n\t\t...index.type !== void 0 ? { type: index.type } : {},\n\t\t...index.options !== void 0 ? { options: index.options } : {}\n\t});\n\tif (parsed !== void 0 && parsed.hash === recomputed) args.push(namedArg(\"name\", `\"${escapePslString(parsed.prefix)}\"`));\n\telse args.push(namedArg(\"map\", `\"${escapePslString(index.name)}\"`));\n\tif (index.where !== void 0) args.push(namedArg(\"where\", `\"${escapePslString(index.where)}\"`));\n\tif (index.unique) args.push(namedArg(\"unique\", \"true\"));\n\tconst hasOptions = index.options !== void 0 && Object.keys(index.options).length > 0;\n\tif (index.type !== void 0 || hasOptions) args.push(namedArg(\"type\", `\"${escapePslString(index.type ?? \"btree\")}\"`));\n\tif (hasOptions) {\n\t\tconst entries = Object.entries(index.options ?? {}).sort(([a], [b]) => a < b ? -1 : a > b ? 1 : 0).map(([key, value]) => `${key}: \"${escapePslString(String(value))}\"`);\n\t\targs.push(namedArg(\"options\", `{ ${entries.join(\", \")} }`));\n\t}\n\treturn buildAttribute(\"model\", \"index\", args);\n}\n/**\n* Emits one `@@check` attribute for a live, non-derived check, always in the\n* `map:` form. Re-detecting `name:` is not attempted: the live expression is\n* Postgres's own reprint, but a wire-named check's hash was taken over the\n* author's original text, so recomputing the hash from the reprint would\n* essentially never match. `map:` plus the verbatim reprint is correct\n* regardless — a reprint compared against a later reprint of the same\n* expression is stable, so the emitted contract signs the live database with\n* zero pending operations. `buildPolicyBlocks` makes the same call for\n* `@@map` on adopted RLS policies, for the same reason.\n*/\nfunction buildCheckAttribute(check) {\n\treturn buildAttribute(\"model\", \"check\", [namedArg(\"expression\", `\"${escapePslString(check.expression)}\"`), namedArg(\"map\", `\"${escapePslString(check.name)}\"`)]);\n}\n//#endregion\n//#region src/core/psl-infer/infer-model-blocks.ts\nfunction buildModel(table, typeMap, enumNameMap, fieldNamesByTable, defaultMapping, rawDefaultParser, relationFields, danglingForeignKeys, rlsEnabled = false, policySkipNotes = []) {\n\tconst { name: modelName, map: mapName } = toModelName(table.name);\n\tconst fieldNameMap = fieldNamesByTable.get(table.name);\n\tconst pkColumns = new Set(table.primaryKey?.columns ?? []);\n\tconst isSinglePk = pkColumns.size === 1;\n\tconst singlePkConstraintName = isSinglePk ? table.primaryKey?.name : void 0;\n\tconst uniqueColumns = /* @__PURE__ */ new Map();\n\tfor (const unique of table.uniques) if (unique.columns.length === 1) {\n\t\tconst [columnName = \"\"] = unique.columns;\n\t\tconst existingConstraintName = uniqueColumns.get(columnName);\n\t\tif (!uniqueColumns.has(columnName) || existingConstraintName === void 0 && unique.name) uniqueColumns.set(columnName, unique.name);\n\t}\n\tconst derivedCheckNames = computeDerivedCheckNames(table);\n\tconst fields = [];\n\tfor (const column of Object.values(table.columns)) fields.push(buildScalarField(column, table, typeMap, enumNameMap, fieldNameMap, defaultMapping, rawDefaultParser, pkColumns, isSinglePk, singlePkConstraintName, uniqueColumns, derivedCheckNames));\n\tconst usedFieldNames = new Set(fields.map((field) => field.name));\n\tfor (const rel of relationFields) fields.push(buildRelationField(rel, table.name, fieldNamesByTable, usedFieldNames));\n\tconst modelAttributes = [];\n\tif (table.primaryKey && table.primaryKey.columns.length > 1) {\n\t\tconst pkFieldNames = table.primaryKey.columns.map((columnName) => resolveColumnFieldName(fieldNamesByTable, table.name, columnName));\n\t\tmodelAttributes.push(buildModelConstraintAttribute(\"id\", pkFieldNames, table.primaryKey.name));\n\t}\n\tfor (const unique of table.uniques) if (unique.columns.length > 1) {\n\t\tconst uniqueFieldNames = unique.columns.map((columnName) => resolveColumnFieldName(fieldNamesByTable, table.name, columnName));\n\t\tmodelAttributes.push(buildModelConstraintAttribute(\"unique\", uniqueFieldNames, unique.name));\n\t}\n\tfor (const index of table.indexes) {\n\t\tconst indexFieldNames = index.columns?.map((columnName) => resolveColumnFieldName(fieldNamesByTable, table.name, columnName));\n\t\tmodelAttributes.push(buildIndexAttribute(index, indexFieldNames));\n\t}\n\tfor (const check of table.checks ?? []) if (!derivedCheckNames.has(check.name)) modelAttributes.push(buildCheckAttribute(check));\n\tif (mapName) modelAttributes.push(buildMapAttribute(\"model\", mapName));\n\tif (rlsEnabled) modelAttributes.push(buildAttribute(\"model\", \"rls\", []));\n\tconst warnings = [];\n\tif (!table.primaryKey) warnings.push(\"This table has no primary key in the database\");\n\tif (danglingForeignKeys.length > 0) warnings.push(buildDanglingForeignKeyWarning(danglingForeignKeys, fieldNamesByTable, table.name));\n\tconst commentLines = [...warnings.length > 0 ? [`// WARNING: ${warnings.join(\" \")}`] : [], ...policySkipNotes];\n\tconst comment = commentLines.length > 0 ? commentLines.join(\"\\n\") : void 0;\n\treturn {\n\t\tkind: \"model\",\n\t\tname: modelName,\n\t\tfields,\n\t\tattributes: modelAttributes,\n\t\tspan: SYNTHETIC_SPAN,\n\t\t...comment !== void 0 ? { comment } : {}\n\t};\n}\n/**\n* The live check names that are derived: a live check's name matches\n* `formatWireName(composeCheckWirePrefix(table, column, kind), computeCheckContentHash(expression))`\n* for some column of the table and some candidate `postgresRenderCheckExpressions`\n* would render for that column. Never by comparing expressions — the live\n* body is a Postgres reprint, never the authored text. One set serves both\n* the `@noCheck` waiver below and `@@check` exclusion in `buildModel`, so the\n* two decisions cannot drift apart.\n*\n* `membership` is unreachable here today: infer never emits domain enums\n* (`enumType()` is not inferred), so no inferred column has member values and\n* no membership check is ever derived. The day domain-enum inference exists,\n* its slice extends this by threading the column's member values through.\n*/\nfunction computeDerivedCheckNames(table) {\n\tconst liveCheckNames = new Set((table.checks ?? []).map((check) => check.name));\n\tconst derivedCheckNames = /* @__PURE__ */ new Set();\n\tfor (const column of Object.values(table.columns)) for (const candidate of postgresRenderCheckExpressions({\n\t\ttableName: table.name,\n\t\tcolumnName: column.name,\n\t\tmany: column.many === true,\n\t\tmemberValues: void 0\n\t})) {\n\t\tconst derivedName = formatWireName(composeCheckWirePrefix(table.name, column.name, candidate.kind), computeCheckContentHash(candidate.expression));\n\t\tif (liveCheckNames.has(derivedName)) derivedCheckNames.add(derivedName);\n\t}\n\treturn derivedCheckNames;\n}\nfunction buildScalarField(column, table, typeMap, enumNameMap, fieldNameMap, defaultMapping, rawDefaultParser, pkColumns, isSinglePk, singlePkConstraintName, uniqueColumns, derivedCheckNames) {\n\tconst resolvedField = fieldNameMap?.get(column.name);\n\tconst fieldName = resolvedField?.fieldName ?? toFieldName(column.name).name;\n\tconst fieldMap = resolvedField?.fieldMap;\n\tconst resolution = typeMap.resolve(column.nativeType, table.annotations);\n\tif (\"unsupported\" in resolution) {\n\t\tconst attrs = [];\n\t\tif (fieldMap !== void 0) attrs.push(buildMapAttribute(\"field\", fieldMap));\n\t\treturn {\n\t\t\tkind: \"field\",\n\t\t\tname: fieldName,\n\t\t\ttypeName: `Unsupported(\"${escapePslString(resolution.nativeType)}\")`,\n\t\t\toptional: column.nullable,\n\t\t\tlist: column.many === true,\n\t\t\tattributes: attrs,\n\t\t\tspan: SYNTHETIC_SPAN\n\t\t};\n\t}\n\tlet typeName = resolution.pslType.name;\n\tlet typeConstructor = resolution.pslType.args ? {\n\t\tkind: \"typeConstructor\",\n\t\tpath: [resolution.pslType.name],\n\t\targs: resolution.pslType.args.map(positionalArg),\n\t\tspan: SYNTHETIC_SPAN\n\t} : void 0;\n\tconst enumPslName = enumNameMap.get(column.nativeType);\n\tif (enumPslName) {\n\t\ttypeName = enumPslName;\n\t\ttypeConstructor = {\n\t\t\tkind: \"typeConstructor\",\n\t\t\tpath: [\"pg\", \"enum\"],\n\t\t\targs: [positionalArg(enumPslName)],\n\t\t\tspan: SYNTHETIC_SPAN\n\t\t};\n\t}\n\tconst attributes = [];\n\tconst isId = isSinglePk && pkColumns.has(column.name);\n\tif (isId) attributes.push(buildSimpleConstraintFieldAttribute(\"id\", singlePkConstraintName));\n\tif (column.default === void 0 && column.resolvedDefault?.kind === \"function\" && column.resolvedDefault.expression === \"autoincrement()\") attributes.push(parseDefaultAttributeString(\"@default(autoincrement())\"));\n\telse if (column.many === true && column.resolvedDefault?.kind === \"literal\") {\n\t\tconst formatted = Array.isArray(column.resolvedDefault.value) ? formatPslListLiteralValue(column.resolvedDefault.value) : void 0;\n\t\tif (formatted !== void 0) attributes.push(parseDefaultAttributeString(`@default(${formatted})`));\n\t} else if (column.default !== void 0) {\n\t\tconst parsed = parseColumnDefault(column.default, column.nativeType, rawDefaultParser);\n\t\tif (parsed) {\n\t\t\tconst result = mapDefault(parsed, defaultMapping);\n\t\t\tif (\"attribute\" in result) attributes.push(parseDefaultAttributeString(result.attribute));\n\t\t}\n\t}\n\tif (uniqueColumns.has(column.name) && !isId) {\n\t\tconst uniqueConstraintName = uniqueColumns.get(column.name);\n\t\tattributes.push(buildSimpleConstraintFieldAttribute(\"unique\", uniqueConstraintName));\n\t}\n\tif (column.many === true) {\n\t\tconst waivedKinds = postgresRenderCheckExpressions({\n\t\t\ttableName: table.name,\n\t\t\tcolumnName: column.name,\n\t\t\tmany: true,\n\t\t\tmemberValues: void 0\n\t\t}).filter((candidate) => !derivedCheckNames.has(formatWireName(composeCheckWirePrefix(table.name, column.name, candidate.kind), computeCheckContentHash(candidate.expression)))).map((candidate) => candidate.kind);\n\t\tif (waivedKinds.length > 0) attributes.push(buildAttribute(\"field\", \"noCheck\", waivedKinds.map(positionalArg)));\n\t}\n\tif (fieldMap !== void 0) attributes.push(buildMapAttribute(\"field\", fieldMap));\n\treturn {\n\t\tkind: \"field\",\n\t\tname: fieldName,\n\t\ttypeName,\n\t\t...ifDefined(\"typeConstructor\", typeConstructor),\n\t\toptional: column.nullable,\n\t\tlist: column.many === true,\n\t\tattributes,\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\nfunction buildRelationField(rel, hostTableName, fieldNamesByTable, usedFieldNames) {\n\tconst fieldName = createUniqueFieldName(rel.fieldName, usedFieldNames);\n\tusedFieldNames.add(fieldName);\n\tconst args = [];\n\tif (rel.fields && rel.references) {\n\t\tif (rel.relationName) args.push(namedArg(\"name\", `\"${escapePslString(rel.relationName)}\"`));\n\t\targs.push(namedArg(\"fields\", `[${rel.fields.map((columnName) => resolveColumnFieldName(fieldNamesByTable, hostTableName, columnName)).join(\", \")}]`));\n\t\targs.push(namedArg(\"references\", `[${rel.references.map((columnName) => resolveColumnFieldName(fieldNamesByTable, rel.referencedTableName ?? \"\", columnName)).join(\", \")}]`));\n\t\tif (rel.onDelete) args.push(namedArg(\"onDelete\", rel.onDelete));\n\t\tif (rel.onUpdate) args.push(namedArg(\"onUpdate\", rel.onUpdate));\n\t\tif (rel.fkName) args.push(namedArg(\"map\", `\"${escapePslString(rel.fkName)}\"`));\n\t\tif (rel.index === false) args.push(namedArg(\"index\", \"false\"));\n\t} else if (rel.relationName) args.push(namedArg(\"name\", `\"${escapePslString(rel.relationName)}\"`));\n\tconst attrs = args.length > 0 ? [buildAttribute(\"field\", \"relation\", args)] : [];\n\treturn {\n\t\tkind: \"field\",\n\t\tname: fieldName,\n\t\ttypeName: rel.typeName,\n\t\t...ifDefined(\"typeNamespaceId\", rel.typeNamespaceId),\n\t\t...ifDefined(\"typeContractSpaceId\", rel.typeContractSpaceId),\n\t\toptional: rel.optional,\n\t\tlist: rel.list,\n\t\tattributes: attrs,\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\n//#endregion\n//#region src/core/psl-infer/infer-policy-blocks.ts\nconst POLICY_OPERATION_KEYWORD = {\n\tselect: \"policy_select\",\n\tinsert: \"policy_insert\",\n\tupdate: \"policy_update\",\n\tdelete: \"policy_delete\",\n\tall: \"policy_all\"\n};\n/** The PSL tokenizer's identifier grammar: leading letter/underscore, then letters/digits/`_`/`-`. */\nconst PSL_IDENTIFIER = /^[\\p{L}_][\\p{L}\\p{N}_-]*$/u;\n/** Replaces invalid character runs with `_`; prepends `_` when the first character is invalid. */\nfunction sanitizePolicyHead(raw) {\n\tlet head = raw.replace(/[^\\p{L}\\p{N}_-]+/gu, \"_\");\n\tif (!/^[\\p{L}_]/u.test(head)) head = `_${head}`;\n\treturn head;\n}\n/**\n* Builds one `policy_<operation>` block per introspected policy. Every\n* adopted policy is exact-named: a reprinted body never reliably re-hashes to\n* the live suffix, so `@@map` always carries the physical name and the head\n* is only an identifier. A policy granting to a role whose name is not a\n* legal identifier cannot be authored at all — role references have no\n* `@@map` escape — so it is skipped with a note.\n*/\nfunction buildPolicyBlocks(policiesByTable, modelNameMap, reservedHeads = /* @__PURE__ */ new Set()) {\n\tconst all = [];\n\tfor (const [tableName, policies] of policiesByTable) for (const policy of policies) all.push({\n\t\tpolicy,\n\t\ttableName\n\t});\n\tall.sort((a, b) => {\n\t\tif (a.policy.name !== b.policy.name) return a.policy.name < b.policy.name ? -1 : 1;\n\t\tif (a.tableName !== b.tableName) return a.tableName < b.tableName ? -1 : 1;\n\t\treturn a.policy.operation < b.policy.operation ? -1 : a.policy.operation > b.policy.operation ? 1 : 0;\n\t});\n\tconst usedHeads = new Set(reservedHeads);\n\tconst blocks = [];\n\tconst skipNotesByTable = /* @__PURE__ */ new Map();\n\tfor (const { policy, tableName } of all) {\n\t\tconst modelName = modelNameMap.get(tableName);\n\t\tassertDefined(modelName, `buildPolicyBlocks: policy \"${policy.name}\" targets table \"${tableName}\" with no emitted model; tables and policies come from the same introspection walk`);\n\t\tconst badRole = policy.roles.find((role) => !PSL_IDENTIFIER.test(role));\n\t\tif (badRole !== void 0) {\n\t\t\tconst notes = skipNotesByTable.get(tableName) ?? [];\n\t\t\tnotes.push(`// prisma-next: skipped policy \"${policy.name}\": role \"${badRole}\" is not a valid PSL identifier and role references cannot be escaped`);\n\t\t\tskipNotesByTable.set(tableName, notes);\n\t\t\tcontinue;\n\t\t}\n\t\tlet head = sanitizePolicyHead(parseWireName(policy.name)?.prefix ?? policy.name);\n\t\tif (usedHeads.has(head)) {\n\t\t\tlet n = 2;\n\t\t\twhile (usedHeads.has(`${head}_${n}`)) n += 1;\n\t\t\thead = `${head}_${n}`;\n\t\t}\n\t\tusedHeads.add(head);\n\t\tblocks.push({\n\t\t\tkind: \"policy\",\n\t\t\tkeyword: POLICY_OPERATION_KEYWORD[policy.operation],\n\t\t\tname: head,\n\t\t\tparameters: {\n\t\t\t\ttarget: {\n\t\t\t\t\tkind: \"ref\",\n\t\t\t\t\tidentifier: modelName,\n\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t},\n\t\t\t\troles: {\n\t\t\t\t\tkind: \"list\",\n\t\t\t\t\titems: policy.roles.map((role) => ({\n\t\t\t\t\t\tkind: \"ref\",\n\t\t\t\t\t\tidentifier: role,\n\t\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t\t})),\n\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t},\n\t\t\t\t...policy.using !== void 0 ? { using: {\n\t\t\t\t\tkind: \"value\",\n\t\t\t\t\traw: JSON.stringify(policy.using),\n\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t} } : {},\n\t\t\t\t...policy.withCheck !== void 0 ? { withCheck: {\n\t\t\t\t\tkind: \"value\",\n\t\t\t\t\traw: JSON.stringify(policy.withCheck),\n\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t} } : {},\n\t\t\t\t...policy.permissive ? {} : { permissive: {\n\t\t\t\t\tkind: \"value\",\n\t\t\t\t\traw: \"false\",\n\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t} }\n\t\t\t},\n\t\t\tblockAttributes: [{\n\t\t\t\tname: \"map\",\n\t\t\t\targs: [{\n\t\t\t\t\tkind: \"positional\",\n\t\t\t\t\tvalue: `\"${escapePslString(policy.name)}\"`,\n\t\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t\t}],\n\t\t\t\tspan: SYNTHETIC_SPAN\n\t\t\t}],\n\t\t\tspan: SYNTHETIC_SPAN\n\t\t});\n\t}\n\treturn {\n\t\tblocks,\n\t\tskipNotesByTable\n\t};\n}\n//#endregion\n//#region src/core/psl-infer/postgres-default-mapping.ts\nconst POSTGRES_FUNCTION_ATTRIBUTES = { \"gen_random_uuid()\": \"@default(dbgenerated(\\\"gen_random_uuid()\\\"))\" };\nfunction formatDbGeneratedAttribute(expression) {\n\treturn `@default(dbgenerated(${JSON.stringify(expression)}))`;\n}\nfunction createPostgresDefaultMapping() {\n\treturn {\n\t\tfunctionAttributes: POSTGRES_FUNCTION_ATTRIBUTES,\n\t\tfallbackFunctionAttribute: formatDbGeneratedAttribute\n\t};\n}\n//#endregion\n//#region src/core/psl-infer/postgres-type-map.ts\nconst POSTGRES_TO_PSL = {\n\ttext: \"String\",\n\tbool: \"Boolean\",\n\tboolean: \"Boolean\",\n\tint4: \"Int\",\n\tinteger: \"Int\",\n\tint8: \"BigInt\",\n\tbigint: \"BigInt\",\n\tfloat8: \"Float\",\n\t\"double precision\": \"Float\",\n\tjsonb: \"Jsonb\",\n\tbytea: \"Bytes\"\n};\nconst PRESERVED_NATIVE_TYPES = {\n\t\"character varying\": \"VarChar\",\n\tcharacter: \"Char\",\n\tchar: \"Char\",\n\tvarchar: \"VarChar\",\n\tuuid: \"Uuid\",\n\tinet: \"Inet\",\n\tint2: \"SmallInt\",\n\tsmallint: \"SmallInt\",\n\tfloat4: \"Real\",\n\treal: \"Real\",\n\tnumeric: \"Numeric\",\n\tdecimal: \"Numeric\",\n\ttimestamp: \"Timestamp\",\n\t\"timestamp without time zone\": \"Timestamp\",\n\ttimestamptz: \"Timestamptz\",\n\t\"timestamp with time zone\": \"Timestamptz\",\n\tdate: \"Date\",\n\ttime: \"Time\",\n\t\"time without time zone\": \"Time\",\n\ttimetz: \"Timetz\",\n\t\"time with time zone\": \"Timetz\",\n\tjson: \"Json\"\n};\nconst PARAMETERIZED_NATIVE_TYPES = {\n\t\"character varying\": \"VarChar\",\n\tcharacter: \"Char\",\n\tchar: \"Char\",\n\tvarchar: \"VarChar\",\n\tnumeric: \"Numeric\",\n\tdecimal: \"Numeric\",\n\ttimestamp: \"Timestamp\",\n\ttimestamptz: \"Timestamptz\",\n\ttime: \"Time\",\n\ttimetz: \"Timetz\"\n};\nconst PARAMETERIZED_TYPE_PATTERN = /^(.+?)\\((.+)\\)$/;\nfunction getOwnMappingValue(map, key) {\n\treturn Object.hasOwn(map, key) ? map[key] : void 0;\n}\nfunction splitTypeParameterList(params) {\n\treturn params.split(\",\").map((part) => part.trim()).filter((part) => part.length > 0);\n}\nfunction createPostgresTypeMap(enumTypeNames) {\n\treturn { resolve(nativeType) {\n\t\tif (enumTypeNames?.has(nativeType)) return {\n\t\t\tpslType: { name: nativeType },\n\t\t\tnativeType\n\t\t};\n\t\tconst paramMatch = nativeType.match(PARAMETERIZED_TYPE_PATTERN);\n\t\tif (paramMatch) {\n\t\t\tconst [, baseType = nativeType, params = \"\"] = paramMatch;\n\t\t\tconst typeName = getOwnMappingValue(PARAMETERIZED_NATIVE_TYPES, baseType);\n\t\t\tif (typeName) return {\n\t\t\t\tpslType: {\n\t\t\t\t\tname: typeName,\n\t\t\t\t\targs: splitTypeParameterList(params)\n\t\t\t\t},\n\t\t\t\tnativeType,\n\t\t\t\ttypeParams: {\n\t\t\t\t\tbaseType,\n\t\t\t\t\tparams\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\tconst preservedType = getOwnMappingValue(PRESERVED_NATIVE_TYPES, nativeType);\n\t\tif (preservedType) return {\n\t\t\tpslType: { name: preservedType },\n\t\t\tnativeType\n\t\t};\n\t\tconst pslType = getOwnMappingValue(POSTGRES_TO_PSL, nativeType);\n\t\tif (pslType) return {\n\t\t\tpslType: { name: pslType },\n\t\t\tnativeType\n\t\t};\n\t\treturn {\n\t\t\tunsupported: true,\n\t\t\tnativeType\n\t\t};\n\t} };\n}\n//#endregion\n//#region src/core/psl-infer/infer-psl-contract.ts\n/**\n* Infers a PSL AST (for `printPsl`) from an introspected Postgres schema tree.\n*\n* Target-owned inference: it walks the `PostgresDatabaseSchemaNode` tree and\n* owns the Postgres dialect knowledge — the native type map and default map.\n* Relation inference, name transforms, generic default mapping, and raw-default\n* parsing are shape-neutral utilities imported from the SQL family.\n*\n* The tree's tables (across its namespaces — `contract infer` introspects a\n* single live namespace) are gathered into the model set and emitted in one\n* bucket, alongside native-enum and RLS policy blocks. That bucket is named\n* after the introspected schema when the content needs a `namespace { … }`\n* wrap, and is the flat `UNSPECIFIED_PSL_NAMESPACE_ID` bucket otherwise. This\n* entry point emits nothing else, so its output is always exactly one bucket\n* and byte-identical to the prior flat inference. {@link buildPslDocumentAst}\n* can emit a second, always-flat bucket for content that must stay top-level\n* even under a wrap; no caller asks for one yet.\n*\n* `describedContracts` — the stack's extension packs' already-assembled\n* contracts, each paired with its space id — is consulted while gathering\n* tables: a table whose coordinate `(schemaName, 'table', tableName)` one of\n* those contracts already declares is omitted, before the duplicate-name\n* check below and before relation inference, so it cannot spuriously\n* collide with an app table and never contributes a bare relation field. A\n* surviving table's foreign key into an omitted, pack-owned table is not\n* dropped: {@link resolveForeignKeys} rewrites it into a relation qualified\n* with the pack's space id (`<spaceId>:<namespaceId>.<Model>`) instead.\n*/\nfunction inferPostgresPslContract(tree, describedContracts) {\n\tconst namespaces = Object.values(tree.namespaces);\n\tconst owners = describedContractOwners(describedContracts ?? []);\n\tconst enumDefinitions = /* @__PURE__ */ new Map();\n\tconst packOwnedEnumTypesByNamespace = /* @__PURE__ */ new Map();\n\tconst enumNamespaceNames = /* @__PURE__ */ new Set();\n\tfor (const namespace of namespaces) for (const { typeName, members } of namespace.nativeEnums) {\n\t\tconst owner = owners.get(coordinateKey({\n\t\t\tnamespaceId: namespace.schemaName,\n\t\t\tentityKind: \"native_enum\",\n\t\t\tentityName: typeName\n\t\t}));\n\t\tif (owner !== void 0) {\n\t\t\tconst owned = packOwnedEnumTypesByNamespace.get(namespace.schemaName) ?? /* @__PURE__ */ new Map();\n\t\t\towned.set(typeName, owner.spaceId);\n\t\t\towned.set(`${namespace.schemaName}.${typeName}`, owner.spaceId);\n\t\t\tpackOwnedEnumTypesByNamespace.set(namespace.schemaName, owned);\n\t\t\tcontinue;\n\t\t}\n\t\tenumDefinitions.set(typeName, members);\n\t\tenumNamespaceNames.add(namespace.schemaName);\n\t}\n\tconst tables = {};\n\tconst tableNamespaceNames = /* @__PURE__ */ new Set();\n\tconst rlsEnabledTables = /* @__PURE__ */ new Set();\n\tconst policiesByTable = /* @__PURE__ */ new Map();\n\tfor (const namespace of namespaces) {\n\t\tconst ownedEnumTypes = packOwnedEnumTypesByNamespace.get(namespace.schemaName);\n\t\tfor (const [tableName, table] of Object.entries(namespace.tables)) {\n\t\t\tif (owners.has(coordinateKey({\n\t\t\t\tnamespaceId: namespace.schemaName,\n\t\t\t\tentityKind: \"table\",\n\t\t\t\tentityName: tableName\n\t\t\t}))) continue;\n\t\t\tif (tables[tableName] !== void 0) throw postgresError(\"CONTRACT.INFER_UNSUPPORTED\", `contract infer: duplicate table name \"${tableName}\" across schemas is not yet supported (single-namespace PSL inference emits one flat bucket; multi-namespace \\`namespace { … }\\` output is a later slice).`, { meta: { tableName } });\n\t\t\tif (ownedEnumTypes !== void 0) for (const column of Object.values(table.columns)) {\n\t\t\t\tconst owningSpaceId = ownedEnumTypes.get(column.nativeType);\n\t\t\t\tif (owningSpaceId !== void 0) throw postgresError(\"CONTRACT.INFER_UNSUPPORTED\", `contract infer: column \"${tableName}\".\"${column.name}\" is typed by native enum type \"${column.nativeType}\", which extension pack space \"${owningSpaceId}\" already describes. A cross-space enum-typed column has no authorable PSL form yet; describe the table in that pack's contract or retype the column before re-running contract infer.`, { meta: {\n\t\t\t\t\ttableName,\n\t\t\t\t\tcolumnName: column.name\n\t\t\t\t} });\n\t\t\t}\n\t\t\ttables[tableName] = new SqlTableIR(table);\n\t\t\ttableNamespaceNames.add(namespace.schemaName);\n\t\t\tif (table.rlsEnabled) rlsEnabledTables.add(tableName);\n\t\t\tif (table.policies.length > 0) policiesByTable.set(tableName, table.policies);\n\t\t}\n\t}\n\tlet wrapNamespaceName;\n\tif (enumDefinitions.size > 0 || policiesByTable.size > 0) {\n\t\tconst contentNamespaces = /* @__PURE__ */ new Set([...enumNamespaceNames, ...tableNamespaceNames]);\n\t\tif (contentNamespaces.size > 1) throw postgresError(\"CONTRACT.INFER_UNSUPPORTED\", `contract infer: adopting native enums or RLS policies with content across multiple schemas is not yet supported (single-namespace PSL inference emits one \\`namespace { … }\\` block; multi-namespace output is a later slice). Schemas: ${[...contentNamespaces].sort().join(\", \")}.`, { meta: { schemas: [...contentNamespaces].sort() } });\n\t\twrapNamespaceName = [...contentNamespaces][0];\n\t}\n\tconst { tables: resolvedTables, extraRelationsByTable, crossSpaceFieldNamesByTable, danglingForeignKeysByTable } = resolveForeignKeys(tables, owners);\n\tconst schemaIR = new SqlSchemaIR({ tables: resolvedTables });\n\tconst enumTypeNames = new Set(enumDefinitions.keys());\n\tif (wrapNamespaceName !== void 0) for (const typeName of enumDefinitions.keys()) enumTypeNames.add(`${wrapNamespaceName}.${typeName}`);\n\tconst enumInfo = {\n\t\ttypeNames: enumTypeNames,\n\t\tdefinitions: enumDefinitions\n\t};\n\treturn buildPslDocumentAst(schemaIR, {\n\t\ttypeMap: createPostgresTypeMap(enumInfo.typeNames),\n\t\tdefaultMapping: createPostgresDefaultMapping(),\n\t\tparseRawDefault,\n\t\t...enumDefinitions.size > 0 ? { enumInfo } : {}\n\t}, {\n\t\textraRelationsByTable,\n\t\tcrossSpaceFieldNamesByTable,\n\t\tdanglingForeignKeysByTable\n\t}, wrapNamespaceName, {\n\t\trlsEnabledTables,\n\t\tpoliciesByTable\n\t});\n}\n/**\n* Builds the PSL document for one introspected schema.\n*\n* `namespaceName` wraps the output in `namespace <name> { … }`; omit it for\n* flat output. `topLevelExtensionBlocks` are declarations that must stay\n* top-level even when a wrap applies, such as a recovered domain enum — a\n* family `enum` inside a namespace is a hard diagnostic. They land in their\n* own always-flat bucket when a wrap applies, and in the single flat bucket\n* when none does; either way they print unwrapped.\n*\n* Their names are reserved before the policy blocks are built, so a policy\n* renames itself out of the way. Against the rest of the top-level scope — the\n* models, the native enums, PSL's scalar type names, and the other blocks in\n* the list — a clash throws instead: a block's name is its contract key\n* (`entries.valueSet[name]`, with no `@@map` escape), so it cannot be rewritten\n* here.\n*/\nfunction buildPslDocumentAst(schemaIR, options, foreignKeyExtras, namespaceName, rlsExtras, topLevelExtensionBlocks = []) {\n\tconst { typeMap, defaultMapping, parseRawDefault: rawDefaultParser } = options;\n\tconst { extraRelationsByTable, crossSpaceFieldNamesByTable, danglingForeignKeysByTable } = foreignKeyExtras;\n\tconst modelNames = buildTopLevelNameMap(Object.keys(schemaIR.tables), toModelName, \"model\", \"table\");\n\tconst modelNameMap = new Map([...modelNames].map(([tableName, result]) => [tableName, result.name]));\n\tconst { enumNameMap: bareEnumNameMap, enumBlocks } = buildNativeEnumBlocks(options.enumInfo?.definitions ?? /* @__PURE__ */ new Map(), modelNames);\n\tconst enumNameMap = new Map(bareEnumNameMap);\n\tif (namespaceName !== void 0) for (const [typeName, pslName] of bareEnumNameMap) enumNameMap.set(`${namespaceName}.${typeName}`, pslName);\n\tconst fieldNamesByTable = new Map([...crossSpaceFieldNamesByTable, ...buildFieldNamesByTable(schemaIR.tables)]);\n\tconst { relationsByTable } = inferRelations(schemaIR.tables, modelNameMap);\n\tconst policyEmission = buildPolicyBlocks(rlsExtras?.policiesByTable ?? /* @__PURE__ */ new Map(), modelNameMap, /* @__PURE__ */ new Set([\n\t\t...modelNameMap.values(),\n\t\t...bareEnumNameMap.values(),\n\t\t...topLevelExtensionBlocks.map((block) => block.name)\n\t]));\n\tconst claimedTopLevelNames = /* @__PURE__ */ new Set([\n\t\t...PSL_SCALAR_TYPE_NAMES,\n\t\t...modelNameMap.values(),\n\t\t...bareEnumNameMap.values()\n\t]);\n\tfor (const block of topLevelExtensionBlocks) {\n\t\tif (claimedTopLevelNames.has(block.name)) throw postgresError(\"CONTRACT.NAME_DUPLICATE\", `contract infer: recovered ${block.keyword} \"${block.name}\" collides with a model, a native enum, a PSL scalar type, or another recovered declaration of the same name. Rename the recovered declaration, or exclude it.`, { meta: {\n\t\t\tkind: block.keyword,\n\t\t\tname: block.name\n\t\t} });\n\t\tclaimedTopLevelNames.add(block.name);\n\t}\n\tconst models = [];\n\tfor (const table of Object.values(schemaIR.tables)) models.push(buildModel(table, typeMap, enumNameMap, fieldNamesByTable, defaultMapping, rawDefaultParser, [...relationsByTable.get(table.name) ?? [], ...extraRelationsByTable.get(table.name) ?? []], danglingForeignKeysByTable.get(table.name) ?? [], rlsExtras?.rlsEnabledTables.has(table.name) ?? false, policyEmission.skipNotesByTable.get(table.name) ?? []));\n\tconst sortedModels = topologicalSort(models, schemaIR.tables, modelNameMap);\n\tconst separateTopLevelBucket = namespaceName !== void 0 && namespaceName !== UNSPECIFIED_PSL_NAMESPACE_ID && topLevelExtensionBlocks.length > 0;\n\tconst namespaces = [];\n\tif (separateTopLevelBucket) namespaces.push(makePslNamespace({\n\t\tkind: \"namespace\",\n\t\tname: UNSPECIFIED_PSL_NAMESPACE_ID,\n\t\tentries: makePslNamespaceEntries([], [], topLevelExtensionBlocks),\n\t\tspan: SYNTHETIC_SPAN\n\t}));\n\tnamespaces.push(makePslNamespace({\n\t\tkind: \"namespace\",\n\t\tname: namespaceName ?? UNSPECIFIED_PSL_NAMESPACE_ID,\n\t\tentries: makePslNamespaceEntries(sortedModels, [], [\n\t\t\t...separateTopLevelBucket ? [] : topLevelExtensionBlocks,\n\t\t\t...enumBlocks,\n\t\t\t...policyEmission.blocks\n\t\t]),\n\t\tspan: SYNTHETIC_SPAN\n\t}));\n\treturn {\n\t\tkind: \"document\",\n\t\tsourceId: \"<sql-schema-ir>\",\n\t\tnamespaces,\n\t\tspan: SYNTHETIC_SPAN\n\t};\n}\n//#endregion\n//#region src/exports/control.ts\nfunction postgresRenderDefault(def, column) {\n\tif (def.kind === \"function\") return def.expression;\n\treturn renderDefaultLiteral(def.value, column);\n}\nconst postgresTargetDescriptor = {\n\t...postgresTargetDescriptorMeta,\n\tcontractSerializer: new PostgresContractSerializer(),\n\tschemaVerifier: new PostgresSchemaVerifier(),\n\tinferPslContract(schema, describedContracts) {\n\t\tPostgresDatabaseSchemaNode.assert(schema);\n\t\treturn inferPostgresPslContract(schema, describedContracts);\n\t},\n\tdiffSchema(input) {\n\t\treturn diffPostgresSchema(input);\n\t},\n\tclassifySubjectGranularity: postgresDiffSubjectGranularity,\n\tclassifyEntityKind: postgresDiffSubjectEntityKind,\n\tmigrations: {\n\t\tcreatePlanner(adapter) {\n\t\t\treturn createPostgresMigrationPlanner(adapter);\n\t\t},\n\t\tcreateRunner(family) {\n\t\t\treturn createPostgresMigrationRunner(family);\n\t\t},\n\t\tcontractToSchema(contract, frameworkComponents) {\n\t\t\tconst expander = buildNativeTypeExpander(frameworkComponents);\n\t\t\treturn contractToPostgresDatabaseSchemaNode(blindCast(contract), {\n\t\t\t\tannotationNamespace: \"pg\",\n\t\t\t\t...ifDefined(\"expandNativeType\", expander),\n\t\t\t\trenderDefault: postgresRenderDefault,\n\t\t\t\tresolveDefault: postgresResolveDefault\n\t\t\t});\n\t\t}\n\t},\n\tcreate() {\n\t\treturn {\n\t\t\tfamilyId: \"sql\",\n\t\t\ttargetId: \"postgres\"\n\t\t};\n\t},\n\t/**\n\t* Direct method for SQL-specific usage.\n\t* @deprecated Use migrations.createPlanner() for CLI compatibility.\n\t*/\n\tcreatePlanner(adapter) {\n\t\treturn createPostgresMigrationPlanner(adapter);\n\t},\n\t/**\n\t* Direct method for SQL-specific usage.\n\t* @deprecated Use migrations.createRunner() for CLI compatibility.\n\t*/\n\tcreateRunner(family) {\n\t\treturn createPostgresMigrationRunner(family);\n\t}\n};\n//#endregion\nexport { postgresTargetDescriptor as default, postgresRenderDefault };\n\n//# sourceMappingURL=control.mjs.map"],"mappings":"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"}
|
package/dist/target.mjs
CHANGED
|
@@ -30,7 +30,7 @@ import { t as renderOps } from "./render-ops-DOsRP0Po-BKn_c_Ia.mjs";
|
|
|
30
30
|
import { t as renderCallsToTypeScript } from "./render-typescript-Dqp1Spgn-B128r1qw.mjs";
|
|
31
31
|
import { t as TypeScriptRenderablePostgresMigration } from "./planner-produced-postgres-migration-D5m8nK6s-CbZ4hlbv.mjs";
|
|
32
32
|
import { t as createPostgresMigrationPlanner } from "./planner-D0uogzvT-1WyGIC5p.mjs";
|
|
33
|
-
import { t as postgresRenderDefault } from "./control-
|
|
33
|
+
import { t as postgresRenderDefault } from "./control-V7OkAC55.mjs";
|
|
34
34
|
import { a as foreignKey, c as primaryKey, i as fn, l as rawSql, n as checkExpression, o as lit, r as col, s as placeholder, t as MigrationCLI, u as unique } from "./migration-PTHAY9Cv.mjs";
|
|
35
35
|
import { t as normalizeSchemaNativeType } from "./native-type-normalizer-yvd3tqv-.mjs";
|
|
36
36
|
export { AddCheckConstraintCall, AddColumnAction, AddColumnCall, AddForeignKeyCall, AddNativeEnumValueCall, AddNotNullColumnWithTempDefaultCall, AddPrimaryKeyCall, AddUniqueCall, AlterColumnTypeCall, CreateExtensionCall, CreateIndexCall, CreateNativeEnumTypeCall, CreatePostgresRlsPolicyCall, CreateSchemaCall, CreateTableCall, DataTransformCall, DisableRowLevelSecurityCall, DropCheckConstraintCall, DropColumnCall, DropConstraintCall, DropDefaultAction, DropDefaultCall, DropIndexCall, DropNativeEnumTypeCall, DropNotNullCall, DropPostgresRlsPolicyCall, DropTableCall, EnableRowLevelSecurityCall, PostgresMigration as Migration, MigrationCLI, PG_BIT_CODEC_ID, PG_BOOL_CODEC_ID, PG_BYTEA_CODEC_ID, PG_CHAR_CODEC_ID, PG_DATE_CODEC_ID, PG_ENUM_CODEC_ID, PG_FLOAT4_CODEC_ID, PG_FLOAT8_CODEC_ID, PG_FLOAT_CODEC_ID, PG_INET_CODEC_ID, PG_INT2_CODEC_ID, PG_INT4_CODEC_ID, PG_INT8_CODEC_ID, PG_INT8_NUMBER_CODEC_ID, PG_INTERVAL_CODEC_ID, PG_INT_CODEC_ID, PG_JSONB_CODEC_ID, PG_JSON_CODEC_ID, PG_NUMERIC_CODEC_ID, PG_TEXT_ARRAY_CODEC_ID, PG_TEXT_CODEC_ID, PG_TIMESTAMPTZ_CODEC_ID, PG_TIMESTAMP_CODEC_ID, PG_TIMETZ_CODEC_ID, PG_TIME_CODEC_ID, PG_UNBOUNDED_INT_CODEC_ID, PG_UUID_CODEC_ID, PG_VARBIT_CODEC_ID, PG_VARCHAR_CODEC_ID, POLICY_OPERATION_PREDICATES, PostgresAlterIndexRename, PostgresAlterPolicyRename, PostgresAlterTable, PostgresCodecDescriptor, PostgresContractSerializer, PostgresContractView, PostgresCreateIndex, PostgresCreatePolicy, PostgresCreateSchema, PostgresCreateTable, PostgresCreateType, PostgresDatabaseSchemaNode, PostgresDdlNode, PostgresDisableRowLevelSecurity, PostgresDropIndex, PostgresDropPolicy, PostgresDropType, PostgresNamespaceSchemaNode, PostgresNativeEnum, PostgresNativeEnumSchemaNode, PostgresPolicySchemaNode, PostgresRlsEnablement, PostgresRlsPolicy, PostgresRole, PostgresRoleSchemaNode, PostgresSchema, PostgresSchemaNodeKind, PostgresTableSchemaNode, PostgresTableSource, PostgresUnboundSchema, RawSqlCall, RenameCheckConstraintCall, RenameIndexCall, RenamePostgresRlsPolicyCall, SQL_CHAR_CODEC_ID, SQL_FLOAT_CODEC_ID, SQL_INT_CODEC_ID, SQL_TEXT_CODEC_ID, SQL_TIMESTAMP_CODEC_ID, SQL_VARCHAR_CODEC_ID, SetDefaultCall, SetNotNullCall, TypeScriptRenderablePostgresMigration, addColumnAction, alterTable, buildBuiltinIdentityValue, buildColumnDefaultSql, buildColumnTypeSql, buildControlTableBootstrapQueries, buildExpectedFormatType, buildPostgresCodecDescriptorRegistry, buildPostgresPlanDiff, buildSchemaLookupMap, buildSignMarkerBootstrapQueries, checkExpression, coalesceSubtreeIssues, col, columnDefaultAst, columnExistsAst, columnNullabilityAst, columnTypeAst, computeContentHash, constraintExistsAst, contractToPostgresDatabaseSchemaNode, createExtension, createPostgresMigrationPlanner, createSchema, createTable, dataTransform, definePostgresCodecs, dropDefaultAction, errorPostgresMigrationStackMissing, escapeLiteral, extensionExistsAst, fn, foreignKey, hasForeignKey, hasIndex, hasUniqueConstraint, indexExistsAst, int4, int8, isPgEnumParams, isPostgresCodecDescriptor, isPostgresSchema, jsonb, lit, noNullValuesAst, normalizeSchemaNativeType, parsePostgresDefault, pgBitColumn, pgBoolColumn, pgCharColumn, pgDateColumn, pgEnumDescriptor, pgFloat4Column, pgFloat8Column, pgFloatColumn, pgInetColumn, pgInt2Column, pgInt4Column, pgInt8Column, pgInt8NumberColumn, pgIntColumn, pgIntervalColumn, pgJsonColumn, pgJsonbColumn, pgNumericColumn, pgTable, pgTextColumn, pgTimeColumn, pgTimestampColumn, pgTimestamptzColumn, pgTimetzColumn, pgUnboundedIntColumn, pgUuidColumn, pgVarbitColumn, pgVarcharColumn, placeholder, planIssues, policyInputFromSerialized, postgresAggregateDescriptors, postgresCodec, postgresCodecDescriptorRegistry, postgresCodecRegistry, postgresCreateNamespace, postgresError, postgresRenderCheckExpressions, postgresRenderDefault, postgresResolveDefault, primaryKey, qualifyName, qualifyTableName, quoteIdentifier, quoteQualifiedName, rawSql, renderCallsToTypeScript, renderDefaultLiteral, renderOps, resolveDdlSchemaForNamespaceStorage, resolveIdentityValue, rlsEnabledAst, rlsPolicyExistsAst, tableExistsAst, tableIsEmptyAst, tablePrimaryKeyAst, text, textArray, timestamptz, toRegclass, unique, validateEnumValueLength };
|
package/dist/target__control.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as postgresTargetDescriptor, t as postgresRenderDefault } from "./control-
|
|
1
|
+
import { n as postgresTargetDescriptor, t as postgresRenderDefault } from "./control-V7OkAC55.mjs";
|
|
2
2
|
export { postgresTargetDescriptor as default, postgresRenderDefault };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/orm-target-postgres",
|
|
3
|
-
"version": "8.0.0-rc.2-dev.
|
|
3
|
+
"version": "8.0.0-rc.2-dev.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@prisma/orm-family-sql": "8.0.0-rc.2-dev.
|
|
13
|
-
"@prisma/orm-framework": "8.0.0-rc.2-dev.
|
|
14
|
-
"@prisma/orm-toolchain": "8.0.0-rc.2-dev.
|
|
12
|
+
"@prisma/orm-family-sql": "8.0.0-rc.2-dev.3",
|
|
13
|
+
"@prisma/orm-framework": "8.0.0-rc.2-dev.3",
|
|
14
|
+
"@prisma/orm-toolchain": "8.0.0-rc.2-dev.3",
|
|
15
15
|
"@standard-schema/spec": "^1.1.0",
|
|
16
16
|
"@types/pg": "8.20.4",
|
|
17
17
|
"arktype": "^2.2.2",
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
"pg-cursor": "^2.21.0"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@internal/adapter-postgres": "8.0.0-rc.2-dev.
|
|
24
|
-
"@internal/driver-postgres": "8.0.0-rc.2-dev.
|
|
25
|
-
"@internal/target-postgres": "8.0.0-rc.2-dev.
|
|
26
|
-
"@repo/tsconfig": "8.0.0-rc.2-dev.
|
|
27
|
-
"@repo/tsdown": "8.0.0-rc.2-dev.
|
|
23
|
+
"@internal/adapter-postgres": "8.0.0-rc.2-dev.3",
|
|
24
|
+
"@internal/driver-postgres": "8.0.0-rc.2-dev.3",
|
|
25
|
+
"@internal/target-postgres": "8.0.0-rc.2-dev.3",
|
|
26
|
+
"@repo/tsconfig": "8.0.0-rc.2-dev.3",
|
|
27
|
+
"@repo/tsdown": "8.0.0-rc.2-dev.3",
|
|
28
28
|
"tsdown": "0.22.14",
|
|
29
29
|
"typescript": "5.9.3",
|
|
30
30
|
"vitest": "4.1.10"
|