graphddb 0.7.10 → 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.
- package/README.md +6 -6
- package/dist/cdc/index.d.ts +389 -5
- package/dist/cdc/index.js +4 -4
- package/dist/{chunk-AD6ZQTTE.js → chunk-GS4C5VGO.js} +2 -6
- package/dist/{chunk-DFUKGU2Q.js → chunk-HNY2EJPV.js} +216 -229
- package/dist/{chunk-EOJDN3SA.js → chunk-I4LEJ4TF.js} +3744 -6144
- package/dist/{chunk-3ZU2VW3L.js → chunk-L2NEDS7U.js} +582 -781
- package/dist/chunk-L4QRCHRQ.js +278 -0
- package/dist/chunk-LGHSZIEE.js +187 -0
- package/dist/chunk-N4NWYNGZ.js +1987 -0
- package/dist/{chunk-PDUVTYC5.js → chunk-XTWXMOHD.js} +0 -1
- package/dist/cli.js +63 -254
- package/dist/index.d.ts +23 -1550
- package/dist/index.js +94 -1850
- package/dist/internal/index.d.ts +84 -0
- package/dist/internal/index.js +701 -0
- package/dist/{maintenance-view-adapter-BAZ9uBGe.d.ts → key-DR7_lpyk.d.ts} +504 -1910
- package/dist/linter/index.d.ts +39 -7
- package/dist/linter/index.js +22 -4
- package/dist/{registry-LWE54Sdc.d.ts → linter-C-vypgut.d.ts} +22 -22
- package/dist/prepared-artifact-BpPgkXEo.d.ts +281 -0
- package/dist/spec/index.d.ts +506 -5
- package/dist/spec/index.js +22 -18
- package/dist/testing/index.d.ts +2 -3
- package/dist/testing/index.js +4 -4
- package/dist/transform/index.d.ts +1 -1
- package/dist/transform/index.js +4 -4
- package/dist/{types-BQLzTEqh.d.ts → types-2PMXEn5x.d.ts} +8 -10
- package/dist/types-BXLzIcQD.d.ts +450 -0
- package/docs/cdc-projection.md +5 -5
- package/docs/class-hydration.md +1 -1
- package/docs/cqrs-contract.md +28 -20
- package/docs/design-patterns.md +5 -5
- package/docs/docs-generation.md +6 -6
- package/docs/middleware.md +15 -15
- package/docs/mutation-command-derivation.md +52 -42
- package/docs/prepared-statements.md +14 -14
- package/docs/python-bridge.md +96 -65
- package/docs/spec.md +153 -124
- package/docs/testing.md +9 -8
- package/package.json +14 -4
- package/dist/chunk-3UD3XIF2.js +0 -860
- package/dist/chunk-MMVHOUM4.js +0 -24
- package/dist/from-change-Ty95KA8C.d.ts +0 -327
- package/dist/index-Dc7d8mWI.d.ts +0 -1089
- package/dist/relation-depth-BRS513Tq.d.ts +0 -36
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { b as Linter, L as LintRule } from './registry-LWE54Sdc.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 };
|