@prisma/orm-family-sql 8.0.0-rc.11-dev.30 → 8.0.0-rc.11-dev.32

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.
@@ -1,7 +1,7 @@
1
1
  import { d as validateSqlStorageConsistency, l as validateModelStorageReferences } from "./validators-y6eLjhcb.mjs";
2
2
  import { t as deriveValueSetFromEntity } from "./value-set-derivation-hook-Di9JZ0X7.mjs";
3
3
  import { n as buildSqlContractFromDefinition, t as applySqlSpecifierControlPolicy } from "./derived-checks-DGjY5t7S-DofD5V_2.mjs";
4
- import { a as normalizeReferentialAction, n as buildEntityTypesByDiscriminator, o as numberLiteralDefault, r as indexFkRelations, s as resolveFieldTypeDescriptor, t as applyBackrelationCandidates } from "./interpreter-CRJpMQRR-BjjPK_dV.mjs";
4
+ import { a as normalizeReferentialAction, n as buildEntityTypesByDiscriminator, o as numberLiteralDefault, r as indexFkRelations, s as resolveFieldTypeDescriptor, t as applyBackrelationCandidates } from "./interpreter-9Ru2E-MH-CQdWmnh8.mjs";
5
5
  import { isStructuredError } from "@prisma/orm-framework/utils/structured-error";
6
6
  import { collectScalarTypeConstructors, instantiateAuthoringEntityType } from "@prisma/orm-framework/components/authoring";
7
7
  import { InternalError } from "@prisma/orm-framework/utils/internal-error";
@@ -921,7 +921,7 @@ function interpretPrisma7Documents(input) {
921
921
  break;
922
922
  default: unsupported(block.keyword, keywordPslSpan(block.node.syntax, block.keyword, sourceFile));
923
923
  }
924
- for (const namespace of Object.values(table.topLevel.namespaces)) unsupported("namespace", namespace.span);
924
+ for (const namespace of Object.values(table.topLevel.namespaces)) for (const { span } of namespace.declarations) unsupported("namespace", span);
925
925
  for (const compositeType of Object.values(table.topLevel.compositeTypes)) unsupported("type", compositeType.span);
926
926
  for (const namedType of Object.values(table.topLevel.namedTypes)) unsupported("types", namedType.span);
927
927
  for (const symbol of Object.values(table.topLevel.models)) {