@empressaio/atom-contract 1.8.0 → 1.10.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 (39) hide show
  1. package/CHANGELOG.md +71 -0
  2. package/README.md +39 -0
  3. package/dist/conformance/common.d.ts +5 -0
  4. package/dist/conformance/common.d.ts.map +1 -1
  5. package/dist/conformance/common.js +4 -0
  6. package/dist/conformance/common.js.map +1 -1
  7. package/dist/conformance/index.d.ts +1 -1
  8. package/dist/conformance/index.d.ts.map +1 -1
  9. package/dist/conformance/index.js +1 -1
  10. package/dist/conformance/index.js.map +1 -1
  11. package/dist/property/buildable-envelope.d.ts +464 -0
  12. package/dist/property/buildable-envelope.d.ts.map +1 -0
  13. package/dist/property/buildable-envelope.js +63 -0
  14. package/dist/property/buildable-envelope.js.map +1 -0
  15. package/dist/property/common.d.ts +513 -0
  16. package/dist/property/common.d.ts.map +1 -0
  17. package/dist/property/common.js +66 -0
  18. package/dist/property/common.js.map +1 -0
  19. package/dist/property/fixtures.d.ts +141 -0
  20. package/dist/property/fixtures.d.ts.map +1 -0
  21. package/dist/property/fixtures.js +438 -0
  22. package/dist/property/fixtures.js.map +1 -0
  23. package/dist/property/index.d.ts +24 -0
  24. package/dist/property/index.d.ts.map +1 -0
  25. package/dist/property/index.js +20 -0
  26. package/dist/property/index.js.map +1 -0
  27. package/dist/property/parcel-terrain-model.d.ts +922 -0
  28. package/dist/property/parcel-terrain-model.d.ts.map +1 -0
  29. package/dist/property/parcel-terrain-model.js +117 -0
  30. package/dist/property/parcel-terrain-model.js.map +1 -0
  31. package/dist/property/setback-rule.d.ts +887 -0
  32. package/dist/property/setback-rule.d.ts.map +1 -0
  33. package/dist/property/setback-rule.js +53 -0
  34. package/dist/property/setback-rule.js.map +1 -0
  35. package/dist/property/zoning-fact.d.ts +538 -0
  36. package/dist/property/zoning-fact.d.ts.map +1 -0
  37. package/dist/property/zoning-fact.js +48 -0
  38. package/dist/property/zoning-fact.js.map +1 -0
  39. package/package.json +5 -1
@@ -0,0 +1,922 @@
1
+ /**
2
+ * Parcel terrain-export DERIVED atom — mesh + IFC + CAD formats off ONE triangulation.
3
+ *
4
+ * WDLL: 2026-07-23_terrain_ifc_spine_lift_WDLL (amended CAD export set).
5
+ * DEM/topo is a referenced continuous field (not atomized). Artifacts are
6
+ * keyed by format param; callers request one or more formats per export.
7
+ */
8
+ import { z } from "zod";
9
+ import type { AccessPolicy } from "../registration.js";
10
+ import type { AtomTier } from "../conformance/common.js";
11
+ import type { AtomInputRef } from "../reasoning-chain.js";
12
+ import type { ReasoningChain } from "../reasoning-chain.js";
13
+ import type { ReasoningReadContract } from "../read-contract/reasoning-axes.js";
14
+ import { type WidthedConfidence } from "../read-contract/common.js";
15
+ /** Canonical derivation method — shared triangulation, N emitters. */
16
+ export declare const PARCEL_TERRAIN_DERIVATION_METHOD: "parcel-terrain-mesh-ifc-v1";
17
+ /** Paid default for terrain-export (WDLL accessPolicy public-paid). */
18
+ export declare const TERRAIN_DEFAULT_ACCESS_POLICY: AccessPolicy;
19
+ /** Format params for the single terrain-export atom. */
20
+ export declare const TERRAIN_EXPORT_FORMATS: readonly ["glb", "ifc", "dxf-3dface", "dxf-contour", "landxml-tin"];
21
+ export type TerrainExportFormat = (typeof TERRAIN_EXPORT_FORMATS)[number];
22
+ export declare const TERRAIN_EXPORT_FORMAT_SCHEMA: z.ZodEnum<["glb", "ifc", "dxf-3dface", "dxf-contour", "landxml-tin"]>;
23
+ export interface TerrainArtifactRef {
24
+ /** Format this artifact was emitted for. */
25
+ format: TerrainExportFormat;
26
+ /** Content-addressed or object-store path (CID-shaped preferred). */
27
+ ref: string;
28
+ /** Byte length when known. */
29
+ byteCount?: number;
30
+ /** Face/mesh formats: vertex count of the shared triangulation. */
31
+ vertexCount?: number;
32
+ /** Face/mesh formats: triangle count of the shared triangulation. */
33
+ triangleCount?: number;
34
+ /** IFC-only: schema version (expect IFC4). */
35
+ ifcSchemaVersion?: string;
36
+ /** IFC-only: geometry primitive (expect IfcTriangulatedFaceSet). */
37
+ geometryPrimitive?: string;
38
+ /** Contour-only: elevation interval meters used for extraction. */
39
+ contourIntervalMeters?: number;
40
+ /** Contour-only: number of polylines emitted. */
41
+ contourPolylineCount?: number;
42
+ /** Honest deferral when a format is not yet shipped. */
43
+ deferred?: boolean;
44
+ deferredReason?: string;
45
+ }
46
+ export declare const TERRAIN_ARTIFACT_REF_SCHEMA: z.ZodEffects<z.ZodObject<{
47
+ format: z.ZodEnum<["glb", "ifc", "dxf-3dface", "dxf-contour", "landxml-tin"]>;
48
+ ref: z.ZodString;
49
+ byteCount: z.ZodOptional<z.ZodNumber>;
50
+ vertexCount: z.ZodOptional<z.ZodNumber>;
51
+ triangleCount: z.ZodOptional<z.ZodNumber>;
52
+ ifcSchemaVersion: z.ZodOptional<z.ZodString>;
53
+ geometryPrimitive: z.ZodOptional<z.ZodString>;
54
+ contourIntervalMeters: z.ZodOptional<z.ZodNumber>;
55
+ contourPolylineCount: z.ZodOptional<z.ZodNumber>;
56
+ deferred: z.ZodOptional<z.ZodBoolean>;
57
+ deferredReason: z.ZodOptional<z.ZodString>;
58
+ }, "strict", z.ZodTypeAny, {
59
+ format: "glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin";
60
+ ref: string;
61
+ byteCount?: number | undefined;
62
+ vertexCount?: number | undefined;
63
+ triangleCount?: number | undefined;
64
+ ifcSchemaVersion?: string | undefined;
65
+ geometryPrimitive?: string | undefined;
66
+ contourIntervalMeters?: number | undefined;
67
+ contourPolylineCount?: number | undefined;
68
+ deferred?: boolean | undefined;
69
+ deferredReason?: string | undefined;
70
+ }, {
71
+ format: "glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin";
72
+ ref: string;
73
+ byteCount?: number | undefined;
74
+ vertexCount?: number | undefined;
75
+ triangleCount?: number | undefined;
76
+ ifcSchemaVersion?: string | undefined;
77
+ geometryPrimitive?: string | undefined;
78
+ contourIntervalMeters?: number | undefined;
79
+ contourPolylineCount?: number | undefined;
80
+ deferred?: boolean | undefined;
81
+ deferredReason?: string | undefined;
82
+ }>, {
83
+ format: "glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin";
84
+ ref: string;
85
+ byteCount?: number | undefined;
86
+ vertexCount?: number | undefined;
87
+ triangleCount?: number | undefined;
88
+ ifcSchemaVersion?: string | undefined;
89
+ geometryPrimitive?: string | undefined;
90
+ contourIntervalMeters?: number | undefined;
91
+ contourPolylineCount?: number | undefined;
92
+ deferred?: boolean | undefined;
93
+ deferredReason?: string | undefined;
94
+ }, {
95
+ format: "glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin";
96
+ ref: string;
97
+ byteCount?: number | undefined;
98
+ vertexCount?: number | undefined;
99
+ triangleCount?: number | undefined;
100
+ ifcSchemaVersion?: string | undefined;
101
+ geometryPrimitive?: string | undefined;
102
+ contourIntervalMeters?: number | undefined;
103
+ contourPolylineCount?: number | undefined;
104
+ deferred?: boolean | undefined;
105
+ deferredReason?: string | undefined;
106
+ }>;
107
+ export interface TerrainCoverage {
108
+ coverageFraction: number;
109
+ nodataCount: number;
110
+ totalCells: number;
111
+ resolutionMetersRequested?: number | null;
112
+ resolutionMetersActual?: number | null;
113
+ touchesNodata?: boolean;
114
+ }
115
+ export declare const TERRAIN_COVERAGE_SCHEMA: z.ZodObject<{
116
+ coverageFraction: z.ZodNumber;
117
+ nodataCount: z.ZodNumber;
118
+ totalCells: z.ZodNumber;
119
+ resolutionMetersRequested: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
120
+ resolutionMetersActual: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
121
+ touchesNodata: z.ZodOptional<z.ZodBoolean>;
122
+ }, "strict", z.ZodTypeAny, {
123
+ coverageFraction: number;
124
+ nodataCount: number;
125
+ totalCells: number;
126
+ resolutionMetersRequested?: number | null | undefined;
127
+ resolutionMetersActual?: number | null | undefined;
128
+ touchesNodata?: boolean | undefined;
129
+ }, {
130
+ coverageFraction: number;
131
+ nodataCount: number;
132
+ totalCells: number;
133
+ resolutionMetersRequested?: number | null | undefined;
134
+ resolutionMetersActual?: number | null | undefined;
135
+ touchesNodata?: boolean | undefined;
136
+ }>;
137
+ /**
138
+ * Parcel terrain-export DERIVED atom.
139
+ *
140
+ * One atom, format-parameterized artifacts. DEM is only a reference-field
141
+ * input (citationLabel e.g. `usgs-3dep-dem`).
142
+ */
143
+ export interface ParcelTerrainModelAtomInstance {
144
+ entityType: "parcel-terrain-model";
145
+ atomDid: string;
146
+ parcelNodeId: string;
147
+ reasoningChain: Extract<ReasoningChain, {
148
+ reasoningKind: "derived";
149
+ }> & {
150
+ derivationMethod: typeof PARCEL_TERRAIN_DERIVATION_METHOD;
151
+ inputAtomRefs: AtomInputRef[];
152
+ };
153
+ /** Artifact map keyed by format; omitted/deferred formats may be absent. */
154
+ artifacts: Partial<Record<TerrainExportFormat, TerrainArtifactRef>>;
155
+ coverage: TerrainCoverage;
156
+ /** Asserted baseline confidence (USGS 3DEP); earning loop not claimed. */
157
+ confidence: WidthedConfidence;
158
+ accessPolicy: AccessPolicy;
159
+ sourceCitation: string;
160
+ extractedAt: string;
161
+ asOf?: string;
162
+ atomTier: AtomTier;
163
+ readContract?: ReasoningReadContract;
164
+ }
165
+ export declare const PARCEL_TERRAIN_MODEL_SCHEMA: z.ZodEffects<z.ZodObject<{
166
+ atomTier: z.ZodLiteral<AtomTier>;
167
+ readContract: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
168
+ axes: z.ZodReadonly<z.ZodObject<{
169
+ calibratedConfidence: z.ZodReadonly<z.ZodObject<{
170
+ readonly estimate: z.ZodNumber;
171
+ readonly n: z.ZodNumber;
172
+ readonly intervalWidth: z.ZodNumber;
173
+ readonly provenance: z.ZodEnum<["asserted", "backtest", "seed", "live"]>;
174
+ }, "strip", z.ZodTypeAny, {
175
+ estimate: number;
176
+ n: number;
177
+ intervalWidth: number;
178
+ provenance: "asserted" | "backtest" | "seed" | "live";
179
+ }, {
180
+ estimate: number;
181
+ n: number;
182
+ intervalWidth: number;
183
+ provenance: "asserted" | "backtest" | "seed" | "live";
184
+ }>>;
185
+ assertedConfidence: z.ZodReadonly<z.ZodObject<{
186
+ readonly estimate: z.ZodNumber;
187
+ readonly n: z.ZodNumber;
188
+ readonly intervalWidth: z.ZodNumber;
189
+ readonly provenance: z.ZodEnum<["asserted", "backtest", "seed", "live"]>;
190
+ }, "strip", z.ZodTypeAny, {
191
+ estimate: number;
192
+ n: number;
193
+ intervalWidth: number;
194
+ provenance: "asserted" | "backtest" | "seed" | "live";
195
+ }, {
196
+ estimate: number;
197
+ n: number;
198
+ intervalWidth: number;
199
+ provenance: "asserted" | "backtest" | "seed" | "live";
200
+ }>>;
201
+ consequence: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
202
+ kind: z.ZodLiteral<"property-risk">;
203
+ stratum: z.ZodEnum<[import("../read-contract/reasoning-axes.js").PropertyRiskStratum, ...import("../read-contract/reasoning-axes.js").PropertyRiskStratum[]]>;
204
+ basis: z.ZodString;
205
+ assertedAt: z.ZodString;
206
+ auditRef: z.ZodOptional<z.ZodString>;
207
+ }, "strip", z.ZodTypeAny, {
208
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
209
+ assertedAt: string;
210
+ kind: "property-risk";
211
+ basis: string;
212
+ auditRef?: string | undefined;
213
+ }, {
214
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
215
+ assertedAt: string;
216
+ kind: "property-risk";
217
+ basis: string;
218
+ auditRef?: string | undefined;
219
+ }>, z.ZodObject<{
220
+ kind: z.ZodLiteral<"not-applicable">;
221
+ reason: z.ZodString;
222
+ assertedAt: z.ZodString;
223
+ }, "strip", z.ZodTypeAny, {
224
+ assertedAt: string;
225
+ kind: "not-applicable";
226
+ reason: string;
227
+ }, {
228
+ assertedAt: string;
229
+ kind: "not-applicable";
230
+ reason: string;
231
+ }>]>;
232
+ }, "strip", z.ZodTypeAny, {
233
+ calibratedConfidence: Readonly<{
234
+ estimate: number;
235
+ n: number;
236
+ intervalWidth: number;
237
+ provenance: "asserted" | "backtest" | "seed" | "live";
238
+ }>;
239
+ assertedConfidence: Readonly<{
240
+ estimate: number;
241
+ n: number;
242
+ intervalWidth: number;
243
+ provenance: "asserted" | "backtest" | "seed" | "live";
244
+ }>;
245
+ consequence: {
246
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
247
+ assertedAt: string;
248
+ kind: "property-risk";
249
+ basis: string;
250
+ auditRef?: string | undefined;
251
+ } | {
252
+ assertedAt: string;
253
+ kind: "not-applicable";
254
+ reason: string;
255
+ };
256
+ }, {
257
+ calibratedConfidence: Readonly<{
258
+ estimate: number;
259
+ n: number;
260
+ intervalWidth: number;
261
+ provenance: "asserted" | "backtest" | "seed" | "live";
262
+ }>;
263
+ assertedConfidence: Readonly<{
264
+ estimate: number;
265
+ n: number;
266
+ intervalWidth: number;
267
+ provenance: "asserted" | "backtest" | "seed" | "live";
268
+ }>;
269
+ consequence: {
270
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
271
+ assertedAt: string;
272
+ kind: "property-risk";
273
+ basis: string;
274
+ auditRef?: string | undefined;
275
+ } | {
276
+ assertedAt: string;
277
+ kind: "not-applicable";
278
+ reason: string;
279
+ };
280
+ }>>;
281
+ assembledAt: z.ZodString;
282
+ modelAttribution: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
283
+ modelId: z.ZodString;
284
+ modelVersion: z.ZodString;
285
+ promptTemplateVersion: z.ZodString;
286
+ contextTemplateVersion: z.ZodString;
287
+ samplingParams: z.ZodReadonly<z.ZodObject<{
288
+ temperature: z.ZodOptional<z.ZodNumber>;
289
+ topP: z.ZodOptional<z.ZodNumber>;
290
+ maxTokens: z.ZodOptional<z.ZodNumber>;
291
+ seed: z.ZodOptional<z.ZodNumber>;
292
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
293
+ temperature: z.ZodOptional<z.ZodNumber>;
294
+ topP: z.ZodOptional<z.ZodNumber>;
295
+ maxTokens: z.ZodOptional<z.ZodNumber>;
296
+ seed: z.ZodOptional<z.ZodNumber>;
297
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
298
+ temperature: z.ZodOptional<z.ZodNumber>;
299
+ topP: z.ZodOptional<z.ZodNumber>;
300
+ maxTokens: z.ZodOptional<z.ZodNumber>;
301
+ seed: z.ZodOptional<z.ZodNumber>;
302
+ }, z.ZodUnknown, "strip">>>;
303
+ retrievedAtomSetId: z.ZodString;
304
+ }, "strip", z.ZodTypeAny, {
305
+ modelId: string;
306
+ modelVersion: string;
307
+ promptTemplateVersion: string;
308
+ contextTemplateVersion: string;
309
+ samplingParams: Readonly<z.objectOutputType<{
310
+ temperature: z.ZodOptional<z.ZodNumber>;
311
+ topP: z.ZodOptional<z.ZodNumber>;
312
+ maxTokens: z.ZodOptional<z.ZodNumber>;
313
+ seed: z.ZodOptional<z.ZodNumber>;
314
+ }, z.ZodUnknown, "strip">>;
315
+ retrievedAtomSetId: string;
316
+ }, {
317
+ modelId: string;
318
+ modelVersion: string;
319
+ promptTemplateVersion: string;
320
+ contextTemplateVersion: string;
321
+ samplingParams: Readonly<z.objectInputType<{
322
+ temperature: z.ZodOptional<z.ZodNumber>;
323
+ topP: z.ZodOptional<z.ZodNumber>;
324
+ maxTokens: z.ZodOptional<z.ZodNumber>;
325
+ seed: z.ZodOptional<z.ZodNumber>;
326
+ }, z.ZodUnknown, "strip">>;
327
+ retrievedAtomSetId: string;
328
+ }>>>;
329
+ }, "strip", z.ZodTypeAny, {
330
+ axes: Readonly<{
331
+ calibratedConfidence: Readonly<{
332
+ estimate: number;
333
+ n: number;
334
+ intervalWidth: number;
335
+ provenance: "asserted" | "backtest" | "seed" | "live";
336
+ }>;
337
+ assertedConfidence: Readonly<{
338
+ estimate: number;
339
+ n: number;
340
+ intervalWidth: number;
341
+ provenance: "asserted" | "backtest" | "seed" | "live";
342
+ }>;
343
+ consequence: {
344
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
345
+ assertedAt: string;
346
+ kind: "property-risk";
347
+ basis: string;
348
+ auditRef?: string | undefined;
349
+ } | {
350
+ assertedAt: string;
351
+ kind: "not-applicable";
352
+ reason: string;
353
+ };
354
+ }>;
355
+ assembledAt: string;
356
+ modelAttribution?: Readonly<{
357
+ modelId: string;
358
+ modelVersion: string;
359
+ promptTemplateVersion: string;
360
+ contextTemplateVersion: string;
361
+ samplingParams: Readonly<z.objectOutputType<{
362
+ temperature: z.ZodOptional<z.ZodNumber>;
363
+ topP: z.ZodOptional<z.ZodNumber>;
364
+ maxTokens: z.ZodOptional<z.ZodNumber>;
365
+ seed: z.ZodOptional<z.ZodNumber>;
366
+ }, z.ZodUnknown, "strip">>;
367
+ retrievedAtomSetId: string;
368
+ }> | undefined;
369
+ }, {
370
+ axes: Readonly<{
371
+ calibratedConfidence: Readonly<{
372
+ estimate: number;
373
+ n: number;
374
+ intervalWidth: number;
375
+ provenance: "asserted" | "backtest" | "seed" | "live";
376
+ }>;
377
+ assertedConfidence: Readonly<{
378
+ estimate: number;
379
+ n: number;
380
+ intervalWidth: number;
381
+ provenance: "asserted" | "backtest" | "seed" | "live";
382
+ }>;
383
+ consequence: {
384
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
385
+ assertedAt: string;
386
+ kind: "property-risk";
387
+ basis: string;
388
+ auditRef?: string | undefined;
389
+ } | {
390
+ assertedAt: string;
391
+ kind: "not-applicable";
392
+ reason: string;
393
+ };
394
+ }>;
395
+ assembledAt: string;
396
+ modelAttribution?: Readonly<{
397
+ modelId: string;
398
+ modelVersion: string;
399
+ promptTemplateVersion: string;
400
+ contextTemplateVersion: string;
401
+ samplingParams: Readonly<z.objectInputType<{
402
+ temperature: z.ZodOptional<z.ZodNumber>;
403
+ topP: z.ZodOptional<z.ZodNumber>;
404
+ maxTokens: z.ZodOptional<z.ZodNumber>;
405
+ seed: z.ZodOptional<z.ZodNumber>;
406
+ }, z.ZodUnknown, "strip">>;
407
+ retrievedAtomSetId: string;
408
+ }> | undefined;
409
+ }>>>;
410
+ sourceCitation: z.ZodString;
411
+ extractedAt: z.ZodString;
412
+ asOf: z.ZodOptional<z.ZodString>;
413
+ entityType: z.ZodLiteral<"parcel-terrain-model">;
414
+ atomDid: z.ZodEffects<z.ZodString, string, string>;
415
+ parcelNodeId: z.ZodEffects<z.ZodString, string, string>;
416
+ reasoningChain: z.ZodEffects<z.ZodObject<{
417
+ reasoningKind: z.ZodLiteral<"derived">;
418
+ derivationMethod: z.ZodString;
419
+ inputAtomRefs: z.ZodArray<z.ZodReadonly<z.ZodObject<{
420
+ atomDid: z.ZodString;
421
+ role: z.ZodEnum<[import("../reasoning-chain.js").AtomInputRefRole, ...import("../reasoning-chain.js").AtomInputRefRole[]]>;
422
+ entityType: z.ZodOptional<z.ZodString>;
423
+ citationLabel: z.ZodOptional<z.ZodString>;
424
+ }, "strip", z.ZodTypeAny, {
425
+ atomDid: string;
426
+ role: import("../reasoning-chain.js").AtomInputRefRole;
427
+ entityType?: string | undefined;
428
+ citationLabel?: string | undefined;
429
+ }, {
430
+ atomDid: string;
431
+ role: import("../reasoning-chain.js").AtomInputRefRole;
432
+ entityType?: string | undefined;
433
+ citationLabel?: string | undefined;
434
+ }>>, "many">;
435
+ }, "strip", z.ZodTypeAny, {
436
+ reasoningKind: "derived";
437
+ derivationMethod: string;
438
+ inputAtomRefs: Readonly<{
439
+ atomDid: string;
440
+ role: import("../reasoning-chain.js").AtomInputRefRole;
441
+ entityType?: string | undefined;
442
+ citationLabel?: string | undefined;
443
+ }>[];
444
+ }, {
445
+ reasoningKind: "derived";
446
+ derivationMethod: string;
447
+ inputAtomRefs: Readonly<{
448
+ atomDid: string;
449
+ role: import("../reasoning-chain.js").AtomInputRefRole;
450
+ entityType?: string | undefined;
451
+ citationLabel?: string | undefined;
452
+ }>[];
453
+ }>, {
454
+ reasoningKind: "derived";
455
+ derivationMethod: string;
456
+ inputAtomRefs: Readonly<{
457
+ atomDid: string;
458
+ role: import("../reasoning-chain.js").AtomInputRefRole;
459
+ entityType?: string | undefined;
460
+ citationLabel?: string | undefined;
461
+ }>[];
462
+ }, {
463
+ reasoningKind: "derived";
464
+ derivationMethod: string;
465
+ inputAtomRefs: Readonly<{
466
+ atomDid: string;
467
+ role: import("../reasoning-chain.js").AtomInputRefRole;
468
+ entityType?: string | undefined;
469
+ citationLabel?: string | undefined;
470
+ }>[];
471
+ }>;
472
+ artifacts: z.ZodRecord<z.ZodEnum<["glb", "ifc", "dxf-3dface", "dxf-contour", "landxml-tin"]>, z.ZodEffects<z.ZodObject<{
473
+ format: z.ZodEnum<["glb", "ifc", "dxf-3dface", "dxf-contour", "landxml-tin"]>;
474
+ ref: z.ZodString;
475
+ byteCount: z.ZodOptional<z.ZodNumber>;
476
+ vertexCount: z.ZodOptional<z.ZodNumber>;
477
+ triangleCount: z.ZodOptional<z.ZodNumber>;
478
+ ifcSchemaVersion: z.ZodOptional<z.ZodString>;
479
+ geometryPrimitive: z.ZodOptional<z.ZodString>;
480
+ contourIntervalMeters: z.ZodOptional<z.ZodNumber>;
481
+ contourPolylineCount: z.ZodOptional<z.ZodNumber>;
482
+ deferred: z.ZodOptional<z.ZodBoolean>;
483
+ deferredReason: z.ZodOptional<z.ZodString>;
484
+ }, "strict", z.ZodTypeAny, {
485
+ format: "glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin";
486
+ ref: string;
487
+ byteCount?: number | undefined;
488
+ vertexCount?: number | undefined;
489
+ triangleCount?: number | undefined;
490
+ ifcSchemaVersion?: string | undefined;
491
+ geometryPrimitive?: string | undefined;
492
+ contourIntervalMeters?: number | undefined;
493
+ contourPolylineCount?: number | undefined;
494
+ deferred?: boolean | undefined;
495
+ deferredReason?: string | undefined;
496
+ }, {
497
+ format: "glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin";
498
+ ref: string;
499
+ byteCount?: number | undefined;
500
+ vertexCount?: number | undefined;
501
+ triangleCount?: number | undefined;
502
+ ifcSchemaVersion?: string | undefined;
503
+ geometryPrimitive?: string | undefined;
504
+ contourIntervalMeters?: number | undefined;
505
+ contourPolylineCount?: number | undefined;
506
+ deferred?: boolean | undefined;
507
+ deferredReason?: string | undefined;
508
+ }>, {
509
+ format: "glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin";
510
+ ref: string;
511
+ byteCount?: number | undefined;
512
+ vertexCount?: number | undefined;
513
+ triangleCount?: number | undefined;
514
+ ifcSchemaVersion?: string | undefined;
515
+ geometryPrimitive?: string | undefined;
516
+ contourIntervalMeters?: number | undefined;
517
+ contourPolylineCount?: number | undefined;
518
+ deferred?: boolean | undefined;
519
+ deferredReason?: string | undefined;
520
+ }, {
521
+ format: "glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin";
522
+ ref: string;
523
+ byteCount?: number | undefined;
524
+ vertexCount?: number | undefined;
525
+ triangleCount?: number | undefined;
526
+ ifcSchemaVersion?: string | undefined;
527
+ geometryPrimitive?: string | undefined;
528
+ contourIntervalMeters?: number | undefined;
529
+ contourPolylineCount?: number | undefined;
530
+ deferred?: boolean | undefined;
531
+ deferredReason?: string | undefined;
532
+ }>>;
533
+ coverage: z.ZodObject<{
534
+ coverageFraction: z.ZodNumber;
535
+ nodataCount: z.ZodNumber;
536
+ totalCells: z.ZodNumber;
537
+ resolutionMetersRequested: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
538
+ resolutionMetersActual: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
539
+ touchesNodata: z.ZodOptional<z.ZodBoolean>;
540
+ }, "strict", z.ZodTypeAny, {
541
+ coverageFraction: number;
542
+ nodataCount: number;
543
+ totalCells: number;
544
+ resolutionMetersRequested?: number | null | undefined;
545
+ resolutionMetersActual?: number | null | undefined;
546
+ touchesNodata?: boolean | undefined;
547
+ }, {
548
+ coverageFraction: number;
549
+ nodataCount: number;
550
+ totalCells: number;
551
+ resolutionMetersRequested?: number | null | undefined;
552
+ resolutionMetersActual?: number | null | undefined;
553
+ touchesNodata?: boolean | undefined;
554
+ }>;
555
+ confidence: z.ZodReadonly<z.ZodObject<{
556
+ readonly estimate: z.ZodNumber;
557
+ readonly n: z.ZodNumber;
558
+ readonly intervalWidth: z.ZodNumber;
559
+ readonly provenance: z.ZodEnum<["asserted", "backtest", "seed", "live"]>;
560
+ }, "strip", z.ZodTypeAny, {
561
+ estimate: number;
562
+ n: number;
563
+ intervalWidth: number;
564
+ provenance: "asserted" | "backtest" | "seed" | "live";
565
+ }, {
566
+ estimate: number;
567
+ n: number;
568
+ intervalWidth: number;
569
+ provenance: "asserted" | "backtest" | "seed" | "live";
570
+ }>>;
571
+ accessPolicy: z.ZodEnum<["public-free", "public-paid", "platform-internal", "tenant-private", "tenant-shared"]>;
572
+ }, "strict", z.ZodTypeAny, {
573
+ accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
574
+ entityType: "parcel-terrain-model";
575
+ sourceCitation: string;
576
+ extractedAt: string;
577
+ confidence: Readonly<{
578
+ estimate: number;
579
+ n: number;
580
+ intervalWidth: number;
581
+ provenance: "asserted" | "backtest" | "seed" | "live";
582
+ }>;
583
+ atomDid: string;
584
+ parcelNodeId: string;
585
+ reasoningChain: {
586
+ reasoningKind: "derived";
587
+ derivationMethod: string;
588
+ inputAtomRefs: Readonly<{
589
+ atomDid: string;
590
+ role: import("../reasoning-chain.js").AtomInputRefRole;
591
+ entityType?: string | undefined;
592
+ citationLabel?: string | undefined;
593
+ }>[];
594
+ };
595
+ atomTier: AtomTier;
596
+ artifacts: Partial<Record<"glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin", {
597
+ format: "glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin";
598
+ ref: string;
599
+ byteCount?: number | undefined;
600
+ vertexCount?: number | undefined;
601
+ triangleCount?: number | undefined;
602
+ ifcSchemaVersion?: string | undefined;
603
+ geometryPrimitive?: string | undefined;
604
+ contourIntervalMeters?: number | undefined;
605
+ contourPolylineCount?: number | undefined;
606
+ deferred?: boolean | undefined;
607
+ deferredReason?: string | undefined;
608
+ }>>;
609
+ coverage: {
610
+ coverageFraction: number;
611
+ nodataCount: number;
612
+ totalCells: number;
613
+ resolutionMetersRequested?: number | null | undefined;
614
+ resolutionMetersActual?: number | null | undefined;
615
+ touchesNodata?: boolean | undefined;
616
+ };
617
+ asOf?: string | undefined;
618
+ readContract?: Readonly<{
619
+ axes: Readonly<{
620
+ calibratedConfidence: Readonly<{
621
+ estimate: number;
622
+ n: number;
623
+ intervalWidth: number;
624
+ provenance: "asserted" | "backtest" | "seed" | "live";
625
+ }>;
626
+ assertedConfidence: Readonly<{
627
+ estimate: number;
628
+ n: number;
629
+ intervalWidth: number;
630
+ provenance: "asserted" | "backtest" | "seed" | "live";
631
+ }>;
632
+ consequence: {
633
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
634
+ assertedAt: string;
635
+ kind: "property-risk";
636
+ basis: string;
637
+ auditRef?: string | undefined;
638
+ } | {
639
+ assertedAt: string;
640
+ kind: "not-applicable";
641
+ reason: string;
642
+ };
643
+ }>;
644
+ assembledAt: string;
645
+ modelAttribution?: Readonly<{
646
+ modelId: string;
647
+ modelVersion: string;
648
+ promptTemplateVersion: string;
649
+ contextTemplateVersion: string;
650
+ samplingParams: Readonly<z.objectOutputType<{
651
+ temperature: z.ZodOptional<z.ZodNumber>;
652
+ topP: z.ZodOptional<z.ZodNumber>;
653
+ maxTokens: z.ZodOptional<z.ZodNumber>;
654
+ seed: z.ZodOptional<z.ZodNumber>;
655
+ }, z.ZodUnknown, "strip">>;
656
+ retrievedAtomSetId: string;
657
+ }> | undefined;
658
+ }> | undefined;
659
+ }, {
660
+ accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
661
+ entityType: "parcel-terrain-model";
662
+ sourceCitation: string;
663
+ extractedAt: string;
664
+ confidence: Readonly<{
665
+ estimate: number;
666
+ n: number;
667
+ intervalWidth: number;
668
+ provenance: "asserted" | "backtest" | "seed" | "live";
669
+ }>;
670
+ atomDid: string;
671
+ parcelNodeId: string;
672
+ reasoningChain: {
673
+ reasoningKind: "derived";
674
+ derivationMethod: string;
675
+ inputAtomRefs: Readonly<{
676
+ atomDid: string;
677
+ role: import("../reasoning-chain.js").AtomInputRefRole;
678
+ entityType?: string | undefined;
679
+ citationLabel?: string | undefined;
680
+ }>[];
681
+ };
682
+ atomTier: AtomTier;
683
+ artifacts: Partial<Record<"glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin", {
684
+ format: "glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin";
685
+ ref: string;
686
+ byteCount?: number | undefined;
687
+ vertexCount?: number | undefined;
688
+ triangleCount?: number | undefined;
689
+ ifcSchemaVersion?: string | undefined;
690
+ geometryPrimitive?: string | undefined;
691
+ contourIntervalMeters?: number | undefined;
692
+ contourPolylineCount?: number | undefined;
693
+ deferred?: boolean | undefined;
694
+ deferredReason?: string | undefined;
695
+ }>>;
696
+ coverage: {
697
+ coverageFraction: number;
698
+ nodataCount: number;
699
+ totalCells: number;
700
+ resolutionMetersRequested?: number | null | undefined;
701
+ resolutionMetersActual?: number | null | undefined;
702
+ touchesNodata?: boolean | undefined;
703
+ };
704
+ asOf?: string | undefined;
705
+ readContract?: Readonly<{
706
+ axes: Readonly<{
707
+ calibratedConfidence: Readonly<{
708
+ estimate: number;
709
+ n: number;
710
+ intervalWidth: number;
711
+ provenance: "asserted" | "backtest" | "seed" | "live";
712
+ }>;
713
+ assertedConfidence: Readonly<{
714
+ estimate: number;
715
+ n: number;
716
+ intervalWidth: number;
717
+ provenance: "asserted" | "backtest" | "seed" | "live";
718
+ }>;
719
+ consequence: {
720
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
721
+ assertedAt: string;
722
+ kind: "property-risk";
723
+ basis: string;
724
+ auditRef?: string | undefined;
725
+ } | {
726
+ assertedAt: string;
727
+ kind: "not-applicable";
728
+ reason: string;
729
+ };
730
+ }>;
731
+ assembledAt: string;
732
+ modelAttribution?: Readonly<{
733
+ modelId: string;
734
+ modelVersion: string;
735
+ promptTemplateVersion: string;
736
+ contextTemplateVersion: string;
737
+ samplingParams: Readonly<z.objectInputType<{
738
+ temperature: z.ZodOptional<z.ZodNumber>;
739
+ topP: z.ZodOptional<z.ZodNumber>;
740
+ maxTokens: z.ZodOptional<z.ZodNumber>;
741
+ seed: z.ZodOptional<z.ZodNumber>;
742
+ }, z.ZodUnknown, "strip">>;
743
+ retrievedAtomSetId: string;
744
+ }> | undefined;
745
+ }> | undefined;
746
+ }>, {
747
+ accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
748
+ entityType: "parcel-terrain-model";
749
+ sourceCitation: string;
750
+ extractedAt: string;
751
+ confidence: Readonly<{
752
+ estimate: number;
753
+ n: number;
754
+ intervalWidth: number;
755
+ provenance: "asserted" | "backtest" | "seed" | "live";
756
+ }>;
757
+ atomDid: string;
758
+ parcelNodeId: string;
759
+ reasoningChain: {
760
+ reasoningKind: "derived";
761
+ derivationMethod: string;
762
+ inputAtomRefs: Readonly<{
763
+ atomDid: string;
764
+ role: import("../reasoning-chain.js").AtomInputRefRole;
765
+ entityType?: string | undefined;
766
+ citationLabel?: string | undefined;
767
+ }>[];
768
+ };
769
+ atomTier: AtomTier;
770
+ artifacts: Partial<Record<"glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin", {
771
+ format: "glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin";
772
+ ref: string;
773
+ byteCount?: number | undefined;
774
+ vertexCount?: number | undefined;
775
+ triangleCount?: number | undefined;
776
+ ifcSchemaVersion?: string | undefined;
777
+ geometryPrimitive?: string | undefined;
778
+ contourIntervalMeters?: number | undefined;
779
+ contourPolylineCount?: number | undefined;
780
+ deferred?: boolean | undefined;
781
+ deferredReason?: string | undefined;
782
+ }>>;
783
+ coverage: {
784
+ coverageFraction: number;
785
+ nodataCount: number;
786
+ totalCells: number;
787
+ resolutionMetersRequested?: number | null | undefined;
788
+ resolutionMetersActual?: number | null | undefined;
789
+ touchesNodata?: boolean | undefined;
790
+ };
791
+ asOf?: string | undefined;
792
+ readContract?: Readonly<{
793
+ axes: Readonly<{
794
+ calibratedConfidence: Readonly<{
795
+ estimate: number;
796
+ n: number;
797
+ intervalWidth: number;
798
+ provenance: "asserted" | "backtest" | "seed" | "live";
799
+ }>;
800
+ assertedConfidence: Readonly<{
801
+ estimate: number;
802
+ n: number;
803
+ intervalWidth: number;
804
+ provenance: "asserted" | "backtest" | "seed" | "live";
805
+ }>;
806
+ consequence: {
807
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
808
+ assertedAt: string;
809
+ kind: "property-risk";
810
+ basis: string;
811
+ auditRef?: string | undefined;
812
+ } | {
813
+ assertedAt: string;
814
+ kind: "not-applicable";
815
+ reason: string;
816
+ };
817
+ }>;
818
+ assembledAt: string;
819
+ modelAttribution?: Readonly<{
820
+ modelId: string;
821
+ modelVersion: string;
822
+ promptTemplateVersion: string;
823
+ contextTemplateVersion: string;
824
+ samplingParams: Readonly<z.objectOutputType<{
825
+ temperature: z.ZodOptional<z.ZodNumber>;
826
+ topP: z.ZodOptional<z.ZodNumber>;
827
+ maxTokens: z.ZodOptional<z.ZodNumber>;
828
+ seed: z.ZodOptional<z.ZodNumber>;
829
+ }, z.ZodUnknown, "strip">>;
830
+ retrievedAtomSetId: string;
831
+ }> | undefined;
832
+ }> | undefined;
833
+ }, {
834
+ accessPolicy: "public-free" | "public-paid" | "platform-internal" | "tenant-private" | "tenant-shared";
835
+ entityType: "parcel-terrain-model";
836
+ sourceCitation: string;
837
+ extractedAt: string;
838
+ confidence: Readonly<{
839
+ estimate: number;
840
+ n: number;
841
+ intervalWidth: number;
842
+ provenance: "asserted" | "backtest" | "seed" | "live";
843
+ }>;
844
+ atomDid: string;
845
+ parcelNodeId: string;
846
+ reasoningChain: {
847
+ reasoningKind: "derived";
848
+ derivationMethod: string;
849
+ inputAtomRefs: Readonly<{
850
+ atomDid: string;
851
+ role: import("../reasoning-chain.js").AtomInputRefRole;
852
+ entityType?: string | undefined;
853
+ citationLabel?: string | undefined;
854
+ }>[];
855
+ };
856
+ atomTier: AtomTier;
857
+ artifacts: Partial<Record<"glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin", {
858
+ format: "glb" | "ifc" | "dxf-3dface" | "dxf-contour" | "landxml-tin";
859
+ ref: string;
860
+ byteCount?: number | undefined;
861
+ vertexCount?: number | undefined;
862
+ triangleCount?: number | undefined;
863
+ ifcSchemaVersion?: string | undefined;
864
+ geometryPrimitive?: string | undefined;
865
+ contourIntervalMeters?: number | undefined;
866
+ contourPolylineCount?: number | undefined;
867
+ deferred?: boolean | undefined;
868
+ deferredReason?: string | undefined;
869
+ }>>;
870
+ coverage: {
871
+ coverageFraction: number;
872
+ nodataCount: number;
873
+ totalCells: number;
874
+ resolutionMetersRequested?: number | null | undefined;
875
+ resolutionMetersActual?: number | null | undefined;
876
+ touchesNodata?: boolean | undefined;
877
+ };
878
+ asOf?: string | undefined;
879
+ readContract?: Readonly<{
880
+ axes: Readonly<{
881
+ calibratedConfidence: Readonly<{
882
+ estimate: number;
883
+ n: number;
884
+ intervalWidth: number;
885
+ provenance: "asserted" | "backtest" | "seed" | "live";
886
+ }>;
887
+ assertedConfidence: Readonly<{
888
+ estimate: number;
889
+ n: number;
890
+ intervalWidth: number;
891
+ provenance: "asserted" | "backtest" | "seed" | "live";
892
+ }>;
893
+ consequence: {
894
+ stratum: import("../read-contract/reasoning-axes.js").PropertyRiskStratum;
895
+ assertedAt: string;
896
+ kind: "property-risk";
897
+ basis: string;
898
+ auditRef?: string | undefined;
899
+ } | {
900
+ assertedAt: string;
901
+ kind: "not-applicable";
902
+ reason: string;
903
+ };
904
+ }>;
905
+ assembledAt: string;
906
+ modelAttribution?: Readonly<{
907
+ modelId: string;
908
+ modelVersion: string;
909
+ promptTemplateVersion: string;
910
+ contextTemplateVersion: string;
911
+ samplingParams: Readonly<z.objectInputType<{
912
+ temperature: z.ZodOptional<z.ZodNumber>;
913
+ topP: z.ZodOptional<z.ZodNumber>;
914
+ maxTokens: z.ZodOptional<z.ZodNumber>;
915
+ seed: z.ZodOptional<z.ZodNumber>;
916
+ }, z.ZodUnknown, "strip">>;
917
+ retrievedAtomSetId: string;
918
+ }> | undefined;
919
+ }> | undefined;
920
+ }>;
921
+ export declare function createParcelTerrainModel(input: z.input<typeof PARCEL_TERRAIN_MODEL_SCHEMA>): ParcelTerrainModelAtomInstance;
922
+ //# sourceMappingURL=parcel-terrain-model.d.ts.map