@empressaio/atom-contract 1.11.0 → 1.12.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 +24 -0
- package/README.md +7 -2
- package/dist/conformance/common.d.ts +1 -1
- package/dist/conformance/common.js +1 -1
- package/dist/property/building-footprint.d.ts +649 -0
- package/dist/property/building-footprint.d.ts.map +1 -0
- package/dist/property/building-footprint.js +86 -0
- package/dist/property/building-footprint.js.map +1 -0
- package/dist/property/common.d.ts +162 -0
- package/dist/property/common.d.ts.map +1 -1
- package/dist/property/common.js +91 -0
- package/dist/property/common.js.map +1 -1
- package/dist/property/fixtures.d.ts +84 -0
- package/dist/property/fixtures.d.ts.map +1 -1
- package/dist/property/fixtures.js +204 -0
- package/dist/property/fixtures.js.map +1 -1
- package/dist/property/index.d.ts +2 -0
- package/dist/property/index.d.ts.map +1 -1
- package/dist/property/index.js +2 -0
- package/dist/property/index.js.map +1 -1
- package/dist/property/road-node.d.ts +0 -3
- package/dist/property/road-node.d.ts.map +1 -1
- package/dist/property/road-node.js +1 -2
- package/dist/property/road-node.js.map +1 -1
- package/dist/property/setback-rule.d.ts +16 -16
- package/dist/property/utility-easement.d.ts +724 -0
- package/dist/property/utility-easement.d.ts.map +1 -0
- package/dist/property/utility-easement.js +81 -0
- package/dist/property/utility-easement.js.map +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@empressaio/atom-contract` (formerly `@hauska/atom-contract`) are documented here.
|
|
4
4
|
|
|
5
|
+
## [1.12.0] - 2026-08-05
|
|
6
|
+
|
|
7
|
+
Additive minor — building footprint and utility easement site-layer atoms (ADR-029 / T3).
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **`building-footprint`** on `./property` — observed improvement geometry atom
|
|
12
|
+
(`reasoningKind: observed`); `sourceTier: cad-authoritative | ml-derived | absent`;
|
|
13
|
+
GeoJSON `Polygon`/`MultiPolygon`; hybrid honest absence (county-coverage
|
|
14
|
+
`verifiedAbsence` row + per-parcel `no-footprint-feature`); ml-derived tier
|
|
15
|
+
mandatory `public-free` + ODC-By in `sourceCitation` (master ruling 2026-08-05).
|
|
16
|
+
- **`utility-easement`** on `./property` — observed GIS easement geometry;
|
|
17
|
+
`easementClass`, `sourceTier: plat-gis-authoritative | county-gis |
|
|
18
|
+
record-extracted | absent`; uniform `public-free`; optional `linkedInstrumentDid`
|
|
19
|
+
bridge to ADR-020.
|
|
20
|
+
- Shared site-layer helpers: `SITE_LAYER_VERIFIED_ABSENCE_SCHEMA`,
|
|
21
|
+
`countyCoverageParcelNodeId`, GeoJSON geometry schemas, Bastrop T3 fixtures.
|
|
22
|
+
- `PROPERTY_CONFORMANCE_TARGET_VERSION = "1.12.0"`.
|
|
23
|
+
|
|
24
|
+
### Explicitly NOT in 1.12.0
|
|
25
|
+
|
|
26
|
+
- ADR-021 `utility-easement` resolver basis enum (deferred post-registration pilot).
|
|
27
|
+
- ADR-012 renderer `focus` mode obligation (deferred post-pilot).
|
|
28
|
+
|
|
5
29
|
## [1.11.0] - 2026-07-25
|
|
6
30
|
|
|
7
31
|
Additive minor — road spine node atom (27c WDLL 3 / depth-engine R1).
|
package/README.md
CHANGED
|
@@ -279,8 +279,9 @@ import {
|
|
|
279
279
|
## Property reasoning atom kinds (master WDLL 3.2–3.6)
|
|
280
280
|
|
|
281
281
|
Parcel buildable-answer chain atoms ship on the `./property` subpath
|
|
282
|
-
(v1.9.0): `zoning-fact`, `setback-rule`, `buildable-envelope
|
|
283
|
-
|
|
282
|
+
(v1.9.0+): `zoning-fact`, `setback-rule`, `buildable-envelope`,
|
|
283
|
+
`parcel-terrain-model`, `road-node`, `building-footprint`, `utility-easement`.
|
|
284
|
+
All are data-tier (`atomTier: "data"`) and default to `public-free`
|
|
284
285
|
accessPolicy when undeclared on the registration.
|
|
285
286
|
|
|
286
287
|
**Calibrated confidence at READ (I-E):** instances MAY carry a
|
|
@@ -309,6 +310,10 @@ import {
|
|
|
309
310
|
| `zoning-fact` | `observed` | `district` OR `absence.no-zoning-stamp` |
|
|
310
311
|
| `setback-rule` | `observed` | `front`/`side`/`rear`, typed `sourceCodeAtomRef`, `matchBasis` |
|
|
311
312
|
| `buildable-envelope` | `derived` | `buildable-envelope-inset-v1`, input refs to fact + rule + geometry |
|
|
313
|
+
| `parcel-terrain-model` | `derived` | `parcel-terrain-mesh-ifc-v1`, format-keyed artifacts |
|
|
314
|
+
| `road-node` | `observed` | `{fips}:road:{osm_way_id}`, centerline + assumed ROW |
|
|
315
|
+
| `building-footprint` | `observed` | `footprintGeometry` OR `absence`/`verifiedAbsence`; `sourceTier` |
|
|
316
|
+
| `utility-easement` | `observed` | `easementGeometry`, `easementClass`, `public-free` always |
|
|
312
317
|
|
|
313
318
|
ICC royalties on code citations accrue via core `ObligationAtomInstance`
|
|
314
319
|
rows — no standalone `SourceAttribution` type.
|
|
@@ -22,7 +22,7 @@ export type ReasoningConformanceTargetVersion = typeof REASONING_CONFORMANCE_TAR
|
|
|
22
22
|
/**
|
|
23
23
|
* Pin property atom kind adopters to this semver (master WDLL 3.2–3.6).
|
|
24
24
|
*/
|
|
25
|
-
export declare const PROPERTY_CONFORMANCE_TARGET_VERSION: "1.
|
|
25
|
+
export declare const PROPERTY_CONFORMANCE_TARGET_VERSION: "1.12.0";
|
|
26
26
|
export type PropertyConformanceTargetVersion = typeof PROPERTY_CONFORMANCE_TARGET_VERSION;
|
|
27
27
|
/** Data-level atoms carry signed history; app-level workflow containers skip it. */
|
|
28
28
|
export type AtomTier = "data" | "app";
|
|
@@ -19,7 +19,7 @@ export const REASONING_CONFORMANCE_TARGET_VERSION = "1.8.0";
|
|
|
19
19
|
/**
|
|
20
20
|
* Pin property atom kind adopters to this semver (master WDLL 3.2–3.6).
|
|
21
21
|
*/
|
|
22
|
-
export const PROPERTY_CONFORMANCE_TARGET_VERSION = "1.
|
|
22
|
+
export const PROPERTY_CONFORMANCE_TARGET_VERSION = "1.12.0";
|
|
23
23
|
export const ATOM_TIER_VALUES = ["data", "app"];
|
|
24
24
|
export const ACCESS_POLICY_VALUES = [
|
|
25
25
|
"public-free",
|