graphddb 0.7.9 → 0.8.0

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.
Files changed (45) hide show
  1. package/README.md +6 -6
  2. package/dist/cdc/index.d.ts +389 -4
  3. package/dist/cdc/index.js +4 -3
  4. package/dist/{chunk-ZPNRLOKA.js → chunk-GS4C5VGO.js} +4 -6
  5. package/dist/chunk-HNY2EJPV.js +1184 -0
  6. package/dist/{chunk-NYM7K2ST.js → chunk-I4LEJ4TF.js} +3812 -6724
  7. package/dist/{chunk-PFFPLD4B.js → chunk-L2NEDS7U.js} +725 -2112
  8. package/dist/chunk-L4QRCHRQ.js +278 -0
  9. package/dist/chunk-LGHSZIEE.js +187 -0
  10. package/dist/chunk-N4NWYNGZ.js +1987 -0
  11. package/dist/{chunk-PDUVTYC5.js → chunk-XTWXMOHD.js} +0 -1
  12. package/dist/cli.js +63 -252
  13. package/dist/index.d.ts +23 -1548
  14. package/dist/index.js +100 -1778
  15. package/dist/internal/index.d.ts +84 -0
  16. package/dist/internal/index.js +701 -0
  17. package/dist/{maintenance-view-adapter-BATUh_I8.d.ts → key-DR7_lpyk.d.ts} +538 -2975
  18. package/dist/linter/index.d.ts +39 -6
  19. package/dist/linter/index.js +22 -4
  20. package/dist/{registry-CXhP4TaE.d.ts → linter-C-vypgut.d.ts} +22 -22
  21. package/dist/prepared-artifact-BpPgkXEo.d.ts +281 -0
  22. package/dist/spec/index.d.ts +506 -4
  23. package/dist/spec/index.js +36 -17
  24. package/dist/testing/index.d.ts +2 -2
  25. package/dist/testing/index.js +4 -3
  26. package/dist/transform/index.d.ts +460 -1
  27. package/dist/transform/index.js +2085 -2
  28. package/dist/types-2PMXEn5x.d.ts +1205 -0
  29. package/dist/types-BXLzIcQD.d.ts +450 -0
  30. package/docs/cdc-projection.md +5 -5
  31. package/docs/class-hydration.md +1 -1
  32. package/docs/cqrs-contract.md +28 -20
  33. package/docs/design-patterns.md +5 -5
  34. package/docs/docs-generation.md +6 -6
  35. package/docs/middleware.md +15 -15
  36. package/docs/mutation-command-derivation.md +52 -42
  37. package/docs/prepared-statements.md +14 -14
  38. package/docs/python-bridge.md +113 -66
  39. package/docs/spec.md +153 -124
  40. package/docs/testing.md +9 -8
  41. package/package.json +20 -5
  42. package/dist/chunk-MMVHOUM4.js +0 -24
  43. package/dist/from-change-DanwjE5b.d.ts +0 -327
  44. package/dist/index-CtPJSMrc.d.ts +0 -934
  45. package/dist/relation-depth-Dg3yhl7S.d.ts +0 -36
@@ -1,36 +0,0 @@
1
- import { b as Linter, L as LintRule } from './registry-CXhP4TaE.js';
2
-
3
- /**
4
- * Creates a Linter pre-loaded with rules safe for Entity registration.
5
- *
6
- * Rules included: no-scan, require-limit, gsi-ambiguity, missing-gsi,
7
- * relation-depth, same-partition-preset, plus the Epic #118 Phase 1 maintenance
8
- * validators (issue #126): missing-context, 400kb, hot-partition, fan-out,
9
- * multi-maintainer-same-row. The maintenance validators are no-ops for any
10
- * relation that does not declare `write.maintainedOn`, so unannotated models are
11
- * unaffected. query-boundary is excluded because it flags non-unique GSIs which
12
- * are valid for list() operations; boundary enforcement is handled at runtime by
13
- * the planner's boundary-check.
14
- *
15
- * Also includes cfn-schema-consistency (issue #169): a whole-table validator
16
- * that rejects entities sharing a physical table with an ambiguous base
17
- * KeySchema, inconsistently-shared GSI index names, or more than 20 unioned
18
- * GSIs — the CFn deploy-consistency user-error class, caught statically at
19
- * finalize. It is additive: a single entity on its own table with ≤ 20 GSIs is
20
- * never affected.
21
- */
22
- declare function createDefaultLinter(): Linter;
23
-
24
- declare const noScanRule: LintRule;
25
-
26
- declare const requireLimitRule: LintRule;
27
-
28
- declare const queryBoundaryRule: LintRule;
29
-
30
- declare const gsiAmbiguityRule: LintRule;
31
-
32
- declare const missingGsiRule: LintRule;
33
-
34
- declare const relationDepthRule: LintRule;
35
-
36
- export { requireLimitRule as a, createDefaultLinter as c, gsiAmbiguityRule as g, missingGsiRule as m, noScanRule as n, queryBoundaryRule as q, relationDepthRule as r };