@empressaio/atom-contract 1.30.0 → 1.31.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 +30 -0
- package/dist/property/boundary-edge.d.ts +802 -0
- package/dist/property/boundary-edge.d.ts.map +1 -0
- package/dist/property/boundary-edge.js +145 -0
- package/dist/property/boundary-edge.js.map +1 -0
- package/dist/property/buildable-envelope.d.ts +4 -4
- package/dist/property/building-footprint.d.ts +4 -4
- package/dist/property/cad-parcel-roll.d.ts +4 -4
- package/dist/property/fixtures.d.ts +13 -0
- package/dist/property/fixtures.d.ts.map +1 -1
- package/dist/property/fixtures.js +96 -0
- package/dist/property/fixtures.js.map +1 -1
- package/dist/property/flood-hazard-fact.d.ts +4 -4
- package/dist/property/index.d.ts +1 -0
- package/dist/property/index.d.ts.map +1 -1
- package/dist/property/index.js +1 -0
- package/dist/property/index.js.map +1 -1
- package/dist/property/land-use-fact.d.ts +4 -4
- package/dist/property/owner-fact.d.ts +4 -4
- package/dist/property/parcel-node.d.ts +4 -4
- package/dist/property/parcel-terrain-model.d.ts +4 -4
- package/dist/property/rail-corridor-fact.d.ts +4 -4
- package/dist/property/road-node.d.ts +8 -8
- package/dist/property/rrc-pipeline-fact.d.ts +4 -4
- package/dist/property/setback-rule.d.ts +4 -4
- package/dist/property/special-district-fact.d.ts +4 -4
- package/dist/property/utility-easement.d.ts +4 -4
- package/dist/property/well-fact.d.ts +4 -4
- package/dist/property/zoning-fact.d.ts +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,36 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@empressaio/atom-contract` (formerly `@hauska/atom-contract`) are documented here.
|
|
4
4
|
|
|
5
|
+
## [1.31.0] - 2026-09-07
|
|
6
|
+
|
|
7
|
+
Additive minor — property boundary edge atom (27f S2-U2 / WDLL 4-5).
|
|
8
|
+
Per-parcel boundary edges (front/side/rear/side_corner) with role,
|
|
9
|
+
adjacency classification, resolved setback (or typed absence), and
|
|
10
|
+
local-ENU interior-frame geometry. A parcel normally carries several
|
|
11
|
+
of these, one per boundary side, unlike most other property atom
|
|
12
|
+
kinds which are one-per-parcel. Real writer and serving code have
|
|
13
|
+
existed in hauska-engine since before this registration — this
|
|
14
|
+
package previously had no published shape for it at all (see
|
|
15
|
+
hauska-engine#394, which registers the type in `PROPERTY_ENTITY_TYPES`,
|
|
16
|
+
and hauska-mcp-server#81, which mirrors it into
|
|
17
|
+
`ENGINE_PROPERTY_ENTITY_TYPES_MIRROR` so `get_property_atom_chain`
|
|
18
|
+
can reach it).
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
|
|
22
|
+
- **`BoundaryEdgeAtomInstance`**, **`BOUNDARY_EDGE_SCHEMA`** on `.` and
|
|
23
|
+
`./property`.
|
|
24
|
+
- `createBoundaryEdge`, `boundaryEdgeIdFromParts`,
|
|
25
|
+
`BOUNDARY_EDGE_ID_PATTERN`.
|
|
26
|
+
- `BoundaryEdgeRole`, `BoundaryAdjacencyKind`, `BoundaryFrontBasis`,
|
|
27
|
+
`BoundaryFacingRoad`, `BoundaryResolvedSetback`,
|
|
28
|
+
`BoundarySetbackAbsence` / `BOUNDARY_SETBACK_ABSENCE_KINDS`,
|
|
29
|
+
`BoundaryInteriorFrame`, `BoundaryPropertyLineTags`.
|
|
30
|
+
- Fixtures `BASTROP_BOUNDARY_EDGE_FRONT_FIXTURE` (resolved setback,
|
|
31
|
+
situs-street-matched front edge) and
|
|
32
|
+
`BASTROP_BOUNDARY_EDGE_NO_SETBACK_FIXTURE` (typed setback absence,
|
|
33
|
+
no facing road).
|
|
34
|
+
|
|
5
35
|
## [1.30.0] - 2026-08-27
|
|
6
36
|
|
|
7
37
|
Additive minor — Track 2.12 access as two fields (F-15).
|