@empressaio/atom-contract 1.13.0 → 1.15.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/CHANGELOG.md +62 -1
- package/dist/conformance/common.d.ts +1 -1
- package/dist/conformance/common.js +1 -1
- package/dist/property/buildable-envelope.d.ts +182 -8
- package/dist/property/buildable-envelope.d.ts.map +1 -1
- package/dist/property/buildable-envelope.js +50 -26
- package/dist/property/buildable-envelope.js.map +1 -1
- package/dist/property/building-footprint.d.ts +28 -28
- package/dist/property/cad-parcel-roll.d.ts +710 -0
- package/dist/property/cad-parcel-roll.d.ts.map +1 -0
- package/dist/property/cad-parcel-roll.js +147 -0
- package/dist/property/cad-parcel-roll.js.map +1 -0
- package/dist/property/common.d.ts +80 -0
- package/dist/property/common.d.ts.map +1 -1
- package/dist/property/common.js +90 -0
- package/dist/property/common.js.map +1 -1
- package/dist/property/fixtures.d.ts +227 -0
- package/dist/property/fixtures.d.ts.map +1 -1
- package/dist/property/fixtures.js +440 -0
- package/dist/property/fixtures.js.map +1 -1
- package/dist/property/flood-hazard-fact.d.ts +610 -0
- package/dist/property/flood-hazard-fact.d.ts.map +1 -0
- package/dist/property/flood-hazard-fact.js +102 -0
- package/dist/property/flood-hazard-fact.js.map +1 -0
- package/dist/property/index.d.ts +3 -0
- package/dist/property/index.d.ts.map +1 -1
- package/dist/property/index.js +3 -0
- package/dist/property/index.js.map +1 -1
- package/dist/property/land-use-fact.d.ts +602 -0
- package/dist/property/land-use-fact.d.ts.map +1 -0
- package/dist/property/land-use-fact.js +87 -0
- package/dist/property/land-use-fact.js.map +1 -0
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* Parcel ids are real Central-TX node anchors for grading notes.
|
|
5
5
|
*/
|
|
6
6
|
import type { BuildableEnvelopeAtomInstance } from "./buildable-envelope.js";
|
|
7
|
+
import { type BuildableEnvelopeAbsenceKind } from "./common.js";
|
|
7
8
|
import type { BuildingFootprintAtomInstance } from "./building-footprint.js";
|
|
8
9
|
import type { ParcelTerrainModelAtomInstance } from "./parcel-terrain-model.js";
|
|
9
10
|
import type { SetbackRuleAtomInstance } from "./setback-rule.js";
|
|
@@ -11,6 +12,9 @@ import type { ZoningFactAtomInstance } from "./zoning-fact.js";
|
|
|
11
12
|
import type { RoadNodeAtomInstance } from "./road-node.js";
|
|
12
13
|
import type { UtilityEasementAtomInstance } from "./utility-easement.js";
|
|
13
14
|
import type { ParcelNodeAtomInstance } from "./parcel-node.js";
|
|
15
|
+
import type { FloodHazardFactAtomInstance } from "./flood-hazard-fact.js";
|
|
16
|
+
import type { CadParcelRollAtomInstance } from "./cad-parcel-roll.js";
|
|
17
|
+
import type { LandUseFactAtomInstance } from "./land-use-fact.js";
|
|
14
18
|
/**
|
|
15
19
|
* Hays County (48209) — parcel 48209:156346, RS district from city GIS stamp.
|
|
16
20
|
* WDLL 3.3 zoning FACT probe.
|
|
@@ -32,6 +36,63 @@ export declare const FALLBACK_SETBACK_RULE_FIXTURE: SetbackRuleAtomInstance;
|
|
|
32
36
|
* Inputs: zoning-fact + setback-rule + geometry + front-edge reference fields.
|
|
33
37
|
*/
|
|
34
38
|
export declare const HAYS_BUILDABLE_ENVELOPE_FIXTURE: BuildableEnvelopeAtomInstance;
|
|
39
|
+
/** Default provenance scope for honest envelope declines (evaluation sources). */
|
|
40
|
+
export declare const ENVELOPE_DECLINE_PROVENANCE_SCOPE: readonly ["depth-warm-verify", "txgio-parcel", "zoning-fact"];
|
|
41
|
+
/**
|
|
42
|
+
* Build a contract-shaped buildable-envelope decline for one live absence kind.
|
|
43
|
+
* Decline envelopes cite zoning-fact only — setback/geometry may not exist.
|
|
44
|
+
*/
|
|
45
|
+
export declare function buildEnvelopeDeclineFixture(kind: BuildableEnvelopeAbsenceKind, reason?: string): BuildableEnvelopeAtomInstance;
|
|
46
|
+
/** Representative live decline — superseded prop_id (R27 poster case). */
|
|
47
|
+
export declare const BASTROP_ENVELOPE_SUPERSEDED_DECLINE_FIXTURE: BuildableEnvelopeAtomInstance;
|
|
48
|
+
/** Cascade unzoned cohort decline. */
|
|
49
|
+
export declare const BASTROP_ENVELOPE_UNZONED_DECLINE_FIXTURE: BuildableEnvelopeAtomInstance;
|
|
50
|
+
/** Negative — absence without verifiedAbsence (must fail closed). */
|
|
51
|
+
export declare const NEGATIVE_ENVELOPE_ABSENCE_NO_VERIFIED: {
|
|
52
|
+
entityType: "buildable-envelope";
|
|
53
|
+
atomDid: string;
|
|
54
|
+
parcelNodeId: string;
|
|
55
|
+
reasoningChain: {
|
|
56
|
+
reasoningKind: "derived";
|
|
57
|
+
derivationMethod: "buildable-envelope-inset-v1";
|
|
58
|
+
inputAtomRefs: {
|
|
59
|
+
atomDid: string;
|
|
60
|
+
role: "fact";
|
|
61
|
+
entityType: string;
|
|
62
|
+
}[];
|
|
63
|
+
};
|
|
64
|
+
absence: {
|
|
65
|
+
kind: "no-setback-row";
|
|
66
|
+
reason: string;
|
|
67
|
+
};
|
|
68
|
+
accessPolicy: "public-free";
|
|
69
|
+
sourceCitation: string;
|
|
70
|
+
extractedAt: string;
|
|
71
|
+
atomTier: "data";
|
|
72
|
+
};
|
|
73
|
+
/** Negative — verifiedAbsence without absence kind. */
|
|
74
|
+
export declare const NEGATIVE_ENVELOPE_VERIFIED_WITHOUT_ABSENCE: {
|
|
75
|
+
entityType: "buildable-envelope";
|
|
76
|
+
atomDid: string;
|
|
77
|
+
parcelNodeId: string;
|
|
78
|
+
reasoningChain: {
|
|
79
|
+
reasoningKind: "derived";
|
|
80
|
+
derivationMethod: "buildable-envelope-inset-v1";
|
|
81
|
+
inputAtomRefs: {
|
|
82
|
+
atomDid: string;
|
|
83
|
+
role: "fact";
|
|
84
|
+
entityType: string;
|
|
85
|
+
}[];
|
|
86
|
+
};
|
|
87
|
+
verifiedAbsence: {
|
|
88
|
+
evaluated: true;
|
|
89
|
+
provenanceScope: string[];
|
|
90
|
+
};
|
|
91
|
+
accessPolicy: "public-free";
|
|
92
|
+
sourceCitation: string;
|
|
93
|
+
extractedAt: string;
|
|
94
|
+
atomTier: "data";
|
|
95
|
+
};
|
|
35
96
|
/** Negative — bare string citation instead of AtomInputRef (WDLL 3.5 fail). */
|
|
36
97
|
export declare const NEGATIVE_SETBACK_BARE_STRING_CITATION: {
|
|
37
98
|
entityType: "setback-rule";
|
|
@@ -383,4 +444,170 @@ export declare const NEGATIVE_EASEMENT_NON_PUBLIC_POLICY: {
|
|
|
383
444
|
evaluatedAt: string;
|
|
384
445
|
atomTier: "data";
|
|
385
446
|
};
|
|
447
|
+
/** Bastrop 48021:27303 — SFHA true, Zone AE present finding. */
|
|
448
|
+
export declare const BASTROP_FLOOD_SFHA_FIXTURE: FloodHazardFactAtomInstance;
|
|
449
|
+
/** Hays 48209:156346 — outside mapped SFHA (Zone X by omission), present not absent. */
|
|
450
|
+
export declare const HAYS_FLOOD_OUTSIDE_SFHA_FIXTURE: FloodHazardFactAtomInstance;
|
|
451
|
+
/** Per-parcel no geocode / off-coverage absence. */
|
|
452
|
+
export declare const BASTROP_FLOOD_NO_COVERAGE_FIXTURE: FloodHazardFactAtomInstance;
|
|
453
|
+
/** County-level verified absence — NFHL not published for county. */
|
|
454
|
+
export declare const COUNTY_FLOOD_VERIFIED_ABSENCE_FIXTURE: FloodHazardFactAtomInstance;
|
|
455
|
+
/** Negative — SFHA finding and absence together. */
|
|
456
|
+
export declare const NEGATIVE_FLOOD_SFHA_AND_ABSENCE: {
|
|
457
|
+
entityType: "flood-hazard-fact";
|
|
458
|
+
atomDid: string;
|
|
459
|
+
parcelNodeId: string;
|
|
460
|
+
reasoningChain: {
|
|
461
|
+
reasoningKind: "observed";
|
|
462
|
+
};
|
|
463
|
+
sourceTier: "fema-nfhl";
|
|
464
|
+
inSpecialFloodHazardArea: boolean;
|
|
465
|
+
floodZone: string;
|
|
466
|
+
absence: {
|
|
467
|
+
kind: "no-flood-coverage";
|
|
468
|
+
reason: string;
|
|
469
|
+
};
|
|
470
|
+
accessPolicy: "public-free";
|
|
471
|
+
sourceCitation: string;
|
|
472
|
+
extractedAt: string;
|
|
473
|
+
verificationStatus: "machine";
|
|
474
|
+
sourceAdapter: string;
|
|
475
|
+
evaluatedAt: string;
|
|
476
|
+
atomTier: "data";
|
|
477
|
+
};
|
|
478
|
+
/** Negative — absent tier without verifiedAbsence. */
|
|
479
|
+
export declare const NEGATIVE_FLOOD_ABSENT_NO_VERIFIED: {
|
|
480
|
+
entityType: "flood-hazard-fact";
|
|
481
|
+
atomDid: string;
|
|
482
|
+
parcelNodeId: string;
|
|
483
|
+
reasoningChain: {
|
|
484
|
+
reasoningKind: "observed";
|
|
485
|
+
};
|
|
486
|
+
sourceTier: "absent";
|
|
487
|
+
accessPolicy: "public-free";
|
|
488
|
+
sourceCitation: string;
|
|
489
|
+
extractedAt: string;
|
|
490
|
+
verificationStatus: "machine";
|
|
491
|
+
sourceAdapter: string;
|
|
492
|
+
evaluatedAt: string;
|
|
493
|
+
atomTier: "data";
|
|
494
|
+
};
|
|
495
|
+
/** Negative — absent tier carrying flood zone claims. */
|
|
496
|
+
export declare const NEGATIVE_FLOOD_ABSENT_WITH_CLAIM: {
|
|
497
|
+
entityType: "flood-hazard-fact";
|
|
498
|
+
atomDid: string;
|
|
499
|
+
parcelNodeId: string;
|
|
500
|
+
reasoningChain: {
|
|
501
|
+
reasoningKind: "observed";
|
|
502
|
+
};
|
|
503
|
+
sourceTier: "absent";
|
|
504
|
+
inSpecialFloodHazardArea: boolean;
|
|
505
|
+
verifiedAbsence: {
|
|
506
|
+
evaluated: true;
|
|
507
|
+
provenanceScope: string[];
|
|
508
|
+
};
|
|
509
|
+
accessPolicy: "public-free";
|
|
510
|
+
sourceCitation: string;
|
|
511
|
+
extractedAt: string;
|
|
512
|
+
verificationStatus: "machine";
|
|
513
|
+
sourceAdapter: string;
|
|
514
|
+
evaluatedAt: string;
|
|
515
|
+
atomTier: "data";
|
|
516
|
+
};
|
|
517
|
+
/** Bastrop 48021:27303 — full CAD roll row with owner match. */
|
|
518
|
+
export declare const BASTROP_CAD_ROLL_FIXTURE: CadParcelRollAtomInstance;
|
|
519
|
+
/** Join hold — no owner fields allowed. */
|
|
520
|
+
export declare const BASTROP_CAD_ROLL_JOIN_HOLD_FIXTURE: CadParcelRollAtomInstance;
|
|
521
|
+
/** County-level verified absence — no CAD roll published. */
|
|
522
|
+
export declare const COUNTY_CAD_ROLL_ABSENCE_FIXTURE: CadParcelRollAtomInstance;
|
|
523
|
+
/** Negative — join hold with owner fields (wrong owner worse than missing). */
|
|
524
|
+
export declare const NEGATIVE_CAD_ROLL_OWNER_ON_JOIN_HOLD: {
|
|
525
|
+
entityType: "cad-parcel-roll";
|
|
526
|
+
atomDid: string;
|
|
527
|
+
parcelNodeId: string;
|
|
528
|
+
taxYear: number;
|
|
529
|
+
countyFips: string;
|
|
530
|
+
propId: string;
|
|
531
|
+
keyKind: "prop_id";
|
|
532
|
+
joinPassedOwnerMatchGate: boolean;
|
|
533
|
+
reasoningChain: {
|
|
534
|
+
reasoningKind: "observed";
|
|
535
|
+
};
|
|
536
|
+
sourceTier: "cad-authoritative";
|
|
537
|
+
ownerName: string;
|
|
538
|
+
situsAddress: string;
|
|
539
|
+
sourceFile: string;
|
|
540
|
+
accessPolicy: "public-free";
|
|
541
|
+
sourceCitation: string;
|
|
542
|
+
extractedAt: string;
|
|
543
|
+
verificationStatus: "machine";
|
|
544
|
+
sourceAdapter: string;
|
|
545
|
+
evaluatedAt: string;
|
|
546
|
+
atomTier: "data";
|
|
547
|
+
};
|
|
548
|
+
/** Negative — present tier with empty row (no claims, no absence). */
|
|
549
|
+
export declare const NEGATIVE_CAD_ROLL_EMPTY_PRESENT: {
|
|
550
|
+
entityType: "cad-parcel-roll";
|
|
551
|
+
atomDid: string;
|
|
552
|
+
parcelNodeId: string;
|
|
553
|
+
taxYear: number;
|
|
554
|
+
countyFips: string;
|
|
555
|
+
propId: string;
|
|
556
|
+
keyKind: "prop_id";
|
|
557
|
+
joinPassedOwnerMatchGate: boolean;
|
|
558
|
+
reasoningChain: {
|
|
559
|
+
reasoningKind: "observed";
|
|
560
|
+
};
|
|
561
|
+
sourceTier: "cad-authoritative";
|
|
562
|
+
sourceFile: string;
|
|
563
|
+
accessPolicy: "public-free";
|
|
564
|
+
sourceCitation: string;
|
|
565
|
+
extractedAt: string;
|
|
566
|
+
verificationStatus: "machine";
|
|
567
|
+
sourceAdapter: string;
|
|
568
|
+
evaluatedAt: string;
|
|
569
|
+
atomTier: "data";
|
|
570
|
+
};
|
|
571
|
+
/** Bastrop 48021:27303 — A1 residential from CAD property_use_code. */
|
|
572
|
+
export declare const BASTROP_LAND_USE_FIXTURE: LandUseFactAtomInstance;
|
|
573
|
+
/** Honest absence — CAD row exists but no land use code. */
|
|
574
|
+
export declare const BASTROP_LAND_USE_NO_CODE_FIXTURE: LandUseFactAtomInstance;
|
|
575
|
+
/** Negative — present tier without landUseCode or absence. */
|
|
576
|
+
export declare const NEGATIVE_LAND_USE_EMPTY_PRESENT: {
|
|
577
|
+
entityType: "land-use-fact";
|
|
578
|
+
atomDid: string;
|
|
579
|
+
parcelNodeId: string;
|
|
580
|
+
taxYear: number;
|
|
581
|
+
reasoningChain: {
|
|
582
|
+
reasoningKind: "observed";
|
|
583
|
+
};
|
|
584
|
+
sourceTier: "cad-authoritative";
|
|
585
|
+
landUseLabel: string;
|
|
586
|
+
accessPolicy: "public-free";
|
|
587
|
+
sourceCitation: string;
|
|
588
|
+
extractedAt: string;
|
|
589
|
+
verificationStatus: "machine";
|
|
590
|
+
sourceAdapter: string;
|
|
591
|
+
evaluatedAt: string;
|
|
592
|
+
atomTier: "data";
|
|
593
|
+
};
|
|
594
|
+
/** Negative — cotality tier must not exist (schema rejects unknown enum). */
|
|
595
|
+
export declare const NEGATIVE_LAND_USE_COTALITY_TIER: {
|
|
596
|
+
entityType: "land-use-fact";
|
|
597
|
+
atomDid: string;
|
|
598
|
+
parcelNodeId: string;
|
|
599
|
+
taxYear: number;
|
|
600
|
+
reasoningChain: {
|
|
601
|
+
reasoningKind: "observed";
|
|
602
|
+
};
|
|
603
|
+
sourceTier: "cotality";
|
|
604
|
+
landUseCode: string;
|
|
605
|
+
accessPolicy: "public-free";
|
|
606
|
+
sourceCitation: string;
|
|
607
|
+
extractedAt: string;
|
|
608
|
+
verificationStatus: "machine";
|
|
609
|
+
sourceAdapter: string;
|
|
610
|
+
evaluatedAt: string;
|
|
611
|
+
atomTier: "data";
|
|
612
|
+
};
|
|
386
613
|
//# sourceMappingURL=fixtures.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fixtures.d.ts","sourceRoot":"","sources":["../../src/property/fixtures.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AASH,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,yBAAyB,CAAC;AAE7E,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,yBAAyB,CAAC;AAC7E,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,2BAA2B,CAAC;AAKhF,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,mBAAmB,CAAC;AACjE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,kBAAkB,CAAC;AAC/D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAE3D,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,uBAAuB,CAAC;AACzE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"fixtures.d.ts","sourceRoot":"","sources":["../../src/property/fixtures.ts"],"names":[],"mappings":"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"}
|