From 46312b240fc1ffc4bbe2d08b8517aca0012094eb Mon Sep 17 00:00:00 2001 From: Samuel Letellier-Duchesne Date: Tue, 8 Sep 2026 08:27:43 -0400 Subject: [PATCH] Adopt the released reader: all four levels forward The library pin moves to idfkit==1.0.0-rc.4 and the docs level to docs-2026.4, both published today. The governance level moves two behind to governance-2026.17, which is not this feature's doing but is this feature's to carry forward, and the conformance level from 2026.8 to 2026.12. The vendored TypeScript tree gains the three examples the weather pages reference and could not resolve: the two for the reader and the climate zone filter, which is authored in idfkit-js because docs/snippets/js/ is vendored and sync_js_artifacts --check rejects a file present only in the vendored copy. --- .../js/weather/reading/absent_values.ts | 22 + .../js/weather/reading/read_an_epw.ts | 23 + .../station-search/filter_by_climate_zone.ts | 22 + docs/typedoc/typedoc.json | 10571 +++++++++------- pyproject.toml | 10 +- uv.lock | 8 +- 6 files changed, 6246 insertions(+), 4410 deletions(-) create mode 100644 docs/snippets/js/weather/reading/absent_values.ts create mode 100644 docs/snippets/js/weather/reading/read_an_epw.ts create mode 100644 docs/snippets/js/weather/station-search/filter_by_climate_zone.ts diff --git a/docs/snippets/js/weather/reading/absent_values.ts b/docs/snippets/js/weather/reading/absent_values.ts new file mode 100644 index 0000000..05e46e4 --- /dev/null +++ b/docs/snippets/js/weather/reading/absent_values.ts @@ -0,0 +1,22 @@ +// Preamble, not shown on the page: a weather file the page's earlier step read. +import { monthlyMeans, type WeatherFile } from '@idfkit/weather'; +declare const epw: WeatherFile; + +// --8<-- [start:example] +// A measurement the file says was not taken is absent, not the number the format +// reserves for it. Absence is NaN: no weather file can express one, so it is not +// a value the column could otherwise have held. +const albedo = epw.hours.albedo; +Number.isNaN(albedo[0]); // true where the file wrote its missing value + +// How many hours of a column are present is carried rather than recomputed. +epw.hours.presentCount.albedo; + +// A monthly mean excludes the absent hours from the sum AND from the divisor, so +// it is the mean of the values that exist. The count says how many that was. +const january = monthlyMeans(epw, 'dryBulbTemperature')[0]!; +january.mean; // NaN when the month held no measurement at all +january.count; // and 0 beside it, which says why +// --8<-- [end:example] + +export { albedo, january }; diff --git a/docs/snippets/js/weather/reading/read_an_epw.ts b/docs/snippets/js/weather/reading/read_an_epw.ts new file mode 100644 index 0000000..e952240 --- /dev/null +++ b/docs/snippets/js/weather/reading/read_an_epw.ts @@ -0,0 +1,23 @@ +// Preamble, not shown on the page: the EPW text the page's earlier step retrieved. +import { parseEpw } from '@idfkit/weather'; +declare const epwText: string; + +// --8<-- [start:example] +// Reading takes the text you already hold. No network, no filesystem, nothing +// asynchronous, so this runs in a browser tab as readily as in Node. +const epw = parseEpw(epwText); + +epw.location.city; // 'Chicago Ohare Intl Ap' +epw.hours.rowCount; // 8760, taken from the file's declared data period + +// Every numeric field is a named column, packed and the same length. +const temperature = epw.hours.dryBulbTemperature; // Float64Array, degrees C +temperature[0]; // the first hour of 1 January + +// The hour column runs 1 to 24, and hour 24 is the last hour of its OWN day +// rather than hour 0 of the next. +epw.hours.hour[23]; // 24 +epw.hours.day[23]; // still 1 +// --8<-- [end:example] + +export { epw, temperature }; diff --git a/docs/snippets/js/weather/station-search/filter_by_climate_zone.ts b/docs/snippets/js/weather/station-search/filter_by_climate_zone.ts new file mode 100644 index 0000000..9b92386 --- /dev/null +++ b/docs/snippets/js/weather/station-search/filter_by_climate_zone.ts @@ -0,0 +1,22 @@ +// Preamble, not shown on the page: the index the page's earlier steps produced. +import type { StationIndex } from '@idfkit/weather'; +declare const index: StationIndex; + +// --8<-- [start:example] +// Ask for a zone by its code. The code is parsed out of the label rather than +// read off the front of it, which matters: 2,162 of the 69,638 bundled records +// are labelled '7A - ASHRAE Climate Zone could not be determined' or '8A - ...', +// and neither 7A nor 8A is an ASHRAE zone, since zones 7 and 8 carry no suffix. +const zone4a = index.filter({ climateZone: '4A' }); + +// Combine with the other keys, which all narrow together. +const seattleArea = index.filter({ climateZone: '4C', country: 'USA', state: 'WA' }); + +// The stations whose zone upstream could not determine are reachable, and only +// this way: no climateZone value returns them. Asking for them is a separate +// question because the zone key's domain is already every real code, so a +// reserved string could not be told apart from one. +const undetermined = index.filter({ climateZoneDetermined: false }); +// --8<-- [end:example] + +export { zone4a, seattleArea, undetermined }; diff --git a/docs/typedoc/typedoc.json b/docs/typedoc/typedoc.json index ed826e6..2c65867 100644 --- a/docs/typedoc/typedoc.json +++ b/docs/typedoc/typedoc.json @@ -1,27 +1,27 @@ { "schemaVersion": "2.0", - "id": 1187, + "id": 1225, "name": "idfkit-js", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 1305, + "id": 1343, "name": "@idfkit/core", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1306, + "id": 1344, "name": "index", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1307, + "id": 1345, "name": "IdfCollection", "variant": "declaration", "kind": 128, @@ -68,7 +68,7 @@ }, "children": [ { - "id": 1308, + "id": 1346, "name": "constructor", "variant": "declaration", "kind": 512, @@ -78,12 +78,12 @@ "fileName": "core/src/collection.ts", "line": 19, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L19" } ], "signatures": [ { - "id": 1309, + "id": 1347, "name": "IdfCollection", "variant": "signature", "kind": 16384, @@ -93,25 +93,25 @@ "fileName": "core/src/collection.ts", "line": 19, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L19" } ], "typeParameters": [ { - "id": 1310, + "id": 1348, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -119,7 +119,7 @@ ], "parameters": [ { - "id": 1311, + "id": 1349, "name": "typeName", "variant": "param", "kind": 32768, @@ -130,7 +130,7 @@ } }, { - "id": 1312, + "id": 1350, "name": "objects", "variant": "param", "kind": 32768, @@ -145,7 +145,7 @@ "typeArguments": [ { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -160,11 +160,11 @@ ], "type": { "type": "reference", - "target": 1307, + "target": 1345, "typeArguments": [ { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -178,7 +178,7 @@ ] }, { - "id": 1313, + "id": 1351, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -190,7 +190,7 @@ "fileName": "core/src/collection.ts", "line": 14, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L14" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L14" } ], "type": { @@ -199,7 +199,7 @@ } }, { - "id": 1314, + "id": 1352, "name": "first", "variant": "declaration", "kind": 262144, @@ -209,11 +209,11 @@ "fileName": "core/src/collection.ts", "line": 57, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L57" } ], "getSignature": { - "id": 1315, + "id": 1353, "name": "first", "variant": "signature", "kind": 524288, @@ -231,7 +231,7 @@ "fileName": "core/src/collection.ts", "line": 57, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L57" } ], "type": { @@ -239,7 +239,7 @@ "types": [ { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -254,7 +254,7 @@ } }, { - "id": 1316, + "id": 1354, "name": "only", "variant": "declaration", "kind": 262144, @@ -264,11 +264,11 @@ "fileName": "core/src/collection.ts", "line": 51, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L51" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L51" } ], "getSignature": { - "id": 1317, + "id": 1355, "name": "only", "variant": "signature", "kind": 524288, @@ -294,7 +294,7 @@ "fileName": "core/src/collection.ts", "line": 51, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L51" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L51" } ], "type": { @@ -302,7 +302,7 @@ "types": [ { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -317,7 +317,7 @@ } }, { - "id": 1318, + "id": 1356, "name": "size", "variant": "declaration", "kind": 262144, @@ -327,11 +327,11 @@ "fileName": "core/src/collection.ts", "line": 24, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L24" } ], "getSignature": { - "id": 1319, + "id": 1357, "name": "size", "variant": "signature", "kind": 524288, @@ -341,7 +341,7 @@ "fileName": "core/src/collection.ts", "line": 24, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L24" } ], "type": { @@ -351,7 +351,7 @@ } }, { - "id": 1320, + "id": 1358, "name": "[iterator]", "variant": "declaration", "kind": 2048, @@ -361,12 +361,12 @@ "fileName": "core/src/collection.ts", "line": 28, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L28" } ], "signatures": [ { - "id": 1321, + "id": 1359, "name": "[iterator]", "variant": "signature", "kind": 4096, @@ -376,7 +376,7 @@ "fileName": "core/src/collection.ts", "line": 28, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L28" } ], "type": { @@ -389,7 +389,7 @@ "typeArguments": [ { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -415,7 +415,7 @@ } }, { - "id": 1322, + "id": 1360, "name": "filter", "variant": "declaration", "kind": 2048, @@ -425,12 +425,12 @@ "fileName": "core/src/collection.ts", "line": 69, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L69" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L69" } ], "signatures": [ { - "id": 1323, + "id": 1361, "name": "filter", "variant": "signature", "kind": 4096, @@ -440,12 +440,12 @@ "fileName": "core/src/collection.ts", "line": 69, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L69" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L69" } ], "parameters": [ { - "id": 1324, + "id": 1362, "name": "predicate", "variant": "param", "kind": 32768, @@ -453,28 +453,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1325, + "id": 1363, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 1326, + "id": 1364, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1327, + "id": 1365, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -482,7 +482,7 @@ } }, { - "id": 1328, + "id": 1366, "name": "index", "variant": "param", "kind": 32768, @@ -507,7 +507,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -518,7 +518,7 @@ ] }, { - "id": 1329, + "id": 1367, "name": "find", "variant": "declaration", "kind": 2048, @@ -528,12 +528,12 @@ "fileName": "core/src/collection.ts", "line": 77, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L77" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L77" } ], "signatures": [ { - "id": 1330, + "id": 1368, "name": "find", "variant": "signature", "kind": 4096, @@ -543,12 +543,12 @@ "fileName": "core/src/collection.ts", "line": 77, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L77" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L77" } ], "parameters": [ { - "id": 1331, + "id": 1369, "name": "predicate", "variant": "param", "kind": 32768, @@ -556,28 +556,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1332, + "id": 1370, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 1333, + "id": 1371, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1334, + "id": 1372, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -585,7 +585,7 @@ } }, { - "id": 1335, + "id": 1373, "name": "index", "variant": "param", "kind": 32768, @@ -611,7 +611,7 @@ "types": [ { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -627,7 +627,7 @@ ] }, { - "id": 1336, + "id": 1374, "name": "get", "variant": "declaration", "kind": 2048, @@ -637,12 +637,12 @@ "fileName": "core/src/collection.ts", "line": 33, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L33" } ], "signatures": [ { - "id": 1337, + "id": 1375, "name": "get", "variant": "signature", "kind": 4096, @@ -660,12 +660,12 @@ "fileName": "core/src/collection.ts", "line": 33, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L33" } ], "parameters": [ { - "id": 1338, + "id": 1376, "name": "name", "variant": "param", "kind": 32768, @@ -681,7 +681,7 @@ "types": [ { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -697,7 +697,7 @@ ] }, { - "id": 1339, + "id": 1377, "name": "has", "variant": "declaration", "kind": 2048, @@ -707,12 +707,12 @@ "fileName": "core/src/collection.ts", "line": 46, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L46" } ], "signatures": [ { - "id": 1340, + "id": 1378, "name": "has", "variant": "signature", "kind": 4096, @@ -722,12 +722,12 @@ "fileName": "core/src/collection.ts", "line": 46, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L46" } ], "parameters": [ { - "id": 1341, + "id": 1379, "name": "name", "variant": "param", "kind": 32768, @@ -746,7 +746,7 @@ ] }, { - "id": 1342, + "id": 1380, "name": "map", "variant": "declaration", "kind": 2048, @@ -756,12 +756,12 @@ "fileName": "core/src/collection.ts", "line": 73, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L73" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L73" } ], "signatures": [ { - "id": 1343, + "id": 1381, "name": "map", "variant": "signature", "kind": 4096, @@ -771,12 +771,12 @@ "fileName": "core/src/collection.ts", "line": 73, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L73" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L73" } ], "typeParameters": [ { - "id": 1344, + "id": 1382, "name": "R", "variant": "typeParam", "kind": 131072, @@ -785,7 +785,7 @@ ], "parameters": [ { - "id": 1345, + "id": 1383, "name": "fn", "variant": "param", "kind": 32768, @@ -793,28 +793,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1346, + "id": 1384, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 1347, + "id": 1385, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1348, + "id": 1386, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -822,7 +822,7 @@ } }, { - "id": 1349, + "id": 1387, "name": "index", "variant": "param", "kind": 32768, @@ -835,7 +835,7 @@ ], "type": { "type": "reference", - "target": 1344, + "target": 1382, "name": "R", "package": "@idfkit/core", "refersToTypeParameter": true @@ -850,7 +850,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1344, + "target": 1382, "name": "R", "package": "@idfkit/core", "refersToTypeParameter": true @@ -860,7 +860,7 @@ ] }, { - "id": 1350, + "id": 1388, "name": "names", "variant": "declaration", "kind": 2048, @@ -870,12 +870,12 @@ "fileName": "core/src/collection.ts", "line": 61, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L61" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L61" } ], "signatures": [ { - "id": 1351, + "id": 1389, "name": "names", "variant": "signature", "kind": 4096, @@ -885,7 +885,7 @@ "fileName": "core/src/collection.ts", "line": 61, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L61" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L61" } ], "type": { @@ -899,7 +899,7 @@ ] }, { - "id": 1352, + "id": 1390, "name": "require", "variant": "declaration", "kind": 2048, @@ -909,12 +909,12 @@ "fileName": "core/src/collection.ts", "line": 38, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L38" } ], "signatures": [ { - "id": 1353, + "id": 1391, "name": "require", "variant": "signature", "kind": 4096, @@ -932,12 +932,12 @@ "fileName": "core/src/collection.ts", "line": 38, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L38" } ], "parameters": [ { - "id": 1354, + "id": 1392, "name": "name", "variant": "param", "kind": 32768, @@ -950,7 +950,7 @@ ], "type": { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -960,7 +960,7 @@ ] }, { - "id": 1355, + "id": 1393, "name": "toArray", "variant": "declaration", "kind": 2048, @@ -970,12 +970,12 @@ "fileName": "core/src/collection.ts", "line": 65, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L65" } ], "signatures": [ { - "id": 1356, + "id": 1394, "name": "toArray", "variant": "signature", "kind": 4096, @@ -985,14 +985,14 @@ "fileName": "core/src/collection.ts", "line": 65, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L65" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -1003,7 +1003,7 @@ ] }, { - "id": 1357, + "id": 1395, "name": "where", "variant": "declaration", "kind": 2048, @@ -1013,12 +1013,12 @@ "fileName": "core/src/collection.ts", "line": 82, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L82" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L82" } ], "signatures": [ { - "id": 1358, + "id": 1396, "name": "where", "variant": "signature", "kind": 4096, @@ -1052,12 +1052,12 @@ "fileName": "core/src/collection.ts", "line": 82, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L82" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L82" } ], "parameters": [ { - "id": 1359, + "id": 1397, "name": "field", "variant": "param", "kind": 32768, @@ -1068,7 +1068,7 @@ } }, { - "id": 1360, + "id": 1398, "name": "value", "variant": "param", "kind": 32768, @@ -1083,7 +1083,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -1098,36 +1098,36 @@ { "title": "Constructors", "children": [ - 1308 + 1346 ] }, { "title": "Properties", "children": [ - 1313 + 1351 ] }, { "title": "Accessors", "children": [ - 1314, - 1316, - 1318 + 1352, + 1354, + 1356 ] }, { "title": "Methods", "children": [ - 1320, - 1322, - 1329, - 1336, - 1339, - 1342, - 1350, - 1352, - 1355, - 1357 + 1358, + 1360, + 1367, + 1374, + 1377, + 1380, + 1388, + 1390, + 1393, + 1395 ] } ], @@ -1136,25 +1136,25 @@ "fileName": "core/src/collection.ts", "line": 13, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/collection.ts#L13" } ], "typeParameters": [ { - "id": 1361, + "id": 1399, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -1171,7 +1171,7 @@ "typeArguments": [ { "type": "reference", - "target": 1361, + "target": 1399, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -1184,7 +1184,7 @@ ] }, { - "id": 1362, + "id": 1400, "name": "IdfDocument", "variant": "declaration", "kind": 128, @@ -1215,7 +1215,7 @@ }, "children": [ { - "id": 1363, + "id": 1401, "name": "constructor", "variant": "declaration", "kind": 512, @@ -1223,14 +1223,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 32, + "line": 35, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L35" } ], "signatures": [ { - "id": 1364, + "id": 1402, "name": "IdfDocument", "variant": "signature", "kind": 16384, @@ -1238,27 +1238,27 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 32, + "line": 35, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L35" } ], "typeParameters": [ { - "id": 1365, + "id": 1403, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1793, + "target": 1846, "name": "UntypedMap", "package": "@idfkit/core" } @@ -1266,14 +1266,14 @@ ], "parameters": [ { - "id": 1366, + "id": 1404, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1566, + "target": 1616, "name": "Schema", "package": "@idfkit/schemas" } @@ -1281,11 +1281,11 @@ ], "type": { "type": "reference", - "target": 1362, + "target": 1400, "typeArguments": [ { "type": "reference", - "target": 1437, + "target": 1486, "name": "M", "package": "@idfkit/core", "qualifiedName": "IdfDocument.M", @@ -1299,7 +1299,7 @@ ] }, { - "id": 1367, + "id": 1405, "name": "schema", "variant": "declaration", "kind": 1024, @@ -1309,20 +1309,20 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 23, + "line": 26, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L26" } ], "type": { "type": "reference", - "target": 1566, + "target": 1616, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1368, + "id": 1406, "name": "rawText", "variant": "declaration", "kind": 262144, @@ -1330,13 +1330,13 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 52, + "line": 55, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L52" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L55" } ], "getSignature": { - "id": 1369, + "id": 1407, "name": "rawText", "variant": "signature", "kind": 524288, @@ -1376,9 +1376,9 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 52, + "line": 55, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L52" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L55" } ], "type": { @@ -1397,7 +1397,7 @@ } }, { - "id": 1370, + "id": 1408, "name": "references", "variant": "declaration", "kind": 262144, @@ -1405,13 +1405,13 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 41, + "line": 44, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L44" } ], "getSignature": { - "id": 1371, + "id": 1409, "name": "references", "variant": "signature", "kind": 524288, @@ -1419,21 +1419,21 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 41, + "line": 44, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L44" } ], "type": { "type": "reference", - "target": 1522, + "target": 1572, "name": "ReferenceGraph", "package": "@idfkit/core" } } }, { - "id": 1372, + "id": 1410, "name": "size", "variant": "declaration", "kind": 262144, @@ -1441,13 +1441,13 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 83, + "line": 86, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L83" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L86" } ], "getSignature": { - "id": 1373, + "id": 1411, "name": "size", "variant": "signature", "kind": 524288, @@ -1463,9 +1463,9 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 83, + "line": 86, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L83" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L86" } ], "type": { @@ -1475,7 +1475,7 @@ } }, { - "id": 1374, + "id": 1412, "name": "version", "variant": "declaration", "kind": 262144, @@ -1483,13 +1483,13 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 37, + "line": 40, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L40" } ], "getSignature": { - "id": 1375, + "id": 1413, "name": "version", "variant": "signature", "kind": 524288, @@ -1513,9 +1513,9 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 37, + "line": 40, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L40" } ], "type": { @@ -1525,7 +1525,7 @@ } }, { - "id": 1376, + "id": 1414, "name": "add", "variant": "declaration", "kind": 2048, @@ -1533,14 +1533,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 192, + "line": 195, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L192" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L195" } ], "signatures": [ { - "id": 1377, + "id": 1415, "name": "add", "variant": "signature", "kind": 4096, @@ -1580,14 +1580,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 192, + "line": 195, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L192" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L195" } ], "typeParameters": [ { - "id": 1378, + "id": 1416, "name": "K", "variant": "typeParam", "kind": 131072, @@ -1609,7 +1609,7 @@ { "type": "reflection", "declaration": { - "id": 1379, + "id": 1417, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1624,21 +1624,21 @@ ], "parameters": [ { - "id": 1380, + "id": 1418, "name": "type", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1378, + "target": 1416, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true } }, { - "id": 1381, + "id": 1419, "name": "name", "variant": "param", "kind": 32768, @@ -1658,18 +1658,18 @@ } }, { - "id": 1382, + "id": 1420, "name": "values", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1794, + "target": 1847, "typeArguments": [ { "type": "reference", - "target": 1437, + "target": 1486, "name": "M", "package": "@idfkit/core", "qualifiedName": "IdfDocument.M", @@ -1677,7 +1677,7 @@ }, { "type": "reference", - "target": 1378, + "target": 1416, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -1694,17 +1694,17 @@ "types": [ { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" }, { "type": "reference", - "target": 1783, + "target": 1836, "typeArguments": [ { "type": "reference", - "target": 1437, + "target": 1486, "name": "M", "package": "@idfkit/core", "qualifiedName": "IdfDocument.M", @@ -1712,7 +1712,7 @@ }, { "type": "reference", - "target": 1378, + "target": 1416, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -1727,7 +1727,7 @@ ] }, { - "id": 1383, + "id": 1421, "name": "addRaw", "variant": "declaration", "kind": 2048, @@ -1735,14 +1735,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 207, + "line": 210, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L207" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L210" } ], "signatures": [ { - "id": 1384, + "id": 1422, "name": "addRaw", "variant": "signature", "kind": 4096, @@ -1758,14 +1758,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 207, + "line": 210, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L207" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L210" } ], "parameters": [ { - "id": 1385, + "id": 1423, "name": "type", "variant": "param", "kind": 32768, @@ -1776,7 +1776,7 @@ } }, { - "id": 1386, + "id": 1424, "name": "name", "variant": "param", "kind": 32768, @@ -1796,14 +1796,14 @@ } }, { - "id": 1387, + "id": 1425, "name": "values", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1782, + "target": 1835, "name": "FieldValues", "package": "@idfkit/core" }, @@ -1812,7 +1812,7 @@ ], "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -1820,7 +1820,7 @@ ] }, { - "id": 1388, + "id": 1426, "name": "all", "variant": "declaration", "kind": 2048, @@ -1828,14 +1828,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 130, + "line": 133, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L130" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L133" } ], "signatures": [ { - "id": 1389, + "id": 1427, "name": "all", "variant": "signature", "kind": 4096, @@ -2011,14 +2011,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 130, + "line": 133, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L130" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L133" } ], "typeParameters": [ { - "id": 1390, + "id": 1428, "name": "K", "variant": "typeParam", "kind": 131072, @@ -2040,7 +2040,7 @@ { "type": "reflection", "declaration": { - "id": 1391, + "id": 1429, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2055,14 +2055,14 @@ ], "parameters": [ { - "id": 1392, + "id": 1430, "name": "type", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1390, + "target": 1428, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -2071,24 +2071,24 @@ ], "type": { "type": "reference", - "target": 1307, + "target": 1345, "typeArguments": [ { "type": "intersection", "types": [ { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" }, { "type": "reference", - "target": 1783, + "target": 1836, "typeArguments": [ { "type": "reference", - "target": 1437, + "target": 1486, "name": "M", "package": "@idfkit/core", "qualifiedName": "IdfDocument.M", @@ -2096,7 +2096,7 @@ }, { "type": "reference", - "target": 1390, + "target": 1428, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -2115,7 +2115,7 @@ ] }, { - "id": 1393, + "id": 1431, "name": "attach", "variant": "declaration", "kind": 2048, @@ -2123,14 +2123,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 238, + "line": 241, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L238" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L241" } ], "signatures": [ { - "id": 1394, + "id": 1432, "name": "attach", "variant": "signature", "kind": 4096, @@ -2170,21 +2170,21 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 238, + "line": 241, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L238" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L241" } ], "parameters": [ { - "id": 1395, + "id": 1433, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -2192,7 +2192,7 @@ ], "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -2200,23 +2200,23 @@ ] }, { - "id": 1396, - "name": "danglingReferences", + "id": 1434, + "name": "changedObjects", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { "fileName": "core/src/document.ts", - "line": 305, - "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L305" + "line": 331, + "character": 3, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L331" } ], "signatures": [ { - "id": 1397, - "name": "danglingReferences", + "id": 1435, + "name": "changedObjects", "variant": "signature", "kind": 4096, "flags": {}, @@ -2224,269 +2224,44 @@ "summary": [ { "kind": "text", - "text": "Reference targets that no object provides." - } - ] - }, - "sources": [ - { - "fileName": "core/src/document.ts", - "line": 305, - "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L305" - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 1700, - "name": "ReferenceEdge", - "package": "@idfkit/core" - } - } - } - ] - }, - { - "id": 1398, - "name": "get", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "core/src/document.ts", - "line": 172, - "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L172" - } - ], - "signatures": [ - { - "id": 1399, - "name": "get", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ + "text": "Every object a preserving write will write afresh rather than reproduce.\n\nEmpty for a document read with " + }, { - "kind": "text", - "text": "One object by type and name." - } - ] - }, - "sources": [ - { - "fileName": "core/src/document.ts", - "line": 172, - "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L172" - } - ], - "typeParameters": [ - { - "id": 1400, - "name": "K", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intersection", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reflection", - "declaration": { - "id": 1401, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {} - } - } - ] - } - ] - } - } - ], - "parameters": [ - { - "id": 1402, - "name": "type", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "reference", - "target": 1400, - "name": "K", - "package": "@idfkit/core", - "refersToTypeParameter": true - } - }, - { - "id": 1403, - "name": "name", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ + "kind": "code", + "text": "`preserveFormatting`" + }, { - "type": "intersection", - "types": [ - { - "type": "reference", - "target": 1438, - "name": "IdfObject", - "package": "@idfkit/core" - }, - { - "type": "reference", - "target": 1783, - "typeArguments": [ - { - "type": "reference", - "target": 1437, - "name": "M", - "package": "@idfkit/core", - "qualifiedName": "IdfDocument.M", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 1400, - "name": "K", - "package": "@idfkit/core", - "refersToTypeParameter": true - } - ], - "name": "ObjectOf", - "package": "@idfkit/core" - } - ] + "kind": "text", + "text": " and not edited since. Every object for a\ndocument read without it, because there is nothing to reproduce.\n\n" }, { - "type": "intrinsic", - "name": "undefined" - } - ] - } - } - ] - }, - { - "id": 1404, - "name": "has", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "core/src/document.ts", - "line": 182, - "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L182" - } - ], - "signatures": [ - { - "id": 1405, - "name": "has", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ + "kind": "code", + "text": "`rawText`" + }, { "kind": "text", - "text": "Whether any object of this type exists." - } - ] - }, - "sources": [ - { - "fileName": "core/src/document.ts", - "line": 182, - "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L182" - } - ], - "parameters": [ - { - "id": 1406, - "name": "type", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - } - ] - }, - { - "id": 1407, - "name": "objects", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "core/src/document.ts", - "line": 300, - "character": 3, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L300" - } - ], - "signatures": [ - { - "id": 1408, - "name": "objects", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ + "text": " answers whether a write will preserve at all. This answers how many objects it will\nREWRITE, and it is the part a consumer cannot work out for itself: a rename clears the record on\nevery object that referred to the renamed one, so counting from your own edit log reports one\nwhere the answer is nine.\n\n**It is not \"everything that will differ\", and a removal is the case that separates the two.**\nAn object removed from the document is no longer in it to be yielded, so this can return nothing\nfor a write that changes the file. A consumer treating an empty result as \"the file is\nunchanged\" would be wrong on every removal. To ask whether the file will differ at all, compare\nthe write with " + }, + { + "kind": "code", + "text": "`rawText`" + }, { "kind": "text", - "text": "Every object in the document, grouped by type in insertion order." + "text": "; ask this for how much of it is being written afresh.\n\nA generator, so listing what is about to be reformatted is as easy as counting it:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst changed = [...document.changedObjects()];\nif (changed.length > 0) warn(`Saving will rewrite ${changed.length} objects.`);\n```" } ] }, "sources": [ { "fileName": "core/src/document.ts", - "line": 300, + "line": 331, "character": 3, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L300" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L331" } ], "type": { @@ -2499,7 +2274,7 @@ "typeArguments": [ { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -2511,7 +2286,318 @@ ] }, { - "id": 1409, + "id": 1436, + "name": "danglingReferences", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 439, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L439" + } + ], + "signatures": [ + { + "id": 1437, + "name": "danglingReferences", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Reference targets that no object provides." + } + ] + }, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 439, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L439" + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 1752, + "name": "ReferenceEdge", + "package": "@idfkit/core" + } + } + } + ] + }, + { + "id": 1438, + "name": "get", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 175, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L175" + } + ], + "signatures": [ + { + "id": 1439, + "name": "get", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "One object by type and name." + } + ] + }, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 175, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L175" + } + ], + "typeParameters": [ + { + "id": 1440, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intersection", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { + "id": 1441, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + ] + } + ] + } + } + ], + "parameters": [ + { + "id": 1442, + "name": "type", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 1440, + "name": "K", + "package": "@idfkit/core", + "refersToTypeParameter": true + } + }, + { + "id": 1443, + "name": "name", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intersection", + "types": [ + { + "type": "reference", + "target": 1487, + "name": "IdfObject", + "package": "@idfkit/core" + }, + { + "type": "reference", + "target": 1836, + "typeArguments": [ + { + "type": "reference", + "target": 1486, + "name": "M", + "package": "@idfkit/core", + "qualifiedName": "IdfDocument.M", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 1440, + "name": "K", + "package": "@idfkit/core", + "refersToTypeParameter": true + } + ], + "name": "ObjectOf", + "package": "@idfkit/core" + } + ] + }, + { + "type": "intrinsic", + "name": "undefined" + } + ] + } + } + ] + }, + { + "id": 1444, + "name": "has", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 185, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L185" + } + ], + "signatures": [ + { + "id": 1445, + "name": "has", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether any object of this type exists." + } + ] + }, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 185, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L185" + } + ], + "parameters": [ + { + "id": 1446, + "name": "type", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ] + }, + { + "id": 1447, + "name": "objects", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 303, + "character": 3, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L303" + } + ], + "signatures": [ + { + "id": 1448, + "name": "objects", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Every object in the document, grouped by type in insertion order." + } + ] + }, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 303, + "character": 3, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L303" + } + ], + "type": { + "type": "reference", + "target": { + "packageName": "typescript", + "packagePath": "lib/lib.es2015.generator.d.ts", + "qualifiedName": "Generator" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1487, + "name": "IdfObject", + "package": "@idfkit/core" + } + ], + "name": "Generator", + "package": "typescript" + } + } + ] + }, + { + "id": 1449, "name": "onFieldChanged", "variant": "declaration", "kind": 2048, @@ -2519,14 +2605,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 351, + "line": 496, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L351" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L496" } ], "signatures": [ { - "id": 1410, + "id": 1450, "name": "onFieldChanged", "variant": "signature", "kind": 4096, @@ -2534,27 +2620,27 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 351, + "line": 496, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L351" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L496" } ], "parameters": [ { - "id": 1411, + "id": 1451, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1412, + "id": 1452, "name": "field", "variant": "param", "kind": 32768, @@ -2565,7 +2651,7 @@ } }, { - "id": 1413, + "id": 1453, "name": "previous", "variant": "param", "kind": 32768, @@ -2576,7 +2662,7 @@ } }, { - "id": 1414, + "id": 1454, "name": "next", "variant": "param", "kind": 32768, @@ -2593,19 +2679,19 @@ }, "implementationOf": { "type": "reference", - "target": 1660, + "target": 1710, "name": "ObjectOwner.onFieldChanged" } } ], "implementationOf": { "type": "reference", - "target": 1659, + "target": 1709, "name": "ObjectOwner.onFieldChanged" } }, { - "id": 1415, + "id": 1455, "name": "onNameChanged", "variant": "declaration", "kind": 2048, @@ -2613,14 +2699,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 370, + "line": 515, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L370" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L515" } ], "signatures": [ { - "id": 1416, + "id": 1456, "name": "onNameChanged", "variant": "signature", "kind": 4096, @@ -2628,27 +2714,27 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 370, + "line": 515, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L370" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L515" } ], "parameters": [ { - "id": 1417, + "id": 1457, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1418, + "id": 1458, "name": "previous", "variant": "param", "kind": 32768, @@ -2659,7 +2745,7 @@ } }, { - "id": 1419, + "id": 1459, "name": "next", "variant": "param", "kind": 32768, @@ -2676,19 +2762,175 @@ }, "implementationOf": { "type": "reference", - "target": 1666, + "target": 1716, "name": "ObjectOwner.onNameChanged" } } ], "implementationOf": { "type": "reference", - "target": 1665, + "target": 1715, "name": "ObjectOwner.onNameChanged" } }, { - "id": 1420, + "id": 1460, + "name": "regionOf", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 376, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L376" + } + ], + "signatures": [ + { + "id": 1461, + "name": "regionOf", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Where an object's characters sit in " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "rawText", + "target": 1406 + }, + { + "kind": "text", + "text": ", or " + }, + { + "kind": "code", + "text": "`undefined`" + }, + { + "kind": "text", + "text": " if they sit nowhere.\n\n" + }, + { + "kind": "code", + "text": "`undefined`" + }, + { + "kind": "text", + "text": " for an object added since the read, for a document read without preservation, and\nfor one read from the object notation, which has no statements to point at and preserves\nall-or-nothing.\n\nThis is what makes " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "changedObjects", + "target": 1434 + }, + { + "kind": "text", + "text": " usable. Turning an edit into the smallest possible\nchange to a file takes three things: WHICH objects will be rewritten, WHAT text each becomes,\nand WHERE the old one was. Without the third a consumer has to write the whole file and diff\nit, which is the work " + }, + { + "kind": "code", + "text": "`changedObjects`" + }, + { + "kind": "text", + "text": " exists to avoid.\n\nThe range is where the object WAS, and stays answerable after it changes. That is the case it\nis for: the objects worth locating are the ones being rewritten.\n\n" + }, + { + "kind": "code", + "text": "```ts\nfor (const obj of document.changedObjects()) {\n const at = document.regionOf(obj);\n if (at === undefined) continue; // added since the read; there is no old text to replace\n edits.push({ range: at, newText: replacementFor(obj) });\n}\n```" + }, + { + "kind": "text", + "text": "\n\n**Where the replacement text comes from is not settled by this method, and " + }, + { + "kind": "code", + "text": "`writeObject`" + }, + { + "kind": "text", + "text": " is\nnot the answer.** A preserving write hands that function the author's own per-field comments,\nwhich are internal, so calling it with options built by hand produces text that differs from\nwhat " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "writeIdf", + "target": 1967 + }, + { + "kind": "text", + "text": " would have produced for the same object: the author's units and notes\ncome back as generated labels. A consumer that needs the two to agree has to take the whole\nfile from " + }, + { + "kind": "code", + "text": "`writeIdf`" + }, + { + "kind": "text", + "text": ". This method locates the edit; producing its text for a single object is\na gap that is open, and it is recorded rather than papered over.\n\nThe end of the range is the WRITER's, which is not always the semicolon: a comment on the\nterminator's own line is that statement's last field's comment and a preserving write replaces\nit. A range that stopped at the semicolon would leave it behind, describing a field that had\njust moved.\n\nOffsets, not a line and column: " + }, + { + "kind": "code", + "text": "`Region`" + }, + { + "kind": "text", + "text": " carries the conversion, and a consumer that wants one\nhas the text to compute it from, while going the other way costs a scan." + } + ] + }, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 376, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L376" + } + ], + "parameters": [ + { + "id": 1462, + "name": "obj", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 1487, + "name": "IdfObject", + "package": "@idfkit/core" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 1757, + "name": "Region", + "package": "@idfkit/core" + }, + { + "type": "intrinsic", + "name": "undefined" + } + ] + } + } + ] + }, + { + "id": 1463, "name": "remove", "variant": "declaration", "kind": 2048, @@ -2696,14 +2938,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 273, + "line": 276, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L273" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L276" } ], "signatures": [ { - "id": 1421, + "id": 1464, "name": "remove", "variant": "signature", "kind": 4096, @@ -2719,21 +2961,21 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 273, + "line": 276, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L273" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L276" } ], "parameters": [ { - "id": 1422, + "id": 1465, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -2747,7 +2989,7 @@ ] }, { - "id": 1423, + "id": 1466, "name": "rename", "variant": "declaration", "kind": 2048, @@ -2755,14 +2997,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 292, + "line": 295, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L292" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L295" } ], "signatures": [ { - "id": 1424, + "id": 1467, "name": "rename", "variant": "signature", "kind": 4096, @@ -2786,27 +3028,27 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 292, + "line": 295, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L292" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L295" } ], "parameters": [ { - "id": 1425, + "id": 1468, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1426, + "id": 1469, "name": "next", "variant": "param", "kind": 32768, @@ -2825,7 +3067,247 @@ ] }, { - "id": 1427, + "id": 1470, + "name": "renderObject", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 426, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L426" + } + ], + "signatures": [ + { + "id": 1471, + "name": "renderObject", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "One object, rendered exactly as a preserving write would render it.\n\nThe text that belongs in the range " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "regionOf", + "target": 1460 + }, + { + "kind": "text", + "text": " returns, so the two compose into an edit\nthat leaves the file byte for byte where " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "writeIdf", + "target": 1967 + }, + { + "kind": "text", + "text": " would have left it. " + }, + { + "kind": "code", + "text": "`undefined`" + }, + { + "kind": "text", + "text": " for\nan object the retained source does not hold, which is the same set " + }, + { + "kind": "code", + "text": "`regionOf`" + }, + { + "kind": "text", + "text": " declines.\n\n" + }, + { + "kind": "code", + "text": "```ts\nfor (const obj of document.changedObjects()) {\n const at = document.regionOf(obj);\n const text = document.renderObject(obj);\n if (at === undefined || text === undefined) continue; // added since the read\n edits.push({ range: at, newText: text });\n}\n```" + }, + { + "kind": "text", + "text": "\n\n" + }, + { + "kind": "code", + "text": "`writeObject`" + }, + { + "kind": "text", + "text": " is not this, and that is the reason this exists. A preserving write hands that\nfunction the author's own per-field annotations, which are internal, so calling it with options\nbuilt by hand comes back with the author's units and notes as generated labels: " + }, + { + "kind": "code", + "text": "`!- North Axis\n{deg}`" + }, + { + "kind": "text", + "text": " becomes " + }, + { + "kind": "code", + "text": "`!- North Axis`" + }, + { + "kind": "text", + "text": ". That is a unit lost from an engineering model by an editor\nasked to save a file, and no doc comment is a good enough guard against it.\n\n" + }, + { + "kind": "code", + "text": "`fieldComments`" + }, + { + "kind": "text", + "text": " is the ONLY option, because it is the only one a preserving write honours.\n" + }, + { + "kind": "code", + "text": "`indent`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`commentColumn`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`ordering`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`versionFirst`" + }, + { + "kind": "text", + "text": " are refused by " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "writeIdf", + "target": 1967 + }, + { + "kind": "text", + "text": "\nalongside " + }, + { + "kind": "code", + "text": "`preserveFormatting`" + }, + { + "kind": "text", + "text": ", and " + }, + { + "kind": "code", + "text": "`comments: false`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`compressed`" + }, + { + "kind": "text", + "text": " defeat preservation and\nsend the whole document down the formatting path instead. Accepting any of them here would let\na caller render one object on terms the surrounding file was not written on, which is the exact\ndivergence this method exists to prevent.\n\nNo trailing line break: the range this fills ends at the terminator, or at the comment on that\nline, and the break after it is the first character of what separates one object from the next,\nwhich a preserving write leaves in place." + } + ] + }, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 426, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L426" + } + ], + "parameters": [ + { + "id": 1472, + "name": "obj", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 1487, + "name": "IdfObject", + "package": "@idfkit/core" + } + }, + { + "id": 1473, + "name": "options", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": { + "packageName": "typescript", + "packagePath": "lib/lib.es5.d.ts", + "qualifiedName": "Pick" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1822, + "name": "WriteIdfOptions", + "package": "@idfkit/core" + }, + { + "type": "literal", + "value": "fieldComments" + } + ], + "name": "Pick", + "package": "typescript" + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "undefined" + } + ] + } + } + ] + }, + { + "id": 1474, "name": "require", "variant": "declaration", "kind": 2048, @@ -2833,14 +3315,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 177, + "line": 180, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L177" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L180" } ], "signatures": [ { - "id": 1428, + "id": 1475, "name": "require", "variant": "signature", "kind": 4096, @@ -2856,14 +3338,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 177, + "line": 180, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L177" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L180" } ], "typeParameters": [ { - "id": 1429, + "id": 1476, "name": "K", "variant": "typeParam", "kind": 131072, @@ -2885,7 +3367,7 @@ { "type": "reflection", "declaration": { - "id": 1430, + "id": 1477, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2900,21 +3382,21 @@ ], "parameters": [ { - "id": 1431, + "id": 1478, "name": "type", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1429, + "target": 1476, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true } }, { - "id": 1432, + "id": 1479, "name": "name", "variant": "param", "kind": 32768, @@ -2930,17 +3412,17 @@ "types": [ { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" }, { "type": "reference", - "target": 1783, + "target": 1836, "typeArguments": [ { "type": "reference", - "target": 1437, + "target": 1486, "name": "M", "package": "@idfkit/core", "qualifiedName": "IdfDocument.M", @@ -2948,7 +3430,7 @@ }, { "type": "reference", - "target": 1429, + "target": 1476, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -2963,7 +3445,7 @@ ] }, { - "id": 1433, + "id": 1480, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -2971,14 +3453,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 324, + "line": 458, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L324" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L458" } ], "signatures": [ { - "id": 1434, + "id": 1481, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -3018,9 +3500,9 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 324, + "line": 458, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L324" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L458" } ], "type": { @@ -3061,7 +3543,7 @@ }, { "type": "reference", - "target": 1788, + "target": 1841, "name": "StoredValue", "package": "@idfkit/core" } @@ -3081,7 +3563,61 @@ ] }, { - "id": 1435, + "id": 1482, + "name": "tracksExtensibleEdits", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 492, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L492" + } + ], + "signatures": [ + { + "id": 1483, + "name": "tracksExtensibleEdits", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether an in-place edit to an extensible repeat has to be heard.\n\nOnly while this document carries a retained source. Without one there is no touched record to\nmaintain and nothing a preserving write would consult, so the repeats stay plain objects and a\ngeometry consumer reads a coordinate at the cost it has always read one at." + } + ] + }, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 492, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L492" + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "implementationOf": { + "type": "reference", + "target": 1721, + "name": "ObjectOwner.tracksExtensibleEdits" + } + } + ], + "implementationOf": { + "type": "reference", + "target": 1720, + "name": "ObjectOwner.tracksExtensibleEdits" + } + }, + { + "id": 1484, "name": "types", "variant": "declaration", "kind": 2048, @@ -3089,14 +3625,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 78, + "line": 81, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L78" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L81" } ], "signatures": [ { - "id": 1436, + "id": 1485, "name": "types", "variant": "signature", "kind": 4096, @@ -3112,9 +3648,9 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 78, + "line": 81, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L78" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L81" } ], "type": { @@ -3132,69 +3668,73 @@ { "title": "Constructors", "children": [ - 1363 + 1401 ] }, { "title": "Properties", "children": [ - 1367 + 1405 ] }, { "title": "Accessors", "children": [ - 1368, - 1370, - 1372, - 1374 + 1406, + 1408, + 1410, + 1412 ] }, { "title": "Methods", "children": [ - 1376, - 1383, - 1388, - 1393, - 1396, - 1398, - 1404, - 1407, - 1409, - 1415, - 1420, - 1423, - 1427, - 1433, - 1435 + 1414, + 1421, + 1426, + 1431, + 1434, + 1436, + 1438, + 1444, + 1447, + 1449, + 1455, + 1460, + 1463, + 1466, + 1470, + 1474, + 1480, + 1482, + 1484 ] } ], "sources": [ { "fileName": "core/src/document.ts", - "line": 22, + "line": 25, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/document.ts#L25" } ], "typeParameters": [ { - "id": 1437, + "id": 1486, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1793, + "target": 1846, "name": "UntypedMap", "package": "@idfkit/core" } @@ -3203,14 +3743,14 @@ "implementedTypes": [ { "type": "reference", - "target": 1658, + "target": 1708, "name": "ObjectOwner", "package": "@idfkit/core" } ] }, { - "id": 1438, + "id": 1487, "name": "IdfObject", "variant": "declaration", "kind": 128, @@ -3257,7 +3797,7 @@ }, "children": [ { - "id": 1439, + "id": 1488, "name": "[DATA]", "variant": "declaration", "kind": 1024, @@ -3267,9 +3807,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 44, + "line": 52, "character": 19, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L44" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L52" } ], "type": { @@ -3286,7 +3826,7 @@ }, { "type": "reference", - "target": 1788, + "target": 1841, "name": "StoredValue", "package": "@idfkit/core" } @@ -3296,7 +3836,7 @@ } }, { - "id": 1440, + "id": 1489, "name": "[KEY]", "variant": "declaration", "kind": 1024, @@ -3304,9 +3844,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 48, + "line": 56, "character": 10, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L48" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L56" } ], "type": { @@ -3315,7 +3855,7 @@ } }, { - "id": 1441, + "id": 1490, "name": "[NAME]", "variant": "declaration", "kind": 1024, @@ -3323,9 +3863,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 47, + "line": 55, "character": 10, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L55" } ], "type": { @@ -3334,7 +3874,35 @@ } }, { - "id": 1442, + "id": 1491, + "name": "[ORIGIN]", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "core/src/object.ts", + "line": 59, + "character": 10, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L59" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "undefined" + } + ] + } + }, + { + "id": 1492, "name": "[OWNER]", "variant": "declaration", "kind": 1024, @@ -3342,9 +3910,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 46, + "line": 54, "character": 10, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L54" } ], "type": { @@ -3352,7 +3920,7 @@ "types": [ { "type": "reference", - "target": 1658, + "target": 1708, "name": "ObjectOwner", "package": "@idfkit/core" }, @@ -3364,7 +3932,7 @@ } }, { - "id": 1443, + "id": 1493, "name": "[SHAPE]", "variant": "declaration", "kind": 1024, @@ -3374,20 +3942,20 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 45, + "line": 53, "character": 19, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L45" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L53" } ], "type": { "type": "reference", - "target": 1507, + "target": 1557, "name": "ObjectShape", "package": "@idfkit/core" } }, { - "id": 1444, + "id": 1494, "name": "[SOURCE]", "variant": "declaration", "kind": 1024, @@ -3411,9 +3979,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 50, + "line": 58, "character": 10, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L50" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L58" } ], "type": { @@ -3431,7 +3999,7 @@ } }, { - "id": 1445, + "id": 1495, "name": "extensible", "variant": "declaration", "kind": 262144, @@ -3439,13 +4007,13 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 209, + "line": 225, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L209" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L225" } ], "getSignature": { - "id": 1446, + "id": 1496, "name": "extensible", "variant": "signature", "kind": 524288, @@ -3478,7 +4046,15 @@ }, { "kind": "text", - "text": " hand back plain arrays, and a repeat spreads and\ncompares exactly as the plain object it replaces.\n\nThe wrapper is built the first time a caller asks for it and then kept, so a read costs one\n" + "text": " hand back plain arrays, and a repeat spreads and\ncompares exactly as the plain object it replaces.\n\n**Only when the document carries a retained source.** A repeat's fields are own accessors, and\nan accessor read is roughly thirty times the cost of a plain property read; over the 33,000\nvertices of a real model that is measurable, and charging every vertex read is exactly what\nrejecting a " + }, + { + "kind": "code", + "text": "`Proxy`" + }, + { + "kind": "text", + "text": " was meant to avoid. A document read without preservation has no touched\nrecord to maintain, so it keeps the plain array and today's speed. A document read WITH\npreservation is being edited, and an edit that reaches the file matters more there than the\nthroughput of reading a coordinate.\n\nThe wrapper is built once and kept, so a read of a preserving document costs one " }, { "kind": "code", @@ -3486,7 +4062,7 @@ }, { "kind": "text", - "text": " and a geometry consumer walking every vertex pays for the wrapping once per\nobject. A parse nobody reaches into pays nothing at all, which is what keeps reading without\npreservation costing what it costs today.\n\nOne spelling is not heard: replacing a whole repeat by index, " + "text": "\nafter the first.\n\nOne spelling is not heard: replacing a whole repeat by index, " }, { "kind": "code", @@ -3517,16 +4093,16 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 209, + "line": 225, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L209" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L225" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 1780, + "target": 1833, "name": "ExtensibleGroup", "package": "@idfkit/core" } @@ -3534,7 +4110,7 @@ } }, { - "id": 1447, + "id": 1497, "name": "fieldNames", "variant": "declaration", "kind": 262144, @@ -3542,13 +4118,13 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 179, + "line": 189, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L179" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L189" } ], "getSignature": { - "id": 1448, + "id": 1498, "name": "fieldNames", "variant": "signature", "kind": 524288, @@ -3564,9 +4140,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 179, + "line": 189, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L179" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L189" } ], "type": { @@ -3583,7 +4159,7 @@ } }, { - "id": 1449, + "id": 1499, "name": "isNamed", "variant": "declaration", "kind": 262144, @@ -3591,13 +4167,13 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 142, + "line": 152, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L142" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L152" } ], "getSignature": { - "id": 1450, + "id": 1500, "name": "isNamed", "variant": "signature", "kind": 524288, @@ -3613,9 +4189,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 142, + "line": 152, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L142" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L152" } ], "type": { @@ -3625,7 +4201,7 @@ } }, { - "id": 1451, + "id": 1501, "name": "key", "variant": "declaration", "kind": 262144, @@ -3633,13 +4209,13 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 137, + "line": 147, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L137" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L147" } ], "getSignature": { - "id": 1452, + "id": 1502, "name": "key", "variant": "signature", "kind": 524288, @@ -3663,9 +4239,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 137, + "line": 147, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L137" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L147" } ], "type": { @@ -3675,7 +4251,7 @@ } }, { - "id": 1453, + "id": 1503, "name": "name", "variant": "declaration", "kind": 262144, @@ -3683,19 +4259,19 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 109, + "line": 119, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L109" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L119" }, { "fileName": "core/src/object.ts", - "line": 113, + "line": 123, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L113" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L123" } ], "getSignature": { - "id": 1454, + "id": 1504, "name": "name", "variant": "signature", "kind": 524288, @@ -3711,9 +4287,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 109, + "line": 119, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L109" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L119" } ], "type": { @@ -3722,7 +4298,7 @@ } }, "setSignature": { - "id": 1455, + "id": 1505, "name": "name", "variant": "signature", "kind": 1048576, @@ -3730,14 +4306,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 113, + "line": 123, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L113" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L123" } ], "parameters": [ { - "id": 1456, + "id": 1506, "name": "value", "variant": "param", "kind": 32768, @@ -3755,7 +4331,7 @@ } }, { - "id": 1457, + "id": 1507, "name": "schema", "variant": "declaration", "kind": 262144, @@ -3763,13 +4339,13 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 99, + "line": 109, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L99" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L109" } ], "getSignature": { - "id": 1458, + "id": 1508, "name": "schema", "variant": "signature", "kind": 524288, @@ -3785,21 +4361,21 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 99, + "line": 109, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L99" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L109" } ], "type": { "type": "reference", - "target": 1728, + "target": 1780, "name": "SlimType", "package": "@idfkit/schemas" } } }, { - "id": 1459, + "id": 1509, "name": "typeName", "variant": "declaration", "kind": 262144, @@ -3807,13 +4383,13 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 94, + "line": 104, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L94" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L104" } ], "getSignature": { - "id": 1460, + "id": 1510, "name": "typeName", "variant": "signature", "kind": 524288, @@ -3837,9 +4413,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 94, + "line": 104, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L94" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L104" } ], "type": { @@ -3849,7 +4425,7 @@ } }, { - "id": 1461, + "id": 1511, "name": "clone", "variant": "declaration", "kind": 2048, @@ -3857,14 +4433,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 278, + "line": 300, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L278" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L300" } ], "signatures": [ { - "id": 1462, + "id": 1512, "name": "clone", "variant": "signature", "kind": 4096, @@ -3880,14 +4456,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 278, + "line": 300, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L278" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L300" } ], "parameters": [ { - "id": 1463, + "id": 1513, "name": "name", "variant": "param", "kind": 32768, @@ -3901,7 +4477,7 @@ ], "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -3909,7 +4485,7 @@ ] }, { - "id": 1464, + "id": 1514, "name": "declaredNames", "variant": "declaration", "kind": 2048, @@ -3917,14 +4493,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 267, + "line": 289, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L267" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L289" } ], "signatures": [ { - "id": 1465, + "id": 1515, "name": "declaredNames", "variant": "signature", "kind": 4096, @@ -3956,9 +4532,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 267, + "line": 289, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L267" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L289" } ], "type": { @@ -3972,7 +4548,7 @@ ] }, { - "id": 1466, + "id": 1516, "name": "fieldSchema", "variant": "declaration", "kind": 2048, @@ -3980,14 +4556,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 174, + "line": 184, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L174" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L184" } ], "signatures": [ { - "id": 1467, + "id": 1517, "name": "fieldSchema", "variant": "signature", "kind": 4096, @@ -4003,14 +4579,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 174, + "line": 184, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L174" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L184" } ], "parameters": [ { - "id": 1468, + "id": 1518, "name": "field", "variant": "param", "kind": 32768, @@ -4026,7 +4602,7 @@ "types": [ { "type": "reference", - "target": 1712, + "target": 1764, "name": "SlimField", "package": "@idfkit/schemas" }, @@ -4040,7 +4616,7 @@ ] }, { - "id": 1469, + "id": 1519, "name": "get", "variant": "declaration", "kind": 2048, @@ -4048,14 +4624,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 147, + "line": 157, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L147" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L157" } ], "signatures": [ { - "id": 1470, + "id": 1520, "name": "get", "variant": "signature", "kind": 4096, @@ -4071,14 +4647,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 147, + "line": 157, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L147" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L157" } ], "parameters": [ { - "id": 1471, + "id": 1521, "name": "field", "variant": "param", "kind": 32768, @@ -4094,7 +4670,7 @@ "types": [ { "type": "reference", - "target": 1788, + "target": 1841, "name": "StoredValue", "package": "@idfkit/core" }, @@ -4108,7 +4684,7 @@ ] }, { - "id": 1472, + "id": 1522, "name": "hasField", "variant": "declaration", "kind": 2048, @@ -4116,14 +4692,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 169, + "line": 179, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L169" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L179" } ], "signatures": [ { - "id": 1473, + "id": 1523, "name": "hasField", "variant": "signature", "kind": 4096, @@ -4139,14 +4715,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 169, + "line": 179, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L169" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L179" } ], "parameters": [ { - "id": 1474, + "id": 1524, "name": "field", "variant": "param", "kind": 32768, @@ -4165,7 +4741,7 @@ ] }, { - "id": 1475, + "id": 1525, "name": "outgoingReferences", "variant": "declaration", "kind": 2048, @@ -4173,14 +4749,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 233, + "line": 255, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L233" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L255" } ], "signatures": [ { - "id": 1476, + "id": 1526, "name": "outgoingReferences", "variant": "signature", "kind": 4096, @@ -4204,9 +4780,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 233, + "line": 255, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L233" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L255" } ], "type": { @@ -4214,14 +4790,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1477, + "id": 1527, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1478, + "id": 1528, "name": "field", "variant": "declaration", "kind": 1024, @@ -4229,9 +4805,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 233, + "line": 255, "character": 32, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L233" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L255" } ], "type": { @@ -4240,7 +4816,7 @@ } }, { - "id": 1479, + "id": 1529, "name": "index", "variant": "declaration", "kind": 1024, @@ -4250,9 +4826,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 233, + "line": 255, "character": 63, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L233" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L255" } ], "type": { @@ -4261,7 +4837,7 @@ } }, { - "id": 1480, + "id": 1530, "name": "target", "variant": "declaration", "kind": 1024, @@ -4269,9 +4845,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 233, + "line": 255, "character": 47, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L233" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L255" } ], "type": { @@ -4284,9 +4860,9 @@ { "title": "Properties", "children": [ - 1478, - 1479, - 1480 + 1528, + 1529, + 1530 ] } ] @@ -4297,7 +4873,7 @@ ] }, { - "id": 1481, + "id": 1531, "name": "set", "variant": "declaration", "kind": 2048, @@ -4305,14 +4881,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 152, + "line": 162, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L152" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L162" } ], "signatures": [ { - "id": 1482, + "id": 1532, "name": "set", "variant": "signature", "kind": 4096, @@ -4328,14 +4904,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 152, + "line": 162, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L152" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L162" } ], "parameters": [ { - "id": 1483, + "id": 1533, "name": "field", "variant": "param", "kind": 32768, @@ -4346,7 +4922,7 @@ } }, { - "id": 1484, + "id": 1534, "name": "value", "variant": "param", "kind": 32768, @@ -4356,7 +4932,7 @@ "types": [ { "type": "reference", - "target": 1788, + "target": 1841, "name": "StoredValue", "package": "@idfkit/core" }, @@ -4380,7 +4956,7 @@ ] }, { - "id": 1485, + "id": 1535, "name": "setFieldNames", "variant": "declaration", "kind": 2048, @@ -4388,14 +4964,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 184, + "line": 194, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L184" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L194" } ], "signatures": [ { - "id": 1486, + "id": 1536, "name": "setFieldNames", "variant": "signature", "kind": 4096, @@ -4411,9 +4987,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 184, + "line": 194, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L184" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L194" } ], "type": { @@ -4427,7 +5003,7 @@ ] }, { - "id": 1487, + "id": 1537, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -4435,14 +5011,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 287, + "line": 309, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L287" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L309" } ], "signatures": [ { - "id": 1488, + "id": 1538, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -4458,9 +5034,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 287, + "line": 309, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L287" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L309" } ], "type": { @@ -4477,7 +5053,7 @@ }, { "type": "reference", - "target": 1788, + "target": 1841, "name": "StoredValue", "package": "@idfkit/core" } @@ -4489,7 +5065,7 @@ ] }, { - "id": 1489, + "id": 1539, "name": "toString", "variant": "declaration", "kind": 2048, @@ -4497,14 +5073,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 301, + "line": 323, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L301" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L323" } ], "signatures": [ { - "id": 1490, + "id": 1540, "name": "toString", "variant": "signature", "kind": 4096, @@ -4512,9 +5088,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 301, + "line": 323, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L301" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L323" } ], "type": { @@ -4525,7 +5101,7 @@ ] }, { - "id": 1491, + "id": 1541, "name": "update", "variant": "declaration", "kind": 2048, @@ -4533,14 +5109,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 161, + "line": 171, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L161" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L171" } ], "signatures": [ { - "id": 1492, + "id": 1542, "name": "update", "variant": "signature", "kind": 4096, @@ -4556,21 +5132,21 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 161, + "line": 171, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L161" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L171" } ], "parameters": [ { - "id": 1493, + "id": 1543, "name": "values", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1782, + "target": 1835, "name": "FieldValues", "package": "@idfkit/core" } @@ -4584,7 +5160,7 @@ ] }, { - "id": 1494, + "id": 1544, "name": "create", "variant": "declaration", "kind": 2048, @@ -4594,14 +5170,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 60, + "line": 69, "character": 9, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L60" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L69" } ], "signatures": [ { - "id": 1495, + "id": 1545, "name": "create", "variant": "signature", "kind": 4096, @@ -4609,14 +5185,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 60, + "line": 69, "character": 9, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L60" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L69" } ], "parameters": [ { - "id": 1496, + "id": 1546, "name": "typeName", "variant": "param", "kind": 32768, @@ -4627,20 +5203,20 @@ } }, { - "id": 1497, + "id": 1547, "name": "type", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1728, + "target": 1780, "name": "SlimType", "package": "@idfkit/schemas" } }, { - "id": 1498, + "id": 1548, "name": "name", "variant": "param", "kind": 32768, @@ -4651,14 +5227,14 @@ } }, { - "id": 1499, + "id": 1549, "name": "values", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1782, + "target": 1835, "name": "FieldValues", "package": "@idfkit/core" }, @@ -4667,7 +5243,7 @@ ], "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -4679,62 +5255,63 @@ { "title": "Properties", "children": [ - 1439, - 1440, - 1441, - 1442, - 1443, - 1444 + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494 ] }, { "title": "Accessors", "children": [ - 1445, - 1447, - 1449, - 1451, - 1453, - 1457, - 1459 + 1495, + 1497, + 1499, + 1501, + 1503, + 1507, + 1509 ] }, { "title": "Methods", "children": [ - 1461, - 1464, - 1466, - 1469, - 1472, - 1475, - 1481, - 1485, - 1487, - 1489, - 1491, - 1494 + 1511, + 1514, + 1516, + 1519, + 1522, + 1525, + 1531, + 1535, + 1537, + 1539, + 1541, + 1544 ] } ], "sources": [ { "fileName": "core/src/object.ts", - "line": 43, + "line": 51, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L51" } ] }, { - "id": 1500, + "id": 1550, "name": "IdfParseError", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1501, + "id": 1551, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4742,14 +5319,14 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 436, + "line": 439, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L436" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L439" } ], "signatures": [ { - "id": 1502, + "id": 1552, "name": "IdfParseError", "variant": "signature", "kind": 16384, @@ -4757,14 +5334,14 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 436, + "line": 439, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L436" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L439" } ], "parameters": [ { - "id": 1503, + "id": 1553, "name": "diagnostic", "variant": "param", "kind": 32768, @@ -4774,7 +5351,7 @@ "types": [ { "type": "reference", - "target": 1675, + "target": 1727, "name": "ParseDiagnostic", "package": "@idfkit/core" }, @@ -4785,7 +5362,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1675, + "target": 1727, "name": "ParseDiagnostic", "package": "@idfkit/core" } @@ -4797,7 +5374,7 @@ ], "type": { "type": "reference", - "target": 1500, + "target": 1550, "name": "IdfParseError", "package": "@idfkit/core" }, @@ -4817,7 +5394,7 @@ } }, { - "id": 1504, + "id": 1554, "name": "diagnostics", "variant": "declaration", "kind": 1024, @@ -4883,9 +5460,9 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 434, + "line": 437, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L434" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L437" } ], "type": { @@ -4895,7 +5472,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1675, + "target": 1727, "name": "ParseDiagnostic", "package": "@idfkit/core" } @@ -4903,7 +5480,7 @@ } }, { - "id": 1505, + "id": 1555, "name": "line", "variant": "declaration", "kind": 1024, @@ -4913,9 +5490,9 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 421, + "line": 424, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L421" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L424" } ], "type": { @@ -4924,7 +5501,7 @@ } }, { - "id": 1506, + "id": 1556, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -4934,9 +5511,9 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 422, + "line": 425, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L422" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L425" } ], "type": { @@ -4958,24 +5535,24 @@ { "title": "Constructors", "children": [ - 1501 + 1551 ] }, { "title": "Properties", "children": [ - 1504, - 1505, - 1506 + 1554, + 1555, + 1556 ] } ], "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 420, + "line": 423, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L420" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L423" } ], "extendedTypes": [ @@ -4992,7 +5569,7 @@ ] }, { - "id": 1507, + "id": 1557, "name": "ObjectShape", "variant": "declaration", "kind": 128, @@ -5063,7 +5640,7 @@ }, "children": [ { - "id": 1508, + "id": 1558, "name": "constructor", "variant": "declaration", "kind": 512, @@ -5073,12 +5650,12 @@ "fileName": "core/src/shape.ts", "line": 48, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L48" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L48" } ], "signatures": [ { - "id": 1509, + "id": 1559, "name": "ObjectShape", "variant": "signature", "kind": 16384, @@ -5088,12 +5665,12 @@ "fileName": "core/src/shape.ts", "line": 48, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L48" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L48" } ], "parameters": [ { - "id": 1510, + "id": 1560, "name": "typeName", "variant": "param", "kind": 32768, @@ -5104,20 +5681,20 @@ } }, { - "id": 1511, + "id": 1561, "name": "type", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1728, + "target": 1780, "name": "SlimType", "package": "@idfkit/schemas" } }, { - "id": 1512, + "id": 1562, "name": "base", "variant": "param", "kind": 32768, @@ -5130,7 +5707,7 @@ ], "type": { "type": "reference", - "target": 1507, + "target": 1557, "name": "ObjectShape", "package": "@idfkit/core" } @@ -5138,7 +5715,7 @@ ] }, { - "id": 1513, + "id": 1563, "name": "extensibleKey", "variant": "declaration", "kind": 1024, @@ -5166,7 +5743,7 @@ "fileName": "core/src/shape.ts", "line": 44, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L44" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L44" } ], "type": { @@ -5184,7 +5761,7 @@ } }, { - "id": 1514, + "id": 1564, "name": "extensibleRefFields", "variant": "declaration", "kind": 1024, @@ -5244,7 +5821,7 @@ "fileName": "core/src/shape.ts", "line": 40, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L40" } ], "type": { @@ -5260,7 +5837,7 @@ } }, { - "id": 1515, + "id": 1565, "name": "fields", "variant": "declaration", "kind": 1024, @@ -5280,7 +5857,7 @@ "fileName": "core/src/shape.ts", "line": 28, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L28" } ], "type": { @@ -5296,7 +5873,7 @@ } }, { - "id": 1516, + "id": 1566, "name": "keyFields", "variant": "declaration", "kind": 1024, @@ -5316,7 +5893,7 @@ "fileName": "core/src/shape.ts", "line": 42, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L42" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L42" } ], "type": { @@ -5332,7 +5909,7 @@ } }, { - "id": 1517, + "id": 1567, "name": "named", "variant": "declaration", "kind": 1024, @@ -5360,7 +5937,7 @@ "fileName": "core/src/shape.ts", "line": 46, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L46" } ], "type": { @@ -5369,7 +5946,7 @@ } }, { - "id": 1518, + "id": 1568, "name": "proto", "variant": "declaration", "kind": 1024, @@ -5381,7 +5958,7 @@ "fileName": "core/src/shape.ts", "line": 25, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L25" } ], "type": { @@ -5390,7 +5967,7 @@ } }, { - "id": 1519, + "id": 1569, "name": "refFields", "variant": "declaration", "kind": 1024, @@ -5410,7 +5987,7 @@ "fileName": "core/src/shape.ts", "line": 30, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L30" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L30" } ], "type": { @@ -5426,7 +6003,7 @@ } }, { - "id": 1520, + "id": 1570, "name": "type", "variant": "declaration", "kind": 1024, @@ -5438,18 +6015,18 @@ "fileName": "core/src/shape.ts", "line": 24, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L24" } ], "type": { "type": "reference", - "target": 1728, + "target": 1780, "name": "SlimType", "package": "@idfkit/schemas" } }, { - "id": 1521, + "id": 1571, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -5461,7 +6038,7 @@ "fileName": "core/src/shape.ts", "line": 23, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L23" } ], "type": { @@ -5474,21 +6051,21 @@ { "title": "Constructors", "children": [ - 1508 + 1558 ] }, { "title": "Properties", "children": [ - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521 + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571 ] } ], @@ -5497,12 +6074,12 @@ "fileName": "core/src/shape.ts", "line": 22, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L22" } ] }, { - "id": 1522, + "id": 1572, "name": "ReferenceGraph", "variant": "declaration", "kind": 128, @@ -5525,21 +6102,21 @@ }, "children": [ { - "id": 1523, + "id": 1573, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1524, + "id": 1574, "name": "ReferenceGraph", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1522, + "target": 1572, "name": "ReferenceGraph", "package": "@idfkit/core" } @@ -5547,7 +6124,7 @@ ] }, { - "id": 1525, + "id": 1575, "name": "size", "variant": "declaration", "kind": 262144, @@ -5557,11 +6134,11 @@ "fileName": "core/src/references.ts", "line": 160, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L160" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L160" } ], "getSignature": { - "id": 1526, + "id": 1576, "name": "size", "variant": "signature", "kind": 524288, @@ -5571,7 +6148,7 @@ "fileName": "core/src/references.ts", "line": 160, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L160" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L160" } ], "type": { @@ -5581,7 +6158,7 @@ } }, { - "id": 1527, + "id": 1577, "name": "add", "variant": "declaration", "kind": 2048, @@ -5591,12 +6168,12 @@ "fileName": "core/src/references.ts", "line": 34, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L34" } ], "signatures": [ { - "id": 1528, + "id": 1578, "name": "add", "variant": "signature", "kind": 4096, @@ -5630,25 +6207,25 @@ "fileName": "core/src/references.ts", "line": 34, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L34" } ], "parameters": [ { - "id": 1529, + "id": 1579, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1530, + "id": 1580, "name": "field", "variant": "param", "kind": 32768, @@ -5659,7 +6236,7 @@ } }, { - "id": 1531, + "id": 1581, "name": "target", "variant": "param", "kind": 32768, @@ -5670,7 +6247,7 @@ } }, { - "id": 1532, + "id": 1582, "name": "index", "variant": "param", "kind": 32768, @@ -5691,7 +6268,7 @@ ] }, { - "id": 1533, + "id": 1583, "name": "addObject", "variant": "declaration", "kind": 2048, @@ -5701,12 +6278,12 @@ "fileName": "core/src/references.ts", "line": 55, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L55" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L55" } ], "signatures": [ { - "id": 1534, + "id": 1584, "name": "addObject", "variant": "signature", "kind": 4096, @@ -5724,19 +6301,19 @@ "fileName": "core/src/references.ts", "line": 55, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L55" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L55" } ], "parameters": [ { - "id": 1535, + "id": 1585, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -5750,7 +6327,7 @@ ] }, { - "id": 1536, + "id": 1586, "name": "clear", "variant": "declaration", "kind": 2048, @@ -5760,12 +6337,12 @@ "fileName": "core/src/references.ts", "line": 155, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L155" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L155" } ], "signatures": [ { - "id": 1537, + "id": 1587, "name": "clear", "variant": "signature", "kind": 4096, @@ -5775,7 +6352,7 @@ "fileName": "core/src/references.ts", "line": 155, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L155" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L155" } ], "type": { @@ -5786,7 +6363,7 @@ ] }, { - "id": 1538, + "id": 1588, "name": "dangling", "variant": "declaration", "kind": 2048, @@ -5796,12 +6373,12 @@ "fileName": "core/src/references.ts", "line": 146, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L146" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L146" } ], "signatures": [ { - "id": 1539, + "id": 1589, "name": "dangling", "variant": "signature", "kind": 4096, @@ -5827,12 +6404,12 @@ "fileName": "core/src/references.ts", "line": 146, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L146" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L146" } ], "parameters": [ { - "id": 1540, + "id": 1590, "name": "valid", "variant": "param", "kind": 32768, @@ -5859,7 +6436,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1700, + "target": 1752, "name": "ReferenceEdge", "package": "@idfkit/core" } @@ -5868,7 +6445,7 @@ ] }, { - "id": 1541, + "id": 1591, "name": "isReferenced", "variant": "declaration", "kind": 2048, @@ -5878,12 +6455,12 @@ "fileName": "core/src/references.ts", "line": 117, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L117" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L117" } ], "signatures": [ { - "id": 1542, + "id": 1592, "name": "isReferenced", "variant": "signature", "kind": 4096, @@ -5901,12 +6478,12 @@ "fileName": "core/src/references.ts", "line": 117, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L117" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L117" } ], "parameters": [ { - "id": 1543, + "id": 1593, "name": "name", "variant": "param", "kind": 32768, @@ -5925,7 +6502,7 @@ ] }, { - "id": 1544, + "id": 1594, "name": "referencedBy", "variant": "declaration", "kind": 2048, @@ -5935,12 +6512,12 @@ "fileName": "core/src/references.ts", "line": 111, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L111" } ], "signatures": [ { - "id": 1545, + "id": 1595, "name": "referencedBy", "variant": "signature", "kind": 4096, @@ -5958,19 +6535,19 @@ "fileName": "core/src/references.ts", "line": 111, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L111" } ], "parameters": [ { - "id": 1546, + "id": 1596, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -5987,7 +6564,7 @@ ] }, { - "id": 1547, + "id": 1597, "name": "referencing", "variant": "declaration", "kind": 2048, @@ -5997,12 +6574,12 @@ "fileName": "core/src/references.ts", "line": 98, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L98" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L98" } ], "signatures": [ { - "id": 1548, + "id": 1598, "name": "referencing", "variant": "signature", "kind": 4096, @@ -6020,12 +6597,12 @@ "fileName": "core/src/references.ts", "line": 98, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L98" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L98" } ], "parameters": [ { - "id": 1549, + "id": 1599, "name": "name", "variant": "param", "kind": 32768, @@ -6040,7 +6617,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1700, + "target": 1752, "name": "ReferenceEdge", "package": "@idfkit/core" } @@ -6049,7 +6626,7 @@ ] }, { - "id": 1550, + "id": 1600, "name": "referencingObjects", "variant": "declaration", "kind": 2048, @@ -6059,12 +6636,12 @@ "fileName": "core/src/references.ts", "line": 104, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L104" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L104" } ], "signatures": [ { - "id": 1551, + "id": 1601, "name": "referencingObjects", "variant": "signature", "kind": 4096, @@ -6082,12 +6659,12 @@ "fileName": "core/src/references.ts", "line": 104, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L104" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L104" } ], "parameters": [ { - "id": 1552, + "id": 1602, "name": "name", "variant": "param", "kind": 32768, @@ -6102,7 +6679,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -6111,7 +6688,7 @@ ] }, { - "id": 1553, + "id": 1603, "name": "removeObject", "variant": "declaration", "kind": 2048, @@ -6121,12 +6698,12 @@ "fileName": "core/src/references.ts", "line": 62, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L62" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L62" } ], "signatures": [ { - "id": 1554, + "id": 1604, "name": "removeObject", "variant": "signature", "kind": 4096, @@ -6144,19 +6721,19 @@ "fileName": "core/src/references.ts", "line": 62, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L62" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L62" } ], "parameters": [ { - "id": 1555, + "id": 1605, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -6170,7 +6747,7 @@ ] }, { - "id": 1556, + "id": 1606, "name": "retarget", "variant": "declaration", "kind": 2048, @@ -6180,12 +6757,12 @@ "fileName": "core/src/references.ts", "line": 128, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L128" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L128" } ], "signatures": [ { - "id": 1557, + "id": 1607, "name": "retarget", "variant": "signature", "kind": 4096, @@ -6219,12 +6796,12 @@ "fileName": "core/src/references.ts", "line": 128, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L128" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L128" } ], "parameters": [ { - "id": 1558, + "id": 1608, "name": "previous", "variant": "param", "kind": 32768, @@ -6235,7 +6812,7 @@ } }, { - "id": 1559, + "id": 1609, "name": "next", "variant": "param", "kind": 32768, @@ -6250,7 +6827,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1700, + "target": 1752, "name": "ReferenceEdge", "package": "@idfkit/core" } @@ -6259,7 +6836,7 @@ ] }, { - "id": 1560, + "id": 1610, "name": "updateField", "variant": "declaration", "kind": 2048, @@ -6269,12 +6846,12 @@ "fileName": "core/src/references.ts", "line": 76, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L76" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L76" } ], "signatures": [ { - "id": 1561, + "id": 1611, "name": "updateField", "variant": "signature", "kind": 4096, @@ -6292,25 +6869,25 @@ "fileName": "core/src/references.ts", "line": 76, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L76" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L76" } ], "parameters": [ { - "id": 1562, + "id": 1612, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1563, + "id": 1613, "name": "field", "variant": "param", "kind": 32768, @@ -6321,7 +6898,7 @@ } }, { - "id": 1564, + "id": 1614, "name": "previous", "variant": "param", "kind": 32768, @@ -6332,7 +6909,7 @@ } }, { - "id": 1565, + "id": 1615, "name": "next", "variant": "param", "kind": 32768, @@ -6355,29 +6932,29 @@ { "title": "Constructors", "children": [ - 1523 + 1573 ] }, { "title": "Accessors", "children": [ - 1525 + 1575 ] }, { "title": "Methods", "children": [ - 1527, - 1533, - 1536, - 1538, - 1541, - 1544, - 1547, - 1550, - 1553, - 1556, - 1560 + 1577, + 1583, + 1586, + 1588, + 1591, + 1594, + 1597, + 1600, + 1603, + 1606, + 1610 ] } ], @@ -6386,12 +6963,12 @@ "fileName": "core/src/references.ts", "line": 27, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L27" } ] }, { - "id": 1566, + "id": 1616, "name": "Schema", "variant": "declaration", "kind": 128, @@ -6406,7 +6983,7 @@ }, "children": [ { - "id": 1567, + "id": 1617, "name": "constructor", "variant": "declaration", "kind": 512, @@ -6420,7 +6997,7 @@ ], "signatures": [ { - "id": 1568, + "id": 1618, "name": "Schema", "variant": "signature", "kind": 16384, @@ -6434,7 +7011,7 @@ ], "parameters": [ { - "id": 1569, + "id": 1619, "name": "version", "variant": "param", "kind": 32768, @@ -6445,27 +7022,27 @@ } }, { - "id": 1570, + "id": 1620, "name": "manifest", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1289, + "target": 1327, "name": "Manifest", "package": "@idfkit/schemas" } }, { - "id": 1571, + "id": 1621, "name": "store", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1190, + "target": 1228, "name": "BlobStore", "package": "@idfkit/schemas" } @@ -6473,7 +7050,7 @@ ], "type": { "type": "reference", - "target": 1566, + "target": 1616, "name": "Schema", "package": "@idfkit/schemas" } @@ -6481,7 +7058,7 @@ ] }, { - "id": 1572, + "id": 1622, "name": "version", "variant": "declaration", "kind": 1024, @@ -6501,7 +7078,7 @@ } }, { - "id": 1573, + "id": 1623, "name": "typeNames", "variant": "declaration", "kind": 262144, @@ -6514,7 +7091,7 @@ } ], "getSignature": { - "id": 1574, + "id": 1624, "name": "typeNames", "variant": "signature", "kind": 524288, @@ -6548,7 +7125,7 @@ } }, { - "id": 1575, + "id": 1625, "name": "changedFrom", "variant": "declaration", "kind": 2048, @@ -6562,7 +7139,7 @@ ], "signatures": [ { - "id": 1576, + "id": 1626, "name": "changedFrom", "variant": "signature", "kind": 4096, @@ -6592,14 +7169,14 @@ ], "parameters": [ { - "id": 1577, + "id": 1627, "name": "other", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1566, + "target": 1616, "name": "Schema", "package": "@idfkit/schemas" } @@ -6607,7 +7184,7 @@ ], "type": { "type": "reference", - "target": 1708, + "target": 1760, "name": "SchemaDelta", "package": "@idfkit/schemas" } @@ -6615,7 +7192,7 @@ ] }, { - "id": 1578, + "id": 1628, "name": "field", "variant": "declaration", "kind": 2048, @@ -6629,7 +7206,7 @@ ], "signatures": [ { - "id": 1579, + "id": 1629, "name": "field", "variant": "signature", "kind": 4096, @@ -6651,7 +7228,7 @@ ], "parameters": [ { - "id": 1580, + "id": 1630, "name": "typeName", "variant": "param", "kind": 32768, @@ -6662,7 +7239,7 @@ } }, { - "id": 1581, + "id": 1631, "name": "fieldName", "variant": "param", "kind": 32768, @@ -6678,7 +7255,7 @@ "types": [ { "type": "reference", - "target": 1712, + "target": 1764, "name": "SlimField", "package": "@idfkit/schemas" }, @@ -6692,7 +7269,7 @@ ] }, { - "id": 1582, + "id": 1632, "name": "get", "variant": "declaration", "kind": 2048, @@ -6706,7 +7283,7 @@ ], "signatures": [ { - "id": 1583, + "id": 1633, "name": "get", "variant": "signature", "kind": 4096, @@ -6728,7 +7305,7 @@ ], "parameters": [ { - "id": 1584, + "id": 1634, "name": "typeName", "variant": "param", "kind": 32768, @@ -6744,7 +7321,7 @@ "types": [ { "type": "reference", - "target": 1728, + "target": 1780, "name": "SlimType", "package": "@idfkit/schemas" }, @@ -6758,7 +7335,7 @@ ] }, { - "id": 1585, + "id": 1635, "name": "has", "variant": "declaration", "kind": 2048, @@ -6772,7 +7349,7 @@ ], "signatures": [ { - "id": 1586, + "id": 1636, "name": "has", "variant": "signature", "kind": 4096, @@ -6794,7 +7371,7 @@ ], "parameters": [ { - "id": 1587, + "id": 1637, "name": "typeName", "variant": "param", "kind": 32768, @@ -6813,7 +7390,7 @@ ] }, { - "id": 1588, + "id": 1638, "name": "require", "variant": "declaration", "kind": 2048, @@ -6827,7 +7404,7 @@ ], "signatures": [ { - "id": 1589, + "id": 1639, "name": "require", "variant": "signature", "kind": 4096, @@ -6849,7 +7426,7 @@ ], "parameters": [ { - "id": 1590, + "id": 1640, "name": "typeName", "variant": "param", "kind": 32768, @@ -6862,7 +7439,7 @@ ], "type": { "type": "reference", - "target": 1728, + "target": 1780, "name": "SlimType", "package": "@idfkit/schemas" } @@ -6870,7 +7447,7 @@ ] }, { - "id": 1591, + "id": 1641, "name": "resolve", "variant": "declaration", "kind": 2048, @@ -6884,7 +7461,7 @@ ], "signatures": [ { - "id": 1592, + "id": 1642, "name": "resolve", "variant": "signature", "kind": 4096, @@ -6930,7 +7507,7 @@ ], "parameters": [ { - "id": 1593, + "id": 1643, "name": "typeName", "variant": "param", "kind": 32768, @@ -6962,30 +7539,30 @@ { "title": "Constructors", "children": [ - 1567 + 1617 ] }, { "title": "Properties", "children": [ - 1572 + 1622 ] }, { "title": "Accessors", "children": [ - 1573 + 1623 ] }, { "title": "Methods", "children": [ - 1575, - 1578, - 1582, - 1585, - 1588, - 1591 + 1625, + 1628, + 1632, + 1635, + 1638, + 1641 ] } ], @@ -6998,7 +7575,7 @@ ] }, { - "id": 1594, + "id": 1644, "name": "SchemaBundle", "variant": "declaration", "kind": 128, @@ -7013,7 +7590,7 @@ }, "children": [ { - "id": 1595, + "id": 1645, "name": "constructor", "variant": "declaration", "kind": 512, @@ -7027,7 +7604,7 @@ ], "signatures": [ { - "id": 1596, + "id": 1646, "name": "SchemaBundle", "variant": "signature", "kind": 16384, @@ -7041,14 +7618,14 @@ ], "parameters": [ { - "id": 1597, + "id": 1647, "name": "source", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1612, + "target": 1662, "name": "BundleSource", "package": "@idfkit/schemas" } @@ -7056,7 +7633,7 @@ ], "type": { "type": "reference", - "target": 1594, + "target": 1644, "name": "SchemaBundle", "package": "@idfkit/schemas" } @@ -7064,7 +7641,7 @@ ] }, { - "id": 1598, + "id": 1648, "name": "latest", "variant": "declaration", "kind": 2048, @@ -7078,7 +7655,7 @@ ], "signatures": [ { - "id": 1599, + "id": 1649, "name": "latest", "variant": "signature", "kind": 4096, @@ -7118,7 +7695,7 @@ ] }, { - "id": 1600, + "id": 1650, "name": "load", "variant": "declaration", "kind": 2048, @@ -7132,7 +7709,7 @@ ], "signatures": [ { - "id": 1601, + "id": 1651, "name": "load", "variant": "signature", "kind": 4096, @@ -7154,7 +7731,7 @@ ], "parameters": [ { - "id": 1602, + "id": 1652, "name": "version", "variant": "param", "kind": 32768, @@ -7175,7 +7752,7 @@ "typeArguments": [ { "type": "reference", - "target": 1566, + "target": 1616, "name": "Schema", "package": "@idfkit/schemas" } @@ -7187,7 +7764,7 @@ ] }, { - "id": 1603, + "id": 1653, "name": "loaded", "variant": "declaration", "kind": 2048, @@ -7201,7 +7778,7 @@ ], "signatures": [ { - "id": 1604, + "id": 1654, "name": "loaded", "variant": "signature", "kind": 4096, @@ -7223,7 +7800,7 @@ ], "parameters": [ { - "id": 1605, + "id": 1655, "name": "version", "variant": "param", "kind": 32768, @@ -7239,7 +7816,7 @@ "types": [ { "type": "reference", - "target": 1566, + "target": 1616, "name": "Schema", "package": "@idfkit/schemas" }, @@ -7253,7 +7830,7 @@ ] }, { - "id": 1606, + "id": 1656, "name": "loadProse", "variant": "declaration", "kind": 2048, @@ -7267,7 +7844,7 @@ ], "signatures": [ { - "id": 1607, + "id": 1657, "name": "loadProse", "variant": "signature", "kind": 4096, @@ -7329,7 +7906,7 @@ "typeArguments": [ { "type": "reference", - "target": 1786, + "target": 1839, "name": "ProsePool", "package": "@idfkit/schemas" } @@ -7341,7 +7918,7 @@ ] }, { - "id": 1608, + "id": 1658, "name": "prose", "variant": "declaration", "kind": 2048, @@ -7355,7 +7932,7 @@ ], "signatures": [ { - "id": 1609, + "id": 1659, "name": "prose", "variant": "signature", "kind": 4096, @@ -7412,7 +7989,7 @@ "types": [ { "type": "reference", - "target": 1786, + "target": 1839, "name": "ProsePool", "package": "@idfkit/schemas" }, @@ -7426,7 +8003,7 @@ ] }, { - "id": 1610, + "id": 1660, "name": "versions", "variant": "declaration", "kind": 2048, @@ -7440,7 +8017,7 @@ ], "signatures": [ { - "id": 1611, + "id": 1661, "name": "versions", "variant": "signature", "kind": 4096, @@ -7491,18 +8068,18 @@ { "title": "Constructors", "children": [ - 1595 + 1645 ] }, { "title": "Methods", "children": [ - 1598, - 1600, - 1603, - 1606, - 1608, - 1610 + 1648, + 1650, + 1653, + 1656, + 1658, + 1660 ] } ], @@ -7515,7 +8092,7 @@ ] }, { - "id": 1612, + "id": 1662, "name": "BundleSource", "variant": "declaration", "kind": 256, @@ -7538,7 +8115,7 @@ }, "children": [ { - "id": 1613, + "id": 1663, "name": "read", "variant": "declaration", "kind": 2048, @@ -7552,7 +8129,7 @@ ], "signatures": [ { - "id": 1614, + "id": 1664, "name": "read", "variant": "signature", "kind": 4096, @@ -7566,7 +8143,7 @@ ], "parameters": [ { - "id": 1615, + "id": 1665, "name": "fileName", "variant": "param", "kind": 32768, @@ -7601,7 +8178,7 @@ { "title": "Methods", "children": [ - 1613 + 1663 ] } ], @@ -7614,7 +8191,7 @@ ] }, { - "id": 1616, + "id": 1666, "name": "DocsUrl", "variant": "declaration", "kind": 256, @@ -7629,7 +8206,7 @@ }, "children": [ { - "id": 1617, + "id": 1667, "name": "docSet", "variant": "declaration", "kind": 1024, @@ -7657,7 +8234,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 27, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L27" } ], "type": { @@ -7679,7 +8256,7 @@ } }, { - "id": 1618, + "id": 1668, "name": "label", "variant": "declaration", "kind": 1024, @@ -7707,7 +8284,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 31, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L31" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L31" } ], "type": { @@ -7716,7 +8293,7 @@ } }, { - "id": 1619, + "id": 1669, "name": "url", "variant": "declaration", "kind": 1024, @@ -7728,7 +8305,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 25, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L25" } ], "type": { @@ -7737,7 +8314,7 @@ } }, { - "id": 1620, + "id": 1670, "name": "version", "variant": "declaration", "kind": 1024, @@ -7765,7 +8342,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 29, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L29" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L29" } ], "type": { @@ -7778,10 +8355,10 @@ { "title": "Properties", "children": [ - 1617, - 1618, - 1619, - 1620 + 1667, + 1668, + 1669, + 1670 ] } ], @@ -7790,12 +8367,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 24, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L24" } ] }, { - "id": 1621, + "id": 1671, "name": "FieldDescription", "variant": "declaration", "kind": 256, @@ -7834,7 +8411,7 @@ }, "children": [ { - "id": 1622, + "id": 1672, "name": "default", "variant": "declaration", "kind": 1024, @@ -7846,7 +8423,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 25, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L25" } ], "type": { @@ -7868,7 +8445,7 @@ } }, { - "id": 1623, + "id": 1673, "name": "enumValues", "variant": "declaration", "kind": 1024, @@ -7888,7 +8465,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 34, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L34" } ], "type": { @@ -7922,7 +8499,7 @@ } }, { - "id": 1624, + "id": 1674, "name": "exclusiveMaximum", "variant": "declaration", "kind": 1024, @@ -7950,7 +8527,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 47, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L47" } ], "type": { @@ -7972,7 +8549,7 @@ } }, { - "id": 1625, + "id": 1675, "name": "exclusiveMinimum", "variant": "declaration", "kind": 1024, @@ -8008,7 +8585,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 45, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L45" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L45" } ], "type": { @@ -8030,7 +8607,7 @@ } }, { - "id": 1626, + "id": 1676, "name": "fieldType", "variant": "declaration", "kind": 1024, @@ -8122,7 +8699,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 22, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L22" } ], "type": { @@ -8140,7 +8717,7 @@ } }, { - "id": 1627, + "id": 1677, "name": "isReference", "variant": "declaration", "kind": 1024, @@ -8160,7 +8737,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 60, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L60" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L60" } ], "type": { @@ -8169,7 +8746,7 @@ } }, { - "id": 1628, + "id": 1678, "name": "maximum", "variant": "declaration", "kind": 1024, @@ -8181,7 +8758,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 36, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L36" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L36" } ], "type": { @@ -8199,7 +8776,7 @@ } }, { - "id": 1629, + "id": 1679, "name": "minimum", "variant": "declaration", "kind": 1024, @@ -8211,7 +8788,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 35, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L35" } ], "type": { @@ -8229,7 +8806,7 @@ } }, { - "id": 1630, + "id": 1680, "name": "name", "variant": "declaration", "kind": 1024, @@ -8257,7 +8834,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 13, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L13" } ], "type": { @@ -8266,7 +8843,7 @@ } }, { - "id": 1631, + "id": 1681, "name": "note", "variant": "declaration", "kind": 1024, @@ -8318,7 +8895,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 58, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L58" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L58" } ], "type": { @@ -8336,7 +8913,7 @@ } }, { - "id": 1632, + "id": 1682, "name": "objectList", "variant": "declaration", "kind": 1024, @@ -8356,7 +8933,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 62, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L62" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L62" } ], "type": { @@ -8381,7 +8958,7 @@ } }, { - "id": 1633, + "id": 1683, "name": "required", "variant": "declaration", "kind": 1024, @@ -8409,7 +8986,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 24, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L24" } ], "type": { @@ -8418,7 +8995,7 @@ } }, { - "id": 1634, + "id": 1684, "name": "units", "variant": "declaration", "kind": 1024, @@ -8454,7 +9031,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 27, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L27" } ], "type": { @@ -8476,19 +9053,19 @@ { "title": "Properties", "children": [ - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634 + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684 ] } ], @@ -8497,19 +9074,19 @@ "fileName": "core/src/introspect/describe.ts", "line": 11, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L11" } ] }, { - "id": 1635, + "id": 1685, "name": "LexDiagnostic", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1636, + "id": 1686, "name": "code", "variant": "declaration", "kind": 1024, @@ -8553,7 +9130,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 34, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L34" } ], "type": { @@ -8568,7 +9145,7 @@ } }, { - "id": 1637, + "id": 1687, "name": "column", "variant": "declaration", "kind": 1024, @@ -8588,7 +9165,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 36, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L36" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L36" } ], "type": { @@ -8597,7 +9174,7 @@ } }, { - "id": 1638, + "id": 1688, "name": "filepath", "variant": "declaration", "kind": 1024, @@ -8617,7 +9194,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 38, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L38" } ], "type": { @@ -8626,7 +9203,7 @@ } }, { - "id": 1639, + "id": 1689, "name": "line", "variant": "declaration", "kind": 1024, @@ -8636,7 +9213,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 25, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L25" } ], "type": { @@ -8645,7 +9222,7 @@ } }, { - "id": 1640, + "id": 1690, "name": "message", "variant": "declaration", "kind": 1024, @@ -8655,7 +9232,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L24" } ], "type": { @@ -8664,7 +9241,7 @@ } }, { - "id": 1641, + "id": 1691, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -8692,7 +9269,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 46, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L46" } ], "type": { @@ -8705,12 +9282,12 @@ { "title": "Properties", "children": [ - 1636, - 1637, - 1638, - 1639, - 1640, - 1641 + 1686, + 1687, + 1688, + 1689, + 1690, + 1691 ] } ], @@ -8719,26 +9296,26 @@ "fileName": "core/src/parse/lexer.ts", "line": 23, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L23" } ], "extendedBy": [ { "type": "reference", - "target": 1675, + "target": 1727, "name": "ParseDiagnostic" } ] }, { - "id": 1642, + "id": 1692, "name": "LexOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1643, + "id": 1693, "name": "onDiagnostic", "variant": "declaration", "kind": 1024, @@ -8758,34 +9335,34 @@ "fileName": "core/src/parse/lexer.ts", "line": 65, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L65" } ], "type": { "type": "reflection", "declaration": { - "id": 1644, + "id": 1694, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 1645, + "id": 1695, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1646, + "id": 1696, "name": "diagnostic", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1635, + "target": 1685, "name": "LexDiagnostic", "package": "@idfkit/core" } @@ -8805,7 +9382,7 @@ { "title": "Properties", "children": [ - 1643 + 1693 ] } ], @@ -8814,12 +9391,12 @@ "fileName": "core/src/parse/lexer.ts", "line": 63, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L63" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L63" } ] }, { - "id": 1647, + "id": 1697, "name": "LineColumn", "variant": "declaration", "kind": 256, @@ -8834,7 +9411,7 @@ }, "children": [ { - "id": 1648, + "id": 1698, "name": "column", "variant": "declaration", "kind": 1024, @@ -8854,7 +9431,7 @@ "fileName": "core/src/syntax/region.ts", "line": 36, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L36" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/region.ts#L36" } ], "type": { @@ -8863,7 +9440,7 @@ } }, { - "id": 1649, + "id": 1699, "name": "line", "variant": "declaration", "kind": 1024, @@ -8883,7 +9460,7 @@ "fileName": "core/src/syntax/region.ts", "line": 34, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/region.ts#L34" } ], "type": { @@ -8896,8 +9473,8 @@ { "title": "Properties", "children": [ - 1648, - 1649 + 1698, + 1699 ] } ], @@ -8906,12 +9483,12 @@ "fileName": "core/src/syntax/region.ts", "line": 32, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/region.ts#L32" } ] }, { - "id": 1650, + "id": 1700, "name": "ObjectDescription", "variant": "declaration", "kind": 256, @@ -8934,7 +9511,7 @@ }, "children": [ { - "id": 1651, + "id": 1701, "name": "extensibleSize", "variant": "declaration", "kind": 1024, @@ -8954,7 +9531,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 89, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L89" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L89" } ], "type": { @@ -8972,7 +9549,7 @@ } }, { - "id": 1652, + "id": 1702, "name": "fields", "variant": "declaration", "kind": 1024, @@ -8984,7 +9561,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 81, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L81" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L81" } ], "type": { @@ -8994,7 +9571,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1621, + "target": 1671, "name": "FieldDescription", "package": "@idfkit/core" } @@ -9002,7 +9579,7 @@ } }, { - "id": 1653, + "id": 1703, "name": "hasName", "variant": "declaration", "kind": 1024, @@ -9030,7 +9607,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 85, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L85" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L85" } ], "type": { @@ -9039,7 +9616,7 @@ } }, { - "id": 1654, + "id": 1704, "name": "isExtensible", "variant": "declaration", "kind": 1024, @@ -9059,7 +9636,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 87, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L87" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L87" } ], "type": { @@ -9068,7 +9645,7 @@ } }, { - "id": 1655, + "id": 1705, "name": "memo", "variant": "declaration", "kind": 1024, @@ -9112,7 +9689,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 80, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L80" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L80" } ], "type": { @@ -9130,7 +9707,7 @@ } }, { - "id": 1656, + "id": 1706, "name": "objType", "variant": "declaration", "kind": 1024, @@ -9158,7 +9735,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 72, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L72" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L72" } ], "type": { @@ -9167,7 +9744,7 @@ } }, { - "id": 1657, + "id": 1707, "name": "requiredFields", "variant": "declaration", "kind": 1024, @@ -9187,7 +9764,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 83, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L83" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L83" } ], "type": { @@ -9207,13 +9784,13 @@ { "title": "Properties", "children": [ - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657 + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707 ] } ], @@ -9222,12 +9799,12 @@ "fileName": "core/src/introspect/describe.ts", "line": 70, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L70" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L70" } ] }, { - "id": 1658, + "id": 1708, "name": "ObjectOwner", "variant": "declaration", "kind": 256, @@ -9250,7 +9827,7 @@ }, "children": [ { - "id": 1659, + "id": 1709, "name": "onFieldChanged", "variant": "declaration", "kind": 2048, @@ -9260,12 +9837,12 @@ "fileName": "core/src/object.ts", "line": 26, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L26" } ], "signatures": [ { - "id": 1660, + "id": 1710, "name": "onFieldChanged", "variant": "signature", "kind": 4096, @@ -9275,25 +9852,25 @@ "fileName": "core/src/object.ts", "line": 26, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L26" } ], "parameters": [ { - "id": 1661, + "id": 1711, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1662, + "id": 1712, "name": "field", "variant": "param", "kind": 32768, @@ -9304,7 +9881,7 @@ } }, { - "id": 1663, + "id": 1713, "name": "previous", "variant": "param", "kind": 32768, @@ -9315,7 +9892,7 @@ } }, { - "id": 1664, + "id": 1714, "name": "next", "variant": "param", "kind": 32768, @@ -9334,7 +9911,7 @@ ] }, { - "id": 1665, + "id": 1715, "name": "onNameChanged", "variant": "declaration", "kind": 2048, @@ -9344,12 +9921,12 @@ "fileName": "core/src/object.ts", "line": 27, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L27" } ], "signatures": [ { - "id": 1666, + "id": 1716, "name": "onNameChanged", "variant": "signature", "kind": 4096, @@ -9359,25 +9936,25 @@ "fileName": "core/src/object.ts", "line": 27, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L27" } ], "parameters": [ { - "id": 1667, + "id": 1717, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1668, + "id": 1718, "name": "previous", "variant": "param", "kind": 32768, @@ -9388,7 +9965,7 @@ } }, { - "id": 1669, + "id": 1719, "name": "next", "variant": "param", "kind": 32768, @@ -9405,14 +9982,59 @@ } } ] + }, + { + "id": 1720, + "name": "tracksExtensibleEdits", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "core/src/object.ts", + "line": 35, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L35" + } + ], + "signatures": [ + { + "id": 1721, + "name": "tracksExtensibleEdits", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether an in-place edit to an extensible repeat has to be heard.\n\nTrue only while the document carries a retained source, because that is the only time there is\na touched record to maintain. Hearing it costs an accessor on every field of every repeat, and\nan accessor read is far dearer than a plain one over the vertices of a real model." + } + ] + }, + "sources": [ + { + "fileName": "core/src/object.ts", + "line": 35, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ] } ], "groups": [ { "title": "Methods", "children": [ - 1659, - 1665 + 1709, + 1715, + 1720 ] } ], @@ -9421,36 +10043,62 @@ "fileName": "core/src/object.ts", "line": 25, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L25" } ], "implementedBy": [ { "type": "reference", - "target": 1362, + "target": 1400, "name": "IdfDocument" } ] }, { - "id": 1670, + "id": 1722, "name": "ObjectWriteOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1671, + "id": 1723, "name": "commentColumn", "variant": "declaration", "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Where " + }, + { + "kind": "code", + "text": "`!-`" + }, + { + "kind": "text", + "text": " goes, counted from 1. See " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "WriteIdfOptions.commentColumn", + "target": 1823 + }, + { + "kind": "text", + "text": "." + } + ] + }, "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 181, + "line": 234, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L181" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L234" } ], "type": { @@ -9459,7 +10107,7 @@ } }, { - "id": 1672, + "id": 1724, "name": "comments", "variant": "declaration", "kind": 1024, @@ -9467,9 +10115,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 180, + "line": 232, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L180" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L232" } ], "type": { @@ -9478,7 +10126,7 @@ } }, { - "id": 1673, + "id": 1725, "name": "compressed", "variant": "declaration", "kind": 1024, @@ -9504,9 +10152,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 184, + "line": 237, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L184" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L237" } ], "type": { @@ -9515,7 +10163,7 @@ } }, { - "id": 1674, + "id": 1726, "name": "indent", "variant": "declaration", "kind": 1024, @@ -9523,9 +10171,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 182, + "line": 235, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L182" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L235" } ], "type": { @@ -9538,31 +10186,31 @@ { "title": "Properties", "children": [ - 1671, - 1672, - 1673, - 1674 + 1723, + 1724, + 1725, + 1726 ] } ], "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 179, + "line": 231, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L179" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L231" } ] }, { - "id": 1675, + "id": 1727, "name": "ParseDiagnostic", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1676, + "id": 1728, "name": "code", "variant": "declaration", "kind": 1024, @@ -9607,7 +10255,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 34, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L34" } ], "type": { @@ -9622,12 +10270,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1636, + "target": 1686, "name": "LexDiagnostic.code" } }, { - "id": 1677, + "id": 1729, "name": "column", "variant": "declaration", "kind": 1024, @@ -9648,7 +10296,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 36, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L36" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L36" } ], "type": { @@ -9657,12 +10305,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1637, + "target": 1687, "name": "LexDiagnostic.column" } }, { - "id": 1678, + "id": 1730, "name": "filepath", "variant": "declaration", "kind": 1024, @@ -9683,7 +10331,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 38, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L38" } ], "type": { @@ -9692,12 +10340,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1638, + "target": 1688, "name": "LexDiagnostic.filepath" } }, { - "id": 1679, + "id": 1731, "name": "line", "variant": "declaration", "kind": 1024, @@ -9709,7 +10357,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 25, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L25" } ], "type": { @@ -9718,12 +10366,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1639, + "target": 1689, "name": "LexDiagnostic.line" } }, { - "id": 1680, + "id": 1732, "name": "message", "variant": "declaration", "kind": 1024, @@ -9735,7 +10383,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L24" } ], "type": { @@ -9744,12 +10392,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1640, + "target": 1690, "name": "LexDiagnostic.message" } }, { - "id": 1681, + "id": 1733, "name": "objectName", "variant": "declaration", "kind": 1024, @@ -9793,7 +10441,7 @@ "fileName": "core/src/parse/idf.ts", "line": 20, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L20" } ], "type": { @@ -9802,7 +10450,7 @@ } }, { - "id": 1682, + "id": 1734, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -9831,7 +10479,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 46, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L46" } ], "type": { @@ -9840,7 +10488,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 1641, + "target": 1691, "name": "LexDiagnostic.typeName" } } @@ -9849,13 +10497,13 @@ { "title": "Properties", "children": [ - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682 + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734 ] } ], @@ -9864,27 +10512,27 @@ "fileName": "core/src/parse/idf.ts", "line": 12, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L12" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L12" } ], "extendedTypes": [ { "type": "reference", - "target": 1635, + "target": 1685, "name": "LexDiagnostic", "package": "@idfkit/core" } ] }, { - "id": 1683, + "id": 1735, "name": "ParseOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1684, + "id": 1736, "name": "onDiagnostic", "variant": "declaration", "kind": 1024, @@ -9912,34 +10560,34 @@ "fileName": "core/src/parse/idf.ts", "line": 30, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L30" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L30" } ], "type": { "type": "reflection", "declaration": { - "id": 1685, + "id": 1737, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 1686, + "id": 1738, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1687, + "id": 1739, "name": "diagnostic", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1675, + "target": 1727, "name": "ParseDiagnostic", "package": "@idfkit/core" } @@ -9955,7 +10603,7 @@ } }, { - "id": 1688, + "id": 1740, "name": "preserveFormatting", "variant": "declaration", "kind": 1024, @@ -10010,7 +10658,7 @@ "fileName": "core/src/parse/idf.ts", "line": 46, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L46" } ], "type": { @@ -10019,7 +10667,7 @@ } }, { - "id": 1689, + "id": 1741, "name": "strict", "variant": "declaration", "kind": 1024, @@ -10050,7 +10698,7 @@ "fileName": "core/src/parse/idf.ts", "line": 28, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L28" } ], "type": { @@ -10063,9 +10711,9 @@ { "title": "Properties", "children": [ - 1684, - 1688, - 1689 + 1736, + 1740, + 1741 ] } ], @@ -10074,26 +10722,26 @@ "fileName": "core/src/parse/idf.ts", "line": 23, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L23" } ], "extendedBy": [ { "type": "reference", - "target": 1924, + "target": 1977, "name": "LoadOptions" } ] }, { - "id": 1690, + "id": 1742, "name": "ParseResult", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1691, + "id": 1743, "name": "diagnostics", "variant": "declaration", "kind": 1024, @@ -10103,21 +10751,21 @@ "fileName": "core/src/parse/idf.ts", "line": 51, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L51" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L51" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 1675, + "target": 1727, "name": "ParseDiagnostic", "package": "@idfkit/core" } } }, { - "id": 1692, + "id": 1744, "name": "document", "variant": "declaration", "kind": 1024, @@ -10127,16 +10775,16 @@ "fileName": "core/src/parse/idf.ts", "line": 50, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L50" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L50" } ], "type": { "type": "reference", - "target": 1362, + "target": 1400, "typeArguments": [ { "type": "reference", - "target": 1693, + "target": 1745, "name": "M", "package": "@idfkit/core", "qualifiedName": "ParseResult.M", @@ -10152,8 +10800,8 @@ { "title": "Properties", "children": [ - 1691, - 1692 + 1743, + 1744 ] } ], @@ -10162,25 +10810,25 @@ "fileName": "core/src/parse/idf.ts", "line": 49, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L49" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L49" } ], "typeParameters": [ { - "id": 1693, + "id": 1745, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1793, + "target": 1846, "name": "UntypedMap", "package": "@idfkit/core" } @@ -10188,7 +10836,7 @@ ] }, { - "id": 1694, + "id": 1746, "name": "RawObject", "variant": "declaration", "kind": 256, @@ -10203,7 +10851,7 @@ }, "children": [ { - "id": 1695, + "id": 1747, "name": "column", "variant": "declaration", "kind": 1024, @@ -10223,7 +10871,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 12, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L12" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L12" } ], "type": { @@ -10232,7 +10880,7 @@ } }, { - "id": 1696, + "id": 1748, "name": "line", "variant": "declaration", "kind": 1024, @@ -10250,7 +10898,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 10, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L10" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L10" } ], "type": { @@ -10259,7 +10907,7 @@ } }, { - "id": 1697, + "id": 1749, "name": "offset", "variant": "declaration", "kind": 1024, @@ -10279,7 +10927,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 20, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L20" } ], "type": { @@ -10288,7 +10936,7 @@ } }, { - "id": 1698, + "id": 1750, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -10314,7 +10962,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 6, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L6" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L6" } ], "type": { @@ -10323,7 +10971,7 @@ } }, { - "id": 1699, + "id": 1751, "name": "values", "variant": "declaration", "kind": 1024, @@ -10341,7 +10989,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 8, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L8" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L8" } ], "type": { @@ -10357,11 +11005,11 @@ { "title": "Properties", "children": [ - 1695, - 1696, - 1697, - 1698, - 1699 + 1747, + 1748, + 1749, + 1750, + 1751 ] } ], @@ -10370,12 +11018,12 @@ "fileName": "core/src/parse/lexer.ts", "line": 4, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L4" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L4" } ] }, { - "id": 1700, + "id": 1752, "name": "ReferenceEdge", "variant": "declaration", "kind": 256, @@ -10390,7 +11038,7 @@ }, "children": [ { - "id": 1701, + "id": 1753, "name": "field", "variant": "declaration", "kind": 1024, @@ -10402,7 +11050,7 @@ "fileName": "core/src/references.ts", "line": 6, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L6" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L6" } ], "type": { @@ -10411,7 +11059,7 @@ } }, { - "id": 1702, + "id": 1754, "name": "from", "variant": "declaration", "kind": 1024, @@ -10423,18 +11071,18 @@ "fileName": "core/src/references.ts", "line": 5, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L5" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L5" } ], "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1703, + "id": 1755, "name": "index", "variant": "declaration", "kind": 1024, @@ -10455,7 +11103,7 @@ "fileName": "core/src/references.ts", "line": 12, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L12" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L12" } ], "type": { @@ -10464,7 +11112,7 @@ } }, { - "id": 1704, + "id": 1756, "name": "target", "variant": "declaration", "kind": 1024, @@ -10476,7 +11124,7 @@ "fileName": "core/src/references.ts", "line": 7, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L7" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L7" } ], "type": { @@ -10489,10 +11137,10 @@ { "title": "Properties", "children": [ - 1701, - 1702, - 1703, - 1704 + 1753, + 1754, + 1755, + 1756 ] } ], @@ -10501,12 +11149,12 @@ "fileName": "core/src/references.ts", "line": 4, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L4" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/references.ts#L4" } ] }, { - "id": 1705, + "id": 1757, "name": "Region", "variant": "declaration", "kind": 256, @@ -10553,7 +11201,7 @@ }, "children": [ { - "id": 1706, + "id": 1758, "name": "end", "variant": "declaration", "kind": 1024, @@ -10573,7 +11221,7 @@ "fileName": "core/src/syntax/region.ts", "line": 20, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/region.ts#L20" } ], "type": { @@ -10582,7 +11230,7 @@ } }, { - "id": 1707, + "id": 1759, "name": "start", "variant": "declaration", "kind": 1024, @@ -10602,7 +11250,7 @@ "fileName": "core/src/syntax/region.ts", "line": 18, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L18" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/region.ts#L18" } ], "type": { @@ -10615,8 +11263,8 @@ { "title": "Properties", "children": [ - 1706, - 1707 + 1758, + 1759 ] } ], @@ -10625,26 +11273,26 @@ "fileName": "core/src/syntax/region.ts", "line": 16, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L16" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/region.ts#L16" } ], "extendedBy": [ { "type": "reference", - "target": 1750, + "target": 1802, "name": "Token" } ] }, { - "id": 1708, + "id": 1760, "name": "SchemaDelta", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1709, + "id": 1761, "name": "added", "variant": "declaration", "kind": 1024, @@ -10673,7 +11321,7 @@ } }, { - "id": 1710, + "id": 1762, "name": "changed", "variant": "declaration", "kind": 1024, @@ -10702,7 +11350,7 @@ } }, { - "id": 1711, + "id": 1763, "name": "removed", "variant": "declaration", "kind": 1024, @@ -10735,9 +11383,9 @@ { "title": "Properties", "children": [ - 1709, - 1710, - 1711 + 1761, + 1762, + 1763 ] } ], @@ -10750,14 +11398,14 @@ ] }, { - "id": 1712, + "id": 1764, "name": "SlimField", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1713, + "id": 1765, "name": "auto", "variant": "declaration", "kind": 1024, @@ -10801,7 +11449,7 @@ } }, { - "id": 1714, + "id": 1766, "name": "d", "variant": "declaration", "kind": 1024, @@ -10838,7 +11486,7 @@ } }, { - "id": 1715, + "id": 1767, "name": "e", "variant": "declaration", "kind": 1024, @@ -10894,7 +11542,7 @@ } }, { - "id": 1716, + "id": 1768, "name": "eb", "variant": "declaration", "kind": 1024, @@ -10962,7 +11610,7 @@ } }, { - "id": 1717, + "id": 1769, "name": "max", "variant": "declaration", "kind": 1024, @@ -10982,7 +11630,7 @@ } }, { - "id": 1718, + "id": 1770, "name": "min", "variant": "declaration", "kind": 1024, @@ -11002,7 +11650,7 @@ } }, { - "id": 1719, + "id": 1771, "name": "n", "variant": "declaration", "kind": 1024, @@ -11038,7 +11686,7 @@ } }, { - "id": 1720, + "id": 1772, "name": "ol", "variant": "declaration", "kind": 1024, @@ -11069,7 +11717,7 @@ } }, { - "id": 1721, + "id": 1773, "name": "rc", "variant": "declaration", "kind": 1024, @@ -11097,7 +11745,7 @@ } }, { - "id": 1722, + "id": 1774, "name": "ref", "variant": "declaration", "kind": 1024, @@ -11128,7 +11776,7 @@ } }, { - "id": 1723, + "id": 1775, "name": "se", "variant": "declaration", "kind": 1024, @@ -11239,7 +11887,7 @@ } }, { - "id": 1724, + "id": 1776, "name": "t", "variant": "declaration", "kind": 1024, @@ -11261,13 +11909,13 @@ ], "type": { "type": "reference", - "target": 1288, + "target": 1326, "name": "FieldKind", "package": "@idfkit/schemas" } }, { - "id": 1725, + "id": 1777, "name": "u", "variant": "declaration", "kind": 1024, @@ -11295,7 +11943,7 @@ } }, { - "id": 1726, + "id": 1778, "name": "xmax", "variant": "declaration", "kind": 1024, @@ -11340,7 +11988,7 @@ } }, { - "id": 1727, + "id": 1779, "name": "xmin", "variant": "declaration", "kind": 1024, @@ -11413,21 +12061,21 @@ { "title": "Properties", "children": [ - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727 + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779 ] } ], @@ -11440,14 +12088,14 @@ ] }, { - "id": 1728, + "id": 1780, "name": "SlimType", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1729, + "id": 1781, "name": "anon", "variant": "declaration", "kind": 1024, @@ -11491,7 +12139,7 @@ } }, { - "id": 1730, + "id": 1782, "name": "f", "variant": "declaration", "kind": 1024, @@ -11528,7 +12176,7 @@ } }, { - "id": 1731, + "id": 1783, "name": "fo", "variant": "declaration", "kind": 1024, @@ -11583,7 +12231,7 @@ } }, { - "id": 1732, + "id": 1784, "name": "g", "variant": "declaration", "kind": 1024, @@ -11619,7 +12267,7 @@ } }, { - "id": 1733, + "id": 1785, "name": "m", "variant": "declaration", "kind": 1024, @@ -11655,7 +12303,7 @@ } }, { - "id": 1734, + "id": 1786, "name": "nref", "variant": "declaration", "kind": 1024, @@ -11686,7 +12334,7 @@ } }, { - "id": 1735, + "id": 1787, "name": "nreq", "variant": "declaration", "kind": 1024, @@ -11714,7 +12362,7 @@ } }, { - "id": 1736, + "id": 1788, "name": "p", "variant": "declaration", "kind": 1024, @@ -11748,7 +12396,7 @@ }, { "type": "reference", - "target": 1712, + "target": 1764, "name": "SlimField", "package": "@idfkit/schemas" } @@ -11758,7 +12406,7 @@ } }, { - "id": 1737, + "id": 1789, "name": "r", "variant": "declaration", "kind": 1024, @@ -11789,7 +12437,7 @@ } }, { - "id": 1738, + "id": 1790, "name": "s", "variant": "declaration", "kind": 1024, @@ -11841,7 +12489,7 @@ } }, { - "id": 1739, + "id": 1791, "name": "x", "variant": "declaration", "kind": 1024, @@ -11865,7 +12513,7 @@ ], "type": { "type": "reference", - "target": 1256, + "target": 1294, "name": "SlimExtensible", "package": "@idfkit/schemas" } @@ -11875,17 +12523,17 @@ { "title": "Properties", "children": [ - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739 + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791 ] } ], @@ -11898,7 +12546,7 @@ ] }, { - "id": 1740, + "id": 1792, "name": "Statement", "variant": "declaration", "kind": 256, @@ -11913,7 +12561,7 @@ }, "children": [ { - "id": 1741, + "id": 1793, "name": "fields", "variant": "declaration", "kind": 1024, @@ -11941,7 +12589,7 @@ "fileName": "core/src/syntax/layer.ts", "line": 31, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L31" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/layer.ts#L31" } ], "type": { @@ -11951,7 +12599,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1705, + "target": 1757, "name": "Region", "package": "@idfkit/core" } @@ -11959,7 +12607,7 @@ } }, { - "id": 1742, + "id": 1794, "name": "region", "variant": "declaration", "kind": 1024, @@ -11979,18 +12627,18 @@ "fileName": "core/src/syntax/layer.ts", "line": 15, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L15" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/layer.ts#L15" } ], "type": { "type": "reference", - "target": 1705, + "target": 1757, "name": "Region", "package": "@idfkit/core" } }, { - "id": 1743, + "id": 1795, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -12010,18 +12658,18 @@ "fileName": "core/src/syntax/layer.ts", "line": 17, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L17" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/layer.ts#L17" } ], "type": { "type": "reference", - "target": 1705, + "target": 1757, "name": "Region", "package": "@idfkit/core" } }, { - "id": 1744, + "id": 1796, "name": "typeNameText", "variant": "declaration", "kind": 1024, @@ -12041,7 +12689,7 @@ "fileName": "core/src/syntax/layer.ts", "line": 19, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/layer.ts#L19" } ], "type": { @@ -12050,7 +12698,7 @@ } }, { - "id": 1745, + "id": 1797, "name": "unterminated", "variant": "declaration", "kind": 1024, @@ -12070,7 +12718,7 @@ "fileName": "core/src/syntax/layer.ts", "line": 33, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/layer.ts#L33" } ], "type": { @@ -12083,11 +12731,11 @@ { "title": "Properties", "children": [ - 1741, - 1742, - 1743, - 1744, - 1745 + 1793, + 1794, + 1795, + 1796, + 1797 ] } ], @@ -12096,12 +12744,12 @@ "fileName": "core/src/syntax/layer.ts", "line": 13, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/layer.ts#L13" } ] }, { - "id": 1746, + "id": 1798, "name": "SyntaxLayer", "variant": "declaration", "kind": 256, @@ -12116,7 +12764,7 @@ "kind": "inline-tag", "tag": "@link", "text": "classify", - "target": 1803 + "target": 1856 }, { "kind": "text", @@ -12150,7 +12798,7 @@ }, "children": [ { - "id": 1747, + "id": 1799, "name": "statements", "variant": "declaration", "kind": 1024, @@ -12170,7 +12818,7 @@ "fileName": "core/src/syntax/layer.ts", "line": 52, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L52" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/layer.ts#L52" } ], "type": { @@ -12180,7 +12828,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1740, + "target": 1792, "name": "Statement", "package": "@idfkit/core" } @@ -12188,7 +12836,7 @@ } }, { - "id": 1748, + "id": 1800, "name": "text", "variant": "declaration", "kind": 1024, @@ -12208,7 +12856,7 @@ "fileName": "core/src/syntax/layer.ts", "line": 50, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L50" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/layer.ts#L50" } ], "type": { @@ -12217,7 +12865,7 @@ } }, { - "id": 1749, + "id": 1801, "name": "tokens", "variant": "declaration", "kind": 1024, @@ -12237,7 +12885,7 @@ "fileName": "core/src/syntax/layer.ts", "line": 54, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L54" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/layer.ts#L54" } ], "type": { @@ -12256,9 +12904,9 @@ { "title": "Properties", "children": [ - 1747, - 1748, - 1749 + 1799, + 1800, + 1801 ] } ], @@ -12267,12 +12915,12 @@ "fileName": "core/src/syntax/layer.ts", "line": 48, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L48" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/layer.ts#L48" } ] }, { - "id": 1750, + "id": 1802, "name": "Token", "variant": "declaration", "kind": 256, @@ -12311,7 +12959,7 @@ }, "children": [ { - "id": 1751, + "id": 1803, "name": "end", "variant": "declaration", "kind": 1024, @@ -12332,7 +12980,7 @@ "fileName": "core/src/syntax/region.ts", "line": 20, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/region.ts#L20" } ], "type": { @@ -12341,12 +12989,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1706, + "target": 1758, "name": "Region.end" } }, { - "id": 1752, + "id": 1804, "name": "kind", "variant": "declaration", "kind": 1024, @@ -12358,18 +13006,18 @@ "fileName": "core/src/syntax/tokens.ts", "line": 27, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/tokens.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/tokens.ts#L27" } ], "type": { "type": "reference", - "target": 1789, + "target": 1842, "name": "TokenKind", "package": "@idfkit/core" } }, { - "id": 1753, + "id": 1805, "name": "start", "variant": "declaration", "kind": 1024, @@ -12390,7 +13038,7 @@ "fileName": "core/src/syntax/region.ts", "line": 18, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L18" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/region.ts#L18" } ], "type": { @@ -12399,7 +13047,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 1707, + "target": 1759, "name": "Region.start" } } @@ -12408,9 +13056,9 @@ { "title": "Properties", "children": [ - 1751, - 1752, - 1753 + 1803, + 1804, + 1805 ] } ], @@ -12419,20 +13067,20 @@ "fileName": "core/src/syntax/tokens.ts", "line": 26, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/tokens.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/tokens.ts#L26" } ], "extendedTypes": [ { "type": "reference", - "target": 1705, + "target": 1757, "name": "Region", "package": "@idfkit/core" } ] }, { - "id": 1754, + "id": 1806, "name": "ValidationError", "variant": "declaration", "kind": 256, @@ -12503,7 +13151,7 @@ }, "children": [ { - "id": 1755, + "id": 1807, "name": "code", "variant": "declaration", "kind": 1024, @@ -12523,7 +13171,7 @@ "fileName": "core/src/validate/types.ts", "line": 49, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L49" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L49" } ], "type": { @@ -12532,7 +13180,7 @@ } }, { - "id": 1756, + "id": 1808, "name": "field", "variant": "declaration", "kind": 1024, @@ -12560,7 +13208,7 @@ "fileName": "core/src/validate/types.ts", "line": 45, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L45" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L45" } ], "type": { @@ -12578,7 +13226,7 @@ } }, { - "id": 1757, + "id": 1809, "name": "message", "variant": "declaration", "kind": 1024, @@ -12598,7 +13246,7 @@ "fileName": "core/src/validate/types.ts", "line": 47, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L47" } ], "type": { @@ -12607,7 +13255,7 @@ } }, { - "id": 1758, + "id": 1810, "name": "objName", "variant": "declaration", "kind": 1024, @@ -12627,7 +13275,7 @@ "fileName": "core/src/validate/types.ts", "line": 43, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L43" } ], "type": { @@ -12636,7 +13284,7 @@ } }, { - "id": 1759, + "id": 1811, "name": "objType", "variant": "declaration", "kind": 1024, @@ -12656,7 +13304,7 @@ "fileName": "core/src/validate/types.ts", "line": 41, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L41" } ], "type": { @@ -12665,7 +13313,7 @@ } }, { - "id": 1760, + "id": 1812, "name": "severity", "variant": "declaration", "kind": 1024, @@ -12685,12 +13333,12 @@ "fileName": "core/src/validate/types.ts", "line": 39, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L39" } ], "type": { "type": "reference", - "target": 1787, + "target": 1840, "name": "Severity", "package": "@idfkit/core" } @@ -12700,12 +13348,12 @@ { "title": "Properties", "children": [ - 1755, - 1756, - 1757, - 1758, - 1759, - 1760 + 1807, + 1808, + 1809, + 1810, + 1811, + 1812 ] } ], @@ -12714,12 +13362,12 @@ "fileName": "core/src/validate/types.ts", "line": 37, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L37" } ] }, { - "id": 1761, + "id": 1813, "name": "ValidationResult", "variant": "declaration", "kind": 256, @@ -12750,7 +13398,7 @@ }, "children": [ { - "id": 1762, + "id": 1814, "name": "errors", "variant": "declaration", "kind": 1024, @@ -12762,7 +13410,7 @@ "fileName": "core/src/validate/types.ts", "line": 59, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L59" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L59" } ], "type": { @@ -12772,7 +13420,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1754, + "target": 1806, "name": "ValidationError", "package": "@idfkit/core" } @@ -12780,7 +13428,7 @@ } }, { - "id": 1763, + "id": 1815, "name": "info", "variant": "declaration", "kind": 1024, @@ -12792,7 +13440,7 @@ "fileName": "core/src/validate/types.ts", "line": 61, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L61" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L61" } ], "type": { @@ -12802,7 +13450,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1754, + "target": 1806, "name": "ValidationError", "package": "@idfkit/core" } @@ -12810,7 +13458,7 @@ } }, { - "id": 1764, + "id": 1816, "name": "isValid", "variant": "declaration", "kind": 1024, @@ -12838,7 +13486,7 @@ "fileName": "core/src/validate/types.ts", "line": 63, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L63" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L63" } ], "type": { @@ -12847,7 +13495,7 @@ } }, { - "id": 1765, + "id": 1817, "name": "totalIssues", "variant": "declaration", "kind": 1024, @@ -12871,7 +13519,7 @@ "fileName": "core/src/validate/types.ts", "line": 65, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L65" } ], "type": { @@ -12880,7 +13528,7 @@ } }, { - "id": 1766, + "id": 1818, "name": "warnings", "variant": "declaration", "kind": 1024, @@ -12892,7 +13540,7 @@ "fileName": "core/src/validate/types.ts", "line": 60, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L60" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L60" } ], "type": { @@ -12902,7 +13550,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1754, + "target": 1806, "name": "ValidationError", "package": "@idfkit/core" } @@ -12914,11 +13562,11 @@ { "title": "Properties", "children": [ - 1762, - 1763, - 1764, - 1765, - 1766 + 1814, + 1815, + 1816, + 1817, + 1818 ] } ], @@ -12927,19 +13575,19 @@ "fileName": "core/src/validate/types.ts", "line": 58, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L58" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L58" } ] }, { - "id": 1767, + "id": 1819, "name": "WriteEpJsonOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1768, + "id": 1820, "name": "indent", "variant": "declaration", "kind": 1024, @@ -12978,7 +13626,7 @@ "fileName": "core/src/write/epjson.ts", "line": 11, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/epjson.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/epjson.ts#L11" } ], "type": { @@ -12987,7 +13635,7 @@ } }, { - "id": 1769, + "id": 1821, "name": "preserveFormatting", "variant": "declaration", "kind": 1024, @@ -13034,7 +13682,7 @@ "fileName": "core/src/write/epjson.ts", "line": 30, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/epjson.ts#L30" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/epjson.ts#L30" } ], "type": { @@ -13047,8 +13695,8 @@ { "title": "Properties", "children": [ - 1768, - 1769 + 1820, + 1821 ] } ], @@ -13057,19 +13705,19 @@ "fileName": "core/src/write/epjson.ts", "line": 6, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/epjson.ts#L6" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/epjson.ts#L6" } ] }, { - "id": 1770, + "id": 1822, "name": "WriteIdfOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1771, + "id": 1823, "name": "commentColumn", "variant": "declaration", "kind": 1024, @@ -13080,7 +13728,23 @@ "summary": [ { "kind": "text", - "text": "Column the field-name comments are aligned to." + "text": "Column the field-name comments are aligned to, counting from 1 as an editor does.\n\nThe default puts " + }, + { + "kind": "code", + "text": "`!-`" + }, + { + "kind": "text", + "text": " where EnergyPlus itself puts it. Its own example files write the marker\nat column 30 on 223 of the 231 commented lines of " + }, + { + "kind": "code", + "text": "`1ZoneUncontrolled.idf`" + }, + { + "kind": "text", + "text": ", and matching that\nis what keeps a rewritten object flush with the untouched objects around it: on a preserving\nwrite, a column of its own would leave a visible seam at every edit." } ], "blockTags": [ @@ -13098,9 +13762,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 19, + "line": 25, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L25" } ], "type": { @@ -13109,7 +13773,7 @@ } }, { - "id": 1772, + "id": 1824, "name": "comments", "variant": "declaration", "kind": 1024, @@ -13148,7 +13812,7 @@ "fileName": "core/src/write/idf.ts", "line": 14, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L14" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L14" } ], "type": { @@ -13157,7 +13821,7 @@ } }, { - "id": 1773, + "id": 1825, "name": "compressed", "variant": "declaration", "kind": 1024, @@ -13202,9 +13866,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 61, + "line": 67, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L61" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L67" } ], "type": { @@ -13213,7 +13877,72 @@ } }, { - "id": 1774, + "id": 1826, + "name": "fieldComments", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "What to do about a field the author deliberately left without a comment.\n\nOnly meaningful on the preserving path, which is the only path that knows what the author\nwrote. " + }, + { + "kind": "code", + "text": "`'preserve'`" + }, + { + "kind": "text", + "text": " leaves a bare field bare, because absence is as much a thing the author\nwrote as the words are. " + }, + { + "kind": "code", + "text": "`'generate'`" + }, + { + "kind": "text", + "text": " labels it, for a caller who wants the file annotated.\n\nNeither setting touches the author's own comment lines. A comment between two objects is\ncarried by the text between them, and a comment on its own line inside an object is emitted\nwith the field below it, so asking for labels adds them and never costs a line." + } + ], + "blockTags": [ + { + "tag": "@defaultValue", + "content": [ + { + "kind": "code", + "text": "```ts\n'preserve'\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "core/src/write/idf.ts", + "line": 103, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L103" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "preserve" + }, + { + "type": "literal", + "value": "generate" + } + ] + } + }, + { + "id": 1827, "name": "indent", "variant": "declaration", "kind": 1024, @@ -13242,9 +13971,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 24, + "line": 30, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L30" } ], "type": { @@ -13253,7 +13982,7 @@ } }, { - "id": 1775, + "id": 1828, "name": "ordering", "variant": "declaration", "kind": 1024, @@ -13322,9 +14051,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 47, + "line": 53, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L53" } ], "type": { @@ -13342,7 +14071,7 @@ } }, { - "id": 1776, + "id": 1829, "name": "preserveFormatting", "variant": "declaration", "kind": 1024, @@ -13417,7 +14146,15 @@ }, { "kind": "text", - "text": ", which ask for a different output FORM the source was never going to\nexpress, so producing it is honest." + "text": ", which ask for a different output FORM the source was never going to\nexpress, so producing it is honest.\n\nCheapest where it is used: a write that reproduces most of the file copies text rather than\nbuilding it. It CROSSES OVER once most objects have changed, because this path renders each of\nthem AND walks the tiling, which is more work than formatting alone. On a 13 MB model with\nevery object edited it is roughly four times slower than a formatting write. Nothing to guard\nagainst, since an edit touches a handful of objects and a whole model rewrite is what\n" + }, + { + "kind": "code", + "text": "`preserveFormatting: false`" + }, + { + "kind": "text", + "text": " is for, but worth knowing before timing the wrong one." } ], "blockTags": [ @@ -13435,9 +14172,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 76, + "line": 89, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L76" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L89" } ], "type": { @@ -13446,7 +14183,7 @@ } }, { - "id": 1777, + "id": 1830, "name": "versionFirst", "variant": "declaration", "kind": 1024, @@ -13483,9 +14220,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 31, + "line": 37, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L31" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L37" } ], "type": { @@ -13498,13 +14235,14 @@ { "title": "Properties", "children": [ - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777 + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830 ] } ], @@ -13513,12 +14251,12 @@ "fileName": "core/src/write/idf.ts", "line": 9, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L9" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L9" } ] }, { - "id": 1778, + "id": 1831, "name": "AnyTypeMap", "variant": "declaration", "kind": 2097152, @@ -13536,7 +14274,7 @@ "fileName": "core/src/typemap.ts", "line": 23, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/typemap.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/typemap.ts#L23" } ], "type": { @@ -13561,7 +14299,7 @@ } }, { - "id": 1779, + "id": 1832, "name": "EpJson", "variant": "declaration", "kind": 2097152, @@ -13579,7 +14317,7 @@ "fileName": "core/src/parse/epjson.ts", "line": 12, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/epjson.ts#L12" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/epjson.ts#L12" } ], "type": { @@ -13636,7 +14374,7 @@ } }, { - "id": 1780, + "id": 1833, "name": "ExtensibleGroup", "variant": "declaration", "kind": 2097152, @@ -13654,7 +14392,7 @@ "fileName": "core/src/object.ts", "line": 11, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L11" } ], "type": { @@ -13688,7 +14426,7 @@ } }, { - "id": 1781, + "id": 1834, "name": "FieldValue", "variant": "declaration", "kind": 2097152, @@ -13714,7 +14452,7 @@ "fileName": "core/src/object.ts", "line": 8, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L8" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L8" } ], "type": { @@ -13736,7 +14474,7 @@ } }, { - "id": 1782, + "id": 1835, "name": "FieldValues", "variant": "declaration", "kind": 2097152, @@ -13754,7 +14492,7 @@ "fileName": "core/src/object.ts", "line": 17, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L17" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L17" } ], "type": { @@ -13774,7 +14512,7 @@ "types": [ { "type": "reference", - "target": 1788, + "target": 1841, "name": "StoredValue", "package": "@idfkit/core" }, @@ -13794,7 +14532,7 @@ } }, { - "id": 1783, + "id": 1836, "name": "ObjectOf", "variant": "declaration", "kind": 2097152, @@ -13812,25 +14550,25 @@ "fileName": "core/src/typemap.ts", "line": 38, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/typemap.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/typemap.ts#L38" } ], "typeParameters": [ { - "id": 1784, + "id": 1837, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" } }, { - "id": 1785, + "id": 1838, "name": "K", "variant": "typeParam", "kind": 131072, @@ -13845,7 +14583,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 1785, + "target": 1838, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -13855,7 +14593,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1784, + "target": 1837, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -13865,14 +14603,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 1785, + "target": 1838, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 1784, + "target": 1837, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -13880,14 +14618,14 @@ }, "falseType": { "type": "reference", - "target": 1793, + "target": 1846, "name": "UntypedMap", "package": "@idfkit/core" } } }, { - "id": 1786, + "id": 1839, "name": "ProsePool", "variant": "declaration", "kind": 2097152, @@ -13960,7 +14698,7 @@ } }, { - "id": 1787, + "id": 1840, "name": "Severity", "variant": "declaration", "kind": 2097152, @@ -13994,13 +14732,13 @@ "fileName": "core/src/validate/types.ts", "line": 21, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L21" }, { "fileName": "core/src/validate/types.ts", "line": 27, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L27" } ], "type": { @@ -14012,7 +14750,7 @@ "type": "query", "queryType": { "type": "reference", - "target": 1798, + "target": 1851, "name": "Severity", "package": "@idfkit/core" } @@ -14022,7 +14760,7 @@ "type": "query", "queryType": { "type": "reference", - "target": 1798, + "target": 1851, "name": "Severity", "package": "@idfkit/core" } @@ -14030,7 +14768,7 @@ } }, { - "id": 1788, + "id": 1841, "name": "StoredValue", "variant": "declaration", "kind": 2097152, @@ -14048,7 +14786,7 @@ "fileName": "core/src/object.ts", "line": 14, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L14" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/object.ts#L14" } ], "type": { @@ -14066,7 +14804,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1780, + "target": 1833, "name": "ExtensibleGroup", "package": "@idfkit/core" } @@ -14075,7 +14813,7 @@ } }, { - "id": 1789, + "id": 1842, "name": "TokenKind", "variant": "declaration", "kind": 2097152, @@ -14101,7 +14839,7 @@ "fileName": "core/src/syntax/tokens.ts", "line": 7, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/tokens.ts#L7" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/tokens.ts#L7" } ], "type": { @@ -14135,7 +14873,7 @@ } }, { - "id": 1790, + "id": 1843, "name": "TypeNameOf", "variant": "declaration", "kind": 2097152, @@ -14169,19 +14907,19 @@ "fileName": "core/src/typemap.ts", "line": 35, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/typemap.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/typemap.ts#L35" } ], "typeParameters": [ { - "id": 1791, + "id": 1844, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" } @@ -14198,7 +14936,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1791, + "target": 1844, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -14220,7 +14958,7 @@ { "type": "reflection", "declaration": { - "id": 1792, + "id": 1845, "name": "__type", "variant": "declaration", "kind": 65536, @@ -14233,7 +14971,7 @@ } }, { - "id": 1793, + "id": 1846, "name": "UntypedMap", "variant": "declaration", "kind": 2097152, @@ -14251,7 +14989,7 @@ "fileName": "core/src/typemap.ts", "line": 26, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/typemap.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/typemap.ts#L26" } ], "type": { @@ -14276,7 +15014,7 @@ } }, { - "id": 1794, + "id": 1847, "name": "ValuesOf", "variant": "declaration", "kind": 2097152, @@ -14310,25 +15048,25 @@ "fileName": "core/src/typemap.ts", "line": 52, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/typemap.ts#L52" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/typemap.ts#L52" } ], "typeParameters": [ { - "id": 1795, + "id": 1848, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" } }, { - "id": 1796, + "id": 1849, "name": "K", "variant": "typeParam", "kind": 131072, @@ -14343,7 +15081,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 1796, + "target": 1849, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -14353,7 +15091,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1795, + "target": 1848, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -14371,14 +15109,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 1796, + "target": 1849, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 1795, + "target": 1848, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -14390,14 +15128,14 @@ }, "falseType": { "type": "reference", - "target": 1782, + "target": 1835, "name": "FieldValues", "package": "@idfkit/core" } } }, { - "id": 1797, + "id": 1850, "name": "CONFORMANCE_LEVEL", "variant": "declaration", "kind": 32, @@ -14417,17 +15155,17 @@ "fileName": "core/src/conformance.ts", "line": 20, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/conformance.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/conformance.ts#L20" } ], "type": { "type": "literal", - "value": "conformance-2026.10" + "value": "conformance-2026.12" }, - "defaultValue": "'conformance-2026.10'" + "defaultValue": "'conformance-2026.12'" }, { - "id": 1798, + "id": 1851, "name": "Severity", "variant": "declaration", "kind": 32, @@ -14463,13 +15201,13 @@ "fileName": "core/src/validate/types.ts", "line": 21, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L21" }, { "fileName": "core/src/validate/types.ts", "line": 27, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L27" } ], "type": { @@ -14483,14 +15221,14 @@ { "type": "reflection", "declaration": { - "id": 1799, + "id": 1852, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1800, + "id": 1853, "name": "ERROR", "variant": "declaration", "kind": 1024, @@ -14502,7 +15240,7 @@ "fileName": "core/src/validate/types.ts", "line": 22, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L22" } ], "type": { @@ -14512,7 +15250,7 @@ "defaultValue": "'error'" }, { - "id": 1801, + "id": 1854, "name": "INFO", "variant": "declaration", "kind": 1024, @@ -14524,7 +15262,7 @@ "fileName": "core/src/validate/types.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L24" } ], "type": { @@ -14534,7 +15272,7 @@ "defaultValue": "'info'" }, { - "id": 1802, + "id": 1855, "name": "WARNING", "variant": "declaration", "kind": 1024, @@ -14546,7 +15284,7 @@ "fileName": "core/src/validate/types.ts", "line": 23, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/types.ts#L23" } ], "type": { @@ -14560,9 +15298,9 @@ { "title": "Properties", "children": [ - 1800, - 1801, - 1802 + 1853, + 1854, + 1855 ] } ] @@ -14575,7 +15313,7 @@ "defaultValue": "..." }, { - "id": 1803, + "id": 1856, "name": "classify", "variant": "declaration", "kind": 64, @@ -14585,12 +15323,12 @@ "fileName": "core/src/syntax/classify.ts", "line": 26, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/classify.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/classify.ts#L26" } ], "signatures": [ { - "id": 1804, + "id": 1857, "name": "classify", "variant": "signature", "kind": 4096, @@ -14632,19 +15370,19 @@ "fileName": "core/src/syntax/classify.ts", "line": 26, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/classify.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/classify.ts#L26" } ], "parameters": [ { - "id": 1805, + "id": 1858, "name": "layer", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1746, + "target": 1798, "name": "SyntaxLayer", "package": "@idfkit/core" } @@ -14660,7 +15398,7 @@ "typeArguments": [ { "type": "reference", - "target": 1750, + "target": 1802, "name": "Token", "package": "@idfkit/core" } @@ -14672,7 +15410,7 @@ ] }, { - "id": 1806, + "id": 1859, "name": "compareVersions", "variant": "declaration", "kind": 64, @@ -14682,12 +15420,12 @@ "fileName": "core/src/versions.ts", "line": 8, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/versions.ts#L8" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/versions.ts#L8" } ], "signatures": [ { - "id": 1807, + "id": 1860, "name": "compareVersions", "variant": "signature", "kind": 4096, @@ -14705,12 +15443,12 @@ "fileName": "core/src/versions.ts", "line": 8, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/versions.ts#L8" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/versions.ts#L8" } ], "parameters": [ { - "id": 1808, + "id": 1861, "name": "a", "variant": "param", "kind": 32768, @@ -14721,7 +15459,7 @@ } }, { - "id": 1809, + "id": 1862, "name": "b", "variant": "param", "kind": 32768, @@ -14740,7 +15478,7 @@ ] }, { - "id": 1810, + "id": 1863, "name": "describeObjectType", "variant": "declaration", "kind": 64, @@ -14750,12 +15488,12 @@ "fileName": "core/src/introspect/describe.ts", "line": 108, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L108" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L108" } ], "signatures": [ { - "id": 1811, + "id": 1864, "name": "describeObjectType", "variant": "signature", "kind": 4096, @@ -14824,25 +15562,25 @@ "fileName": "core/src/introspect/describe.ts", "line": 108, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L108" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/introspect/describe.ts#L108" } ], "parameters": [ { - "id": 1812, + "id": 1865, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1566, + "target": 1616, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1813, + "id": 1866, "name": "objType", "variant": "param", "kind": 32768, @@ -14853,7 +15591,7 @@ } }, { - "id": 1814, + "id": 1867, "name": "prose", "variant": "param", "kind": 32768, @@ -14862,7 +15600,7 @@ }, "type": { "type": "reference", - "target": 1786, + "target": 1839, "name": "ProsePool", "package": "@idfkit/schemas" } @@ -14870,7 +15608,7 @@ ], "type": { "type": "reference", - "target": 1650, + "target": 1700, "name": "ObjectDescription", "package": "@idfkit/core" } @@ -14878,7 +15616,7 @@ ] }, { - "id": 1815, + "id": 1868, "name": "docsUrlForObject", "variant": "declaration", "kind": 64, @@ -14888,12 +15626,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 234, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L234" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L234" } ], "signatures": [ { - "id": 1816, + "id": 1869, "name": "docsUrlForObject", "variant": "signature", "kind": 4096, @@ -14908,7 +15646,7 @@ "kind": "inline-tag", "tag": "@link", "text": "ioReferenceUrl", - "target": 1838 + "target": 1891 }, { "kind": "text", @@ -14921,12 +15659,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 234, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L234" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L234" } ], "parameters": [ { - "id": 1817, + "id": 1870, "name": "objType", "variant": "param", "kind": 32768, @@ -14937,7 +15675,7 @@ } }, { - "id": 1818, + "id": 1871, "name": "version", "variant": "param", "kind": 32768, @@ -14948,7 +15686,7 @@ } }, { - "id": 1819, + "id": 1872, "name": "schema", "variant": "param", "kind": 32768, @@ -14957,13 +15695,13 @@ }, "type": { "type": "reference", - "target": 1566, + "target": 1616, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1820, + "id": 1873, "name": "options", "variant": "param", "kind": 32768, @@ -14973,14 +15711,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1821, + "id": 1874, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1822, + "id": 1875, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -14992,7 +15730,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 238, "character": 14, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L238" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L238" } ], "type": { @@ -15005,7 +15743,7 @@ { "title": "Properties", "children": [ - 1822 + 1875 ] } ] @@ -15018,7 +15756,7 @@ "types": [ { "type": "reference", - "target": 1616, + "target": 1666, "name": "DocsUrl", "package": "@idfkit/core" }, @@ -15032,7 +15770,7 @@ ] }, { - "id": 1823, + "id": 1876, "name": "engineeringReferenceUrl", "variant": "declaration", "kind": 64, @@ -15042,12 +15780,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 191, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L191" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L191" } ], "signatures": [ { - "id": 1824, + "id": 1877, "name": "engineeringReferenceUrl", "variant": "signature", "kind": 4096, @@ -15065,12 +15803,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 191, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L191" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L191" } ], "parameters": [ { - "id": 1825, + "id": 1878, "name": "version", "variant": "param", "kind": 32768, @@ -15081,7 +15819,7 @@ } }, { - "id": 1826, + "id": 1879, "name": "options", "variant": "param", "kind": 32768, @@ -15091,14 +15829,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1827, + "id": 1880, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1828, + "id": 1881, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -15110,7 +15848,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 193, "character": 14, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L193" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L193" } ], "type": { @@ -15123,7 +15861,7 @@ { "title": "Properties", "children": [ - 1828 + 1881 ] } ] @@ -15136,7 +15874,7 @@ "types": [ { "type": "reference", - "target": 1616, + "target": 1666, "name": "DocsUrl", "package": "@idfkit/core" }, @@ -15150,7 +15888,7 @@ ] }, { - "id": 1829, + "id": 1882, "name": "getEpJsonVersion", "variant": "declaration", "kind": 64, @@ -15160,12 +15898,12 @@ "fileName": "core/src/parse/epjson.ts", "line": 110, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/epjson.ts#L110" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/epjson.ts#L110" } ], "signatures": [ { - "id": 1830, + "id": 1883, "name": "getEpJsonVersion", "variant": "signature", "kind": 4096, @@ -15183,12 +15921,12 @@ "fileName": "core/src/parse/epjson.ts", "line": 110, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/epjson.ts#L110" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/epjson.ts#L110" } ], "parameters": [ { - "id": 1831, + "id": 1884, "name": "source", "variant": "param", "kind": 32768, @@ -15202,7 +15940,7 @@ }, { "type": "reference", - "target": 1779, + "target": 1832, "name": "EpJson", "package": "@idfkit/core" } @@ -15227,7 +15965,7 @@ ] }, { - "id": 1832, + "id": 1885, "name": "getIdfVersion", "variant": "declaration", "kind": 64, @@ -15235,14 +15973,14 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 459, + "line": 462, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L459" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L462" } ], "signatures": [ { - "id": 1833, + "id": 1886, "name": "getIdfVersion", "variant": "signature", "kind": 4096, @@ -15258,14 +15996,14 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 459, + "line": 462, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L459" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L462" } ], "parameters": [ { - "id": 1834, + "id": 1887, "name": "text", "variant": "param", "kind": 32768, @@ -15293,7 +16031,7 @@ ] }, { - "id": 1835, + "id": 1888, "name": "httpSource", "variant": "declaration", "kind": 64, @@ -15307,7 +16045,7 @@ ], "signatures": [ { - "id": 1836, + "id": 1889, "name": "httpSource", "variant": "signature", "kind": 4096, @@ -15393,7 +16131,7 @@ ], "parameters": [ { - "id": 1837, + "id": 1890, "name": "baseUrl", "variant": "param", "kind": 32768, @@ -15406,7 +16144,7 @@ ], "type": { "type": "reference", - "target": 1612, + "target": 1662, "name": "BundleSource", "package": "@idfkit/schemas" } @@ -15414,7 +16152,7 @@ ] }, { - "id": 1838, + "id": 1891, "name": "ioReferenceUrl", "variant": "declaration", "kind": 64, @@ -15424,12 +16162,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 160, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L160" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L160" } ], "signatures": [ { - "id": 1839, + "id": 1892, "name": "ioReferenceUrl", "variant": "signature", "kind": 4096, @@ -15463,12 +16201,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 160, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L160" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L160" } ], "parameters": [ { - "id": 1840, + "id": 1893, "name": "objType", "variant": "param", "kind": 32768, @@ -15495,7 +16233,7 @@ } }, { - "id": 1841, + "id": 1894, "name": "version", "variant": "param", "kind": 32768, @@ -15522,7 +16260,7 @@ } }, { - "id": 1842, + "id": 1895, "name": "schema", "variant": "param", "kind": 32768, @@ -15539,13 +16277,13 @@ }, "type": { "type": "reference", - "target": 1566, + "target": 1616, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1843, + "id": 1896, "name": "options", "variant": "param", "kind": 32768, @@ -15567,14 +16305,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1844, + "id": 1897, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1845, + "id": 1898, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -15586,7 +16324,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 164, "character": 14, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L164" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L164" } ], "type": { @@ -15599,7 +16337,7 @@ { "title": "Properties", "children": [ - 1845 + 1898 ] } ] @@ -15612,7 +16350,7 @@ "types": [ { "type": "reference", - "target": 1616, + "target": 1666, "name": "DocsUrl", "package": "@idfkit/core" }, @@ -15626,7 +16364,7 @@ ] }, { - "id": 1846, + "id": 1899, "name": "lex", "variant": "declaration", "kind": 64, @@ -15636,12 +16374,12 @@ "fileName": "core/src/parse/lexer.ts", "line": 79, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L79" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L79" } ], "signatures": [ { - "id": 1847, + "id": 1900, "name": "lex", "variant": "signature", "kind": 4096, @@ -15675,12 +16413,12 @@ "fileName": "core/src/parse/lexer.ts", "line": 79, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L79" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/lexer.ts#L79" } ], "parameters": [ { - "id": 1848, + "id": 1901, "name": "text", "variant": "param", "kind": 32768, @@ -15691,14 +16429,14 @@ } }, { - "id": 1849, + "id": 1902, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1642, + "target": 1692, "name": "LexOptions", "package": "@idfkit/core" }, @@ -15709,7 +16447,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1694, + "target": 1746, "name": "RawObject", "package": "@idfkit/core" } @@ -15718,7 +16456,7 @@ ] }, { - "id": 1850, + "id": 1903, "name": "lineColumnAt", "variant": "declaration", "kind": 64, @@ -15728,12 +16466,12 @@ "fileName": "core/src/syntax/region.ts", "line": 95, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/region.ts#L95" } ], "signatures": [ { - "id": 1851, + "id": 1904, "name": "lineColumnAt", "variant": "signature", "kind": 4096, @@ -15759,12 +16497,12 @@ "fileName": "core/src/syntax/region.ts", "line": 95, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/region.ts#L95" } ], "parameters": [ { - "id": 1852, + "id": 1905, "name": "source", "variant": "param", "kind": 32768, @@ -15781,7 +16519,7 @@ } }, { - "id": 1853, + "id": 1906, "name": "offset", "variant": "param", "kind": 32768, @@ -15794,7 +16532,7 @@ ], "type": { "type": "reference", - "target": 1647, + "target": 1697, "name": "LineColumn", "package": "@idfkit/core" } @@ -15802,7 +16540,7 @@ ] }, { - "id": 1854, + "id": 1907, "name": "offsetAt", "variant": "declaration", "kind": 64, @@ -15812,12 +16550,12 @@ "fileName": "core/src/syntax/region.ts", "line": 111, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/region.ts#L111" } ], "signatures": [ { - "id": 1855, + "id": 1908, "name": "offsetAt", "variant": "signature", "kind": 4096, @@ -15832,7 +16570,7 @@ "kind": "inline-tag", "tag": "@link", "text": "lineColumnAt", - "target": 1850 + "target": 1903 }, { "kind": "text", @@ -15845,12 +16583,12 @@ "fileName": "core/src/syntax/region.ts", "line": 111, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/region.ts#L111" } ], "parameters": [ { - "id": 1856, + "id": 1909, "name": "source", "variant": "param", "kind": 32768, @@ -15867,14 +16605,14 @@ } }, { - "id": 1857, + "id": 1910, "name": "position", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1647, + "target": 1697, "name": "LineColumn", "package": "@idfkit/core" } @@ -15888,7 +16626,7 @@ ] }, { - "id": 1858, + "id": 1911, "name": "parseEpJson", "variant": "declaration", "kind": 64, @@ -15898,12 +16636,12 @@ "fileName": "core/src/parse/epjson.ts", "line": 21, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/epjson.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/epjson.ts#L21" } ], "signatures": [ { - "id": 1859, + "id": 1912, "name": "parseEpJson", "variant": "signature", "kind": 4096, @@ -15921,25 +16659,25 @@ "fileName": "core/src/parse/epjson.ts", "line": 21, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/epjson.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/epjson.ts#L21" } ], "typeParameters": [ { - "id": 1860, + "id": 1913, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1793, + "target": 1846, "name": "UntypedMap", "package": "@idfkit/core" } @@ -15947,7 +16685,7 @@ ], "parameters": [ { - "id": 1861, + "id": 1914, "name": "source", "variant": "param", "kind": 32768, @@ -15961,7 +16699,7 @@ }, { "type": "reference", - "target": 1779, + "target": 1832, "name": "EpJson", "package": "@idfkit/core" } @@ -15969,27 +16707,27 @@ } }, { - "id": 1862, + "id": 1915, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1566, + "target": 1616, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1863, + "id": 1916, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1683, + "target": 1735, "name": "ParseOptions", "package": "@idfkit/core" }, @@ -15998,11 +16736,11 @@ ], "type": { "type": "reference", - "target": 1690, + "target": 1742, "typeArguments": [ { "type": "reference", - "target": 1860, + "target": 1913, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -16015,7 +16753,7 @@ ] }, { - "id": 1864, + "id": 1917, "name": "parseIdf", "variant": "declaration", "kind": 64, @@ -16025,12 +16763,12 @@ "fileName": "core/src/parse/idf.ts", "line": 62, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L62" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L62" } ], "signatures": [ { - "id": 1865, + "id": 1918, "name": "parseIdf", "variant": "signature", "kind": 4096, @@ -16056,25 +16794,25 @@ "fileName": "core/src/parse/idf.ts", "line": 62, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L62" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L62" } ], "typeParameters": [ { - "id": 1866, + "id": 1919, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1793, + "target": 1846, "name": "UntypedMap", "package": "@idfkit/core" } @@ -16082,7 +16820,7 @@ ], "parameters": [ { - "id": 1867, + "id": 1920, "name": "text", "variant": "param", "kind": 32768, @@ -16093,27 +16831,27 @@ } }, { - "id": 1868, + "id": 1921, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1566, + "target": 1616, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1869, + "id": 1922, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1683, + "target": 1735, "name": "ParseOptions", "package": "@idfkit/core" }, @@ -16122,11 +16860,11 @@ ], "type": { "type": "reference", - "target": 1690, + "target": 1742, "typeArguments": [ { "type": "reference", - "target": 1866, + "target": 1919, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -16139,7 +16877,7 @@ ] }, { - "id": 1870, + "id": 1923, "name": "resolveVersion", "variant": "declaration", "kind": 64, @@ -16149,12 +16887,12 @@ "fileName": "core/src/versions.ts", "line": 23, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/versions.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/versions.ts#L23" } ], "signatures": [ { - "id": 1871, + "id": 1924, "name": "resolveVersion", "variant": "signature", "kind": 4096, @@ -16188,12 +16926,12 @@ "fileName": "core/src/versions.ts", "line": 23, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/versions.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/versions.ts#L23" } ], "parameters": [ { - "id": 1872, + "id": 1925, "name": "detected", "variant": "param", "kind": 32768, @@ -16204,7 +16942,7 @@ } }, { - "id": 1873, + "id": 1926, "name": "available", "variant": "param", "kind": 32768, @@ -16239,7 +16977,7 @@ ] }, { - "id": 1874, + "id": 1927, "name": "scanIdf", "variant": "declaration", "kind": 64, @@ -16249,12 +16987,12 @@ "fileName": "core/src/syntax/layer.ts", "line": 70, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L70" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/layer.ts#L70" } ], "signatures": [ { - "id": 1875, + "id": 1928, "name": "scanIdf", "variant": "signature", "kind": 4096, @@ -16280,12 +17018,12 @@ "fileName": "core/src/syntax/layer.ts", "line": 70, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L70" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/syntax/layer.ts#L70" } ], "parameters": [ { - "id": 1876, + "id": 1929, "name": "text", "variant": "param", "kind": 32768, @@ -16298,7 +17036,7 @@ ], "type": { "type": "reference", - "target": 1746, + "target": 1798, "name": "SyntaxLayer", "package": "@idfkit/core" } @@ -16306,7 +17044,7 @@ ] }, { - "id": 1877, + "id": 1930, "name": "searchUrl", "variant": "declaration", "kind": 64, @@ -16316,12 +17054,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 212, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L212" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L212" } ], "signatures": [ { - "id": 1878, + "id": 1931, "name": "searchUrl", "variant": "signature", "kind": 4096, @@ -16339,12 +17077,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 212, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L212" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L212" } ], "parameters": [ { - "id": 1879, + "id": 1932, "name": "query", "variant": "param", "kind": 32768, @@ -16355,7 +17093,7 @@ } }, { - "id": 1880, + "id": 1933, "name": "version", "variant": "param", "kind": 32768, @@ -16366,7 +17104,7 @@ } }, { - "id": 1881, + "id": 1934, "name": "options", "variant": "param", "kind": 32768, @@ -16376,14 +17114,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1882, + "id": 1935, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1883, + "id": 1936, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -16395,7 +17133,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 215, "character": 14, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L215" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/docs-url/index.ts#L215" } ], "type": { @@ -16408,7 +17146,7 @@ { "title": "Properties", "children": [ - 1883 + 1936 ] } ] @@ -16421,7 +17159,7 @@ "types": [ { "type": "reference", - "target": 1616, + "target": 1666, "name": "DocsUrl", "package": "@idfkit/core" }, @@ -16435,7 +17173,7 @@ ] }, { - "id": 1884, + "id": 1937, "name": "shapeFor", "variant": "declaration", "kind": 64, @@ -16445,12 +17183,12 @@ "fileName": "core/src/shape.ts", "line": 108, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L108" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L108" } ], "signatures": [ { - "id": 1885, + "id": 1938, "name": "shapeFor", "variant": "signature", "kind": 4096, @@ -16492,12 +17230,12 @@ "fileName": "core/src/shape.ts", "line": 108, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L108" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L108" } ], "parameters": [ { - "id": 1886, + "id": 1939, "name": "typeName", "variant": "param", "kind": 32768, @@ -16508,20 +17246,20 @@ } }, { - "id": 1887, + "id": 1940, "name": "type", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1728, + "target": 1780, "name": "SlimType", "package": "@idfkit/schemas" } }, { - "id": 1888, + "id": 1941, "name": "base", "variant": "param", "kind": 32768, @@ -16534,7 +17272,7 @@ ], "type": { "type": "reference", - "target": 1507, + "target": 1557, "name": "ObjectShape", "package": "@idfkit/core" } @@ -16542,7 +17280,7 @@ ] }, { - "id": 1889, + "id": 1942, "name": "shapeOf", "variant": "declaration", "kind": 64, @@ -16552,12 +17290,12 @@ "fileName": "core/src/shape.ts", "line": 123, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L123" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L123" } ], "signatures": [ { - "id": 1890, + "id": 1943, "name": "shapeOf", "variant": "signature", "kind": 4096, @@ -16575,19 +17313,19 @@ "fileName": "core/src/shape.ts", "line": 123, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L123" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/shape.ts#L123" } ], "parameters": [ { - "id": 1891, + "id": 1944, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } @@ -16595,7 +17333,7 @@ ], "type": { "type": "reference", - "target": 1507, + "target": 1557, "name": "ObjectShape", "package": "@idfkit/core" } @@ -16603,7 +17341,7 @@ ] }, { - "id": 1892, + "id": 1945, "name": "toEpJson", "variant": "declaration", "kind": 64, @@ -16613,12 +17351,12 @@ "fileName": "core/src/write/epjson.ts", "line": 56, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/epjson.ts#L56" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/epjson.ts#L56" } ], "signatures": [ { - "id": 1893, + "id": 1946, "name": "toEpJson", "variant": "signature", "kind": 4096, @@ -16636,19 +17374,19 @@ "fileName": "core/src/write/epjson.ts", "line": 56, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/epjson.ts#L56" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/epjson.ts#L56" } ], "typeParameters": [ { - "id": 1894, + "id": 1947, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" } @@ -16656,18 +17394,18 @@ ], "parameters": [ { - "id": 1895, + "id": 1948, "name": "document", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1362, + "target": 1400, "typeArguments": [ { "type": "reference", - "target": 1894, + "target": 1947, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -16680,7 +17418,7 @@ ], "type": { "type": "reference", - "target": 1779, + "target": 1832, "name": "EpJson", "package": "@idfkit/core" } @@ -16688,7 +17426,7 @@ ] }, { - "id": 1896, + "id": 1949, "name": "validateDocument", "variant": "declaration", "kind": 64, @@ -16698,12 +17436,12 @@ "fileName": "core/src/validate/validate.ts", "line": 78, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/validate.ts#L78" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/validate.ts#L78" } ], "signatures": [ { - "id": 1897, + "id": 1950, "name": "validateDocument", "variant": "signature", "kind": 4096, @@ -16748,25 +17486,25 @@ "fileName": "core/src/validate/validate.ts", "line": 78, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/validate.ts#L78" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/validate.ts#L78" } ], "typeParameters": [ { - "id": 1898, + "id": 1951, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1793, + "target": 1846, "name": "UntypedMap", "package": "@idfkit/core" } @@ -16774,18 +17512,18 @@ ], "parameters": [ { - "id": 1899, + "id": 1952, "name": "doc", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1362, + "target": 1400, "typeArguments": [ { "type": "reference", - "target": 1898, + "target": 1951, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -16796,7 +17534,7 @@ } }, { - "id": 1900, + "id": 1953, "name": "options", "variant": "param", "kind": 32768, @@ -16816,7 +17554,7 @@ ], "type": { "type": "reference", - "target": 1761, + "target": 1813, "name": "ValidationResult", "package": "@idfkit/core" } @@ -16824,7 +17562,7 @@ ] }, { - "id": 1901, + "id": 1954, "name": "validateObject", "variant": "declaration", "kind": 64, @@ -16834,12 +17572,12 @@ "fileName": "core/src/validate/validate.ts", "line": 186, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/validate.ts#L186" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/validate.ts#L186" } ], "signatures": [ { - "id": 1902, + "id": 1955, "name": "validateObject", "variant": "signature", "kind": 4096, @@ -16876,38 +17614,38 @@ "fileName": "core/src/validate/validate.ts", "line": 186, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/validate.ts#L186" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/validate/validate.ts#L186" } ], "parameters": [ { - "id": 1903, + "id": 1956, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1904, + "id": 1957, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1566, + "target": 1616, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1905, + "id": 1958, "name": "options", "variant": "param", "kind": 32768, @@ -16929,7 +17667,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1754, + "target": 1806, "name": "ValidationError", "package": "@idfkit/core" } @@ -16938,7 +17676,7 @@ ] }, { - "id": 1906, + "id": 1959, "name": "versionKey", "variant": "declaration", "kind": 64, @@ -16948,12 +17686,12 @@ "fileName": "core/src/versions.ts", "line": 2, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/versions.ts#L2" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/versions.ts#L2" } ], "signatures": [ { - "id": 1907, + "id": 1960, "name": "versionKey", "variant": "signature", "kind": 4096, @@ -16971,12 +17709,12 @@ "fileName": "core/src/versions.ts", "line": 2, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/versions.ts#L2" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/versions.ts#L2" } ], "parameters": [ { - "id": 1908, + "id": 1961, "name": "version", "variant": "param", "kind": 32768, @@ -16995,7 +17733,7 @@ ] }, { - "id": 1909, + "id": 1962, "name": "writeEpJson", "variant": "declaration", "kind": 64, @@ -17005,12 +17743,12 @@ "fileName": "core/src/write/epjson.ts", "line": 34, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/epjson.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/epjson.ts#L34" } ], "signatures": [ { - "id": 1910, + "id": 1963, "name": "writeEpJson", "variant": "signature", "kind": 4096, @@ -17028,19 +17766,19 @@ "fileName": "core/src/write/epjson.ts", "line": 34, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/epjson.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/epjson.ts#L34" } ], "typeParameters": [ { - "id": 1911, + "id": 1964, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" } @@ -17048,18 +17786,18 @@ ], "parameters": [ { - "id": 1912, + "id": 1965, "name": "document", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1362, + "target": 1400, "typeArguments": [ { "type": "reference", - "target": 1911, + "target": 1964, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -17070,14 +17808,14 @@ } }, { - "id": 1913, + "id": 1966, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1767, + "target": 1819, "name": "WriteEpJsonOptions", "package": "@idfkit/core" }, @@ -17092,7 +17830,7 @@ ] }, { - "id": 1914, + "id": 1967, "name": "writeIdf", "variant": "declaration", "kind": 64, @@ -17100,14 +17838,14 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 91, + "line": 118, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L91" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L118" } ], "signatures": [ { - "id": 1915, + "id": 1968, "name": "writeIdf", "variant": "signature", "kind": 4096, @@ -17147,21 +17885,21 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 91, + "line": 118, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L91" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L118" } ], "typeParameters": [ { - "id": 1916, + "id": 1969, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" } @@ -17169,18 +17907,18 @@ ], "parameters": [ { - "id": 1917, + "id": 1970, "name": "document", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1362, + "target": 1400, "typeArguments": [ { "type": "reference", - "target": 1916, + "target": 1969, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -17191,14 +17929,14 @@ } }, { - "id": 1918, + "id": 1971, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1770, + "target": 1822, "name": "WriteIdfOptions", "package": "@idfkit/core" }, @@ -17213,7 +17951,7 @@ ] }, { - "id": 1919, + "id": 1972, "name": "writeObject", "variant": "declaration", "kind": 64, @@ -17221,14 +17959,14 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 188, + "line": 296, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L188" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L296" } ], "signatures": [ { - "id": 1920, + "id": 1973, "name": "writeObject", "variant": "signature", "kind": 4096, @@ -17244,34 +17982,34 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 188, + "line": 296, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L188" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/write/idf.ts#L296" } ], "parameters": [ { - "id": 1921, + "id": 1974, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1438, + "target": 1487, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1922, + "id": 1975, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1670, + "target": 1722, "name": "ObjectWriteOptions", "package": "@idfkit/core" } @@ -17289,100 +18027,100 @@ { "title": "Classes", "children": [ - 1307, - 1362, - 1438, - 1500, - 1507, - 1522, - 1566, - 1594 + 1345, + 1400, + 1487, + 1550, + 1557, + 1572, + 1616, + 1644 ] }, { "title": "Interfaces", "children": [ - 1612, - 1616, - 1621, - 1635, - 1642, - 1647, - 1650, - 1658, - 1670, - 1675, - 1683, - 1690, - 1694, + 1662, + 1666, + 1671, + 1685, + 1692, + 1697, 1700, - 1705, 1708, - 1712, - 1728, - 1740, + 1722, + 1727, + 1735, + 1742, 1746, - 1750, - 1754, - 1761, - 1767, - 1770 + 1752, + 1757, + 1760, + 1764, + 1780, + 1792, + 1798, + 1802, + 1806, + 1813, + 1819, + 1822 ] }, { "title": "Type Aliases", "children": [ - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1786, - 1787, - 1788, - 1789, - 1790, - 1793, - 1794 + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1839, + 1840, + 1841, + 1842, + 1843, + 1846, + 1847 ] }, { "title": "Variables", "children": [ - 1797, - 1798 + 1850, + 1851 ] }, { "title": "Functions", "children": [ - 1803, - 1806, - 1810, - 1815, - 1823, - 1829, - 1832, - 1835, - 1838, - 1846, - 1850, - 1854, - 1858, - 1864, - 1870, - 1874, - 1877, - 1884, - 1889, - 1892, - 1896, - 1901, - 1906, - 1909, - 1914, - 1919 + 1856, + 1859, + 1863, + 1868, + 1876, + 1882, + 1885, + 1888, + 1891, + 1899, + 1903, + 1907, + 1911, + 1917, + 1923, + 1927, + 1930, + 1937, + 1942, + 1945, + 1949, + 1954, + 1959, + 1962, + 1967, + 1972 ] } ], @@ -17391,26 +18129,26 @@ "fileName": "core/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/index.ts#L1" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/index.ts#L1" } ] }, { - "id": 1923, + "id": 1976, "name": "node", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1924, + "id": 1977, "name": "LoadOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1925, + "id": 1978, "name": "bundle", "variant": "declaration", "kind": 1024, @@ -17430,18 +18168,18 @@ "fileName": "core/src/node.ts", "line": 41, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L41" } ], "type": { "type": "reference", - "target": 1594, + "target": 1644, "name": "SchemaBundle", "package": "@idfkit/schemas" } }, { - "id": 1926, + "id": 1979, "name": "onDiagnostic", "variant": "declaration", "kind": 1024, @@ -17470,34 +18208,34 @@ "fileName": "core/src/parse/idf.ts", "line": 30, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L30" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L30" } ], "type": { "type": "reflection", "declaration": { - "id": 1927, + "id": 1980, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 1928, + "id": 1981, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1929, + "id": 1982, "name": "diagnostic", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1675, + "target": 1727, "name": "ParseDiagnostic", "package": "@idfkit/core" } @@ -17513,12 +18251,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1684, + "target": 1736, "name": "ParseOptions.onDiagnostic" } }, { - "id": 1930, + "id": 1983, "name": "preserveFormatting", "variant": "declaration", "kind": 1024, @@ -17574,7 +18312,7 @@ "fileName": "core/src/parse/idf.ts", "line": 46, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L46" } ], "type": { @@ -17583,12 +18321,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1688, + "target": 1740, "name": "ParseOptions.preserveFormatting" } }, { - "id": 1931, + "id": 1984, "name": "strict", "variant": "declaration", "kind": 1024, @@ -17620,7 +18358,7 @@ "fileName": "core/src/parse/idf.ts", "line": 28, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/parse/idf.ts#L28" } ], "type": { @@ -17629,12 +18367,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1689, + "target": 1741, "name": "ParseOptions.strict" } }, { - "id": 1932, + "id": 1985, "name": "version", "variant": "declaration", "kind": 1024, @@ -17654,7 +18392,7 @@ "fileName": "core/src/node.ts", "line": 39, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L39" } ], "type": { @@ -17667,11 +18405,11 @@ { "title": "Properties", "children": [ - 1925, - 1926, - 1930, - 1931, - 1932 + 1978, + 1979, + 1983, + 1984, + 1985 ] } ], @@ -17680,20 +18418,20 @@ "fileName": "core/src/node.ts", "line": 37, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L37" } ], "extendedTypes": [ { "type": "reference", - "target": 1683, + "target": 1735, "name": "ParseOptions", "package": "@idfkit/core" } ] }, { - "id": 1933, + "id": 1986, "name": "loadEpJson", "variant": "declaration", "kind": 64, @@ -17703,12 +18441,12 @@ "fileName": "core/src/node.ts", "line": 114, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L114" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L114" } ], "signatures": [ { - "id": 1934, + "id": 1987, "name": "loadEpJson", "variant": "signature", "kind": 4096, @@ -17726,25 +18464,25 @@ "fileName": "core/src/node.ts", "line": 114, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L114" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L114" } ], "typeParameters": [ { - "id": 1935, + "id": 1988, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1793, + "target": 1846, "name": "UntypedMap", "package": "@idfkit/core" } @@ -17752,7 +18490,7 @@ ], "parameters": [ { - "id": 1936, + "id": 1989, "name": "path", "variant": "param", "kind": 32768, @@ -17763,14 +18501,14 @@ } }, { - "id": 1937, + "id": 1990, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1924, + "target": 1977, "name": "LoadOptions", "package": "@idfkit/core" }, @@ -17787,11 +18525,11 @@ "typeArguments": [ { "type": "reference", - "target": 1362, + "target": 1400, "typeArguments": [ { "type": "reference", - "target": 1935, + "target": 1988, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -17808,7 +18546,7 @@ ] }, { - "id": 1938, + "id": 1991, "name": "loadIdf", "variant": "declaration", "kind": 64, @@ -17818,12 +18556,12 @@ "fileName": "core/src/node.ts", "line": 72, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L72" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L72" } ], "signatures": [ { - "id": 1939, + "id": 1992, "name": "loadIdf", "variant": "signature", "kind": 4096, @@ -17841,25 +18579,25 @@ "fileName": "core/src/node.ts", "line": 72, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L72" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L72" } ], "typeParameters": [ { - "id": 1940, + "id": 1993, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1793, + "target": 1846, "name": "UntypedMap", "package": "@idfkit/core" } @@ -17867,7 +18605,7 @@ ], "parameters": [ { - "id": 1941, + "id": 1994, "name": "path", "variant": "param", "kind": 32768, @@ -17878,14 +18616,14 @@ } }, { - "id": 1942, + "id": 1995, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1924, + "target": 1977, "name": "LoadOptions", "package": "@idfkit/core" }, @@ -17902,11 +18640,11 @@ "typeArguments": [ { "type": "reference", - "target": 1362, + "target": 1400, "typeArguments": [ { "type": "reference", - "target": 1940, + "target": 1993, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -17923,7 +18661,7 @@ ] }, { - "id": 1943, + "id": 1996, "name": "loadIdfWithDiagnostics", "variant": "declaration", "kind": 64, @@ -17933,12 +18671,12 @@ "fileName": "core/src/node.ts", "line": 80, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L80" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L80" } ], "signatures": [ { - "id": 1944, + "id": 1997, "name": "loadIdfWithDiagnostics", "variant": "signature", "kind": 4096, @@ -17956,25 +18694,25 @@ "fileName": "core/src/node.ts", "line": 80, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L80" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L80" } ], "typeParameters": [ { - "id": 1945, + "id": 1998, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1793, + "target": 1846, "name": "UntypedMap", "package": "@idfkit/core" } @@ -17982,7 +18720,7 @@ ], "parameters": [ { - "id": 1946, + "id": 1999, "name": "path", "variant": "param", "kind": 32768, @@ -17993,14 +18731,14 @@ } }, { - "id": 1947, + "id": 2000, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1924, + "target": 1977, "name": "LoadOptions", "package": "@idfkit/core" }, @@ -18017,11 +18755,11 @@ "typeArguments": [ { "type": "reference", - "target": 1690, + "target": 1742, "typeArguments": [ { "type": "reference", - "target": 1945, + "target": 1998, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -18038,7 +18776,7 @@ ] }, { - "id": 1948, + "id": 2001, "name": "saveEpJson", "variant": "declaration", "kind": 64, @@ -18048,12 +18786,12 @@ "fileName": "core/src/node.ts", "line": 133, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L133" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L133" } ], "signatures": [ { - "id": 1949, + "id": 2002, "name": "saveEpJson", "variant": "signature", "kind": 4096, @@ -18071,19 +18809,19 @@ "fileName": "core/src/node.ts", "line": 133, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L133" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L133" } ], "typeParameters": [ { - "id": 1950, + "id": 2003, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" } @@ -18091,18 +18829,18 @@ ], "parameters": [ { - "id": 1951, + "id": 2004, "name": "document", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1362, + "target": 1400, "typeArguments": [ { "type": "reference", - "target": 1950, + "target": 2003, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -18113,7 +18851,7 @@ } }, { - "id": 1952, + "id": 2005, "name": "path", "variant": "param", "kind": 32768, @@ -18124,14 +18862,14 @@ } }, { - "id": 1953, + "id": 2006, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1767, + "target": 1819, "name": "WriteEpJsonOptions", "package": "@idfkit/core" }, @@ -18158,7 +18896,7 @@ ] }, { - "id": 1954, + "id": 2007, "name": "saveIdf", "variant": "declaration", "kind": 64, @@ -18168,12 +18906,12 @@ "fileName": "core/src/node.ts", "line": 124, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L124" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L124" } ], "signatures": [ { - "id": 1955, + "id": 2008, "name": "saveIdf", "variant": "signature", "kind": 4096, @@ -18191,19 +18929,19 @@ "fileName": "core/src/node.ts", "line": 124, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L124" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L124" } ], "typeParameters": [ { - "id": 1956, + "id": 2009, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1831, "name": "AnyTypeMap", "package": "@idfkit/core" } @@ -18211,18 +18949,18 @@ ], "parameters": [ { - "id": 1957, + "id": 2010, "name": "document", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1362, + "target": 1400, "typeArguments": [ { "type": "reference", - "target": 1956, + "target": 2009, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -18233,7 +18971,7 @@ } }, { - "id": 1958, + "id": 2011, "name": "path", "variant": "param", "kind": 32768, @@ -18244,14 +18982,14 @@ } }, { - "id": 1959, + "id": 2012, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1770, + "target": 1822, "name": "WriteIdfOptions", "package": "@idfkit/core" }, @@ -18278,7 +19016,7 @@ ] }, { - "id": 1960, + "id": 2013, "name": "schemaFor", "variant": "declaration", "kind": 64, @@ -18288,12 +19026,12 @@ "fileName": "core/src/node.ts", "line": 51, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L51" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L51" } ], "signatures": [ { - "id": 1961, + "id": 2014, "name": "schemaFor", "variant": "signature", "kind": 4096, @@ -18311,12 +19049,12 @@ "fileName": "core/src/node.ts", "line": 51, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L51" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L51" } ], "parameters": [ { - "id": 1962, + "id": 2015, "name": "detected", "variant": "param", "kind": 32768, @@ -18336,14 +19074,14 @@ } }, { - "id": 1963, + "id": 2016, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1924, + "target": 1977, "name": "LoadOptions", "package": "@idfkit/core" }, @@ -18360,7 +19098,7 @@ "typeArguments": [ { "type": "reference", - "target": 1566, + "target": 1616, "name": "Schema", "package": "@idfkit/schemas" } @@ -18372,7 +19110,7 @@ ] }, { - "id": 1964, + "id": 2017, "name": "schemas", "variant": "declaration", "kind": 64, @@ -18382,12 +19120,12 @@ "fileName": "core/src/node.ts", "line": 32, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L32" } ], "signatures": [ { - "id": 1965, + "id": 2018, "name": "schemas", "variant": "signature", "kind": 4096, @@ -18413,12 +19151,12 @@ "fileName": "core/src/node.ts", "line": 32, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L32" } ], "type": { "type": "reference", - "target": 1594, + "target": 1644, "name": "SchemaBundle", "package": "@idfkit/schemas" } @@ -18430,19 +19168,19 @@ { "title": "Interfaces", "children": [ - 1924 + 1977 ] }, { "title": "Functions", "children": [ - 1933, - 1938, - 1943, - 1948, - 1954, - 1960, - 1964 + 1986, + 1991, + 1996, + 2001, + 2007, + 2013, + 2017 ] } ], @@ -18451,7 +19189,7 @@ "fileName": "core/src/node.ts", "line": 1, "character": 0, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L1" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/core/src/node.ts#L1" } ] } @@ -18460,21 +19198,21 @@ { "title": "Modules", "children": [ - 1306, - 1923 + 1344, + 1976 ] } ] }, { - "id": 1966, + "id": 2019, "name": "@idfkit/language", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1967, + "id": 2020, "name": "CompletionOptions", "variant": "declaration", "kind": 256, @@ -18489,7 +19227,7 @@ }, "children": [ { - "id": 1968, + "id": 2021, "name": "document", "variant": "declaration", "kind": 1024, @@ -18510,16 +19248,16 @@ "fileName": "complete.ts", "line": 72, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L72" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L72" } ], "type": { "type": "reference", - "target": 1362, + "target": 1400, "typeArguments": [ { "type": "reference", - "target": 1793, + "target": 1846, "name": "UntypedMap", "package": "@idfkit/core" } @@ -18529,7 +19267,7 @@ } }, { - "id": 1969, + "id": 2022, "name": "prose", "variant": "declaration", "kind": 1024, @@ -18550,12 +19288,12 @@ "fileName": "complete.ts", "line": 74, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L74" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L74" } ], "type": { "type": "reference", - "target": 1290, + "target": 1328, "name": "ProsePool", "package": "@idfkit/schemas" } @@ -18565,8 +19303,8 @@ { "title": "Properties", "children": [ - 1968, - 1969 + 2021, + 2022 ] } ], @@ -18575,12 +19313,12 @@ "fileName": "complete.ts", "line": 70, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L70" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L70" } ] }, { - "id": 1970, + "id": 2023, "name": "CursorContext", "variant": "declaration", "kind": 256, @@ -18635,7 +19373,7 @@ }, "children": [ { - "id": 1971, + "id": 2024, "name": "at", "variant": "declaration", "kind": 1024, @@ -18655,7 +19393,7 @@ "fileName": "cursor.ts", "line": 15, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L15" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/cursor.ts#L15" } ], "type": { @@ -18681,7 +19419,7 @@ } }, { - "id": 1972, + "id": 2025, "name": "fieldIndex", "variant": "declaration", "kind": 1024, @@ -18725,7 +19463,7 @@ "fileName": "cursor.ts", "line": 22, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/cursor.ts#L22" } ], "type": { @@ -18743,7 +19481,7 @@ } }, { - "id": 1973, + "id": 2026, "name": "fieldName", "variant": "declaration", "kind": 1024, @@ -18763,7 +19501,7 @@ "fileName": "cursor.ts", "line": 26, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/cursor.ts#L26" } ], "type": { @@ -18781,7 +19519,7 @@ } }, { - "id": 1974, + "id": 2027, "name": "statement", "variant": "declaration", "kind": 1024, @@ -18801,18 +19539,18 @@ "fileName": "cursor.ts", "line": 13, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/cursor.ts#L13" } ], "type": { "type": "reference", - "target": 1740, + "target": 1792, "name": "Statement", "package": "@idfkit/core" } }, { - "id": 1975, + "id": 2028, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -18832,7 +19570,7 @@ "fileName": "cursor.ts", "line": 24, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/cursor.ts#L24" } ], "type": { @@ -18854,11 +19592,11 @@ { "title": "Properties", "children": [ - 1971, - 1972, - 1973, - 1974, - 1975 + 2024, + 2025, + 2026, + 2027, + 2028 ] } ], @@ -18867,12 +19605,12 @@ "fileName": "cursor.ts", "line": 11, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/cursor.ts#L11" } ] }, { - "id": 1976, + "id": 2029, "name": "Declaration", "variant": "declaration", "kind": 256, @@ -18887,7 +19625,7 @@ }, "children": [ { - "id": 1977, + "id": 2030, "name": "region", "variant": "declaration", "kind": 1024, @@ -18907,18 +19645,18 @@ "fileName": "declaration.ts", "line": 20, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/declaration.ts#L20" } ], "type": { "type": "reference", - "target": 1705, + "target": 1757, "name": "Region", "package": "@idfkit/core" } }, { - "id": 1978, + "id": 2031, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -18938,7 +19676,7 @@ "fileName": "declaration.ts", "line": 22, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/declaration.ts#L22" } ], "type": { @@ -18951,8 +19689,8 @@ { "title": "Properties", "children": [ - 1977, - 1978 + 2030, + 2031 ] } ], @@ -18961,12 +19699,12 @@ "fileName": "declaration.ts", "line": 12, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L12" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/declaration.ts#L12" } ] }, { - "id": 1979, + "id": 2032, "name": "Explanation", "variant": "declaration", "kind": 256, @@ -18997,7 +19735,7 @@ }, "children": [ { - "id": 1980, + "id": 2033, "name": "docs", "variant": "declaration", "kind": 1024, @@ -19033,7 +19771,7 @@ "fileName": "explain.ts", "line": 68, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L68" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L68" } ], "type": { @@ -19041,7 +19779,7 @@ "types": [ { "type": "reference", - "target": 1616, + "target": 1666, "name": "DocsUrl", "package": "@idfkit/core" }, @@ -19053,7 +19791,7 @@ } }, { - "id": 1981, + "id": 2034, "name": "field", "variant": "declaration", "kind": 1024, @@ -19129,7 +19867,7 @@ "fileName": "explain.ts", "line": 61, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L61" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L61" } ], "type": { @@ -19137,7 +19875,7 @@ "types": [ { "type": "reference", - "target": 1621, + "target": 1671, "name": "FieldDescription", "package": "@idfkit/core" }, @@ -19149,7 +19887,7 @@ } }, { - "id": 1982, + "id": 2035, "name": "fieldName", "variant": "declaration", "kind": 1024, @@ -19185,7 +19923,7 @@ "fileName": "explain.ts", "line": 39, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L39" } ], "type": { @@ -19203,7 +19941,7 @@ } }, { - "id": 1983, + "id": 2036, "name": "of", "variant": "declaration", "kind": 1024, @@ -19223,7 +19961,7 @@ "fileName": "explain.ts", "line": 35, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L35" } ], "type": { @@ -19241,7 +19979,7 @@ } }, { - "id": 1984, + "id": 2037, "name": "prose", "variant": "declaration", "kind": 1024, @@ -19269,7 +20007,7 @@ "fileName": "explain.ts", "line": 47, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L47" } ], "type": { @@ -19287,7 +20025,7 @@ } }, { - "id": 1985, + "id": 2038, "name": "region", "variant": "declaration", "kind": 1024, @@ -19323,18 +20061,18 @@ "fileName": "explain.ts", "line": 33, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L33" } ], "type": { "type": "reference", - "target": 1705, + "target": 1757, "name": "Region", "package": "@idfkit/core" } }, { - "id": 1986, + "id": 2039, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -19354,7 +20092,7 @@ "fileName": "explain.ts", "line": 37, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L37" } ], "type": { @@ -19367,13 +20105,13 @@ { "title": "Properties", "children": [ - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986 + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039 ] } ], @@ -19382,12 +20120,12 @@ "fileName": "explain.ts", "line": 21, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L21" } ] }, { - "id": 1987, + "id": 2040, "name": "Offer", "variant": "declaration", "kind": 256, @@ -19402,7 +20140,7 @@ }, "children": [ { - "id": 1988, + "id": 2041, "name": "kind", "variant": "declaration", "kind": 1024, @@ -19422,7 +20160,7 @@ "fileName": "complete.ts", "line": 35, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L35" } ], "type": { @@ -19444,7 +20182,7 @@ } }, { - "id": 1989, + "id": 2042, "name": "prose", "variant": "declaration", "kind": 1024, @@ -19464,7 +20202,7 @@ "fileName": "complete.ts", "line": 46, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L46" } ], "type": { @@ -19482,7 +20220,7 @@ } }, { - "id": 1990, + "id": 2043, "name": "replaces", "variant": "declaration", "kind": 1024, @@ -19518,18 +20256,18 @@ "fileName": "complete.ts", "line": 33, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L33" } ], "type": { "type": "reference", - "target": 1705, + "target": 1757, "name": "Region", "package": "@idfkit/core" } }, { - "id": 1991, + "id": 2044, "name": "required", "variant": "declaration", "kind": 1024, @@ -19549,7 +20287,7 @@ "fileName": "complete.ts", "line": 37, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L37" } ], "type": { @@ -19567,7 +20305,7 @@ } }, { - "id": 1992, + "id": 2045, "name": "value", "variant": "declaration", "kind": 1024, @@ -19587,7 +20325,7 @@ "fileName": "complete.ts", "line": 21, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L21" } ], "type": { @@ -19600,11 +20338,11 @@ { "title": "Properties", "children": [ - 1988, - 1989, - 1990, - 1991, - 1992 + 2041, + 2042, + 2043, + 2044, + 2045 ] } ], @@ -19613,12 +20351,12 @@ "fileName": "complete.ts", "line": 19, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L19" } ] }, { - "id": 1993, + "id": 2046, "name": "CompletionResult", "variant": "declaration", "kind": 2097152, @@ -19652,7 +20390,7 @@ "fileName": "complete.ts", "line": 62, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L62" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L62" } ], "type": { @@ -19661,14 +20399,14 @@ { "type": "reflection", "declaration": { - "id": 1994, + "id": 2047, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1995, + "id": 2048, "name": "offers", "variant": "declaration", "kind": 1024, @@ -19680,7 +20418,7 @@ "fileName": "complete.ts", "line": 63, "character": 38, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L63" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L63" } ], "type": { @@ -19690,7 +20428,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1987, + "target": 2040, "name": "Offer", "package": "@idfkit/language" } @@ -19698,7 +20436,7 @@ } }, { - "id": 1996, + "id": 2049, "name": "status", "variant": "declaration", "kind": 1024, @@ -19710,7 +20448,7 @@ "fileName": "complete.ts", "line": 63, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L63" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L63" } ], "type": { @@ -19723,8 +20461,8 @@ { "title": "Properties", "children": [ - 1995, - 1996 + 2048, + 2049 ] } ] @@ -19733,14 +20471,14 @@ { "type": "reflection", "declaration": { - "id": 1997, + "id": 2050, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1998, + "id": 2051, "name": "status", "variant": "declaration", "kind": 1024, @@ -19752,7 +20490,7 @@ "fileName": "complete.ts", "line": 64, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L64" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L64" } ], "type": { @@ -19765,7 +20503,7 @@ { "title": "Properties", "children": [ - 1998 + 2051 ] } ] @@ -19774,14 +20512,14 @@ { "type": "reflection", "declaration": { - "id": 1999, + "id": 2052, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2000, + "id": 2053, "name": "status", "variant": "declaration", "kind": 1024, @@ -19793,7 +20531,7 @@ "fileName": "complete.ts", "line": 65, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L65" } ], "type": { @@ -19806,7 +20544,7 @@ { "title": "Properties", "children": [ - 2000 + 2053 ] } ] @@ -19815,14 +20553,14 @@ { "type": "reflection", "declaration": { - "id": 2001, + "id": 2054, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2002, + "id": 2055, "name": "status", "variant": "declaration", "kind": 1024, @@ -19834,7 +20572,7 @@ "fileName": "complete.ts", "line": 66, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L66" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L66" } ], "type": { @@ -19843,7 +20581,7 @@ } }, { - "id": 2003, + "id": 2056, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -19855,7 +20593,7 @@ "fileName": "complete.ts", "line": 66, "character": 47, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L66" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L66" } ], "type": { @@ -19868,8 +20606,8 @@ { "title": "Properties", "children": [ - 2002, - 2003 + 2055, + 2056 ] } ] @@ -19878,14 +20616,14 @@ { "type": "reflection", "declaration": { - "id": 2004, + "id": 2057, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2005, + "id": 2058, "name": "status", "variant": "declaration", "kind": 1024, @@ -19897,7 +20635,7 @@ "fileName": "complete.ts", "line": 67, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L67" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L67" } ], "type": { @@ -19910,7 +20648,7 @@ { "title": "Properties", "children": [ - 2005 + 2058 ] } ] @@ -19920,7 +20658,7 @@ } }, { - "id": 2006, + "id": 2059, "name": "DeclarationResult", "variant": "declaration", "kind": 2097152, @@ -19954,7 +20692,7 @@ "fileName": "declaration.ts", "line": 37, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/declaration.ts#L37" } ], "type": { @@ -19963,14 +20701,14 @@ { "type": "reflection", "declaration": { - "id": 2007, + "id": 2060, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2008, + "id": 2061, "name": "declarations", "variant": "declaration", "kind": 1024, @@ -19982,7 +20720,7 @@ "fileName": "declaration.ts", "line": 38, "character": 38, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/declaration.ts#L38" } ], "type": { @@ -19992,7 +20730,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1976, + "target": 2029, "name": "Declaration", "package": "@idfkit/language" } @@ -20000,7 +20738,7 @@ } }, { - "id": 2009, + "id": 2062, "name": "status", "variant": "declaration", "kind": 1024, @@ -20012,7 +20750,7 @@ "fileName": "declaration.ts", "line": 38, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/declaration.ts#L38" } ], "type": { @@ -20025,8 +20763,8 @@ { "title": "Properties", "children": [ - 2008, - 2009 + 2061, + 2062 ] } ] @@ -20035,14 +20773,14 @@ { "type": "reflection", "declaration": { - "id": 2010, + "id": 2063, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2011, + "id": 2064, "name": "status", "variant": "declaration", "kind": 1024, @@ -20054,7 +20792,7 @@ "fileName": "declaration.ts", "line": 39, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/declaration.ts#L39" } ], "type": { @@ -20067,7 +20805,7 @@ { "title": "Properties", "children": [ - 2011 + 2064 ] } ] @@ -20076,14 +20814,14 @@ { "type": "reflection", "declaration": { - "id": 2012, + "id": 2065, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2013, + "id": 2066, "name": "status", "variant": "declaration", "kind": 1024, @@ -20095,7 +20833,7 @@ "fileName": "declaration.ts", "line": 40, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/declaration.ts#L40" } ], "type": { @@ -20104,7 +20842,7 @@ } }, { - "id": 2014, + "id": 2067, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -20116,7 +20854,7 @@ "fileName": "declaration.ts", "line": 40, "character": 47, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/declaration.ts#L40" } ], "type": { @@ -20129,8 +20867,8 @@ { "title": "Properties", "children": [ - 2013, - 2014 + 2066, + 2067 ] } ] @@ -20139,14 +20877,14 @@ { "type": "reflection", "declaration": { - "id": 2015, + "id": 2068, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2016, + "id": 2069, "name": "status", "variant": "declaration", "kind": 1024, @@ -20158,7 +20896,7 @@ "fileName": "declaration.ts", "line": 41, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/declaration.ts#L41" } ], "type": { @@ -20171,7 +20909,7 @@ { "title": "Properties", "children": [ - 2016 + 2069 ] } ] @@ -20181,7 +20919,7 @@ } }, { - "id": 2017, + "id": 2070, "name": "ExplanationResult", "variant": "declaration", "kind": 2097152, @@ -20207,7 +20945,7 @@ "fileName": "explain.ts", "line": 79, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L79" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L79" } ], "type": { @@ -20216,14 +20954,14 @@ { "type": "reflection", "declaration": { - "id": 2018, + "id": 2071, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2019, + "id": 2072, "name": "explanation", "variant": "declaration", "kind": 1024, @@ -20235,18 +20973,18 @@ "fileName": "explain.ts", "line": 80, "character": 38, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L80" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L80" } ], "type": { "type": "reference", - "target": 1979, + "target": 2032, "name": "Explanation", "package": "@idfkit/language" } }, { - "id": 2020, + "id": 2073, "name": "status", "variant": "declaration", "kind": 1024, @@ -20258,7 +20996,7 @@ "fileName": "explain.ts", "line": 80, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L80" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L80" } ], "type": { @@ -20271,8 +21009,8 @@ { "title": "Properties", "children": [ - 2019, - 2020 + 2072, + 2073 ] } ] @@ -20281,14 +21019,14 @@ { "type": "reflection", "declaration": { - "id": 2021, + "id": 2074, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2022, + "id": 2075, "name": "status", "variant": "declaration", "kind": 1024, @@ -20300,7 +21038,7 @@ "fileName": "explain.ts", "line": 81, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L81" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L81" } ], "type": { @@ -20313,7 +21051,7 @@ { "title": "Properties", "children": [ - 2022 + 2075 ] } ] @@ -20322,14 +21060,14 @@ { "type": "reflection", "declaration": { - "id": 2023, + "id": 2076, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2024, + "id": 2077, "name": "status", "variant": "declaration", "kind": 1024, @@ -20341,7 +21079,7 @@ "fileName": "explain.ts", "line": 82, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L82" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L82" } ], "type": { @@ -20350,7 +21088,7 @@ } }, { - "id": 2025, + "id": 2078, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -20362,7 +21100,7 @@ "fileName": "explain.ts", "line": 82, "character": 47, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L82" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L82" } ], "type": { @@ -20375,8 +21113,8 @@ { "title": "Properties", "children": [ - 2024, - 2025 + 2077, + 2078 ] } ] @@ -20385,14 +21123,14 @@ { "type": "reflection", "declaration": { - "id": 2026, + "id": 2079, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2027, + "id": 2080, "name": "status", "variant": "declaration", "kind": 1024, @@ -20404,7 +21142,7 @@ "fileName": "explain.ts", "line": 83, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L83" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L83" } ], "type": { @@ -20417,7 +21155,7 @@ { "title": "Properties", "children": [ - 2027 + 2080 ] } ] @@ -20427,7 +21165,7 @@ } }, { - "id": 2028, + "id": 2081, "name": "PositionedFinding", "variant": "declaration", "kind": 2097152, @@ -20469,12 +21207,12 @@ "fileName": "findings.ts", "line": 21, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/findings.ts#L21" } ], "typeParameters": [ { - "id": 2029, + "id": 2082, "name": "F", "variant": "typeParam", "kind": 131072, @@ -20486,7 +21224,7 @@ "types": [ { "type": "reference", - "target": 2029, + "target": 2082, "name": "F", "package": "@idfkit/language", "refersToTypeParameter": true @@ -20494,14 +21232,14 @@ { "type": "reflection", "declaration": { - "id": 2030, + "id": 2083, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2031, + "id": 2084, "name": "precision", "variant": "declaration", "kind": 1024, @@ -20521,7 +21259,7 @@ "fileName": "findings.ts", "line": 25, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/findings.ts#L25" } ], "type": { @@ -20539,7 +21277,7 @@ } }, { - "id": 2032, + "id": 2085, "name": "region", "variant": "declaration", "kind": 1024, @@ -20559,12 +21297,12 @@ "fileName": "findings.ts", "line": 23, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/findings.ts#L23" } ], "type": { "type": "reference", - "target": 1705, + "target": 1757, "name": "Region", "package": "@idfkit/core" } @@ -20574,8 +21312,8 @@ { "title": "Properties", "children": [ - 2031, - 2032 + 2084, + 2085 ] } ] @@ -20585,7 +21323,7 @@ } }, { - "id": 2033, + "id": 2086, "name": "completionsAt", "variant": "declaration", "kind": 64, @@ -20595,12 +21333,12 @@ "fileName": "complete.ts", "line": 103, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L103" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L103" } ], "signatures": [ { - "id": 2034, + "id": 2087, "name": "completionsAt", "variant": "signature", "kind": 4096, @@ -20615,7 +21353,7 @@ "kind": "inline-tag", "tag": "@link", "text": "contextAt", - "target": 2039 + "target": 2092 }, { "kind": "text", @@ -20652,12 +21390,12 @@ "fileName": "complete.ts", "line": 103, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L103" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/complete.ts#L103" } ], "parameters": [ { - "id": 2035, + "id": 2088, "name": "text", "variant": "param", "kind": 32768, @@ -20668,7 +21406,7 @@ } }, { - "id": 2036, + "id": 2089, "name": "offset", "variant": "param", "kind": 32768, @@ -20679,7 +21417,7 @@ } }, { - "id": 2037, + "id": 2090, "name": "schema", "variant": "param", "kind": 32768, @@ -20689,7 +21427,7 @@ "types": [ { "type": "reference", - "target": 1199, + "target": 1237, "name": "Schema", "package": "@idfkit/schemas" }, @@ -20701,14 +21439,14 @@ } }, { - "id": 2038, + "id": 2091, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1967, + "target": 2020, "name": "CompletionOptions", "package": "@idfkit/language" }, @@ -20717,7 +21455,7 @@ ], "type": { "type": "reference", - "target": 1993, + "target": 2046, "name": "CompletionResult", "package": "@idfkit/language" } @@ -20725,7 +21463,7 @@ ] }, { - "id": 2039, + "id": 2092, "name": "contextAt", "variant": "declaration", "kind": 64, @@ -20771,12 +21509,12 @@ "fileName": "cursor.ts", "line": 60, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L60" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/cursor.ts#L60" } ], "signatures": [ { - "id": 2040, + "id": 2093, "name": "contextAt", "variant": "signature", "kind": 4096, @@ -20810,12 +21548,12 @@ "fileName": "cursor.ts", "line": 60, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L60" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/cursor.ts#L60" } ], "parameters": [ { - "id": 2041, + "id": 2094, "name": "text", "variant": "param", "kind": 32768, @@ -20826,7 +21564,7 @@ } }, { - "id": 2042, + "id": 2095, "name": "offset", "variant": "param", "kind": 32768, @@ -20837,7 +21575,7 @@ } }, { - "id": 2043, + "id": 2096, "name": "schema", "variant": "param", "kind": 32768, @@ -20846,7 +21584,7 @@ }, "type": { "type": "reference", - "target": 1199, + "target": 1237, "name": "Schema", "package": "@idfkit/schemas" } @@ -20854,7 +21592,7 @@ ], "type": { "type": "reference", - "target": 1970, + "target": 2023, "name": "CursorContext", "package": "@idfkit/language" } @@ -20862,7 +21600,7 @@ ] }, { - "id": 2044, + "id": 2097, "name": "declarationAt", "variant": "declaration", "kind": 64, @@ -20872,12 +21610,12 @@ "fileName": "declaration.ts", "line": 78, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L78" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/declaration.ts#L78" } ], "signatures": [ { - "id": 2045, + "id": 2098, "name": "declarationAt", "variant": "signature", "kind": 4096, @@ -20935,12 +21673,12 @@ "fileName": "declaration.ts", "line": 78, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L78" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/declaration.ts#L78" } ], "parameters": [ { - "id": 2046, + "id": 2099, "name": "text", "variant": "param", "kind": 32768, @@ -20951,7 +21689,7 @@ } }, { - "id": 2047, + "id": 2100, "name": "offset", "variant": "param", "kind": 32768, @@ -20962,7 +21700,7 @@ } }, { - "id": 2048, + "id": 2101, "name": "schema", "variant": "param", "kind": 32768, @@ -20972,7 +21710,7 @@ "types": [ { "type": "reference", - "target": 1199, + "target": 1237, "name": "Schema", "package": "@idfkit/schemas" }, @@ -20984,14 +21722,14 @@ } }, { - "id": 2049, + "id": 2102, "name": "document", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1362, + "target": 1400, "name": "IdfDocument", "package": "@idfkit/core" } @@ -20999,7 +21737,7 @@ ], "type": { "type": "reference", - "target": 2006, + "target": 2059, "name": "DeclarationResult", "package": "@idfkit/language" } @@ -21007,7 +21745,7 @@ ] }, { - "id": 2050, + "id": 2103, "name": "explainAt", "variant": "declaration", "kind": 64, @@ -21017,12 +21755,12 @@ "fileName": "explain.ts", "line": 106, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L106" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L106" } ], "signatures": [ { - "id": 2051, + "id": 2104, "name": "explainAt", "variant": "signature", "kind": 4096, @@ -21037,7 +21775,7 @@ "kind": "inline-tag", "tag": "@link", "text": "contextAt", - "target": 2039 + "target": 2092 }, { "kind": "text", @@ -21074,12 +21812,12 @@ "fileName": "explain.ts", "line": 106, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L106" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/explain.ts#L106" } ], "parameters": [ { - "id": 2052, + "id": 2105, "name": "text", "variant": "param", "kind": 32768, @@ -21090,7 +21828,7 @@ } }, { - "id": 2053, + "id": 2106, "name": "offset", "variant": "param", "kind": 32768, @@ -21101,7 +21839,7 @@ } }, { - "id": 2054, + "id": 2107, "name": "schema", "variant": "param", "kind": 32768, @@ -21111,7 +21849,7 @@ "types": [ { "type": "reference", - "target": 1199, + "target": 1237, "name": "Schema", "package": "@idfkit/schemas" }, @@ -21123,7 +21861,7 @@ } }, { - "id": 2055, + "id": 2108, "name": "prose", "variant": "param", "kind": 32768, @@ -21132,7 +21870,7 @@ }, "type": { "type": "reference", - "target": 1290, + "target": 1328, "name": "ProsePool", "package": "@idfkit/schemas" } @@ -21140,7 +21878,7 @@ ], "type": { "type": "reference", - "target": 2017, + "target": 2070, "name": "ExplanationResult", "package": "@idfkit/language" } @@ -21148,7 +21886,7 @@ ] }, { - "id": 2056, + "id": 2109, "name": "findingsIn", "variant": "declaration", "kind": 64, @@ -21158,12 +21896,12 @@ "fileName": "findings.ts", "line": 47, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/findings.ts#L47" } ], "signatures": [ { - "id": 2057, + "id": 2110, "name": "findingsIn", "variant": "signature", "kind": 4096, @@ -21178,7 +21916,7 @@ "kind": "inline-tag", "tag": "@link", "text": "position", - "target": 2060 + "target": 2113 }, { "kind": "text", @@ -21202,12 +21940,12 @@ "fileName": "findings.ts", "line": 47, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/findings.ts#L47" } ], "parameters": [ { - "id": 2058, + "id": 2111, "name": "text", "variant": "param", "kind": 32768, @@ -21218,14 +21956,14 @@ } }, { - "id": 2059, + "id": 2112, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1199, + "target": 1237, "name": "Schema", "package": "@idfkit/schemas" } @@ -21238,20 +21976,20 @@ "type": "array", "elementType": { "type": "reference", - "target": 2028, + "target": 2081, "typeArguments": [ { "type": "union", "types": [ { "type": "reference", - "target": 1675, + "target": 1727, "name": "ParseDiagnostic", "package": "@idfkit/core" }, { "type": "reference", - "target": 1754, + "target": 1806, "name": "ValidationError", "package": "@idfkit/core" } @@ -21267,7 +22005,7 @@ ] }, { - "id": 2060, + "id": 2113, "name": "position", "variant": "declaration", "kind": 64, @@ -21277,12 +22015,12 @@ "fileName": "findings.ts", "line": 84, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L84" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/findings.ts#L84" } ], "signatures": [ { - "id": 2061, + "id": 2114, "name": "position", "variant": "signature", "kind": 4096, @@ -21297,7 +22035,7 @@ "kind": "inline-tag", "tag": "@link", "text": "findingsIn", - "target": 2056 + "target": 2109 }, { "kind": "text", @@ -21310,12 +22048,12 @@ "fileName": "findings.ts", "line": 84, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L84" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/language/src/findings.ts#L84" } ], "typeParameters": [ { - "id": 2062, + "id": 2115, "name": "F", "variant": "typeParam", "kind": 131072, @@ -21328,7 +22066,7 @@ ], "parameters": [ { - "id": 2063, + "id": 2116, "name": "findings", "variant": "param", "kind": 32768, @@ -21340,7 +22078,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2062, + "target": 2115, "name": "F", "package": "@idfkit/language", "refersToTypeParameter": true @@ -21349,27 +22087,27 @@ } }, { - "id": 2064, + "id": 2117, "name": "layer", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1746, + "target": 1798, "name": "SyntaxLayer", "package": "@idfkit/core" } }, { - "id": 2065, + "id": 2118, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1199, + "target": 1237, "name": "Schema", "package": "@idfkit/schemas" } @@ -21382,11 +22120,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 2028, + "target": 2081, "typeArguments": [ { "type": "reference", - "target": 2062, + "target": 2115, "name": "F", "package": "@idfkit/language", "refersToTypeParameter": true @@ -21405,51 +22143,51 @@ { "title": "Interfaces", "children": [ - 1967, - 1970, - 1976, - 1979, - 1987 + 2020, + 2023, + 2029, + 2032, + 2040 ] }, { "title": "Type Aliases", "children": [ - 1993, - 2006, - 2017, - 2028 + 2046, + 2059, + 2070, + 2081 ] }, { "title": "Functions", "children": [ - 2033, - 2039, - 2044, - 2050, - 2056, - 2060 + 2086, + 2092, + 2097, + 2103, + 2109, + 2113 ] } ] }, { - "id": 1188, + "id": 1226, "name": "@idfkit/schemas", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1189, + "id": 1227, "name": "index", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1190, + "id": 1228, "name": "BlobStore", "variant": "declaration", "kind": 128, @@ -21464,7 +22202,7 @@ }, "children": [ { - "id": 1191, + "id": 1229, "name": "constructor", "variant": "declaration", "kind": 512, @@ -21474,12 +22212,12 @@ "fileName": "schema.ts", "line": 114, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L114" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L114" } ], "signatures": [ { - "id": 1192, + "id": 1230, "name": "BlobStore", "variant": "signature", "kind": 16384, @@ -21489,12 +22227,12 @@ "fileName": "schema.ts", "line": 114, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L114" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L114" } ], "parameters": [ { - "id": 1193, + "id": 1231, "name": "raw", "variant": "param", "kind": 32768, @@ -21513,7 +22251,7 @@ }, { "type": "reference", - "target": 1276, + "target": 1314, "name": "SlimType", "package": "@idfkit/schemas" } @@ -21525,7 +22263,7 @@ ], "type": { "type": "reference", - "target": 1190, + "target": 1228, "name": "BlobStore", "package": "@idfkit/schemas" } @@ -21533,7 +22271,7 @@ ] }, { - "id": 1194, + "id": 1232, "name": "size", "variant": "declaration", "kind": 262144, @@ -21543,11 +22281,11 @@ "fileName": "schema.ts", "line": 131, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L131" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L131" } ], "getSignature": { - "id": 1195, + "id": 1233, "name": "size", "variant": "signature", "kind": 524288, @@ -21557,7 +22295,7 @@ "fileName": "schema.ts", "line": 131, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L131" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L131" } ], "type": { @@ -21567,7 +22305,7 @@ } }, { - "id": 1196, + "id": 1234, "name": "hydrate", "variant": "declaration", "kind": 2048, @@ -21577,12 +22315,12 @@ "fileName": "schema.ts", "line": 118, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L118" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L118" } ], "signatures": [ { - "id": 1197, + "id": 1235, "name": "hydrate", "variant": "signature", "kind": 4096, @@ -21592,12 +22330,12 @@ "fileName": "schema.ts", "line": 118, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L118" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L118" } ], "parameters": [ { - "id": 1198, + "id": 1236, "name": "hash", "variant": "param", "kind": 32768, @@ -21610,7 +22348,7 @@ ], "type": { "type": "reference", - "target": 1276, + "target": 1314, "name": "SlimType", "package": "@idfkit/schemas" } @@ -21622,19 +22360,19 @@ { "title": "Constructors", "children": [ - 1191 + 1229 ] }, { "title": "Accessors", "children": [ - 1194 + 1232 ] }, { "title": "Methods", "children": [ - 1196 + 1234 ] } ], @@ -21643,12 +22381,12 @@ "fileName": "schema.ts", "line": 110, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L110" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L110" } ] }, { - "id": 1199, + "id": 1237, "name": "Schema", "variant": "declaration", "kind": 128, @@ -21663,7 +22401,7 @@ }, "children": [ { - "id": 1200, + "id": 1238, "name": "constructor", "variant": "declaration", "kind": 512, @@ -21673,12 +22411,12 @@ "fileName": "schema.ts", "line": 19, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L19" } ], "signatures": [ { - "id": 1201, + "id": 1239, "name": "Schema", "variant": "signature", "kind": 16384, @@ -21688,12 +22426,12 @@ "fileName": "schema.ts", "line": 19, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L19" } ], "parameters": [ { - "id": 1202, + "id": 1240, "name": "version", "variant": "param", "kind": 32768, @@ -21704,27 +22442,27 @@ } }, { - "id": 1203, + "id": 1241, "name": "manifest", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1289, + "target": 1327, "name": "Manifest", "package": "@idfkit/schemas" } }, { - "id": 1204, + "id": 1242, "name": "store", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1190, + "target": 1228, "name": "BlobStore", "package": "@idfkit/schemas" } @@ -21732,7 +22470,7 @@ ], "type": { "type": "reference", - "target": 1199, + "target": 1237, "name": "Schema", "package": "@idfkit/schemas" } @@ -21740,7 +22478,7 @@ ] }, { - "id": 1205, + "id": 1243, "name": "version", "variant": "declaration", "kind": 1024, @@ -21752,7 +22490,7 @@ "fileName": "schema.ts", "line": 11, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L11" } ], "type": { @@ -21761,7 +22499,7 @@ } }, { - "id": 1206, + "id": 1244, "name": "typeNames", "variant": "declaration", "kind": 262144, @@ -21771,11 +22509,11 @@ "fileName": "schema.ts", "line": 26, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L26" } ], "getSignature": { - "id": 1207, + "id": 1245, "name": "typeNames", "variant": "signature", "kind": 524288, @@ -21793,7 +22531,7 @@ "fileName": "schema.ts", "line": 26, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L26" } ], "type": { @@ -21810,7 +22548,7 @@ } }, { - "id": 1208, + "id": 1246, "name": "changedFrom", "variant": "declaration", "kind": 2048, @@ -21820,12 +22558,12 @@ "fileName": "schema.ts", "line": 77, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L77" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L77" } ], "signatures": [ { - "id": 1209, + "id": 1247, "name": "changedFrom", "variant": "signature", "kind": 4096, @@ -21851,19 +22589,19 @@ "fileName": "schema.ts", "line": 77, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L77" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L77" } ], "parameters": [ { - "id": 1210, + "id": 1248, "name": "other", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1199, + "target": 1237, "name": "Schema", "package": "@idfkit/schemas" } @@ -21871,7 +22609,7 @@ ], "type": { "type": "reference", - "target": 1252, + "target": 1290, "name": "SchemaDelta", "package": "@idfkit/schemas" } @@ -21879,7 +22617,7 @@ ] }, { - "id": 1211, + "id": 1249, "name": "field", "variant": "declaration", "kind": 2048, @@ -21889,12 +22627,12 @@ "fileName": "schema.ts", "line": 66, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L66" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L66" } ], "signatures": [ { - "id": 1212, + "id": 1250, "name": "field", "variant": "signature", "kind": 4096, @@ -21912,12 +22650,12 @@ "fileName": "schema.ts", "line": 66, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L66" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L66" } ], "parameters": [ { - "id": 1213, + "id": 1251, "name": "typeName", "variant": "param", "kind": 32768, @@ -21928,7 +22666,7 @@ } }, { - "id": 1214, + "id": 1252, "name": "fieldName", "variant": "param", "kind": 32768, @@ -21944,7 +22682,7 @@ "types": [ { "type": "reference", - "target": 1260, + "target": 1298, "name": "SlimField", "package": "@idfkit/schemas" }, @@ -21958,7 +22696,7 @@ ] }, { - "id": 1215, + "id": 1253, "name": "get", "variant": "declaration", "kind": 2048, @@ -21968,12 +22706,12 @@ "fileName": "schema.ts", "line": 50, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L50" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L50" } ], "signatures": [ { - "id": 1216, + "id": 1254, "name": "get", "variant": "signature", "kind": 4096, @@ -21991,12 +22729,12 @@ "fileName": "schema.ts", "line": 50, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L50" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L50" } ], "parameters": [ { - "id": 1217, + "id": 1255, "name": "typeName", "variant": "param", "kind": 32768, @@ -22012,7 +22750,7 @@ "types": [ { "type": "reference", - "target": 1276, + "target": 1314, "name": "SlimType", "package": "@idfkit/schemas" }, @@ -22026,7 +22764,7 @@ ] }, { - "id": 1218, + "id": 1256, "name": "has", "variant": "declaration", "kind": 2048, @@ -22036,12 +22774,12 @@ "fileName": "schema.ts", "line": 32, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L32" } ], "signatures": [ { - "id": 1219, + "id": 1257, "name": "has", "variant": "signature", "kind": 4096, @@ -22059,12 +22797,12 @@ "fileName": "schema.ts", "line": 32, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L32" } ], "parameters": [ { - "id": 1220, + "id": 1258, "name": "typeName", "variant": "param", "kind": 32768, @@ -22083,7 +22821,7 @@ ] }, { - "id": 1221, + "id": 1259, "name": "require", "variant": "declaration", "kind": 2048, @@ -22093,12 +22831,12 @@ "fileName": "schema.ts", "line": 57, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L57" } ], "signatures": [ { - "id": 1222, + "id": 1260, "name": "require", "variant": "signature", "kind": 4096, @@ -22116,12 +22854,12 @@ "fileName": "schema.ts", "line": 57, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L57" } ], "parameters": [ { - "id": 1223, + "id": 1261, "name": "typeName", "variant": "param", "kind": 32768, @@ -22134,7 +22872,7 @@ ], "type": { "type": "reference", - "target": 1276, + "target": 1314, "name": "SlimType", "package": "@idfkit/schemas" } @@ -22142,7 +22880,7 @@ ] }, { - "id": 1224, + "id": 1262, "name": "resolve", "variant": "declaration", "kind": 2048, @@ -22152,12 +22890,12 @@ "fileName": "schema.ts", "line": 43, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L43" } ], "signatures": [ { - "id": 1225, + "id": 1263, "name": "resolve", "variant": "signature", "kind": 4096, @@ -22199,12 +22937,12 @@ "fileName": "schema.ts", "line": 43, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L43" } ], "parameters": [ { - "id": 1226, + "id": 1264, "name": "typeName", "variant": "param", "kind": 32768, @@ -22236,30 +22974,30 @@ { "title": "Constructors", "children": [ - 1200 + 1238 ] }, { "title": "Properties", "children": [ - 1205 + 1243 ] }, { "title": "Accessors", "children": [ - 1206 + 1244 ] }, { "title": "Methods", "children": [ - 1208, - 1211, - 1215, - 1218, - 1221, - 1224 + 1246, + 1249, + 1253, + 1256, + 1259, + 1262 ] } ], @@ -22268,12 +23006,12 @@ "fileName": "schema.ts", "line": 10, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L10" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L10" } ] }, { - "id": 1227, + "id": 1265, "name": "SchemaBundle", "variant": "declaration", "kind": 128, @@ -22288,7 +23026,7 @@ }, "children": [ { - "id": 1228, + "id": 1266, "name": "constructor", "variant": "declaration", "kind": 512, @@ -22298,12 +23036,12 @@ "fileName": "index.ts", "line": 90, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L90" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L90" } ], "signatures": [ { - "id": 1229, + "id": 1267, "name": "SchemaBundle", "variant": "signature", "kind": 16384, @@ -22313,19 +23051,19 @@ "fileName": "index.ts", "line": 90, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L90" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L90" } ], "parameters": [ { - "id": 1230, + "id": 1268, "name": "source", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1248, + "target": 1286, "name": "BundleSource", "package": "@idfkit/schemas" } @@ -22333,7 +23071,7 @@ ], "type": { "type": "reference", - "target": 1227, + "target": 1265, "name": "SchemaBundle", "package": "@idfkit/schemas" } @@ -22341,7 +23079,7 @@ ] }, { - "id": 1231, + "id": 1269, "name": "latest", "variant": "declaration", "kind": 2048, @@ -22351,12 +23089,12 @@ "fileName": "index.ts", "line": 100, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L100" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L100" } ], "signatures": [ { - "id": 1232, + "id": 1270, "name": "latest", "variant": "signature", "kind": 4096, @@ -22374,7 +23112,7 @@ "fileName": "index.ts", "line": 100, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L100" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L100" } ], "type": { @@ -22397,7 +23135,7 @@ ] }, { - "id": 1233, + "id": 1271, "name": "load", "variant": "declaration", "kind": 2048, @@ -22407,12 +23145,12 @@ "fileName": "index.ts", "line": 112, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L112" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L112" } ], "signatures": [ { - "id": 1234, + "id": 1272, "name": "load", "variant": "signature", "kind": 4096, @@ -22430,12 +23168,12 @@ "fileName": "index.ts", "line": 112, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L112" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L112" } ], "parameters": [ { - "id": 1235, + "id": 1273, "name": "version", "variant": "param", "kind": 32768, @@ -22456,7 +23194,7 @@ "typeArguments": [ { "type": "reference", - "target": 1199, + "target": 1237, "name": "Schema", "package": "@idfkit/schemas" } @@ -22468,7 +23206,7 @@ ] }, { - "id": 1236, + "id": 1274, "name": "loaded", "variant": "declaration", "kind": 2048, @@ -22478,12 +23216,12 @@ "fileName": "index.ts", "line": 125, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L125" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L125" } ], "signatures": [ { - "id": 1237, + "id": 1275, "name": "loaded", "variant": "signature", "kind": 4096, @@ -22501,12 +23239,12 @@ "fileName": "index.ts", "line": 125, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L125" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L125" } ], "parameters": [ { - "id": 1238, + "id": 1276, "name": "version", "variant": "param", "kind": 32768, @@ -22522,7 +23260,7 @@ "types": [ { "type": "reference", - "target": 1199, + "target": 1237, "name": "Schema", "package": "@idfkit/schemas" }, @@ -22536,7 +23274,7 @@ ] }, { - "id": 1239, + "id": 1277, "name": "loadProse", "variant": "declaration", "kind": 2048, @@ -22546,12 +23284,12 @@ "fileName": "index.ts", "line": 145, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L145" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L145" } ], "signatures": [ { - "id": 1240, + "id": 1278, "name": "loadProse", "variant": "signature", "kind": 4096, @@ -22601,7 +23339,7 @@ "fileName": "index.ts", "line": 145, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L145" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L145" } ], "type": { @@ -22614,7 +23352,7 @@ "typeArguments": [ { "type": "reference", - "target": 1290, + "target": 1328, "name": "ProsePool", "package": "@idfkit/schemas" } @@ -22626,7 +23364,7 @@ ] }, { - "id": 1241, + "id": 1279, "name": "prose", "variant": "declaration", "kind": 2048, @@ -22636,12 +23374,12 @@ "fileName": "index.ts", "line": 169, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L169" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L169" } ], "signatures": [ { - "id": 1242, + "id": 1280, "name": "prose", "variant": "signature", "kind": 4096, @@ -22691,7 +23429,7 @@ "fileName": "index.ts", "line": 169, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L169" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L169" } ], "type": { @@ -22699,7 +23437,7 @@ "types": [ { "type": "reference", - "target": 1290, + "target": 1328, "name": "ProsePool", "package": "@idfkit/schemas" }, @@ -22713,7 +23451,7 @@ ] }, { - "id": 1243, + "id": 1281, "name": "versions", "variant": "declaration", "kind": 2048, @@ -22723,12 +23461,12 @@ "fileName": "index.ts", "line": 95, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L95" } ], "signatures": [ { - "id": 1244, + "id": 1282, "name": "versions", "variant": "signature", "kind": 4096, @@ -22746,7 +23484,7 @@ "fileName": "index.ts", "line": 95, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L95" } ], "type": { @@ -22780,18 +23518,18 @@ { "title": "Constructors", "children": [ - 1228 + 1266 ] }, { "title": "Methods", "children": [ - 1231, - 1233, - 1236, - 1239, - 1241, - 1243 + 1269, + 1271, + 1274, + 1277, + 1279, + 1281 ] } ], @@ -22800,19 +23538,19 @@ "fileName": "index.ts", "line": 79, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L79" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L79" } ] }, { - "id": 1245, + "id": 1283, "name": "BundleIndex", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1246, + "id": 1284, "name": "manifests", "variant": "declaration", "kind": 1024, @@ -22830,7 +23568,7 @@ "fileName": "types.ts", "line": 161, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L161" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L161" } ], "type": { @@ -22855,7 +23593,7 @@ } }, { - "id": 1247, + "id": 1285, "name": "versions", "variant": "declaration", "kind": 1024, @@ -22881,7 +23619,7 @@ "fileName": "types.ts", "line": 159, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L159" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L159" } ], "type": { @@ -22897,8 +23635,8 @@ { "title": "Properties", "children": [ - 1246, - 1247 + 1284, + 1285 ] } ], @@ -22907,12 +23645,12 @@ "fileName": "types.ts", "line": 157, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L157" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L157" } ] }, { - "id": 1248, + "id": 1286, "name": "BundleSource", "variant": "declaration", "kind": 256, @@ -22935,7 +23673,7 @@ }, "children": [ { - "id": 1249, + "id": 1287, "name": "read", "variant": "declaration", "kind": 2048, @@ -22945,12 +23683,12 @@ "fileName": "index.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L24" } ], "signatures": [ { - "id": 1250, + "id": 1288, "name": "read", "variant": "signature", "kind": 4096, @@ -22960,12 +23698,12 @@ "fileName": "index.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L24" } ], "parameters": [ { - "id": 1251, + "id": 1289, "name": "fileName", "variant": "param", "kind": 32768, @@ -23000,7 +23738,7 @@ { "title": "Methods", "children": [ - 1249 + 1287 ] } ], @@ -23009,19 +23747,19 @@ "fileName": "index.ts", "line": 23, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L23" } ] }, { - "id": 1252, + "id": 1290, "name": "SchemaDelta", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1253, + "id": 1291, "name": "added", "variant": "declaration", "kind": 1024, @@ -23039,7 +23777,7 @@ "fileName": "schema.ts", "line": 97, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L97" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L97" } ], "type": { @@ -23051,7 +23789,7 @@ } }, { - "id": 1254, + "id": 1292, "name": "changed", "variant": "declaration", "kind": 1024, @@ -23069,7 +23807,7 @@ "fileName": "schema.ts", "line": 101, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L101" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L101" } ], "type": { @@ -23081,7 +23819,7 @@ } }, { - "id": 1255, + "id": 1293, "name": "removed", "variant": "declaration", "kind": 1024, @@ -23099,7 +23837,7 @@ "fileName": "schema.ts", "line": 99, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L99" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L99" } ], "type": { @@ -23115,9 +23853,9 @@ { "title": "Properties", "children": [ - 1253, - 1254, - 1255 + 1291, + 1292, + 1293 ] } ], @@ -23126,19 +23864,19 @@ "fileName": "schema.ts", "line": 95, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/schema.ts#L95" } ] }, { - "id": 1256, + "id": 1294, "name": "SlimExtensible", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1257, + "id": 1295, "name": "fields", "variant": "declaration", "kind": 1024, @@ -23156,7 +23894,7 @@ "fileName": "types.ts", "line": 111, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L111" } ], "type": { @@ -23168,7 +23906,7 @@ } }, { - "id": 1258, + "id": 1296, "name": "key", "variant": "declaration", "kind": 1024, @@ -23194,7 +23932,7 @@ "fileName": "types.ts", "line": 109, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L109" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L109" } ], "type": { @@ -23203,7 +23941,7 @@ } }, { - "id": 1259, + "id": 1297, "name": "p", "variant": "declaration", "kind": 1024, @@ -23229,7 +23967,7 @@ "fileName": "types.ts", "line": 113, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L113" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L113" } ], "type": { @@ -23246,7 +23984,7 @@ }, { "type": "reference", - "target": 1260, + "target": 1298, "name": "SlimField", "package": "@idfkit/schemas" } @@ -23260,9 +23998,9 @@ { "title": "Properties", "children": [ - 1257, - 1258, - 1259 + 1295, + 1296, + 1297 ] } ], @@ -23271,19 +24009,19 @@ "fileName": "types.ts", "line": 107, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L107" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L107" } ] }, { - "id": 1260, + "id": 1298, "name": "SlimField", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1261, + "id": 1299, "name": "auto", "variant": "declaration", "kind": 1024, @@ -23319,7 +24057,7 @@ "fileName": "types.ts", "line": 33, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L33" } ], "type": { @@ -23328,7 +24066,7 @@ } }, { - "id": 1262, + "id": 1300, "name": "d", "variant": "declaration", "kind": 1024, @@ -23348,7 +24086,7 @@ "fileName": "types.ts", "line": 63, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L63" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L63" } ], "type": { @@ -23366,7 +24104,7 @@ } }, { - "id": 1263, + "id": 1301, "name": "e", "variant": "declaration", "kind": 1024, @@ -23402,7 +24140,7 @@ "fileName": "types.ts", "line": 61, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L61" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L61" } ], "type": { @@ -23423,7 +24161,7 @@ } }, { - "id": 1264, + "id": 1302, "name": "eb", "variant": "declaration", "kind": 1024, @@ -23483,7 +24221,7 @@ "fileName": "types.ts", "line": 96, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L96" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L96" } ], "type": { @@ -23492,7 +24230,7 @@ } }, { - "id": 1265, + "id": 1303, "name": "max", "variant": "declaration", "kind": 1024, @@ -23504,7 +24242,7 @@ "fileName": "types.ts", "line": 65, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L65" } ], "type": { @@ -23513,7 +24251,7 @@ } }, { - "id": 1266, + "id": 1304, "name": "min", "variant": "declaration", "kind": 1024, @@ -23525,7 +24263,7 @@ "fileName": "types.ts", "line": 64, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L64" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L64" } ], "type": { @@ -23534,7 +24272,7 @@ } }, { - "id": 1267, + "id": 1305, "name": "n", "variant": "declaration", "kind": 1024, @@ -23562,7 +24300,7 @@ "fileName": "types.ts", "line": 104, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L104" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L104" } ], "type": { @@ -23571,7 +24309,7 @@ } }, { - "id": 1268, + "id": 1306, "name": "ol", "variant": "declaration", "kind": 1024, @@ -23591,7 +24329,7 @@ "fileName": "types.ts", "line": 51, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L51" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L51" } ], "type": { @@ -23603,7 +24341,7 @@ } }, { - "id": 1269, + "id": 1307, "name": "rc", "variant": "declaration", "kind": 1024, @@ -23623,7 +24361,7 @@ "fileName": "types.ts", "line": 82, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L82" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L82" } ], "type": { @@ -23632,7 +24370,7 @@ } }, { - "id": 1270, + "id": 1308, "name": "ref", "variant": "declaration", "kind": 1024, @@ -23652,7 +24390,7 @@ "fileName": "types.ts", "line": 53, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L53" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L53" } ], "type": { @@ -23664,7 +24402,7 @@ } }, { - "id": 1271, + "id": 1309, "name": "se", "variant": "declaration", "kind": 1024, @@ -23764,7 +24502,7 @@ "fileName": "types.ts", "line": 49, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L49" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L49" } ], "type": { @@ -23776,7 +24514,7 @@ } }, { - "id": 1272, + "id": 1310, "name": "t", "variant": "declaration", "kind": 1024, @@ -23794,18 +24532,18 @@ "fileName": "types.ts", "line": 25, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L25" } ], "type": { "type": "reference", - "target": 1288, + "target": 1326, "name": "FieldKind", "package": "@idfkit/schemas" } }, { - "id": 1273, + "id": 1311, "name": "u", "variant": "declaration", "kind": 1024, @@ -23825,7 +24563,7 @@ "fileName": "types.ts", "line": 80, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L80" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L80" } ], "type": { @@ -23834,7 +24572,7 @@ } }, { - "id": 1274, + "id": 1312, "name": "xmax", "variant": "declaration", "kind": 1024, @@ -23862,7 +24600,7 @@ "fileName": "types.ts", "line": 78, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L78" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L78" } ], "type": { @@ -23880,7 +24618,7 @@ } }, { - "id": 1275, + "id": 1313, "name": "xmin", "variant": "declaration", "kind": 1024, @@ -23932,7 +24670,7 @@ "fileName": "types.ts", "line": 76, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L76" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L76" } ], "type": { @@ -23954,21 +24692,21 @@ { "title": "Properties", "children": [ - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275 + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313 ] } ], @@ -23977,19 +24715,19 @@ "fileName": "types.ts", "line": 23, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L23" } ] }, { - "id": 1276, + "id": 1314, "name": "SlimType", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1277, + "id": 1315, "name": "anon", "variant": "declaration", "kind": 1024, @@ -24025,7 +24763,7 @@ "fileName": "types.ts", "line": 130, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L130" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L130" } ], "type": { @@ -24034,7 +24772,7 @@ } }, { - "id": 1278, + "id": 1316, "name": "f", "variant": "declaration", "kind": 1024, @@ -24060,7 +24798,7 @@ "fileName": "types.ts", "line": 118, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L118" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L118" } ], "type": { @@ -24072,7 +24810,7 @@ } }, { - "id": 1279, + "id": 1317, "name": "fo", "variant": "declaration", "kind": 1024, @@ -24116,7 +24854,7 @@ "fileName": "types.ts", "line": 151, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L151" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L151" } ], "type": { @@ -24128,7 +24866,7 @@ } }, { - "id": 1280, + "id": 1318, "name": "g", "variant": "declaration", "kind": 1024, @@ -24156,7 +24894,7 @@ "fileName": "types.ts", "line": 134, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L134" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L134" } ], "type": { @@ -24165,7 +24903,7 @@ } }, { - "id": 1281, + "id": 1319, "name": "m", "variant": "declaration", "kind": 1024, @@ -24193,7 +24931,7 @@ "fileName": "types.ts", "line": 142, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L142" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L142" } ], "type": { @@ -24202,7 +24940,7 @@ } }, { - "id": 1282, + "id": 1320, "name": "nref", "variant": "declaration", "kind": 1024, @@ -24222,7 +24960,7 @@ "fileName": "types.ts", "line": 124, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L124" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L124" } ], "type": { @@ -24234,7 +24972,7 @@ } }, { - "id": 1283, + "id": 1321, "name": "nreq", "variant": "declaration", "kind": 1024, @@ -24254,7 +24992,7 @@ "fileName": "types.ts", "line": 126, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L126" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L126" } ], "type": { @@ -24263,7 +25001,7 @@ } }, { - "id": 1284, + "id": 1322, "name": "p", "variant": "declaration", "kind": 1024, @@ -24281,7 +25019,7 @@ "fileName": "types.ts", "line": 120, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L120" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L120" } ], "type": { @@ -24298,7 +25036,7 @@ }, { "type": "reference", - "target": 1260, + "target": 1298, "name": "SlimField", "package": "@idfkit/schemas" } @@ -24308,7 +25046,7 @@ } }, { - "id": 1285, + "id": 1323, "name": "r", "variant": "declaration", "kind": 1024, @@ -24328,7 +25066,7 @@ "fileName": "types.ts", "line": 122, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L122" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L122" } ], "type": { @@ -24340,7 +25078,7 @@ } }, { - "id": 1286, + "id": 1324, "name": "s", "variant": "declaration", "kind": 1024, @@ -24384,7 +25122,7 @@ "fileName": "types.ts", "line": 128, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L128" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L128" } ], "type": { @@ -24393,7 +25131,7 @@ } }, { - "id": 1287, + "id": 1325, "name": "x", "variant": "declaration", "kind": 1024, @@ -24413,12 +25151,12 @@ "fileName": "types.ts", "line": 132, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L132" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L132" } ], "type": { "type": "reference", - "target": 1256, + "target": 1294, "name": "SlimExtensible", "package": "@idfkit/schemas" } @@ -24428,17 +25166,17 @@ { "title": "Properties", "children": [ - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287 + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325 ] } ], @@ -24447,12 +25185,12 @@ "fileName": "types.ts", "line": 116, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L116" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L116" } ] }, { - "id": 1288, + "id": 1326, "name": "FieldKind", "variant": "declaration", "kind": 2097152, @@ -24470,7 +25208,7 @@ "fileName": "types.ts", "line": 13, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L13" } ], "type": { @@ -24522,7 +25260,7 @@ } }, { - "id": 1289, + "id": 1327, "name": "Manifest", "variant": "declaration", "kind": 2097152, @@ -24540,7 +25278,7 @@ "fileName": "types.ts", "line": 155, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L155" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L155" } ], "type": { @@ -24565,7 +25303,7 @@ } }, { - "id": 1290, + "id": 1328, "name": "ProsePool", "variant": "declaration", "kind": 2097152, @@ -24623,7 +25361,7 @@ "fileName": "types.ts", "line": 175, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L175" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/types.ts#L175" } ], "type": { @@ -24639,7 +25377,7 @@ } }, { - "id": 1291, + "id": 1329, "name": "httpSource", "variant": "declaration", "kind": 64, @@ -24649,12 +25387,12 @@ "fileName": "index.ts", "line": 41, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L41" } ], "signatures": [ { - "id": 1292, + "id": 1330, "name": "httpSource", "variant": "signature", "kind": 4096, @@ -24736,12 +25474,12 @@ "fileName": "index.ts", "line": 41, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L41" } ], "parameters": [ { - "id": 1293, + "id": 1331, "name": "baseUrl", "variant": "param", "kind": 32768, @@ -24754,7 +25492,7 @@ ], "type": { "type": "reference", - "target": 1248, + "target": 1286, "name": "BundleSource", "package": "@idfkit/schemas" } @@ -24766,34 +25504,34 @@ { "title": "Classes", "children": [ - 1190, - 1199, - 1227 + 1228, + 1237, + 1265 ] }, { "title": "Interfaces", "children": [ - 1245, - 1248, - 1252, - 1256, - 1260, - 1276 + 1283, + 1286, + 1290, + 1294, + 1298, + 1314 ] }, { "title": "Type Aliases", "children": [ - 1288, - 1289, - 1290 + 1326, + 1327, + 1328 ] }, { "title": "Functions", "children": [ - 1291 + 1329 ] } ], @@ -24802,19 +25540,19 @@ "fileName": "index.ts", "line": 1, "character": 0, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L1" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/index.ts#L1" } ] }, { - "id": 1294, + "id": 1332, "name": "node", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1295, + "id": 1333, "name": "localBundle", "variant": "declaration", "kind": 64, @@ -24824,12 +25562,12 @@ "fileName": "node.ts", "line": 27, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/node.ts#L27" } ], "signatures": [ { - "id": 1296, + "id": 1334, "name": "localBundle", "variant": "signature", "kind": 4096, @@ -24847,12 +25585,12 @@ "fileName": "node.ts", "line": 27, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/node.ts#L27" } ], "parameters": [ { - "id": 1297, + "id": 1335, "name": "dataDir", "variant": "param", "kind": 32768, @@ -24867,7 +25605,7 @@ ], "type": { "type": "reference", - "target": 1227, + "target": 1265, "name": "SchemaBundle", "package": "@idfkit/schemas" } @@ -24875,7 +25613,7 @@ ] }, { - "id": 1298, + "id": 1336, "name": "nodeSource", "variant": "declaration", "kind": 64, @@ -24885,12 +25623,12 @@ "fileName": "node.ts", "line": 17, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L17" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/node.ts#L17" } ], "signatures": [ { - "id": 1299, + "id": 1337, "name": "nodeSource", "variant": "signature", "kind": 4096, @@ -24908,12 +25646,12 @@ "fileName": "node.ts", "line": 17, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L17" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/node.ts#L17" } ], "parameters": [ { - "id": 1300, + "id": 1338, "name": "dataDir", "variant": "param", "kind": 32768, @@ -24927,7 +25665,7 @@ ], "type": { "type": "reference", - "target": 1248, + "target": 1286, "name": "BundleSource", "package": "@idfkit/schemas" } @@ -24935,7 +25673,7 @@ ] }, { - "id": 1301, + "id": 1339, "name": "readBundleFileSync", "variant": "declaration", "kind": 64, @@ -24945,12 +25683,12 @@ "fileName": "node.ts", "line": 38, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/node.ts#L38" } ], "signatures": [ { - "id": 1302, + "id": 1340, "name": "readBundleFileSync", "variant": "signature", "kind": 4096, @@ -24976,12 +25714,12 @@ "fileName": "node.ts", "line": 38, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/node.ts#L38" } ], "parameters": [ { - "id": 1303, + "id": 1341, "name": "fileName", "variant": "param", "kind": 32768, @@ -24992,7 +25730,7 @@ } }, { - "id": 1304, + "id": 1342, "name": "dataDir", "variant": "param", "kind": 32768, @@ -25016,9 +25754,9 @@ { "title": "Functions", "children": [ - 1295, - 1298, - 1301 + 1333, + 1336, + 1339 ] } ], @@ -25027,7 +25765,7 @@ "fileName": "node.ts", "line": 1, "character": 0, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L1" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/schemas/src/node.ts#L1" } ] } @@ -25036,28 +25774,28 @@ { "title": "Modules", "children": [ - 1189, - 1294 + 1227, + 1332 ] } ] }, { - "id": 2066, + "id": 2119, "name": "@idfkit/weather", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 2067, + "id": 2120, "name": "index", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 2068, + "id": 2121, "name": "GeocodingError", "variant": "declaration", "kind": 128, @@ -25072,7 +25810,7 @@ }, "children": [ { - "id": 2069, + "id": 2122, "name": "constructor", "variant": "declaration", "kind": 512, @@ -25082,12 +25820,12 @@ "fileName": "geocode.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L24" } ], "signatures": [ { - "id": 2070, + "id": 2123, "name": "GeocodingError", "variant": "signature", "kind": 16384, @@ -25097,12 +25835,12 @@ "fileName": "geocode.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L24" } ], "parameters": [ { - "id": 2071, + "id": 2124, "name": "message", "variant": "param", "kind": 32768, @@ -25113,7 +25851,7 @@ } }, { - "id": 2072, + "id": 2125, "name": "options", "variant": "param", "kind": 32768, @@ -25123,14 +25861,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2073, + "id": 2126, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2074, + "id": 2127, "name": "cause", "variant": "declaration", "kind": 1024, @@ -25142,7 +25880,7 @@ "fileName": "geocode.ts", "line": 24, "character": 43, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L24" } ], "type": { @@ -25155,7 +25893,7 @@ { "title": "Properties", "children": [ - 2074 + 2127 ] } ] @@ -25165,7 +25903,7 @@ ], "type": { "type": "reference", - "target": 2068, + "target": 2121, "name": "GeocodingError", "package": "@idfkit/weather" }, @@ -25189,7 +25927,7 @@ { "title": "Constructors", "children": [ - 2069 + 2122 ] } ], @@ -25198,7 +25936,7 @@ "fileName": "geocode.ts", "line": 23, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L23" } ], "extendedTypes": [ @@ -25215,7 +25953,7 @@ ] }, { - "id": 2075, + "id": 2128, "name": "RateLimiter", "variant": "declaration", "kind": 128, @@ -25238,7 +25976,7 @@ }, "children": [ { - "id": 2076, + "id": 2129, "name": "constructor", "variant": "declaration", "kind": 512, @@ -25248,12 +25986,12 @@ "fileName": "geocode.ts", "line": 40, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L40" } ], "signatures": [ { - "id": 2077, + "id": 2130, "name": "RateLimiter", "variant": "signature", "kind": 16384, @@ -25263,12 +26001,12 @@ "fileName": "geocode.ts", "line": 40, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L40" } ], "parameters": [ { - "id": 2078, + "id": 2131, "name": "minIntervalMs", "variant": "param", "kind": 32768, @@ -25282,7 +26020,7 @@ ], "type": { "type": "reference", - "target": 2075, + "target": 2128, "name": "RateLimiter", "package": "@idfkit/weather" } @@ -25290,7 +26028,7 @@ ] }, { - "id": 2079, + "id": 2132, "name": "reset", "variant": "declaration", "kind": 2048, @@ -25300,12 +26038,12 @@ "fileName": "geocode.ts", "line": 57, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L57" } ], "signatures": [ { - "id": 2080, + "id": 2133, "name": "reset", "variant": "signature", "kind": 4096, @@ -25331,7 +26069,7 @@ "fileName": "geocode.ts", "line": 57, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L57" } ], "type": { @@ -25342,7 +26080,7 @@ ] }, { - "id": 2081, + "id": 2134, "name": "wait", "variant": "declaration", "kind": 2048, @@ -25352,12 +26090,12 @@ "fileName": "geocode.ts", "line": 45, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L45" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L45" } ], "signatures": [ { - "id": 2082, + "id": 2135, "name": "wait", "variant": "signature", "kind": 4096, @@ -25375,7 +26113,7 @@ "fileName": "geocode.ts", "line": 45, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L45" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L45" } ], "type": { @@ -25402,14 +26140,14 @@ { "title": "Constructors", "children": [ - 2076 + 2129 ] }, { "title": "Methods", "children": [ - 2079, - 2081 + 2132, + 2134 ] } ], @@ -25418,19 +26156,19 @@ "fileName": "geocode.ts", "line": 35, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L35" } ] }, { - "id": 2083, + "id": 2136, "name": "StationIndex", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2084, + "id": 2137, "name": "constructor", "variant": "declaration", "kind": 512, @@ -25438,14 +26176,14 @@ "sources": [ { "fileName": "station-index.ts", - "line": 123, + "line": 214, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L123" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L214" } ], "signatures": [ { - "id": 2085, + "id": 2138, "name": "StationIndex", "variant": "signature", "kind": 16384, @@ -25453,14 +26191,14 @@ "sources": [ { "fileName": "station-index.ts", - "line": 123, + "line": 214, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L123" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L214" } ], "parameters": [ { - "id": 2086, + "id": 2139, "name": "stations", "variant": "param", "kind": 32768, @@ -25472,7 +26210,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -25480,7 +26218,7 @@ } }, { - "id": 2087, + "id": 2140, "name": "lastModified", "variant": "param", "kind": 32768, @@ -25510,7 +26248,7 @@ ], "type": { "type": "reference", - "target": 2083, + "target": 2136, "name": "StationIndex", "package": "@idfkit/weather" } @@ -25518,7 +26256,7 @@ ] }, { - "id": 2088, + "id": 2141, "name": "countries", "variant": "declaration", "kind": 262144, @@ -25526,13 +26264,13 @@ "sources": [ { "fileName": "station-index.ts", - "line": 153, + "line": 244, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L153" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L244" } ], "getSignature": { - "id": 2089, + "id": 2142, "name": "countries", "variant": "signature", "kind": 524288, @@ -25548,9 +26286,9 @@ "sources": [ { "fileName": "station-index.ts", - "line": 153, + "line": 244, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L153" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L244" } ], "type": { @@ -25563,7 +26301,7 @@ } }, { - "id": 2090, + "id": 2143, "name": "lastModified", "variant": "declaration", "kind": 262144, @@ -25571,13 +26309,13 @@ "sources": [ { "fileName": "station-index.ts", - "line": 148, + "line": 239, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L148" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L239" } ], "getSignature": { - "id": 2091, + "id": 2144, "name": "lastModified", "variant": "signature", "kind": 524288, @@ -25601,9 +26339,9 @@ "sources": [ { "fileName": "station-index.ts", - "line": 148, + "line": 239, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L148" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L239" } ], "type": { @@ -25641,7 +26379,7 @@ } }, { - "id": 2092, + "id": 2145, "name": "size", "variant": "declaration", "kind": 262144, @@ -25649,13 +26387,13 @@ "sources": [ { "fileName": "station-index.ts", - "line": 143, + "line": 234, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L143" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L234" } ], "getSignature": { - "id": 2093, + "id": 2146, "name": "size", "variant": "signature", "kind": 524288, @@ -25671,9 +26409,9 @@ "sources": [ { "fileName": "station-index.ts", - "line": 143, + "line": 234, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L143" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L234" } ], "type": { @@ -25683,7 +26421,7 @@ } }, { - "id": 2094, + "id": 2147, "name": "stations", "variant": "declaration", "kind": 262144, @@ -25691,13 +26429,13 @@ "sources": [ { "fileName": "station-index.ts", - "line": 138, + "line": 229, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L138" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L229" } ], "getSignature": { - "id": 2095, + "id": 2148, "name": "stations", "variant": "signature", "kind": 524288, @@ -25713,9 +26451,9 @@ "sources": [ { "fileName": "station-index.ts", - "line": 138, + "line": 229, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L138" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L229" } ], "type": { @@ -25725,7 +26463,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -25734,7 +26472,7 @@ } }, { - "id": 2096, + "id": 2149, "name": "filter", "variant": "declaration", "kind": 2048, @@ -25742,14 +26480,14 @@ "sources": [ { "fileName": "station-index.ts", - "line": 261, + "line": 352, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L261" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L352" } ], "signatures": [ { - "id": 2097, + "id": 2150, "name": "filter", "variant": "signature", "kind": 4096, @@ -25765,21 +26503,21 @@ "sources": [ { "fileName": "station-index.ts", - "line": 261, + "line": 352, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L261" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L352" } ], "parameters": [ { - "id": 2098, + "id": 2151, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2163, + "target": 2216, "name": "FilterOptions", "package": "@idfkit/weather" }, @@ -25790,7 +26528,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -25799,7 +26537,7 @@ ] }, { - "id": 2099, + "id": 2152, "name": "getByFilename", "variant": "declaration", "kind": 2048, @@ -25807,14 +26545,14 @@ "sources": [ { "fileName": "station-index.ts", - "line": 170, + "line": 261, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L170" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L261" } ], "signatures": [ { - "id": 2100, + "id": 2153, "name": "getByFilename", "variant": "signature", "kind": 4096, @@ -25830,14 +26568,14 @@ "sources": [ { "fileName": "station-index.ts", - "line": 170, + "line": 261, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L170" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L261" } ], "parameters": [ { - "id": 2101, + "id": 2154, "name": "filename", "variant": "param", "kind": 32768, @@ -25852,7 +26590,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -25861,7 +26599,7 @@ ] }, { - "id": 2102, + "id": 2155, "name": "getByWmo", "variant": "declaration", "kind": 2048, @@ -25869,14 +26607,14 @@ "sources": [ { "fileName": "station-index.ts", - "line": 161, + "line": 252, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L161" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L252" } ], "signatures": [ { - "id": 2103, + "id": 2156, "name": "getByWmo", "variant": "signature", "kind": 4096, @@ -25892,14 +26630,14 @@ "sources": [ { "fileName": "station-index.ts", - "line": 161, + "line": 252, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L161" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L252" } ], "parameters": [ { - "id": 2104, + "id": 2157, "name": "wmo", "variant": "param", "kind": 32768, @@ -25914,7 +26652,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -25923,7 +26661,7 @@ ] }, { - "id": 2105, + "id": 2158, "name": "nearest", "variant": "declaration", "kind": 2048, @@ -25931,14 +26669,14 @@ "sources": [ { "fileName": "station-index.ts", - "line": 222, + "line": 313, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L222" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L313" } ], "signatures": [ { - "id": 2106, + "id": 2159, "name": "nearest", "variant": "signature", "kind": 4096, @@ -25962,14 +26700,14 @@ "sources": [ { "fileName": "station-index.ts", - "line": 222, + "line": 313, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L222" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L313" } ], "parameters": [ { - "id": 2107, + "id": 2160, "name": "latitude", "variant": "param", "kind": 32768, @@ -25980,7 +26718,7 @@ } }, { - "id": 2108, + "id": 2161, "name": "longitude", "variant": "param", "kind": 32768, @@ -25991,14 +26729,14 @@ } }, { - "id": 2109, + "id": 2162, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2177, + "target": 2232, "name": "NearestOptions", "package": "@idfkit/weather" }, @@ -26009,7 +26747,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2192, + "target": 2247, "name": "SpatialResult", "package": "@idfkit/weather" } @@ -26018,7 +26756,7 @@ ] }, { - "id": 2110, + "id": 2163, "name": "search", "variant": "declaration", "kind": 2048, @@ -26026,14 +26764,14 @@ "sources": [ { "fileName": "station-index.ts", - "line": 186, + "line": 277, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L186" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L277" } ], "signatures": [ { - "id": 2111, + "id": 2164, "name": "search", "variant": "signature", "kind": 4096, @@ -26048,7 +26786,7 @@ "kind": "inline-tag", "tag": "@link", "text": "getByFilename", - "target": 2099 + "target": 2152 }, { "kind": "text", @@ -26059,14 +26797,14 @@ "sources": [ { "fileName": "station-index.ts", - "line": 186, + "line": 277, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L186" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L277" } ], "parameters": [ { - "id": 2112, + "id": 2165, "name": "query", "variant": "param", "kind": 32768, @@ -26077,14 +26815,14 @@ } }, { - "id": 2113, + "id": 2166, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2185, + "target": 2240, "name": "SearchOptions", "package": "@idfkit/weather" }, @@ -26095,7 +26833,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2188, + "target": 2243, "name": "SearchResult", "package": "@idfkit/weather" } @@ -26104,7 +26842,7 @@ ] }, { - "id": 2114, + "id": 2167, "name": "fromStations", "variant": "declaration", "kind": 2048, @@ -26114,14 +26852,14 @@ "sources": [ { "fileName": "station-index.ts", - "line": 133, + "line": 224, "character": 9, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L133" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L224" } ], "signatures": [ { - "id": 2115, + "id": 2168, "name": "fromStations", "variant": "signature", "kind": 4096, @@ -26137,14 +26875,14 @@ "sources": [ { "fileName": "station-index.ts", - "line": 133, + "line": 224, "character": 9, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L133" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L224" } ], "parameters": [ { - "id": 2116, + "id": 2169, "name": "stations", "variant": "param", "kind": 32768, @@ -26156,7 +26894,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -26166,7 +26904,7 @@ ], "type": { "type": "reference", - "target": 2083, + "target": 2136, "name": "StationIndex", "package": "@idfkit/weather" } @@ -26178,41 +26916,41 @@ { "title": "Constructors", "children": [ - 2084 + 2137 ] }, { "title": "Accessors", "children": [ - 2088, - 2090, - 2092, - 2094 + 2141, + 2143, + 2145, + 2147 ] }, { "title": "Methods", "children": [ - 2096, - 2099, - 2102, - 2105, - 2110, - 2114 + 2149, + 2152, + 2155, + 2158, + 2163, + 2167 ] } ], "sources": [ { "fileName": "station-index.ts", - "line": 116, + "line": 207, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L116" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L207" } ] }, { - "id": 2117, + "id": 2170, "name": "WeatherStation", "variant": "declaration", "kind": 128, @@ -26227,7 +26965,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationIndex", - "target": 2083 + "target": 2136 }, { "kind": "text", @@ -26237,7 +26975,7 @@ }, "children": [ { - "id": 2118, + "id": 2171, "name": "constructor", "variant": "declaration", "kind": 512, @@ -26247,12 +26985,12 @@ "fileName": "station.ts", "line": 102, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L102" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L102" } ], "signatures": [ { - "id": 2119, + "id": 2172, "name": "WeatherStation", "variant": "signature", "kind": 16384, @@ -26262,19 +27000,19 @@ "fileName": "station.ts", "line": 102, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L102" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L102" } ], "parameters": [ { - "id": 2120, + "id": 2173, "name": "fields", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2218, + "target": 2282, "name": "WeatherStationFields", "package": "@idfkit/weather" } @@ -26282,7 +27020,7 @@ ], "type": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -26290,7 +27028,7 @@ ] }, { - "id": 2121, + "id": 2174, "name": "ashraeClimateZone", "variant": "declaration", "kind": 1024, @@ -26318,7 +27056,7 @@ "fileName": "station.ts", "line": 95, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L95" } ], "type": { @@ -26327,14 +27065,14 @@ }, "implementationOf": { "type": "reference", - "target": 2219, + "target": 2283, "name": "Readonly.ashraeClimateZone", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.ashraeClimateZone" } }, { - "id": 2122, + "id": 2175, "name": "cdd10", "variant": "declaration", "kind": 1024, @@ -26354,7 +27092,7 @@ "fileName": "station.ts", "line": 99, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L99" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L99" } ], "type": { @@ -26363,14 +27101,14 @@ }, "implementationOf": { "type": "reference", - "target": 2220, + "target": 2284, "name": "Readonly.cdd10", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.cdd10" } }, { - "id": 2123, + "id": 2176, "name": "city", "variant": "declaration", "kind": 1024, @@ -26398,7 +27136,7 @@ "fileName": "station.ts", "line": 87, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L87" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L87" } ], "type": { @@ -26407,14 +27145,14 @@ }, "implementationOf": { "type": "reference", - "target": 2221, + "target": 2285, "name": "Readonly.city", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.city" } }, { - "id": 2124, + "id": 2177, "name": "coolingDesignDbC", "variant": "declaration", "kind": 1024, @@ -26434,7 +27172,7 @@ "fileName": "station.ts", "line": 97, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L97" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L97" } ], "type": { @@ -26443,14 +27181,14 @@ }, "implementationOf": { "type": "reference", - "target": 2222, + "target": 2286, "name": "Readonly.coolingDesignDbC", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.coolingDesignDbC" } }, { - "id": 2125, + "id": 2178, "name": "country", "variant": "declaration", "kind": 1024, @@ -26478,7 +27216,7 @@ "fileName": "station.ts", "line": 85, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L85" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L85" } ], "type": { @@ -26487,14 +27225,14 @@ }, "implementationOf": { "type": "reference", - "target": 2223, + "target": 2287, "name": "Readonly.country", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.country" } }, { - "id": 2126, + "id": 2179, "name": "designConditionsSourceWmo", "variant": "declaration", "kind": 1024, @@ -26522,7 +27260,7 @@ "fileName": "station.ts", "line": 100, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L100" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L100" } ], "type": { @@ -26540,14 +27278,14 @@ }, "implementationOf": { "type": "reference", - "target": 2224, + "target": 2288, "name": "Readonly.designConditionsSourceWmo", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.designConditionsSourceWmo" } }, { - "id": 2127, + "id": 2180, "name": "elevation", "variant": "declaration", "kind": 1024, @@ -26567,7 +27305,7 @@ "fileName": "station.ts", "line": 93, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L93" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L93" } ], "type": { @@ -26576,14 +27314,14 @@ }, "implementationOf": { "type": "reference", - "target": 2225, + "target": 2289, "name": "Readonly.elevation", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.elevation" } }, { - "id": 2128, + "id": 2181, "name": "hdd18", "variant": "declaration", "kind": 1024, @@ -26603,7 +27341,7 @@ "fileName": "station.ts", "line": 98, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L98" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L98" } ], "type": { @@ -26612,14 +27350,14 @@ }, "implementationOf": { "type": "reference", - "target": 2226, + "target": 2290, "name": "Readonly.hdd18", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.hdd18" } }, { - "id": 2129, + "id": 2182, "name": "heatingDesignDbC", "variant": "declaration", "kind": 1024, @@ -26639,7 +27377,7 @@ "fileName": "station.ts", "line": 96, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L96" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L96" } ], "type": { @@ -26648,14 +27386,14 @@ }, "implementationOf": { "type": "reference", - "target": 2227, + "target": 2291, "name": "Readonly.heatingDesignDbC", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.heatingDesignDbC" } }, { - "id": 2130, + "id": 2183, "name": "latitude", "variant": "declaration", "kind": 1024, @@ -26675,7 +27413,7 @@ "fileName": "station.ts", "line": 90, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L90" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L90" } ], "type": { @@ -26684,14 +27422,14 @@ }, "implementationOf": { "type": "reference", - "target": 2228, + "target": 2292, "name": "Readonly.latitude", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.latitude" } }, { - "id": 2131, + "id": 2184, "name": "longitude", "variant": "declaration", "kind": 1024, @@ -26711,7 +27449,7 @@ "fileName": "station.ts", "line": 91, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L91" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L91" } ], "type": { @@ -26720,14 +27458,14 @@ }, "implementationOf": { "type": "reference", - "target": 2229, + "target": 2293, "name": "Readonly.longitude", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.longitude" } }, { - "id": 2132, + "id": 2185, "name": "source", "variant": "declaration", "kind": 1024, @@ -26763,7 +27501,7 @@ "fileName": "station.ts", "line": 89, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L89" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L89" } ], "type": { @@ -26772,14 +27510,14 @@ }, "implementationOf": { "type": "reference", - "target": 2230, + "target": 2294, "name": "Readonly.source", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.source" } }, { - "id": 2133, + "id": 2186, "name": "state", "variant": "declaration", "kind": 1024, @@ -26807,7 +27545,7 @@ "fileName": "station.ts", "line": 86, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L86" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L86" } ], "type": { @@ -26816,14 +27554,14 @@ }, "implementationOf": { "type": "reference", - "target": 2231, + "target": 2295, "name": "Readonly.state", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.state" } }, { - "id": 2134, + "id": 2187, "name": "timezone", "variant": "declaration", "kind": 1024, @@ -26851,7 +27589,7 @@ "fileName": "station.ts", "line": 92, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L92" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L92" } ], "type": { @@ -26860,14 +27598,14 @@ }, "implementationOf": { "type": "reference", - "target": 2232, + "target": 2296, "name": "Readonly.timezone", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.timezone" } }, { - "id": 2135, + "id": 2188, "name": "url", "variant": "declaration", "kind": 1024, @@ -26887,7 +27625,7 @@ "fileName": "station.ts", "line": 94, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L94" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L94" } ], "type": { @@ -26896,14 +27634,14 @@ }, "implementationOf": { "type": "reference", - "target": 2233, + "target": 2297, "name": "Readonly.url", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.url" } }, { - "id": 2136, + "id": 2189, "name": "wmo", "variant": "declaration", "kind": 1024, @@ -26923,7 +27661,7 @@ "fileName": "station.ts", "line": 88, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L88" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L88" } ], "type": { @@ -26932,14 +27670,14 @@ }, "implementationOf": { "type": "reference", - "target": 2234, + "target": 2298, "name": "Readonly.wmo", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.wmo" } }, { - "id": 2137, + "id": 2190, "name": "coolingDesignDbF", "variant": "declaration", "kind": 262144, @@ -26949,11 +27687,11 @@ "fileName": "station.ts", "line": 161, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L161" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L161" } ], "getSignature": { - "id": 2138, + "id": 2191, "name": "coolingDesignDbF", "variant": "signature", "kind": 524288, @@ -26971,7 +27709,7 @@ "fileName": "station.ts", "line": 161, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L161" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L161" } ], "type": { @@ -26981,7 +27719,7 @@ } }, { - "id": 2139, + "id": 2192, "name": "datasetVariant", "variant": "declaration", "kind": 262144, @@ -26991,11 +27729,11 @@ "fileName": "station.ts", "line": 149, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L149" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L149" } ], "getSignature": { - "id": 2140, + "id": 2193, "name": "datasetVariant", "variant": "signature", "kind": 524288, @@ -27029,7 +27767,7 @@ "fileName": "station.ts", "line": 149, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L149" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L149" } ], "type": { @@ -27039,7 +27777,7 @@ } }, { - "id": 2141, + "id": 2194, "name": "displayName", "variant": "declaration", "kind": 262144, @@ -27049,11 +27787,11 @@ "fileName": "station.ts", "line": 127, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L127" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L127" } ], "getSignature": { - "id": 2142, + "id": 2195, "name": "displayName", "variant": "signature", "kind": 524288, @@ -27079,7 +27817,7 @@ "fileName": "station.ts", "line": 127, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L127" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L127" } ], "type": { @@ -27089,7 +27827,7 @@ } }, { - "id": 2143, + "id": 2196, "name": "filenameStem", "variant": "declaration", "kind": 262144, @@ -27099,11 +27837,11 @@ "fileName": "station.ts", "line": 140, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L140" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L140" } ], "getSignature": { - "id": 2144, + "id": 2197, "name": "filenameStem", "variant": "signature", "kind": 524288, @@ -27137,7 +27875,7 @@ "fileName": "station.ts", "line": 140, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L140" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L140" } ], "type": { @@ -27147,7 +27885,7 @@ } }, { - "id": 2145, + "id": 2198, "name": "heatingDesignDbF", "variant": "declaration", "kind": 262144, @@ -27157,11 +27895,11 @@ "fileName": "station.ts", "line": 156, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L156" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L156" } ], "getSignature": { - "id": 2146, + "id": 2199, "name": "heatingDesignDbF", "variant": "signature", "kind": 524288, @@ -27179,7 +27917,7 @@ "fileName": "station.ts", "line": 156, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L156" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L156" } ], "type": { @@ -27189,7 +27927,7 @@ } }, { - "id": 2147, + "id": 2200, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -27199,12 +27937,12 @@ "fileName": "station.ts", "line": 166, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L166" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L166" } ], "signatures": [ { - "id": 2148, + "id": 2201, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -27219,7 +27957,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationRecord", - "target": 2195 + "target": 2250 }, { "kind": "text", @@ -27232,12 +27970,12 @@ "fileName": "station.ts", "line": 166, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L166" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L166" } ], "type": { "type": "reference", - "target": 2195, + "target": 2250, "name": "StationRecord", "package": "@idfkit/weather" } @@ -27245,7 +27983,7 @@ ] }, { - "id": 2149, + "id": 2202, "name": "fromJSON", "variant": "declaration", "kind": 2048, @@ -27257,12 +27995,12 @@ "fileName": "station.ts", "line": 194, "character": 9, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L194" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L194" } ], "signatures": [ { - "id": 2150, + "id": 2203, "name": "fromJSON", "variant": "signature", "kind": 4096, @@ -27296,19 +28034,19 @@ "fileName": "station.ts", "line": 194, "character": 9, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L194" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L194" } ], "parameters": [ { - "id": 2151, + "id": 2204, "name": "record", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2195, + "target": 2250, "name": "StationRecord", "package": "@idfkit/weather" } @@ -27316,7 +28054,7 @@ ], "type": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -27328,45 +28066,45 @@ { "title": "Constructors", "children": [ - 2118 + 2171 ] }, { "title": "Properties", "children": [ - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136 + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189 ] }, { "title": "Accessors", "children": [ - 2137, - 2139, - 2141, - 2143, - 2145 + 2190, + 2192, + 2194, + 2196, + 2198 ] }, { "title": "Methods", "children": [ - 2147, - 2149 + 2200, + 2202 ] } ], @@ -27375,7 +28113,7 @@ "fileName": "station.ts", "line": 84, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L84" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L84" } ], "implementedTypes": [ @@ -27397,7 +28135,7 @@ "typeArguments": [ { "type": "reference", - "target": 2218, + "target": 2282, "name": "WeatherStationFields", "package": "@idfkit/weather" } @@ -27412,7 +28150,7 @@ ] }, { - "id": 2152, + "id": 2205, "name": "DetectLocationOptions", "variant": "declaration", "kind": 256, @@ -27427,7 +28165,7 @@ "kind": "inline-tag", "tag": "@link", "text": "detectLocation", - "target": 2251 + "target": 2315 }, { "kind": "text", @@ -27437,7 +28175,7 @@ }, "children": [ { - "id": 2153, + "id": 2206, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -27450,23 +28188,23 @@ "fileName": "geocode.ts", "line": 71, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L71" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L71" } ], "type": { "type": "reference", - "target": 2235, + "target": 2299, "name": "FetchLike", "package": "@idfkit/weather" }, "inheritedFrom": { "type": "reference", - "target": 2168, + "target": 2223, "name": "GeocodeOptions.fetch" } }, { - "id": 2154, + "id": 2207, "name": "maxAgeMs", "variant": "declaration", "kind": 1024, @@ -27494,7 +28232,7 @@ "fileName": "geocode.ts", "line": 129, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L129" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L129" } ], "type": { @@ -27503,7 +28241,7 @@ } }, { - "id": 2155, + "id": 2208, "name": "signal", "variant": "declaration", "kind": 1024, @@ -27516,7 +28254,7 @@ "fileName": "geocode.ts", "line": 72, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L72" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L72" } ], "type": { @@ -27532,7 +28270,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 2169, + "target": 2224, "name": "GeocodeOptions.signal" } } @@ -27541,9 +28279,9 @@ { "title": "Properties", "children": [ - 2153, - 2154, - 2155 + 2206, + 2207, + 2208 ] } ], @@ -27552,20 +28290,20 @@ "fileName": "geocode.ts", "line": 124, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L124" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L124" } ], "extendedTypes": [ { "type": "reference", - "target": 2167, + "target": 2222, "name": "GeocodeOptions", "package": "@idfkit/weather" } ] }, { - "id": 2156, + "id": 2209, "name": "FetchWeatherOptions", "variant": "declaration", "kind": 256, @@ -27580,7 +28318,7 @@ }, "children": [ { - "id": 2157, + "id": 2210, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -27608,18 +28346,18 @@ "fileName": "download.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L24" } ], "type": { "type": "reference", - "target": 2235, + "target": 2299, "name": "FetchLike", "package": "@idfkit/weather" } }, { - "id": 2158, + "id": 2211, "name": "rewriteUrl", "variant": "declaration", "kind": 1024, @@ -27647,27 +28385,27 @@ "fileName": "download.ts", "line": 29, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L29" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L29" } ], "type": { "type": "reflection", "declaration": { - "id": 2159, + "id": 2212, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2160, + "id": 2213, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2161, + "id": 2214, "name": "url", "variant": "param", "kind": 32768, @@ -27688,7 +28426,7 @@ } }, { - "id": 2162, + "id": 2215, "name": "signal", "variant": "declaration", "kind": 1024, @@ -27716,7 +28454,7 @@ "fileName": "download.ts", "line": 31, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L31" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L31" } ], "type": { @@ -27736,9 +28474,9 @@ { "title": "Properties", "children": [ - 2157, - 2158, - 2162 + 2210, + 2211, + 2215 ] } ], @@ -27747,12 +28485,12 @@ "fileName": "download.ts", "line": 22, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L22" } ] }, { - "id": 2163, + "id": 2216, "name": "FilterOptions", "variant": "declaration", "kind": 256, @@ -27767,7 +28505,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationIndex.filter", - "target": 2096 + "target": 2149 }, { "kind": "text", @@ -27777,7 +28515,149 @@ }, "children": [ { - "id": 2164, + "id": 2217, + "name": "climateZone", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ASHRAE climate zone code, e.g. " + }, + { + "kind": "code", + "text": "`\"5A\"`" + }, + { + "kind": "text", + "text": ". Case-insensitive.\n\nMatched against the code parsed out of " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "WeatherStation.ashraeClimateZone", + "target": 2174 + }, + { + "kind": "text", + "text": ",\nnever against that label's text. The label is not a code: 2,162 records in the\nshipped index read " + }, + { + "kind": "code", + "text": "`7A - ASHRAE Climate Zone could not be determined`" + }, + { + "kind": "text", + "text": " or\n" + }, + { + "kind": "code", + "text": "`8A - ...`" + }, + { + "kind": "text", + "text": ", and neither 7A nor 8A is an ASHRAE zone, since zones 7 and 8 carry\nno suffix. Matching the first token would invent two zones holding 3.1% of the\nindex, so those records match no zone. Ask for them with\n" + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "FilterOptions.climateZoneDetermined", + "target": 2218 + }, + { + "kind": "text", + "text": ". An empty string is no constraint,\nmatching " + }, + { + "kind": "code", + "text": "`country`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`state`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + "sources": [ + { + "fileName": "station-index.ts", + "line": 126, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L126" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2218, + "name": "climateZoneDetermined", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the station's ASHRAE zone was determined upstream.\n\n" + }, + { + "kind": "code", + "text": "`false`" + }, + { + "kind": "text", + "text": " selects the records whose label reports that it could not be, which no\n" + }, + { + "kind": "code", + "text": "`climateZone`" + }, + { + "kind": "text", + "text": " value returns. A separate key rather than a reserved " + }, + { + "kind": "code", + "text": "`climateZone`" + }, + { + "kind": "text", + "text": "\nvalue, because that key's domain is already strings and a magic one could not be\ntold from a real code." + } + ] + }, + "sources": [ + { + "fileName": "station-index.ts", + "line": 135, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2219, "name": "country", "variant": "declaration", "kind": 1024, @@ -27789,7 +28669,7 @@ "fileName": "station-index.ts", "line": 110, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L110" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L110" } ], "type": { @@ -27798,7 +28678,7 @@ } }, { - "id": 2165, + "id": 2220, "name": "state", "variant": "declaration", "kind": 1024, @@ -27810,7 +28690,7 @@ "fileName": "station-index.ts", "line": 111, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L111" } ], "type": { @@ -27819,7 +28699,7 @@ } }, { - "id": 2166, + "id": 2221, "name": "wmoRegion", "variant": "declaration", "kind": 1024, @@ -27847,7 +28727,7 @@ "fileName": "station-index.ts", "line": 113, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L113" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L113" } ], "type": { @@ -27860,9 +28740,11 @@ { "title": "Properties", "children": [ - 2164, - 2165, - 2166 + 2217, + 2218, + 2219, + 2220, + 2221 ] } ], @@ -27871,12 +28753,12 @@ "fileName": "station-index.ts", "line": 109, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L109" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L109" } ] }, { - "id": 2167, + "id": 2222, "name": "GeocodeOptions", "variant": "declaration", "kind": 256, @@ -27891,7 +28773,7 @@ "kind": "inline-tag", "tag": "@link", "text": "geocode", - "target": 2271 + "target": 2335 }, { "kind": "text", @@ -27901,7 +28783,7 @@ "kind": "inline-tag", "tag": "@link", "text": "detectLocation", - "target": 2251 + "target": 2315 }, { "kind": "text", @@ -27911,7 +28793,7 @@ }, "children": [ { - "id": 2168, + "id": 2223, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -27923,18 +28805,18 @@ "fileName": "geocode.ts", "line": 71, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L71" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L71" } ], "type": { "type": "reference", - "target": 2235, + "target": 2299, "name": "FetchLike", "package": "@idfkit/weather" } }, { - "id": 2169, + "id": 2224, "name": "signal", "variant": "declaration", "kind": 1024, @@ -27946,7 +28828,7 @@ "fileName": "geocode.ts", "line": 72, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L72" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L72" } ], "type": { @@ -27966,8 +28848,8 @@ { "title": "Properties", "children": [ - 2168, - 2169 + 2223, + 2224 ] } ], @@ -27976,19 +28858,19 @@ "fileName": "geocode.ts", "line": 70, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L70" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L70" } ], "extendedBy": [ { "type": "reference", - "target": 2152, + "target": 2205, "name": "DetectLocationOptions" } ] }, { - "id": 2170, + "id": 2225, "name": "IndexData", "variant": "declaration", "kind": 256, @@ -28011,7 +28893,7 @@ }, "children": [ { - "id": 2171, + "id": 2226, "name": "built_at", "variant": "declaration", "kind": 1024, @@ -28023,7 +28905,7 @@ "fileName": "load.ts", "line": 37, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L37" } ], "type": { @@ -28032,7 +28914,7 @@ } }, { - "id": 2172, + "id": 2227, "name": "last_modified", "variant": "declaration", "kind": 1024, @@ -28044,7 +28926,7 @@ "fileName": "load.ts", "line": 38, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L38" } ], "type": { @@ -28069,7 +28951,7 @@ } }, { - "id": 2173, + "id": 2228, "name": "stations", "variant": "declaration", "kind": 1024, @@ -28079,14 +28961,14 @@ "fileName": "load.ts", "line": 39, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L39" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 2195, + "target": 2250, "name": "StationRecord", "package": "@idfkit/weather" } @@ -28097,9 +28979,9 @@ { "title": "Properties", "children": [ - 2171, - 2172, - 2173 + 2226, + 2227, + 2228 ] } ], @@ -28108,12 +28990,12 @@ "fileName": "load.ts", "line": 36, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L36" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L36" } ] }, { - "id": 2174, + "id": 2229, "name": "LoadIndexOptions", "variant": "declaration", "kind": 256, @@ -28128,7 +29010,7 @@ "kind": "inline-tag", "tag": "@link", "text": "loadStationIndex", - "target": 2284 + "target": 2348 }, { "kind": "text", @@ -28138,7 +29020,7 @@ }, "children": [ { - "id": 2175, + "id": 2230, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -28150,18 +29032,18 @@ "fileName": "load.ts", "line": 74, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L74" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L74" } ], "type": { "type": "reference", - "target": 2235, + "target": 2299, "name": "FetchLike", "package": "@idfkit/weather" } }, { - "id": 2176, + "id": 2231, "name": "signal", "variant": "declaration", "kind": 1024, @@ -28173,7 +29055,7 @@ "fileName": "load.ts", "line": 75, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L75" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L75" } ], "type": { @@ -28193,8 +29075,8 @@ { "title": "Properties", "children": [ - 2175, - 2176 + 2230, + 2231 ] } ], @@ -28203,12 +29085,12 @@ "fileName": "load.ts", "line": 73, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L73" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L73" } ] }, { - "id": 2177, + "id": 2232, "name": "NearestOptions", "variant": "declaration", "kind": 256, @@ -28223,7 +29105,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationIndex.nearest", - "target": 2105 + "target": 2158 }, { "kind": "text", @@ -28233,7 +29115,7 @@ }, "children": [ { - "id": 2178, + "id": 2233, "name": "country", "variant": "declaration", "kind": 1024, @@ -28253,7 +29135,7 @@ "fileName": "station-index.ts", "line": 105, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L105" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L105" } ], "type": { @@ -28262,7 +29144,7 @@ } }, { - "id": 2179, + "id": 2234, "name": "limit", "variant": "declaration", "kind": 1024, @@ -28282,7 +29164,7 @@ "fileName": "station-index.ts", "line": 101, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L101" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L101" } ], "type": { @@ -28291,7 +29173,7 @@ } }, { - "id": 2180, + "id": 2235, "name": "maxDistanceKm", "variant": "declaration", "kind": 1024, @@ -28311,7 +29193,7 @@ "fileName": "station-index.ts", "line": 103, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L103" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L103" } ], "type": { @@ -28324,9 +29206,9 @@ { "title": "Properties", "children": [ - 2178, - 2179, - 2180 + 2233, + 2234, + 2235 ] } ], @@ -28335,12 +29217,12 @@ "fileName": "station-index.ts", "line": 99, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L99" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L99" } ] }, { - "id": 2181, + "id": 2236, "name": "RefreshIndexOptions", "variant": "declaration", "kind": 256, @@ -28355,7 +29237,7 @@ "kind": "inline-tag", "tag": "@link", "text": "refreshStationIndex", - "target": 2295 + "target": 2366 }, { "kind": "text", @@ -28365,7 +29247,7 @@ }, "children": [ { - "id": 2182, + "id": 2237, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -28385,7 +29267,7 @@ "fileName": "load.ts", "line": 106, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L106" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L106" } ], "type": { @@ -28394,7 +29276,7 @@ } }, { - "id": 2183, + "id": 2238, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -28406,18 +29288,18 @@ "fileName": "load.ts", "line": 104, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L104" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L104" } ], "type": { "type": "reference", - "target": 2235, + "target": 2299, "name": "FetchLike", "package": "@idfkit/weather" } }, { - "id": 2184, + "id": 2239, "name": "signal", "variant": "declaration", "kind": 1024, @@ -28429,7 +29311,7 @@ "fileName": "load.ts", "line": 107, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L107" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L107" } ], "type": { @@ -28449,9 +29331,9 @@ { "title": "Properties", "children": [ - 2182, - 2183, - 2184 + 2237, + 2238, + 2239 ] } ], @@ -28460,12 +29342,12 @@ "fileName": "load.ts", "line": 103, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L103" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L103" } ] }, { - "id": 2185, + "id": 2240, "name": "SearchOptions", "variant": "declaration", "kind": 256, @@ -28480,7 +29362,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationIndex.search", - "target": 2110 + "target": 2163 }, { "kind": "text", @@ -28490,7 +29372,7 @@ }, "children": [ { - "id": 2186, + "id": 2241, "name": "country", "variant": "declaration", "kind": 1024, @@ -28510,7 +29392,7 @@ "fileName": "station-index.ts", "line": 95, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L95" } ], "type": { @@ -28519,7 +29401,7 @@ } }, { - "id": 2187, + "id": 2242, "name": "limit", "variant": "declaration", "kind": 1024, @@ -28539,7 +29421,7 @@ "fileName": "station-index.ts", "line": 93, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L93" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L93" } ], "type": { @@ -28552,8 +29434,8 @@ { "title": "Properties", "children": [ - 2186, - 2187 + 2241, + 2242 ] } ], @@ -28562,12 +29444,12 @@ "fileName": "station-index.ts", "line": 91, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L91" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station-index.ts#L91" } ] }, { - "id": 2188, + "id": 2243, "name": "SearchResult", "variant": "declaration", "kind": 256, @@ -28582,7 +29464,7 @@ }, "children": [ { - "id": 2189, + "id": 2244, "name": "matchField", "variant": "declaration", "kind": 1024, @@ -28600,18 +29482,18 @@ "fileName": "station.ts", "line": 238, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L238" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L238" } ], "type": { "type": "reference", - "target": 2244, + "target": 2308, "name": "MatchField", "package": "@idfkit/weather" } }, { - "id": 2190, + "id": 2245, "name": "score", "variant": "declaration", "kind": 1024, @@ -28629,7 +29511,7 @@ "fileName": "station.ts", "line": 236, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L236" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L236" } ], "type": { @@ -28638,7 +29520,7 @@ } }, { - "id": 2191, + "id": 2246, "name": "station", "variant": "declaration", "kind": 1024, @@ -28648,12 +29530,12 @@ "fileName": "station.ts", "line": 234, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L234" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L234" } ], "type": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -28663,9 +29545,9 @@ { "title": "Properties", "children": [ - 2189, - 2190, - 2191 + 2244, + 2245, + 2246 ] } ], @@ -28674,12 +29556,12 @@ "fileName": "station.ts", "line": 233, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L233" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L233" } ] }, { - "id": 2192, + "id": 2247, "name": "SpatialResult", "variant": "declaration", "kind": 256, @@ -28694,7 +29576,7 @@ }, "children": [ { - "id": 2193, + "id": 2248, "name": "distanceKm", "variant": "declaration", "kind": 1024, @@ -28712,7 +29594,7 @@ "fileName": "station.ts", "line": 245, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L245" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L245" } ], "type": { @@ -28721,7 +29603,7 @@ } }, { - "id": 2194, + "id": 2249, "name": "station", "variant": "declaration", "kind": 1024, @@ -28731,12 +29613,12 @@ "fileName": "station.ts", "line": 243, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L243" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L243" } ], "type": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -28746,8 +29628,8 @@ { "title": "Properties", "children": [ - 2193, - 2194 + 2248, + 2249 ] } ], @@ -28756,12 +29638,12 @@ "fileName": "station.ts", "line": 242, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L242" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L242" } ] }, { - "id": 2195, + "id": 2250, "name": "StationRecord", "variant": "declaration", "kind": 256, @@ -28792,7 +29674,7 @@ "kind": "inline-tag", "tag": "@link", "text": "WeatherStation", - "target": 2117 + "target": 2170 }, { "kind": "text", @@ -28802,7 +29684,7 @@ "kind": "inline-tag", "tag": "@link", "text": "WeatherStation.fromJSON", - "target": 2149 + "target": 2202 }, { "kind": "text", @@ -28812,7 +29694,7 @@ "kind": "inline-tag", "tag": "@link", "text": "WeatherStation.toJSON", - "target": 2147 + "target": 2200 }, { "kind": "text", @@ -28822,7 +29704,7 @@ }, "children": [ { - "id": 2196, + "id": 2251, "name": "ashrae_climate_zone", "variant": "declaration", "kind": 1024, @@ -28832,7 +29714,7 @@ "fileName": "station.ts", "line": 30, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L30" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L30" } ], "type": { @@ -28841,7 +29723,7 @@ } }, { - "id": 2197, + "id": 2252, "name": "cdd10", "variant": "declaration", "kind": 1024, @@ -28851,7 +29733,7 @@ "fileName": "station.ts", "line": 34, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L34" } ], "type": { @@ -28860,7 +29742,7 @@ } }, { - "id": 2198, + "id": 2253, "name": "city", "variant": "declaration", "kind": 1024, @@ -28870,7 +29752,7 @@ "fileName": "station.ts", "line": 22, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L22" } ], "type": { @@ -28879,7 +29761,7 @@ } }, { - "id": 2199, + "id": 2254, "name": "cooling_design_db_c", "variant": "declaration", "kind": 1024, @@ -28889,7 +29771,7 @@ "fileName": "station.ts", "line": 32, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L32" } ], "type": { @@ -28898,7 +29780,7 @@ } }, { - "id": 2200, + "id": 2255, "name": "country", "variant": "declaration", "kind": 1024, @@ -28908,7 +29790,7 @@ "fileName": "station.ts", "line": 20, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L20" } ], "type": { @@ -28917,7 +29799,7 @@ } }, { - "id": 2201, + "id": 2256, "name": "design_conditions_source_wmo", "variant": "declaration", "kind": 1024, @@ -28927,7 +29809,7 @@ "fileName": "station.ts", "line": 35, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L35" } ], "type": { @@ -28945,7 +29827,7 @@ } }, { - "id": 2202, + "id": 2257, "name": "elevation", "variant": "declaration", "kind": 1024, @@ -28955,7 +29837,7 @@ "fileName": "station.ts", "line": 28, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L28" } ], "type": { @@ -28964,7 +29846,7 @@ } }, { - "id": 2203, + "id": 2258, "name": "hdd18", "variant": "declaration", "kind": 1024, @@ -28974,7 +29856,7 @@ "fileName": "station.ts", "line": 33, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L33" } ], "type": { @@ -28983,7 +29865,7 @@ } }, { - "id": 2204, + "id": 2259, "name": "heating_design_db_c", "variant": "declaration", "kind": 1024, @@ -28993,7 +29875,7 @@ "fileName": "station.ts", "line": 31, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L31" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L31" } ], "type": { @@ -29002,7 +29884,7 @@ } }, { - "id": 2205, + "id": 2260, "name": "latitude", "variant": "declaration", "kind": 1024, @@ -29012,7 +29894,7 @@ "fileName": "station.ts", "line": 25, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L25" } ], "type": { @@ -29021,7 +29903,7 @@ } }, { - "id": 2206, + "id": 2261, "name": "longitude", "variant": "declaration", "kind": 1024, @@ -29031,7 +29913,7 @@ "fileName": "station.ts", "line": 26, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L26" } ], "type": { @@ -29040,7 +29922,7 @@ } }, { - "id": 2207, + "id": 2262, "name": "source", "variant": "declaration", "kind": 1024, @@ -29050,7 +29932,7 @@ "fileName": "station.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L24" } ], "type": { @@ -29059,7 +29941,7 @@ } }, { - "id": 2208, + "id": 2263, "name": "state", "variant": "declaration", "kind": 1024, @@ -29069,7 +29951,7 @@ "fileName": "station.ts", "line": 21, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L21" } ], "type": { @@ -29078,7 +29960,7 @@ } }, { - "id": 2209, + "id": 2264, "name": "timezone", "variant": "declaration", "kind": 1024, @@ -29088,7 +29970,7 @@ "fileName": "station.ts", "line": 27, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L27" } ], "type": { @@ -29097,7 +29979,7 @@ } }, { - "id": 2210, + "id": 2265, "name": "url", "variant": "declaration", "kind": 1024, @@ -29107,7 +29989,7 @@ "fileName": "station.ts", "line": 29, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L29" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L29" } ], "type": { @@ -29116,7 +29998,7 @@ } }, { - "id": 2211, + "id": 2266, "name": "wmo", "variant": "declaration", "kind": 1024, @@ -29126,7 +30008,7 @@ "fileName": "station.ts", "line": 23, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L23" } ], "type": { @@ -29139,22 +30021,22 @@ { "title": "Properties", "children": [ - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211 + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266 ] } ], @@ -29163,12 +30045,323 @@ "fileName": "station.ts", "line": 19, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L19" } ] }, { - "id": 2212, + "id": 2267, + "name": "WeatherFile", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "One station's typical year, as read from EPW text.\n\nNot to be confused with " + }, + { + "kind": "code", + "text": "`WeatherFiles`" + }, + { + "kind": "text", + "text": ", plural, which is what retrieval hands\nback: the EPW, DDY and STAT members of one archive. This is what reading ONE\nof those members produces. The two names are one character apart, which is a\nhazard worth naming here rather than discovering in review." + } + ] + }, + "children": [ + { + "id": 2268, + "name": "comments", + "variant": "declaration", + "kind": 1024, + "flags": { + "isReadonly": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The two " + }, + { + "kind": "code", + "text": "`COMMENTS`" + }, + { + "kind": "text", + "text": " records, as text. They carry provenance and no structure worth imposing." + } + ] + }, + "sources": [ + { + "fileName": "epw.ts", + "line": 274, + "character": 11, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/epw.ts#L274" + } + ], + "type": { + "type": "typeOperator", + "operator": "readonly", + "target": { + "type": "tuple", + "elements": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + }, + { + "id": 2269, + "name": "dataPeriod", + "variant": "declaration", + "kind": 1024, + "flags": { + "isReadonly": true + }, + "sources": [ + { + "fileName": "epw.ts", + "line": 275, + "character": 11, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/epw.ts#L275" + } + ], + "type": { + "type": "reference", + "target": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "EpwDataPeriod" + }, + "name": "EpwDataPeriod", + "package": "@idfkit/weather" + } + }, + { + "id": 2270, + "name": "designConditions", + "variant": "declaration", + "kind": 1024, + "flags": { + "isReadonly": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`DESIGN CONDITIONS`" + }, + { + "kind": "text", + "text": " record as it stands, uninterpreted.\n\nRetained rather than parsed. A caller who wants design conditions is sent\nto the DDY member of the same archive, which is written in the model format\nand which the ordinary parser reads." + } + ] + }, + "sources": [ + { + "fileName": "epw.ts", + "line": 269, + "character": 11, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/epw.ts#L269" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2271, + "name": "groundTemperatures", + "variant": "declaration", + "kind": 1024, + "flags": { + "isReadonly": true + }, + "sources": [ + { + "fileName": "epw.ts", + "line": 271, + "character": 11, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/epw.ts#L271" + } + ], + "type": { + "type": "typeOperator", + "operator": "readonly", + "target": { + "type": "array", + "elementType": { + "type": "reference", + "target": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "EpwGroundTemperatures" + }, + "name": "EpwGroundTemperatures", + "package": "@idfkit/weather" + } + } + } + }, + { + "id": 2272, + "name": "holidays", + "variant": "declaration", + "kind": 1024, + "flags": { + "isReadonly": true + }, + "sources": [ + { + "fileName": "epw.ts", + "line": 272, + "character": 11, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/epw.ts#L272" + } + ], + "type": { + "type": "reference", + "target": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "EpwHolidays" + }, + "name": "EpwHolidays", + "package": "@idfkit/weather" + } + }, + { + "id": 2273, + "name": "hours", + "variant": "declaration", + "kind": 1024, + "flags": { + "isReadonly": true + }, + "sources": [ + { + "fileName": "epw.ts", + "line": 276, + "character": 11, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/epw.ts#L276" + } + ], + "type": { + "type": "reference", + "target": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "HourlyTable" + }, + "name": "HourlyTable", + "package": "@idfkit/weather" + } + }, + { + "id": 2274, + "name": "location", + "variant": "declaration", + "kind": 1024, + "flags": { + "isReadonly": true + }, + "sources": [ + { + "fileName": "epw.ts", + "line": 261, + "character": 11, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/epw.ts#L261" + } + ], + "type": { + "type": "reference", + "target": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "EpwLocation" + }, + "name": "EpwLocation", + "package": "@idfkit/weather" + } + }, + { + "id": 2275, + "name": "typicalPeriods", + "variant": "declaration", + "kind": 1024, + "flags": { + "isReadonly": true + }, + "sources": [ + { + "fileName": "epw.ts", + "line": 270, + "character": 11, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/epw.ts#L270" + } + ], + "type": { + "type": "typeOperator", + "operator": "readonly", + "target": { + "type": "array", + "elementType": { + "type": "reference", + "target": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "EpwPeriod" + }, + "name": "EpwPeriod", + "package": "@idfkit/weather" + } + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275 + ] + } + ], + "sources": [ + { + "fileName": "epw.ts", + "line": 260, + "character": 17, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/epw.ts#L260" + } + ] + }, + { + "id": 2276, "name": "WeatherFiles", "variant": "declaration", "kind": 256, @@ -29183,7 +30376,7 @@ }, "children": [ { - "id": 2213, + "id": 2277, "name": "ddy", "variant": "declaration", "kind": 1024, @@ -29209,7 +30402,7 @@ "fileName": "download.ts", "line": 40, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L40" } ], "type": { @@ -29227,7 +30420,7 @@ } }, { - "id": 2214, + "id": 2278, "name": "epw", "variant": "declaration", "kind": 1024, @@ -29245,7 +30438,7 @@ "fileName": "download.ts", "line": 38, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L38" } ], "type": { @@ -29254,7 +30447,7 @@ } }, { - "id": 2215, + "id": 2279, "name": "members", "variant": "declaration", "kind": 1024, @@ -29304,7 +30497,7 @@ "fileName": "download.ts", "line": 47, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L47" } ], "type": { @@ -29347,7 +30540,7 @@ } }, { - "id": 2216, + "id": 2280, "name": "stat", "variant": "declaration", "kind": 1024, @@ -29373,7 +30566,7 @@ "fileName": "download.ts", "line": 42, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L42" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L42" } ], "type": { @@ -29391,7 +30584,7 @@ } }, { - "id": 2217, + "id": 2281, "name": "station", "variant": "declaration", "kind": 1024, @@ -29401,12 +30594,12 @@ "fileName": "download.ts", "line": 36, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L36" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L36" } ], "type": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -29416,11 +30609,11 @@ { "title": "Properties", "children": [ - 2213, - 2214, - 2215, - 2216, - 2217 + 2277, + 2278, + 2279, + 2280, + 2281 ] } ], @@ -29429,12 +30622,12 @@ "fileName": "download.ts", "line": 35, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L35" } ] }, { - "id": 2218, + "id": 2282, "name": "WeatherStationFields", "variant": "declaration", "kind": 256, @@ -29449,7 +30642,7 @@ "kind": "inline-tag", "tag": "@link", "text": "WeatherStation", - "target": 2117 + "target": 2170 }, { "kind": "text", @@ -29459,7 +30652,7 @@ }, "children": [ { - "id": 2219, + "id": 2283, "name": "ashraeClimateZone", "variant": "declaration", "kind": 1024, @@ -29485,7 +30678,7 @@ "fileName": "station.ts", "line": 61, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L61" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L61" } ], "type": { @@ -29494,7 +30687,7 @@ } }, { - "id": 2220, + "id": 2284, "name": "cdd10", "variant": "declaration", "kind": 1024, @@ -29512,7 +30705,7 @@ "fileName": "station.ts", "line": 69, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L69" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L69" } ], "type": { @@ -29521,7 +30714,7 @@ } }, { - "id": 2221, + "id": 2285, "name": "city", "variant": "declaration", "kind": 1024, @@ -29547,7 +30740,7 @@ "fileName": "station.ts", "line": 45, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L45" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L45" } ], "type": { @@ -29556,7 +30749,7 @@ } }, { - "id": 2222, + "id": 2286, "name": "coolingDesignDbC", "variant": "declaration", "kind": 1024, @@ -29574,7 +30767,7 @@ "fileName": "station.ts", "line": 65, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L65" } ], "type": { @@ -29583,7 +30776,7 @@ } }, { - "id": 2223, + "id": 2287, "name": "country", "variant": "declaration", "kind": 1024, @@ -29609,7 +30802,7 @@ "fileName": "station.ts", "line": 41, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L41" } ], "type": { @@ -29618,7 +30811,7 @@ } }, { - "id": 2224, + "id": 2288, "name": "designConditionsSourceWmo", "variant": "declaration", "kind": 1024, @@ -29646,7 +30839,7 @@ "fileName": "station.ts", "line": 74, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L74" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L74" } ], "type": { @@ -29664,7 +30857,7 @@ } }, { - "id": 2225, + "id": 2289, "name": "elevation", "variant": "declaration", "kind": 1024, @@ -29682,7 +30875,7 @@ "fileName": "station.ts", "line": 57, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L57" } ], "type": { @@ -29691,7 +30884,7 @@ } }, { - "id": 2226, + "id": 2290, "name": "hdd18", "variant": "declaration", "kind": 1024, @@ -29709,7 +30902,7 @@ "fileName": "station.ts", "line": 67, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L67" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L67" } ], "type": { @@ -29718,7 +30911,7 @@ } }, { - "id": 2227, + "id": 2291, "name": "heatingDesignDbC", "variant": "declaration", "kind": 1024, @@ -29736,7 +30929,7 @@ "fileName": "station.ts", "line": 63, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L63" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L63" } ], "type": { @@ -29745,7 +30938,7 @@ } }, { - "id": 2228, + "id": 2292, "name": "latitude", "variant": "declaration", "kind": 1024, @@ -29763,7 +30956,7 @@ "fileName": "station.ts", "line": 51, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L51" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L51" } ], "type": { @@ -29772,7 +30965,7 @@ } }, { - "id": 2229, + "id": 2293, "name": "longitude", "variant": "declaration", "kind": 1024, @@ -29790,7 +30983,7 @@ "fileName": "station.ts", "line": 53, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L53" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L53" } ], "type": { @@ -29799,7 +30992,7 @@ } }, { - "id": 2230, + "id": 2294, "name": "source", "variant": "declaration", "kind": 1024, @@ -29833,7 +31026,7 @@ "fileName": "station.ts", "line": 49, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L49" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L49" } ], "type": { @@ -29842,7 +31035,7 @@ } }, { - "id": 2231, + "id": 2295, "name": "state", "variant": "declaration", "kind": 1024, @@ -29868,7 +31061,7 @@ "fileName": "station.ts", "line": 43, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L43" } ], "type": { @@ -29877,7 +31070,7 @@ } }, { - "id": 2232, + "id": 2296, "name": "timezone", "variant": "declaration", "kind": 1024, @@ -29903,7 +31096,7 @@ "fileName": "station.ts", "line": 55, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L55" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L55" } ], "type": { @@ -29912,7 +31105,7 @@ } }, { - "id": 2233, + "id": 2297, "name": "url", "variant": "declaration", "kind": 1024, @@ -29930,7 +31123,7 @@ "fileName": "station.ts", "line": 59, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L59" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L59" } ], "type": { @@ -29939,7 +31132,7 @@ } }, { - "id": 2234, + "id": 2298, "name": "wmo", "variant": "declaration", "kind": 1024, @@ -29957,7 +31150,7 @@ "fileName": "station.ts", "line": 47, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L47" } ], "type": { @@ -29970,22 +31163,22 @@ { "title": "Properties", "children": [ - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234 + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298 ] } ], @@ -29994,12 +31187,12 @@ "fileName": "station.ts", "line": 39, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L39" } ] }, { - "id": 2235, + "id": 2299, "name": "FetchLike", "variant": "declaration", "kind": 2097152, @@ -30025,27 +31218,27 @@ "fileName": "http.ts", "line": 11, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/http.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/http.ts#L11" } ], "type": { "type": "reflection", "declaration": { - "id": 2236, + "id": 2300, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2237, + "id": 2301, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2238, + "id": 2302, "name": "input", "variant": "param", "kind": 32768, @@ -30072,7 +31265,7 @@ } }, { - "id": 2239, + "id": 2303, "name": "init", "variant": "param", "kind": 32768, @@ -30082,14 +31275,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2240, + "id": 2304, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2241, + "id": 2305, "name": "headers", "variant": "declaration", "kind": 1024, @@ -30101,7 +31294,7 @@ "fileName": "http.ts", "line": 13, "character": 28, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/http.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/http.ts#L13" } ], "type": { @@ -30126,7 +31319,7 @@ } }, { - "id": 2242, + "id": 2306, "name": "method", "variant": "declaration", "kind": 1024, @@ -30138,7 +31331,7 @@ "fileName": "http.ts", "line": 13, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/http.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/http.ts#L13" } ], "type": { @@ -30147,7 +31340,7 @@ } }, { - "id": 2243, + "id": 2307, "name": "signal", "variant": "declaration", "kind": 1024, @@ -30159,7 +31352,7 @@ "fileName": "http.ts", "line": 13, "character": 62, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/http.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/http.ts#L13" } ], "type": { @@ -30179,9 +31372,9 @@ { "title": "Properties", "children": [ - 2241, - 2242, - 2243 + 2305, + 2306, + 2307 ] } ] @@ -30218,7 +31411,7 @@ } }, { - "id": 2244, + "id": 2308, "name": "MatchField", "variant": "declaration", "kind": 2097152, @@ -30236,7 +31429,7 @@ "fileName": "station.ts", "line": 230, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L230" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/station.ts#L230" } ], "type": { @@ -30270,7 +31463,7 @@ } }, { - "id": 2245, + "id": 2309, "name": "INDEX_FILES", "variant": "declaration", "kind": 32, @@ -30290,7 +31483,7 @@ "fileName": "load.ts", "line": 22, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L22" } ], "type": { @@ -30307,7 +31500,7 @@ "defaultValue": "..." }, { - "id": 2246, + "id": 2310, "name": "SOURCES_BASE_URL", "variant": "declaration", "kind": 32, @@ -30327,7 +31520,7 @@ "fileName": "load.ts", "line": 19, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L19" } ], "type": { @@ -30337,7 +31530,7 @@ "defaultValue": "'https://climate.onebuilding.org/sources'" }, { - "id": 2247, + "id": 2311, "name": "checkForUpdates", "variant": "declaration", "kind": 64, @@ -30347,12 +31540,12 @@ "fileName": "load.ts", "line": 152, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L152" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L152" } ], "signatures": [ { - "id": 2248, + "id": 2312, "name": "checkForUpdates", "variant": "signature", "kind": 4096, @@ -30394,32 +31587,32 @@ "fileName": "load.ts", "line": 152, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L152" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L152" } ], "parameters": [ { - "id": 2249, + "id": 2313, "name": "index", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2083, + "target": 2136, "name": "StationIndex", "package": "@idfkit/weather" } }, { - "id": 2250, + "id": 2314, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2181, + "target": 2236, "name": "RefreshIndexOptions", "package": "@idfkit/weather" }, @@ -30446,7 +31639,7 @@ ] }, { - "id": 2251, + "id": 2315, "name": "detectLocation", "variant": "declaration", "kind": 64, @@ -30456,12 +31649,12 @@ "fileName": "geocode.ts", "line": 144, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L144" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L144" } ], "signatures": [ { - "id": 2252, + "id": 2316, "name": "detectLocation", "variant": "signature", "kind": 4096, @@ -30492,7 +31685,7 @@ "kind": "inline-tag", "tag": "@link", "text": "geocode", - "target": 2271 + "target": 2335 }, { "kind": "text", @@ -30507,7 +31700,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GeocodingError", - "target": 2068 + "target": 2121 }, { "kind": "text", @@ -30522,19 +31715,19 @@ "fileName": "geocode.ts", "line": 144, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L144" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L144" } ], "parameters": [ { - "id": 2253, + "id": 2317, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2152, + "target": 2205, "name": "DetectLocationOptions", "package": "@idfkit/weather" }, @@ -30570,7 +31763,7 @@ ] }, { - "id": 2254, + "id": 2318, "name": "fetchEpw", "variant": "declaration", "kind": 64, @@ -30580,12 +31773,12 @@ "fileName": "download.ts", "line": 111, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L111" } ], "signatures": [ { - "id": 2255, + "id": 2319, "name": "fetchEpw", "variant": "signature", "kind": 4096, @@ -30611,32 +31804,32 @@ "fileName": "download.ts", "line": 111, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L111" } ], "parameters": [ { - "id": 2256, + "id": 2320, "name": "station", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } }, { - "id": 2257, + "id": 2321, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2156, + "target": 2209, "name": "FetchWeatherOptions", "package": "@idfkit/weather" }, @@ -30663,7 +31856,7 @@ ] }, { - "id": 2258, + "id": 2322, "name": "fetchEpwByFilename", "variant": "declaration", "kind": 64, @@ -30673,12 +31866,12 @@ "fileName": "download.ts", "line": 124, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L124" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L124" } ], "signatures": [ { - "id": 2259, + "id": 2323, "name": "fetchEpwByFilename", "variant": "signature", "kind": 4096, @@ -30707,12 +31900,12 @@ "fileName": "download.ts", "line": 124, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L124" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L124" } ], "parameters": [ { - "id": 2260, + "id": 2324, "name": "filename", "variant": "param", "kind": 32768, @@ -30723,27 +31916,27 @@ } }, { - "id": 2261, + "id": 2325, "name": "index", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2083, + "target": 2136, "name": "StationIndex", "package": "@idfkit/weather" } }, { - "id": 2262, + "id": 2326, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2156, + "target": 2209, "name": "FetchWeatherOptions", "package": "@idfkit/weather" }, @@ -30770,7 +31963,7 @@ ] }, { - "id": 2263, + "id": 2327, "name": "fetchWeatherArchive", "variant": "declaration", "kind": 64, @@ -30780,12 +31973,12 @@ "fileName": "download.ts", "line": 56, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L56" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L56" } ], "signatures": [ { - "id": 2264, + "id": 2328, "name": "fetchWeatherArchive", "variant": "signature", "kind": 4096, @@ -30800,7 +31993,7 @@ "kind": "inline-tag", "tag": "@link", "text": "fetchWeatherFiles", - "target": 2267 + "target": 2331 }, { "kind": "text", @@ -30810,7 +32003,7 @@ "kind": "inline-tag", "tag": "@link", "text": "fetchEpw", - "target": 2254 + "target": 2318 }, { "kind": "text", @@ -30823,12 +32016,12 @@ "fileName": "download.ts", "line": 56, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L56" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L56" } ], "parameters": [ { - "id": 2265, + "id": 2329, "name": "url", "variant": "param", "kind": 32768, @@ -30839,14 +32032,14 @@ } }, { - "id": 2266, + "id": 2330, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2156, + "target": 2209, "name": "FetchWeatherOptions", "package": "@idfkit/weather" }, @@ -30907,7 +32100,7 @@ ] }, { - "id": 2267, + "id": 2331, "name": "fetchWeatherFiles", "variant": "declaration", "kind": 64, @@ -30917,12 +32110,12 @@ "fileName": "download.ts", "line": 89, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L89" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L89" } ], "signatures": [ { - "id": 2268, + "id": 2332, "name": "fetchWeatherFiles", "variant": "signature", "kind": 4096, @@ -30959,32 +32152,32 @@ "fileName": "download.ts", "line": 89, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L89" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/download.ts#L89" } ], "parameters": [ { - "id": 2269, + "id": 2333, "name": "station", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } }, { - "id": 2270, + "id": 2334, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2156, + "target": 2209, "name": "FetchWeatherOptions", "package": "@idfkit/weather" }, @@ -31001,7 +32194,7 @@ "typeArguments": [ { "type": "reference", - "target": 2212, + "target": 2276, "name": "WeatherFiles", "package": "@idfkit/weather" } @@ -31013,7 +32206,7 @@ ] }, { - "id": 2271, + "id": 2335, "name": "geocode", "variant": "declaration", "kind": 64, @@ -31023,12 +32216,12 @@ "fileName": "geocode.ts", "line": 84, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L84" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L84" } ], "signatures": [ { - "id": 2272, + "id": 2336, "name": "geocode", "variant": "signature", "kind": 4096, @@ -31056,7 +32249,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GeocodingError", - "target": 2068 + "target": 2121 }, { "kind": "text", @@ -31071,12 +32264,12 @@ "fileName": "geocode.ts", "line": 84, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L84" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/geocode.ts#L84" } ], "parameters": [ { - "id": 2273, + "id": 2337, "name": "address", "variant": "param", "kind": 32768, @@ -31087,14 +32280,14 @@ } }, { - "id": 2274, + "id": 2338, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2167, + "target": 2222, "name": "GeocodeOptions", "package": "@idfkit/weather" }, @@ -31130,7 +32323,7 @@ ] }, { - "id": 2275, + "id": 2339, "name": "haversineKm", "variant": "declaration", "kind": 64, @@ -31140,12 +32333,12 @@ "fileName": "spatial.ts", "line": 11, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/spatial.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/spatial.ts#L11" } ], "signatures": [ { - "id": 2276, + "id": 2340, "name": "haversineKm", "variant": "signature", "kind": 4096, @@ -31179,12 +32372,12 @@ "fileName": "spatial.ts", "line": 11, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/spatial.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/spatial.ts#L11" } ], "parameters": [ { - "id": 2277, + "id": 2341, "name": "lat1", "variant": "param", "kind": 32768, @@ -31195,7 +32388,7 @@ } }, { - "id": 2278, + "id": 2342, "name": "lon1", "variant": "param", "kind": 32768, @@ -31206,7 +32399,7 @@ } }, { - "id": 2279, + "id": 2343, "name": "lat2", "variant": "param", "kind": 32768, @@ -31217,7 +32410,7 @@ } }, { - "id": 2280, + "id": 2344, "name": "lon2", "variant": "param", "kind": 32768, @@ -31236,7 +32429,7 @@ ] }, { - "id": 2281, + "id": 2345, "name": "indexFromData", "variant": "declaration", "kind": 64, @@ -31246,12 +32439,12 @@ "fileName": "load.ts", "line": 48, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L48" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L48" } ], "signatures": [ { - "id": 2282, + "id": 2346, "name": "indexFromData", "variant": "signature", "kind": 4096, @@ -31266,7 +32459,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationIndex", - "target": 2083 + "target": 2136 }, { "kind": "text", @@ -31279,19 +32472,19 @@ "fileName": "load.ts", "line": 48, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L48" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L48" } ], "parameters": [ { - "id": 2283, + "id": 2347, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2170, + "target": 2225, "name": "IndexData", "package": "@idfkit/weather" } @@ -31299,7 +32492,7 @@ ], "type": { "type": "reference", - "target": 2083, + "target": 2136, "name": "StationIndex", "package": "@idfkit/weather" } @@ -31307,7 +32500,7 @@ ] }, { - "id": 2284, + "id": 2348, "name": "loadStationIndex", "variant": "declaration", "kind": 64, @@ -31317,12 +32510,12 @@ "fileName": "load.ts", "line": 85, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L85" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L85" } ], "signatures": [ { - "id": 2285, + "id": 2349, "name": "loadStationIndex", "variant": "signature", "kind": 4096, @@ -31345,7 +32538,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationIndex", - "target": 2083 + "target": 2136 }, { "kind": "text", @@ -31366,12 +32559,12 @@ "fileName": "load.ts", "line": 85, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L85" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L85" } ], "parameters": [ { - "id": 2286, + "id": 2350, "name": "url", "variant": "param", "kind": 32768, @@ -31398,14 +32591,14 @@ } }, { - "id": 2287, + "id": 2351, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2174, + "target": 2229, "name": "LoadIndexOptions", "package": "@idfkit/weather" }, @@ -31422,7 +32615,7 @@ "typeArguments": [ { "type": "reference", - "target": 2083, + "target": 2136, "name": "StationIndex", "package": "@idfkit/weather" } @@ -31434,7 +32627,286 @@ ] }, { - "id": 2288, + "id": 2352, + "name": "monthlyMeans", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "epw.ts", + "line": 734, + "character": 16, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/epw.ts#L734" + } + ], + "signatures": [ + { + "id": 2353, + "name": "monthlyMeans", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The monthly means of one numeric column, each carrying the count of hours it\nincluded.\n\n**Absent hours are excluded from the sum AND from the divisor**, so the result\nis the mean of the values that exist rather than their sum spread over hours\nthat do not. Fusing the two yields a number biased towards zero in proportion\nto how much is absent, which looks plausible rather than wrong and which no\ncommitted fixture can detect.\n\nThe month's extent and the divisor are different numbers. February in a leap\nyear holds 696 records rather than 672; that decides which records belong to\nthe month, and it is not what the mean divides by.\n\n**The count is part of the answer rather than derivable from it.** Without it\na caller cannot tell a mean over 744 hours from a mean over three, and both\nlook like numbers." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Twelve entries, January first." + } + ] + }, + { + "tag": "@throws", + "content": [ + { + "kind": "text", + "text": "If " + }, + { + "kind": "code", + "text": "`field`" + }, + { + "kind": "text", + "text": " is not a numeric column. The type says so, and the check is still made:\n this function is reachable from plain JavaScript through the " + }, + { + "kind": "code", + "text": "`idfkit`" + }, + { + "kind": "text", + "text": " facade, where a text\n column would otherwise be coerced hour by hour and yield twelve plausible-looking numbers\n over the nine-digit weather codes rather than an error." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nconst january = monthlyMeans(epw, 'dryBulbTemperature')[0];\njanuary.mean; // NaN when the month held no measurement at all\njanuary.count; // and 0 beside it, which says why\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "epw.ts", + "line": 734, + "character": 16, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/epw.ts#L734" + } + ], + "parameters": [ + { + "id": 2354, + "name": "file", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A weather file, as " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "parseEpw", + "target": 2356 + }, + { + "kind": "text", + "text": " returned it." + } + ] + }, + "type": { + "type": "reference", + "target": 2267, + "name": "WeatherFile", + "package": "@idfkit/weather" + } + }, + { + "id": 2355, + "name": "field", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Which numeric column to aggregate, by its name on the hourly table." + } + ] + }, + "type": { + "type": "reference", + "target": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "NumericColumnName" + }, + "name": "NumericColumnName", + "package": "@idfkit/weather" + } + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "MonthlyMean" + }, + "name": "MonthlyMean", + "package": "@idfkit/weather" + } + } + } + ] + }, + { + "id": 2356, + "name": "parseEpw", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "epw.ts", + "line": 560, + "character": 16, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/epw.ts#L560" + } + ], + "signatures": [ + { + "id": 2357, + "name": "parseEpw", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Read an EPW weather file from text.\n\nThe primary form, and the one the common case needs: retrieval hands the\ncaller text, and no filesystem is involved. Synchronous, pure, and usable in\na browser, a worker or an edge runtime." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The header records and the hourly table as columns." + } + ] + }, + { + "tag": "@throws", + "content": [ + { + "kind": "text", + "text": "If the header is short of its eight records, if a row has the wrong\n field count, or if the file disagrees with its own declared data period.\n Nothing partial is ever returned: a short or partly populated table is the\n failure this refuses to hand back." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nconst files = await fetchWeatherFiles(station);\nconst epw = parseEpw(files.epw);\nepw.hours.dryBulbTemperature[0]; // the first hour's dry bulb, in C\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "epw.ts", + "line": 560, + "character": 16, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/epw.ts#L560" + } + ], + "parameters": [ + { + "id": 2358, + "name": "text", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The file's decoded text. Decode it as the weather formats are\n written, which is Latin-1 and not UTF-8; " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "fetchWeatherFiles", + "target": 2331 + }, + { + "kind": "text", + "text": " already\n does, and so does " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "loadEpw" + }, + { + "kind": "text", + "text": " in " + }, + { + "kind": "code", + "text": "`@idfkit/weather/node`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "target": 2267, + "name": "WeatherFile", + "package": "@idfkit/weather" + } + } + ] + }, + { + "id": 2359, "name": "parseKml", "variant": "declaration", "kind": 64, @@ -31444,12 +32916,12 @@ "fileName": "kml.ts", "line": 162, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/kml.ts#L162" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/kml.ts#L162" } ], "signatures": [ { - "id": 2289, + "id": 2360, "name": "parseKml", "variant": "signature", "kind": 4096, @@ -31467,12 +32939,12 @@ "fileName": "kml.ts", "line": 162, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/kml.ts#L162" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/kml.ts#L162" } ], "parameters": [ { - "id": 2290, + "id": 2361, "name": "text", "variant": "param", "kind": 32768, @@ -31491,7 +32963,7 @@ } }, { - "id": 2291, + "id": 2362, "name": "sourceName", "variant": "param", "kind": 32768, @@ -31515,7 +32987,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2117, + "target": 2170, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -31524,7 +32996,7 @@ ] }, { - "id": 2292, + "id": 2363, "name": "parseUrlMetadata", "variant": "declaration", "kind": 64, @@ -31534,12 +33006,12 @@ "fileName": "kml.ts", "line": 47, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/kml.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/kml.ts#L47" } ], "signatures": [ { - "id": 2293, + "id": 2364, "name": "parseUrlMetadata", "variant": "signature", "kind": 4096, @@ -31576,12 +33048,12 @@ "fileName": "kml.ts", "line": 47, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/kml.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/kml.ts#L47" } ], "parameters": [ { - "id": 2294, + "id": 2365, "name": "url", "variant": "param", "kind": 32768, @@ -31617,7 +33089,7 @@ ] }, { - "id": 2295, + "id": 2366, "name": "refreshStationIndex", "variant": "declaration", "kind": 64, @@ -31627,12 +33099,12 @@ "fileName": "load.ts", "line": 118, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L118" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L118" } ], "signatures": [ { - "id": 2296, + "id": 2367, "name": "refreshStationIndex", "variant": "signature", "kind": 4096, @@ -31647,7 +33119,7 @@ "kind": "inline-tag", "tag": "@link", "text": "loadStationIndex", - "target": 2284 + "target": 2348 }, { "kind": "text", @@ -31681,7 +33153,7 @@ "kind": "inline-tag", "tag": "@link", "text": "checkForUpdates", - "target": 2247 + "target": 2311 }, { "kind": "text", @@ -31694,19 +33166,19 @@ "fileName": "load.ts", "line": 118, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L118" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/load.ts#L118" } ], "parameters": [ { - "id": 2297, + "id": 2368, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2181, + "target": 2236, "name": "RefreshIndexOptions", "package": "@idfkit/weather" }, @@ -31723,7 +33195,7 @@ "typeArguments": [ { "type": "reference", - "target": 2083, + "target": 2136, "name": "StationIndex", "package": "@idfkit/weather" } @@ -31735,7 +33207,7 @@ ] }, { - "id": 2298, + "id": 2369, "name": "unzip", "variant": "declaration", "kind": 64, @@ -31745,12 +33217,12 @@ "fileName": "unzip.ts", "line": 32, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/unzip.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/unzip.ts#L32" } ], "signatures": [ { - "id": 2299, + "id": 2370, "name": "unzip", "variant": "signature", "kind": 4096, @@ -31779,12 +33251,12 @@ "fileName": "unzip.ts", "line": 32, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/unzip.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/unzip.ts#L32" } ], "parameters": [ { - "id": 2300, + "id": 2371, "name": "buffer", "variant": "param", "kind": 32768, @@ -31859,62 +33331,65 @@ { "title": "Classes", "children": [ - 2068, - 2075, - 2083, - 2117 + 2121, + 2128, + 2136, + 2170 ] }, { "title": "Interfaces", "children": [ - 2152, - 2156, - 2163, - 2167, - 2170, - 2174, - 2177, - 2181, - 2185, - 2188, - 2192, - 2195, - 2212, - 2218 + 2205, + 2209, + 2216, + 2222, + 2225, + 2229, + 2232, + 2236, + 2240, + 2243, + 2247, + 2250, + 2267, + 2276, + 2282 ] }, { "title": "Type Aliases", "children": [ - 2235, - 2244 + 2299, + 2308 ] }, { "title": "Variables", "children": [ - 2245, - 2246 + 2309, + 2310 ] }, { "title": "Functions", "children": [ - 2247, - 2251, - 2254, - 2258, - 2263, - 2267, - 2271, - 2275, - 2281, - 2284, - 2288, - 2292, - 2295, - 2298 + 2311, + 2315, + 2318, + 2322, + 2327, + 2331, + 2335, + 2339, + 2345, + 2348, + 2352, + 2356, + 2359, + 2363, + 2366, + 2369 ] } ], @@ -31923,19 +33398,19 @@ "fileName": "index.ts", "line": 1, "character": 0, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/index.ts#L1" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/index.ts#L1" } ] }, { - "id": 2301, + "id": 2372, "name": "node", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 2302, + "id": 2373, "name": "SavedWeatherFiles", "variant": "declaration", "kind": 256, @@ -31950,7 +33425,7 @@ "kind": "inline-tag", "tag": "@link", "text": "saveWeatherFiles", - "target": 2311 + "target": 2385 }, { "kind": "text", @@ -31968,7 +33443,7 @@ }, "children": [ { - "id": 2303, + "id": 2374, "name": "ddy", "variant": "declaration", "kind": 1024, @@ -31976,9 +33451,9 @@ "sources": [ { "fileName": "node.ts", - "line": 39, + "line": 40, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/node.ts#L40" } ], "type": { @@ -31996,7 +33471,7 @@ } }, { - "id": 2304, + "id": 2375, "name": "epw", "variant": "declaration", "kind": 1024, @@ -32004,9 +33479,9 @@ "sources": [ { "fileName": "node.ts", - "line": 38, + "line": 39, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/node.ts#L39" } ], "type": { @@ -32015,7 +33490,7 @@ } }, { - "id": 2305, + "id": 2376, "name": "stat", "variant": "declaration", "kind": 1024, @@ -32023,9 +33498,9 @@ "sources": [ { "fileName": "node.ts", - "line": 40, + "line": 41, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/node.ts#L41" } ], "type": { @@ -32047,23 +33522,23 @@ { "title": "Properties", "children": [ - 2303, - 2304, - 2305 + 2374, + 2375, + 2376 ] } ], "sources": [ { "fileName": "node.ts", - "line": 37, + "line": 38, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/node.ts#L38" } ] }, { - "id": 2306, + "id": 2377, "name": "SaveWeatherFilesOptions", "variant": "declaration", "kind": 256, @@ -32078,7 +33553,7 @@ "kind": "inline-tag", "tag": "@link", "text": "saveWeatherFiles", - "target": 2311 + "target": 2385 }, { "kind": "text", @@ -32088,7 +33563,7 @@ }, "children": [ { - "id": 2307, + "id": 2378, "name": "stem", "variant": "declaration", "kind": 1024, @@ -32106,9 +33581,9 @@ "sources": [ { "fileName": "node.ts", - "line": 46, + "line": 47, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/node.ts#L47" } ], "type": { @@ -32121,21 +33596,21 @@ { "title": "Properties", "children": [ - 2307 + 2378 ] } ], "sources": [ { "fileName": "node.ts", - "line": 44, + "line": 45, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L44" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/node.ts#L45" } ] }, { - "id": 2308, + "id": 2379, "name": "loadBundledIndex", "variant": "declaration", "kind": 64, @@ -32143,14 +33618,14 @@ "sources": [ { "fileName": "node.ts", - "line": 28, + "line": 29, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/node.ts#L29" } ], "signatures": [ { - "id": 2309, + "id": 2380, "name": "loadBundledIndex", "variant": "signature", "kind": 4096, @@ -32182,14 +33657,14 @@ "sources": [ { "fileName": "node.ts", - "line": 28, + "line": 29, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/node.ts#L29" } ], "parameters": [ { - "id": 2310, + "id": 2381, "name": "path", "variant": "param", "kind": 32768, @@ -32227,7 +33702,7 @@ "typeArguments": [ { "type": "reference", - "target": 2083, + "target": 2136, "name": "StationIndex", "package": "@idfkit/weather" } @@ -32239,7 +33714,120 @@ ] }, { - "id": 2311, + "id": 2382, + "name": "loadEpw", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "node.ts", + "line": 96, + "character": 22, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/node.ts#L96" + } + ], + "signatures": [ + { + "id": 2383, + "name": "loadEpw", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Read an EPW weather file from a path.\n\nA convenience over " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "parseEpw", + "target": 2356 + }, + { + "kind": "text", + "text": " and nothing more: it reads the bytes,\ndecodes them Latin-1, which is how the weather formats are written and how\n" + }, + { + "kind": "code", + "text": "`saveWeatherFiles`" + }, + { + "kind": "text", + "text": " above writes them, and hands the text on. Every rule about\nwhat is read, what is absent and what fails belongs to " + }, + { + "kind": "code", + "text": "`parseEpw`" + }, + { + "kind": "text", + "text": ".\n\nIt lives here rather than on the portable surface because it is the only part\nthat touches a disk. The reader itself does not, which is why a browser can\nuse it." + } + ] + }, + "sources": [ + { + "fileName": "node.ts", + "line": 96, + "character": 22, + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/node.ts#L96" + } + ], + "parameters": [ + { + "id": 2384, + "name": "path", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`.epw`" + }, + { + "kind": "text", + "text": " file to read." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "target": { + "packageName": "typescript", + "packagePath": "lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2267, + "name": "WeatherFile", + "package": "@idfkit/weather" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 2385, "name": "saveWeatherFiles", "variant": "declaration", "kind": 64, @@ -32247,14 +33835,14 @@ "sources": [ { "fileName": "node.ts", - "line": 55, + "line": 56, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L55" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/node.ts#L56" } ], "signatures": [ { - "id": 2312, + "id": 2386, "name": "saveWeatherFiles", "variant": "signature", "kind": 4096, @@ -32278,27 +33866,27 @@ "sources": [ { "fileName": "node.ts", - "line": 55, + "line": 56, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L55" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/node.ts#L56" } ], "parameters": [ { - "id": 2313, + "id": 2387, "name": "files", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2212, + "target": 2276, "name": "WeatherFiles", "package": "@idfkit/weather" } }, { - "id": 2314, + "id": 2388, "name": "directory", "variant": "param", "kind": 32768, @@ -32309,14 +33897,14 @@ } }, { - "id": 2315, + "id": 2389, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2306, + "target": 2377, "name": "SaveWeatherFilesOptions", "package": "@idfkit/weather" }, @@ -32333,7 +33921,7 @@ "typeArguments": [ { "type": "reference", - "target": 2302, + "target": 2373, "name": "SavedWeatherFiles", "package": "@idfkit/weather" } @@ -32349,15 +33937,16 @@ { "title": "Interfaces", "children": [ - 2302, - 2306 + 2373, + 2377 ] }, { "title": "Functions", "children": [ - 2308, - 2311 + 2379, + 2382, + 2385 ] } ], @@ -32366,7 +33955,7 @@ "fileName": "node.ts", "line": 1, "character": 0, - "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L1" + "url": "https://github.com/idfkit/idfkit-js/blob/c700063ad8bb084e7887d2609d3bdca9c1732cd5/packages/weather/src/node.ts#L1" } ] } @@ -32375,8 +33964,8 @@ { "title": "Modules", "children": [ - 2067, - 2301 + 2120, + 2372 ] } ] @@ -32386,5626 +33975,5806 @@ { "title": "Modules", "children": [ - 1305, - 1966, - 1188, - 2066 + 1343, + 2019, + 1226, + 2119 ] } ], "packageName": "idfkit-js", "symbolIdMap": { - "1189": { + "1227": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "" }, - "1190": { + "1228": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore" }, - "1191": { + "1229": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore.__constructor" }, - "1192": { + "1230": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore" }, - "1193": { + "1231": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "raw" }, - "1194": { + "1232": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore.size" }, - "1195": { + "1233": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore.size" }, - "1196": { + "1234": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore.hydrate" }, - "1197": { + "1235": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore.hydrate" }, - "1198": { + "1236": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "hash" }, - "1199": { + "1237": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema" }, - "1200": { + "1238": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.__constructor" }, - "1201": { + "1239": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema" }, - "1202": { + "1240": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "version" }, - "1203": { + "1241": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "manifest" }, - "1204": { + "1242": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "store" }, - "1205": { + "1243": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.version" }, - "1206": { + "1244": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.typeNames" }, - "1207": { + "1245": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.typeNames" }, - "1208": { + "1246": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.changedFrom" }, - "1209": { + "1247": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.changedFrom" }, - "1210": { + "1248": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "other" }, - "1211": { + "1249": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.field" }, - "1212": { + "1250": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.field" }, - "1213": { + "1251": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1214": { + "1252": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "fieldName" }, - "1215": { + "1253": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.get" }, - "1216": { + "1254": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.get" }, - "1217": { + "1255": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1218": { + "1256": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.has" }, - "1219": { + "1257": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.has" }, - "1220": { + "1258": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1221": { + "1259": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.require" }, - "1222": { + "1260": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.require" }, - "1223": { + "1261": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1224": { + "1262": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.resolve" }, - "1225": { + "1263": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.resolve" }, - "1226": { + "1264": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1227": { + "1265": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle" }, - "1228": { + "1266": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.__constructor" }, - "1229": { + "1267": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle" }, - "1230": { + "1268": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "source" }, - "1231": { + "1269": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.latest" }, - "1232": { + "1270": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.latest" }, - "1233": { + "1271": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.load" }, - "1234": { + "1272": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.load" }, - "1235": { + "1273": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "version" }, - "1236": { + "1274": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loaded" }, - "1237": { + "1275": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loaded" }, - "1238": { + "1276": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "version" }, - "1239": { + "1277": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loadProse" }, - "1240": { + "1278": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loadProse" }, - "1241": { + "1279": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.prose" }, - "1242": { + "1280": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.prose" }, - "1243": { + "1281": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.versions" }, - "1244": { + "1282": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.versions" }, - "1245": { + "1283": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "BundleIndex" }, - "1246": { + "1284": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "BundleIndex.manifests" }, - "1247": { + "1285": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "BundleIndex.versions" }, - "1248": { + "1286": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "BundleSource" }, - "1249": { + "1287": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "BundleSource.read" }, - "1250": { + "1288": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "BundleSource.read" }, - "1251": { + "1289": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "fileName" }, - "1252": { + "1290": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta" }, - "1253": { + "1291": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta.added" }, - "1254": { + "1292": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta.changed" }, - "1255": { + "1293": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta.removed" }, - "1256": { + "1294": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimExtensible" }, - "1257": { + "1295": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimExtensible.fields" }, - "1258": { + "1296": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimExtensible.key" }, - "1259": { + "1297": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimExtensible.p" }, - "1260": { + "1298": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField" }, - "1261": { + "1299": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.auto" }, - "1262": { + "1300": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.d" }, - "1263": { + "1301": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.e" }, - "1264": { + "1302": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.eb" }, - "1265": { + "1303": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.max" }, - "1266": { + "1304": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.min" }, - "1267": { + "1305": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.n" }, - "1268": { + "1306": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.ol" }, - "1269": { + "1307": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.rc" }, - "1270": { + "1308": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.ref" }, - "1271": { + "1309": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.se" }, - "1272": { + "1310": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.t" }, - "1273": { + "1311": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.u" }, - "1274": { + "1312": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.xmax" }, - "1275": { + "1313": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.xmin" }, - "1276": { + "1314": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType" }, - "1277": { + "1315": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.anon" }, - "1278": { + "1316": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.f" }, - "1279": { + "1317": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.fo" }, - "1280": { + "1318": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.g" }, - "1281": { + "1319": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.m" }, - "1282": { + "1320": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.nref" }, - "1283": { + "1321": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.nreq" }, - "1284": { + "1322": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.p" }, - "1285": { + "1323": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.r" }, - "1286": { + "1324": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.s" }, - "1287": { + "1325": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.x" }, - "1288": { + "1326": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "FieldKind" }, - "1289": { + "1327": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "Manifest" }, - "1290": { + "1328": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "ProsePool" }, - "1291": { + "1329": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "httpSource" }, - "1292": { + "1330": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "httpSource" }, - "1293": { + "1331": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "baseUrl" }, - "1294": { + "1332": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "" }, - "1295": { + "1333": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "localBundle" }, - "1296": { + "1334": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "localBundle" }, - "1297": { + "1335": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "dataDir" }, - "1298": { + "1336": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "nodeSource" }, - "1299": { + "1337": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "nodeSource" }, - "1300": { + "1338": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "dataDir" }, - "1301": { + "1339": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "readBundleFileSync" }, - "1302": { + "1340": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "readBundleFileSync" }, - "1303": { + "1341": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "fileName" }, - "1304": { + "1342": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "dataDir" }, - "1306": { + "1344": { "packageName": "@idfkit/core", "packagePath": "src/index.ts", "qualifiedName": "" }, - "1307": { + "1345": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection" }, - "1308": { + "1346": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.__constructor" }, - "1309": { + "1347": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection" }, - "1310": { + "1348": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.T" }, - "1311": { + "1349": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "typeName" }, - "1312": { + "1350": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "objects" }, - "1313": { + "1351": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.typeName" }, - "1314": { + "1352": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.first" }, - "1315": { + "1353": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.first" }, - "1316": { + "1354": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.only" }, - "1317": { + "1355": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.only" }, - "1318": { + "1356": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.size" }, - "1319": { + "1357": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.size" }, - "1320": { + "1358": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.[iterator]" }, - "1321": { + "1359": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.[iterator]" }, - "1322": { + "1360": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.filter" }, - "1323": { + "1361": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.filter" }, - "1324": { + "1362": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "predicate" }, - "1325": { + "1363": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "__type" }, - "1326": { + "1364": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "__type" }, - "1327": { + "1365": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "obj" }, - "1328": { + "1366": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "index" }, - "1329": { + "1367": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.find" }, - "1330": { + "1368": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.find" }, - "1331": { + "1369": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "predicate" }, - "1332": { + "1370": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "__type" }, - "1333": { + "1371": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "__type" }, - "1334": { + "1372": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "obj" }, - "1335": { + "1373": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "index" }, - "1336": { + "1374": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.get" }, - "1337": { + "1375": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.get" }, - "1338": { + "1376": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "name" }, - "1339": { + "1377": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.has" }, - "1340": { + "1378": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.has" }, - "1341": { + "1379": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "name" }, - "1342": { + "1380": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.map" }, - "1343": { + "1381": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.map" }, - "1344": { + "1382": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "R" }, - "1345": { + "1383": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "fn" }, - "1346": { + "1384": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "__type" }, - "1347": { + "1385": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "__type" }, - "1348": { + "1386": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "obj" }, - "1349": { + "1387": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "index" }, - "1350": { + "1388": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.names" }, - "1351": { + "1389": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.names" }, - "1352": { + "1390": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.require" }, - "1353": { + "1391": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.require" }, - "1354": { + "1392": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "name" }, - "1355": { + "1393": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.toArray" }, - "1356": { + "1394": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.toArray" }, - "1357": { + "1395": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.where" }, - "1358": { + "1396": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.where" }, - "1359": { + "1397": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "field" }, - "1360": { + "1398": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "value" }, - "1361": { + "1399": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.T" }, - "1362": { + "1400": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument" }, - "1363": { + "1401": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.__constructor" }, - "1364": { + "1402": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument" }, - "1365": { + "1403": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.M" }, - "1366": { + "1404": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "schema" }, - "1367": { + "1405": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.schema" }, - "1368": { + "1406": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.rawText" }, - "1369": { + "1407": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.rawText" }, - "1370": { + "1408": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.references" }, - "1371": { + "1409": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.references" }, - "1372": { + "1410": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.size" }, - "1373": { + "1411": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.size" }, - "1374": { + "1412": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.version" }, - "1375": { + "1413": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.version" }, - "1376": { + "1414": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.add" }, - "1377": { + "1415": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.add" }, - "1378": { + "1416": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "K" }, - "1379": { + "1417": { "packageName": "idfkit-js", "packagePath": "", "qualifiedName": "__type" }, - "1380": { + "1418": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "type" }, - "1381": { + "1419": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "name" }, - "1382": { + "1420": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "values" }, - "1383": { + "1421": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.addRaw" }, - "1384": { + "1422": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.addRaw" }, - "1385": { + "1423": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "type" }, - "1386": { + "1424": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "name" }, - "1387": { + "1425": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "values" }, - "1388": { + "1426": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.all" }, - "1389": { + "1427": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.all" }, - "1390": { + "1428": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "K" }, - "1391": { + "1429": { "packageName": "idfkit-js", "packagePath": "", "qualifiedName": "__type" }, - "1392": { + "1430": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "type" }, - "1393": { + "1431": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.attach" }, - "1394": { + "1432": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.attach" }, - "1395": { + "1433": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "obj" }, - "1396": { + "1434": { + "packageName": "@idfkit/core", + "packagePath": "src/document.ts", + "qualifiedName": "IdfDocument.changedObjects" + }, + "1435": { + "packageName": "@idfkit/core", + "packagePath": "src/document.ts", + "qualifiedName": "IdfDocument.changedObjects" + }, + "1436": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.danglingReferences" }, - "1397": { + "1437": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.danglingReferences" }, - "1398": { + "1438": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.get" }, - "1399": { + "1439": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.get" }, - "1400": { + "1440": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "K" }, - "1401": { + "1441": { "packageName": "idfkit-js", "packagePath": "", "qualifiedName": "__type" }, - "1402": { + "1442": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "type" }, - "1403": { + "1443": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "name" }, - "1404": { + "1444": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.has" }, - "1405": { + "1445": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.has" }, - "1406": { + "1446": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "type" }, - "1407": { + "1447": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.objects" }, - "1408": { + "1448": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.objects" }, - "1409": { + "1449": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.onFieldChanged" }, - "1410": { + "1450": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.onFieldChanged" }, - "1411": { + "1451": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "obj" }, - "1412": { + "1452": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "field" }, - "1413": { + "1453": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "previous" }, - "1414": { + "1454": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "next" }, - "1415": { + "1455": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.onNameChanged" }, - "1416": { + "1456": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.onNameChanged" }, - "1417": { + "1457": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "obj" }, - "1418": { + "1458": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "previous" }, - "1419": { + "1459": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "next" }, - "1420": { + "1460": { + "packageName": "@idfkit/core", + "packagePath": "src/document.ts", + "qualifiedName": "IdfDocument.regionOf" + }, + "1461": { + "packageName": "@idfkit/core", + "packagePath": "src/document.ts", + "qualifiedName": "IdfDocument.regionOf" + }, + "1462": { + "packageName": "@idfkit/core", + "packagePath": "src/document.ts", + "qualifiedName": "obj" + }, + "1463": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.remove" }, - "1421": { + "1464": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.remove" }, - "1422": { + "1465": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "obj" }, - "1423": { + "1466": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.rename" }, - "1424": { + "1467": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.rename" }, - "1425": { + "1468": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "obj" }, - "1426": { + "1469": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "next" }, - "1427": { + "1470": { + "packageName": "@idfkit/core", + "packagePath": "src/document.ts", + "qualifiedName": "IdfDocument.renderObject" + }, + "1471": { + "packageName": "@idfkit/core", + "packagePath": "src/document.ts", + "qualifiedName": "IdfDocument.renderObject" + }, + "1472": { + "packageName": "@idfkit/core", + "packagePath": "src/document.ts", + "qualifiedName": "obj" + }, + "1473": { + "packageName": "@idfkit/core", + "packagePath": "src/document.ts", + "qualifiedName": "options" + }, + "1474": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.require" }, - "1428": { + "1475": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.require" }, - "1429": { + "1476": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "K" }, - "1430": { + "1477": { "packageName": "idfkit-js", "packagePath": "", "qualifiedName": "__type" }, - "1431": { + "1478": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "type" }, - "1432": { + "1479": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "name" }, - "1433": { + "1480": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.toJSON" }, - "1434": { + "1481": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.toJSON" }, - "1435": { + "1482": { + "packageName": "@idfkit/core", + "packagePath": "src/document.ts", + "qualifiedName": "IdfDocument.tracksExtensibleEdits" + }, + "1483": { + "packageName": "@idfkit/core", + "packagePath": "src/document.ts", + "qualifiedName": "IdfDocument.tracksExtensibleEdits" + }, + "1484": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.types" }, - "1436": { + "1485": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.types" }, - "1437": { + "1486": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.M" }, - "1438": { + "1487": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject" }, - "1439": { + "1488": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.[DATA]" }, - "1440": { + "1489": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.[KEY]" }, - "1441": { + "1490": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.[NAME]" }, - "1442": { + "1491": { + "packageName": "@idfkit/core", + "packagePath": "src/object.ts", + "qualifiedName": "IdfObject.[ORIGIN]" + }, + "1492": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.[OWNER]" }, - "1443": { + "1493": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.[SHAPE]" }, - "1444": { + "1494": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.[SOURCE]" }, - "1445": { + "1495": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.extensible" }, - "1446": { + "1496": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.extensible" }, - "1447": { + "1497": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.fieldNames" }, - "1448": { + "1498": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.fieldNames" }, - "1449": { + "1499": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.isNamed" }, - "1450": { + "1500": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.isNamed" }, - "1451": { + "1501": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.key" }, - "1452": { + "1502": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.key" }, - "1453": { + "1503": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.name" }, - "1454": { + "1504": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.name" }, - "1455": { + "1505": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.name" }, - "1456": { + "1506": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "value" }, - "1457": { + "1507": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.schema" }, - "1458": { + "1508": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.schema" }, - "1459": { + "1509": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.typeName" }, - "1460": { + "1510": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.typeName" }, - "1461": { + "1511": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.clone" }, - "1462": { + "1512": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.clone" }, - "1463": { + "1513": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "name" }, - "1464": { + "1514": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.declaredNames" }, - "1465": { + "1515": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.declaredNames" }, - "1466": { + "1516": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.fieldSchema" }, - "1467": { + "1517": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.fieldSchema" }, - "1468": { + "1518": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "field" }, - "1469": { + "1519": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.get" }, - "1470": { + "1520": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.get" }, - "1471": { + "1521": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "field" }, - "1472": { + "1522": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.hasField" }, - "1473": { + "1523": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.hasField" }, - "1474": { + "1524": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "field" }, - "1475": { + "1525": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.outgoingReferences" }, - "1476": { + "1526": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.outgoingReferences" }, - "1477": { + "1527": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "__type" }, - "1478": { + "1528": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "__type.field" }, - "1479": { + "1529": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "__type.index" }, - "1480": { + "1530": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "__type.target" }, - "1481": { + "1531": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.set" }, - "1482": { + "1532": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.set" }, - "1483": { + "1533": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "field" }, - "1484": { + "1534": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "value" }, - "1485": { + "1535": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.setFieldNames" }, - "1486": { + "1536": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.setFieldNames" }, - "1487": { + "1537": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.toJSON" }, - "1488": { + "1538": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.toJSON" }, - "1489": { + "1539": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.toString" }, - "1490": { + "1540": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.toString" }, - "1491": { + "1541": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.update" }, - "1492": { + "1542": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.update" }, - "1493": { + "1543": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "values" }, - "1494": { + "1544": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.create" }, - "1495": { + "1545": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.create" }, - "1496": { + "1546": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "typeName" }, - "1497": { + "1547": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "type" }, - "1498": { + "1548": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "name" }, - "1499": { + "1549": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "values" }, - "1500": { + "1550": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "IdfParseError" }, - "1501": { + "1551": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "IdfParseError.__constructor" }, - "1502": { + "1552": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "IdfParseError" }, - "1503": { + "1553": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "diagnostic" }, - "1504": { + "1554": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "IdfParseError.diagnostics" }, - "1505": { + "1555": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "IdfParseError.line" }, - "1506": { + "1556": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "IdfParseError.typeName" }, - "1507": { + "1557": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape" }, - "1508": { + "1558": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.__constructor" }, - "1509": { + "1559": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape" }, - "1510": { + "1560": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "typeName" }, - "1511": { + "1561": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "type" }, - "1512": { + "1562": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "base" }, - "1513": { + "1563": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.extensibleKey" }, - "1514": { + "1564": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.extensibleRefFields" }, - "1515": { + "1565": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.fields" }, - "1516": { + "1566": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.keyFields" }, - "1517": { + "1567": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.named" }, - "1518": { + "1568": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.proto" }, - "1519": { + "1569": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.refFields" }, - "1520": { + "1570": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.type" }, - "1521": { + "1571": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.typeName" }, - "1522": { + "1572": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph" }, - "1525": { + "1575": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.size" }, - "1526": { + "1576": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.size" }, - "1527": { + "1577": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.add" }, - "1528": { + "1578": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.add" }, - "1529": { + "1579": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "obj" }, - "1530": { + "1580": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "field" }, - "1531": { + "1581": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "target" }, - "1532": { + "1582": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "index" }, - "1533": { + "1583": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.addObject" }, - "1534": { + "1584": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.addObject" }, - "1535": { + "1585": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "obj" }, - "1536": { + "1586": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.clear" }, - "1537": { + "1587": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.clear" }, - "1538": { + "1588": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.dangling" }, - "1539": { + "1589": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.dangling" }, - "1540": { + "1590": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "valid" }, - "1541": { + "1591": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.isReferenced" }, - "1542": { + "1592": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.isReferenced" }, - "1543": { + "1593": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "name" }, - "1544": { + "1594": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.referencedBy" }, - "1545": { + "1595": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.referencedBy" }, - "1546": { + "1596": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "obj" }, - "1547": { + "1597": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.referencing" }, - "1548": { + "1598": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.referencing" }, - "1549": { + "1599": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "name" }, - "1550": { + "1600": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.referencingObjects" }, - "1551": { + "1601": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.referencingObjects" }, - "1552": { + "1602": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "name" }, - "1553": { + "1603": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.removeObject" }, - "1554": { + "1604": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.removeObject" }, - "1555": { + "1605": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "obj" }, - "1556": { + "1606": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.retarget" }, - "1557": { + "1607": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.retarget" }, - "1558": { + "1608": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "previous" }, - "1559": { + "1609": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "next" }, - "1560": { + "1610": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.updateField" }, - "1561": { + "1611": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.updateField" }, - "1562": { + "1612": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "obj" }, - "1563": { + "1613": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "field" }, - "1564": { + "1614": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "previous" }, - "1565": { + "1615": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "next" }, - "1566": { + "1616": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema" }, - "1567": { + "1617": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.__constructor" }, - "1568": { + "1618": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema" }, - "1569": { + "1619": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "version" }, - "1570": { + "1620": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "manifest" }, - "1571": { + "1621": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "store" }, - "1572": { + "1622": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.version" }, - "1573": { + "1623": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.typeNames" }, - "1574": { + "1624": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.typeNames" }, - "1575": { + "1625": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.changedFrom" }, - "1576": { + "1626": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.changedFrom" }, - "1577": { + "1627": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "other" }, - "1578": { + "1628": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.field" }, - "1579": { + "1629": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.field" }, - "1580": { + "1630": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1581": { + "1631": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "fieldName" }, - "1582": { + "1632": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.get" }, - "1583": { + "1633": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.get" }, - "1584": { + "1634": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1585": { + "1635": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.has" }, - "1586": { + "1636": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.has" }, - "1587": { + "1637": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1588": { + "1638": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.require" }, - "1589": { + "1639": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.require" }, - "1590": { + "1640": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1591": { + "1641": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.resolve" }, - "1592": { + "1642": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.resolve" }, - "1593": { + "1643": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1594": { + "1644": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle" }, - "1595": { + "1645": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.__constructor" }, - "1596": { + "1646": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle" }, - "1597": { + "1647": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "source" }, - "1598": { + "1648": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.latest" }, - "1599": { + "1649": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.latest" }, - "1600": { + "1650": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.load" }, - "1601": { + "1651": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.load" }, - "1602": { + "1652": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "version" }, - "1603": { + "1653": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loaded" }, - "1604": { + "1654": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loaded" }, - "1605": { + "1655": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "version" }, - "1606": { + "1656": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loadProse" }, - "1607": { + "1657": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loadProse" }, - "1608": { + "1658": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.prose" }, - "1609": { + "1659": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.prose" }, - "1610": { + "1660": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.versions" }, - "1611": { + "1661": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.versions" }, - "1612": { + "1662": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "BundleSource" }, - "1613": { + "1663": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "BundleSource.read" }, - "1614": { + "1664": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "BundleSource.read" }, - "1615": { + "1665": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "fileName" }, - "1616": { + "1666": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "DocsUrl" }, - "1617": { + "1667": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "DocsUrl.docSet" }, - "1618": { + "1668": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "DocsUrl.label" }, - "1619": { + "1669": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "DocsUrl.url" }, - "1620": { + "1670": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "DocsUrl.version" }, - "1621": { + "1671": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription" }, - "1622": { + "1672": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.default" }, - "1623": { + "1673": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.enumValues" }, - "1624": { + "1674": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.exclusiveMaximum" }, - "1625": { + "1675": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.exclusiveMinimum" }, - "1626": { + "1676": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.fieldType" }, - "1627": { + "1677": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.isReference" }, - "1628": { + "1678": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.maximum" }, - "1629": { + "1679": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.minimum" }, - "1630": { + "1680": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.name" }, - "1631": { + "1681": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.note" }, - "1632": { + "1682": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.objectList" }, - "1633": { + "1683": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.required" }, - "1634": { + "1684": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.units" }, - "1635": { + "1685": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic" }, - "1636": { + "1686": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.code" }, - "1637": { + "1687": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.column" }, - "1638": { + "1688": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.filepath" }, - "1639": { + "1689": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.line" }, - "1640": { + "1690": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.message" }, - "1641": { + "1691": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.typeName" }, - "1642": { + "1692": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexOptions" }, - "1643": { + "1693": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexOptions.onDiagnostic" }, - "1644": { + "1694": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "__type" }, - "1645": { + "1695": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "__type" }, - "1646": { + "1696": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "diagnostic" }, - "1647": { + "1697": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "LineColumn" }, - "1648": { + "1698": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "LineColumn.column" }, - "1649": { + "1699": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "LineColumn.line" }, - "1650": { + "1700": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription" }, - "1651": { + "1701": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.extensibleSize" }, - "1652": { + "1702": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.fields" }, - "1653": { + "1703": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.hasName" }, - "1654": { + "1704": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.isExtensible" }, - "1655": { + "1705": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.memo" }, - "1656": { + "1706": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.objType" }, - "1657": { + "1707": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.requiredFields" }, - "1658": { + "1708": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "ObjectOwner" }, - "1659": { + "1709": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "ObjectOwner.onFieldChanged" }, - "1660": { + "1710": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "ObjectOwner.onFieldChanged" }, - "1661": { + "1711": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "obj" }, - "1662": { + "1712": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "field" }, - "1663": { + "1713": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "previous" }, - "1664": { + "1714": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "next" }, - "1665": { + "1715": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "ObjectOwner.onNameChanged" }, - "1666": { + "1716": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "ObjectOwner.onNameChanged" }, - "1667": { + "1717": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "obj" }, - "1668": { + "1718": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "previous" }, - "1669": { + "1719": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "next" }, - "1670": { + "1720": { + "packageName": "@idfkit/core", + "packagePath": "src/object.ts", + "qualifiedName": "ObjectOwner.tracksExtensibleEdits" + }, + "1721": { + "packageName": "@idfkit/core", + "packagePath": "src/object.ts", + "qualifiedName": "ObjectOwner.tracksExtensibleEdits" + }, + "1722": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "ObjectWriteOptions" }, - "1671": { + "1723": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "ObjectWriteOptions.commentColumn" }, - "1672": { + "1724": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "ObjectWriteOptions.comments" }, - "1673": { + "1725": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "ObjectWriteOptions.compressed" }, - "1674": { + "1726": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "ObjectWriteOptions.indent" }, - "1675": { + "1727": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseDiagnostic" }, - "1676": { + "1728": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.code" }, - "1677": { + "1729": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.column" }, - "1678": { + "1730": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.filepath" }, - "1679": { + "1731": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.line" }, - "1680": { + "1732": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.message" }, - "1681": { + "1733": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseDiagnostic.objectName" }, - "1682": { + "1734": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.typeName" }, - "1683": { + "1735": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseOptions" }, - "1684": { + "1736": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseOptions.onDiagnostic" }, - "1685": { + "1737": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "__type" }, - "1686": { + "1738": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "__type" }, - "1687": { + "1739": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "diagnostic" }, - "1688": { + "1740": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseOptions.preserveFormatting" }, - "1689": { + "1741": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseOptions.strict" }, - "1690": { + "1742": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseResult" }, - "1691": { + "1743": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseResult.diagnostics" }, - "1692": { + "1744": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseResult.document" }, - "1693": { + "1745": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseResult.M" }, - "1694": { + "1746": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "RawObject" }, - "1695": { + "1747": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "RawObject.column" }, - "1696": { + "1748": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "RawObject.line" }, - "1697": { + "1749": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "RawObject.offset" }, - "1698": { + "1750": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "RawObject.typeName" }, - "1699": { + "1751": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "RawObject.values" }, - "1700": { + "1752": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceEdge" }, - "1701": { + "1753": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceEdge.field" }, - "1702": { + "1754": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceEdge.from" }, - "1703": { + "1755": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceEdge.index" }, - "1704": { + "1756": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceEdge.target" }, - "1705": { + "1757": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "Region" }, - "1706": { + "1758": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "Region.end" }, - "1707": { + "1759": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "Region.start" }, - "1708": { + "1760": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta" }, - "1709": { + "1761": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta.added" }, - "1710": { + "1762": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta.changed" }, - "1711": { + "1763": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta.removed" }, - "1712": { + "1764": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField" }, - "1713": { + "1765": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.auto" }, - "1714": { + "1766": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.d" }, - "1715": { + "1767": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.e" }, - "1716": { + "1768": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.eb" }, - "1717": { + "1769": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.max" }, - "1718": { + "1770": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.min" }, - "1719": { + "1771": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.n" }, - "1720": { + "1772": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.ol" }, - "1721": { + "1773": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.rc" }, - "1722": { + "1774": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.ref" }, - "1723": { + "1775": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.se" }, - "1724": { + "1776": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.t" }, - "1725": { + "1777": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.u" }, - "1726": { + "1778": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.xmax" }, - "1727": { + "1779": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.xmin" }, - "1728": { + "1780": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType" }, - "1729": { + "1781": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.anon" }, - "1730": { + "1782": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.f" }, - "1731": { + "1783": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.fo" }, - "1732": { + "1784": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.g" }, - "1733": { + "1785": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.m" }, - "1734": { + "1786": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.nref" }, - "1735": { + "1787": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.nreq" }, - "1736": { + "1788": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.p" }, - "1737": { + "1789": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.r" }, - "1738": { + "1790": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.s" }, - "1739": { + "1791": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.x" }, - "1740": { + "1792": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "Statement" }, - "1741": { + "1793": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "Statement.fields" }, - "1742": { + "1794": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "Statement.region" }, - "1743": { + "1795": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "Statement.typeName" }, - "1744": { + "1796": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "Statement.typeNameText" }, - "1745": { + "1797": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "Statement.unterminated" }, - "1746": { + "1798": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "SyntaxLayer" }, - "1747": { + "1799": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "SyntaxLayer.statements" }, - "1748": { + "1800": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "SyntaxLayer.text" }, - "1749": { + "1801": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "SyntaxLayer.tokens" }, - "1750": { + "1802": { "packageName": "@idfkit/core", "packagePath": "src/syntax/tokens.ts", "qualifiedName": "Token" }, - "1751": { + "1803": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "Region.end" }, - "1752": { + "1804": { "packageName": "@idfkit/core", "packagePath": "src/syntax/tokens.ts", "qualifiedName": "Token.kind" }, - "1753": { + "1805": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "Region.start" }, - "1754": { + "1806": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError" }, - "1755": { + "1807": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError.code" }, - "1756": { + "1808": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError.field" }, - "1757": { + "1809": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError.message" }, - "1758": { + "1810": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError.objName" }, - "1759": { + "1811": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError.objType" }, - "1760": { + "1812": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError.severity" }, - "1761": { + "1813": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationResult" }, - "1762": { + "1814": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationResult.errors" }, - "1763": { + "1815": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationResult.info" }, - "1764": { + "1816": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationResult.isValid" }, - "1765": { + "1817": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationResult.totalIssues" }, - "1766": { + "1818": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationResult.warnings" }, - "1767": { + "1819": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "WriteEpJsonOptions" }, - "1768": { + "1820": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "WriteEpJsonOptions.indent" }, - "1769": { + "1821": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "WriteEpJsonOptions.preserveFormatting" }, - "1770": { + "1822": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions" }, - "1771": { + "1823": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions.commentColumn" }, - "1772": { + "1824": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions.comments" }, - "1773": { + "1825": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions.compressed" }, - "1774": { + "1826": { + "packageName": "@idfkit/core", + "packagePath": "src/write/idf.ts", + "qualifiedName": "WriteIdfOptions.fieldComments" + }, + "1827": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions.indent" }, - "1775": { + "1828": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions.ordering" }, - "1776": { + "1829": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions.preserveFormatting" }, - "1777": { + "1830": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions.versionFirst" }, - "1778": { + "1831": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "AnyTypeMap" }, - "1779": { + "1832": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "EpJson" }, - "1780": { + "1833": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "ExtensibleGroup" }, - "1781": { + "1834": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "FieldValue" }, - "1782": { + "1835": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "FieldValues" }, - "1783": { + "1836": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "ObjectOf" }, - "1784": { + "1837": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "M" }, - "1785": { + "1838": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "K" }, - "1786": { + "1839": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "ProsePool" }, - "1787": { + "1840": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "Severity" }, - "1788": { + "1841": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "StoredValue" }, - "1789": { + "1842": { "packageName": "@idfkit/core", "packagePath": "src/syntax/tokens.ts", "qualifiedName": "TokenKind" }, - "1790": { + "1843": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "TypeNameOf" }, - "1791": { + "1844": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "M" }, - "1792": { + "1845": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "__type" }, - "1793": { + "1846": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "UntypedMap" }, - "1794": { + "1847": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "ValuesOf" }, - "1795": { + "1848": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "M" }, - "1796": { + "1849": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "K" }, - "1797": { + "1850": { "packageName": "@idfkit/core", "packagePath": "src/conformance.ts", "qualifiedName": "CONFORMANCE_LEVEL" }, - "1798": { + "1851": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "Severity" }, - "1799": { + "1852": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "__object" }, - "1800": { + "1853": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "__object.ERROR" }, - "1801": { + "1854": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "__object.INFO" }, - "1802": { + "1855": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "__object.WARNING" }, - "1803": { + "1856": { "packageName": "@idfkit/core", "packagePath": "src/syntax/classify.ts", "qualifiedName": "classify" }, - "1804": { + "1857": { "packageName": "@idfkit/core", "packagePath": "src/syntax/classify.ts", "qualifiedName": "classify" }, - "1805": { + "1858": { "packageName": "@idfkit/core", "packagePath": "src/syntax/classify.ts", "qualifiedName": "layer" }, - "1806": { + "1859": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "compareVersions" }, - "1807": { + "1860": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "compareVersions" }, - "1808": { + "1861": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "a" }, - "1809": { + "1862": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "b" }, - "1810": { + "1863": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "describeObjectType" }, - "1811": { + "1864": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "describeObjectType" }, - "1812": { + "1865": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "schema" }, - "1813": { + "1866": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "objType" }, - "1814": { + "1867": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "prose" }, - "1815": { + "1868": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "docsUrlForObject" }, - "1816": { + "1869": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "docsUrlForObject" }, - "1817": { + "1870": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "objType" }, - "1818": { + "1871": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "version" }, - "1819": { + "1872": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "schema" }, - "1820": { + "1873": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "options" }, - "1821": { + "1874": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type" }, - "1822": { + "1875": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type.baseUrl" }, - "1823": { + "1876": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "engineeringReferenceUrl" }, - "1824": { + "1877": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "engineeringReferenceUrl" }, - "1825": { + "1878": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "version" }, - "1826": { + "1879": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "options" }, - "1827": { + "1880": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type" }, - "1828": { + "1881": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type.baseUrl" }, - "1829": { + "1882": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "getEpJsonVersion" }, - "1830": { + "1883": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "getEpJsonVersion" }, - "1831": { + "1884": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "source" }, - "1832": { + "1885": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "getIdfVersion" }, - "1833": { + "1886": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "getIdfVersion" }, - "1834": { + "1887": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "text" }, - "1835": { + "1888": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "httpSource" }, - "1836": { + "1889": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "httpSource" }, - "1837": { + "1890": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "baseUrl" }, - "1838": { + "1891": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "ioReferenceUrl" }, - "1839": { + "1892": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "ioReferenceUrl" }, - "1840": { + "1893": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "objType" }, - "1841": { + "1894": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "version" }, - "1842": { + "1895": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "schema" }, - "1843": { + "1896": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "options" }, - "1844": { + "1897": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type" }, - "1845": { + "1898": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type.baseUrl" }, - "1846": { + "1899": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "lex" }, - "1847": { + "1900": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "lex" }, - "1848": { + "1901": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "text" }, - "1849": { + "1902": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "options" }, - "1850": { + "1903": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "lineColumnAt" }, - "1851": { + "1904": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "lineColumnAt" }, - "1852": { + "1905": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "source" }, - "1853": { + "1906": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "offset" }, - "1854": { + "1907": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "offsetAt" }, - "1855": { + "1908": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "offsetAt" }, - "1856": { + "1909": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "source" }, - "1857": { + "1910": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "position" }, - "1858": { + "1911": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "parseEpJson" }, - "1859": { + "1912": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "parseEpJson" }, - "1860": { + "1913": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "M" }, - "1861": { + "1914": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "source" }, - "1862": { + "1915": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "schema" }, - "1863": { + "1916": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "options" }, - "1864": { + "1917": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "parseIdf" }, - "1865": { + "1918": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "parseIdf" }, - "1866": { + "1919": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "M" }, - "1867": { + "1920": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "text" }, - "1868": { + "1921": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "schema" }, - "1869": { + "1922": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "options" }, - "1870": { + "1923": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "resolveVersion" }, - "1871": { + "1924": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "resolveVersion" }, - "1872": { + "1925": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "detected" }, - "1873": { + "1926": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "available" }, - "1874": { + "1927": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "scanIdf" }, - "1875": { + "1928": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "scanIdf" }, - "1876": { + "1929": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "text" }, - "1877": { + "1930": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "searchUrl" }, - "1878": { + "1931": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "searchUrl" }, - "1879": { + "1932": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "query" }, - "1880": { + "1933": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "version" }, - "1881": { + "1934": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "options" }, - "1882": { + "1935": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type" }, - "1883": { + "1936": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type.baseUrl" }, - "1884": { + "1937": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "shapeFor" }, - "1885": { + "1938": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "shapeFor" }, - "1886": { + "1939": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "typeName" }, - "1887": { + "1940": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "type" }, - "1888": { + "1941": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "base" }, - "1889": { + "1942": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "shapeOf" }, - "1890": { + "1943": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "shapeOf" }, - "1891": { + "1944": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "obj" }, - "1892": { + "1945": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "toEpJson" }, - "1893": { + "1946": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "toEpJson" }, - "1894": { + "1947": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "M" }, - "1895": { + "1948": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "document" }, - "1896": { + "1949": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "validateDocument" }, - "1897": { + "1950": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "validateDocument" }, - "1898": { + "1951": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "M" }, - "1899": { + "1952": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "doc" }, - "1900": { + "1953": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "options" }, - "1901": { + "1954": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "validateObject" }, - "1902": { + "1955": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "validateObject" }, - "1903": { + "1956": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "obj" }, - "1904": { + "1957": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "schema" }, - "1905": { + "1958": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "options" }, - "1906": { + "1959": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "versionKey" }, - "1907": { + "1960": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "versionKey" }, - "1908": { + "1961": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "version" }, - "1909": { + "1962": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "writeEpJson" }, - "1910": { + "1963": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "writeEpJson" }, - "1911": { + "1964": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "M" }, - "1912": { + "1965": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "document" }, - "1913": { + "1966": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "options" }, - "1914": { + "1967": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "writeIdf" }, - "1915": { + "1968": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "writeIdf" }, - "1916": { + "1969": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "M" }, - "1917": { + "1970": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "document" }, - "1918": { + "1971": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "options" }, - "1919": { + "1972": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "writeObject" }, - "1920": { + "1973": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "writeObject" }, - "1921": { + "1974": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "obj" }, - "1922": { + "1975": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "options" }, - "1923": { + "1976": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "" }, - "1924": { + "1977": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "LoadOptions" }, - "1925": { + "1978": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "LoadOptions.bundle" }, - "1926": { + "1979": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseOptions.onDiagnostic" }, - "1927": { + "1980": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "__type" }, - "1928": { + "1981": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "__type" }, - "1929": { + "1982": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "diagnostic" }, - "1930": { + "1983": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseOptions.preserveFormatting" }, - "1931": { + "1984": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseOptions.strict" }, - "1932": { + "1985": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "LoadOptions.version" }, - "1933": { + "1986": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "loadEpJson" }, - "1934": { + "1987": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "loadEpJson" }, - "1935": { + "1988": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "M" }, - "1936": { + "1989": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "path" }, - "1937": { + "1990": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "options" }, - "1938": { + "1991": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "loadIdf" }, - "1939": { + "1992": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "loadIdf" }, - "1940": { + "1993": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "M" }, - "1941": { + "1994": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "path" }, - "1942": { + "1995": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "options" }, - "1943": { + "1996": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "loadIdfWithDiagnostics" }, - "1944": { + "1997": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "loadIdfWithDiagnostics" }, - "1945": { + "1998": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "M" }, - "1946": { + "1999": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "path" }, - "1947": { + "2000": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "options" }, - "1948": { + "2001": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "saveEpJson" }, - "1949": { + "2002": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "saveEpJson" }, - "1950": { + "2003": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "M" }, - "1951": { + "2004": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "document" }, - "1952": { + "2005": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "path" }, - "1953": { + "2006": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "options" }, - "1954": { + "2007": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "saveIdf" }, - "1955": { + "2008": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "saveIdf" }, - "1956": { + "2009": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "M" }, - "1957": { + "2010": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "document" }, - "1958": { + "2011": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "path" }, - "1959": { + "2012": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "options" }, - "1960": { + "2013": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "schemaFor" }, - "1961": { + "2014": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "schemaFor" }, - "1962": { + "2015": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "detected" }, - "1963": { + "2016": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "options" }, - "1964": { + "2017": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "schemas" }, - "1965": { + "2018": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "schemas" }, - "1966": { + "2019": { "packageName": "@idfkit/language", "packagePath": "src/index.ts", "qualifiedName": "" }, - "1967": { + "2020": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "CompletionOptions" }, - "1968": { + "2021": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "CompletionOptions.document" }, - "1969": { + "2022": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "CompletionOptions.prose" }, - "1970": { + "2023": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "CursorContext" }, - "1971": { + "2024": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "CursorContext.at" }, - "1972": { + "2025": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "CursorContext.fieldIndex" }, - "1973": { + "2026": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "CursorContext.fieldName" }, - "1974": { + "2027": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "CursorContext.statement" }, - "1975": { + "2028": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "CursorContext.typeName" }, - "1976": { + "2029": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "Declaration" }, - "1977": { + "2030": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "Declaration.region" }, - "1978": { + "2031": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "Declaration.typeName" }, - "1979": { + "2032": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation" }, - "1980": { + "2033": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.docs" }, - "1981": { + "2034": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.field" }, - "1982": { + "2035": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.fieldName" }, - "1983": { + "2036": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.of" }, - "1984": { + "2037": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.prose" }, - "1985": { + "2038": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.region" }, - "1986": { + "2039": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.typeName" }, - "1987": { + "2040": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "Offer" }, - "1988": { + "2041": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "Offer.kind" }, - "1989": { + "2042": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "Offer.prose" }, - "1990": { + "2043": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "Offer.replaces" }, - "1991": { + "2044": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "Offer.required" }, - "1992": { + "2045": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "Offer.value" }, - "1993": { + "2046": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "CompletionResult" }, - "1994": { + "2047": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type" }, - "1995": { + "2048": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.offers" }, - "1996": { + "2049": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.status" }, - "1997": { + "2050": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type" }, - "1998": { + "2051": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.status" }, - "1999": { + "2052": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type" }, - "2000": { + "2053": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.status" }, - "2001": { + "2054": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type" }, - "2002": { + "2055": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.status" }, - "2003": { + "2056": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.typeName" }, - "2004": { + "2057": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type" }, - "2005": { + "2058": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.status" }, - "2006": { + "2059": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "DeclarationResult" }, - "2007": { + "2060": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type" }, - "2008": { + "2061": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type.declarations" }, - "2009": { + "2062": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type.status" }, - "2010": { + "2063": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type" }, - "2011": { + "2064": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type.status" }, - "2012": { + "2065": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type" }, - "2013": { + "2066": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type.status" }, - "2014": { + "2067": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type.typeName" }, - "2015": { + "2068": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type" }, - "2016": { + "2069": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type.status" }, - "2017": { + "2070": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "ExplanationResult" }, - "2018": { + "2071": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type" }, - "2019": { + "2072": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type.explanation" }, - "2020": { + "2073": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type.status" }, - "2021": { + "2074": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type" }, - "2022": { + "2075": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type.status" }, - "2023": { + "2076": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type" }, - "2024": { + "2077": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type.status" }, - "2025": { + "2078": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type.typeName" }, - "2026": { + "2079": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type" }, - "2027": { + "2080": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type.status" }, - "2028": { + "2081": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "PositionedFinding" }, - "2029": { + "2082": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "F" }, - "2030": { + "2083": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "__type" }, - "2031": { + "2084": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "__type.precision" }, - "2032": { + "2085": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "__type.region" }, - "2033": { + "2086": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "completionsAt" }, - "2034": { + "2087": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "completionsAt" }, - "2035": { + "2088": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "text" }, - "2036": { + "2089": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "offset" }, - "2037": { + "2090": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "schema" }, - "2038": { + "2091": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "options" }, - "2039": { + "2092": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "contextAt" }, - "2040": { + "2093": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "contextAt" }, - "2041": { + "2094": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "text" }, - "2042": { + "2095": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "offset" }, - "2043": { + "2096": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "schema" }, - "2044": { + "2097": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "declarationAt" }, - "2045": { + "2098": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "declarationAt" }, - "2046": { + "2099": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "text" }, - "2047": { + "2100": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "offset" }, - "2048": { + "2101": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "schema" }, - "2049": { + "2102": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "document" }, - "2050": { + "2103": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "explainAt" }, - "2051": { + "2104": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "explainAt" }, - "2052": { + "2105": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "text" }, - "2053": { + "2106": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "offset" }, - "2054": { + "2107": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "schema" }, - "2055": { + "2108": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "prose" }, - "2056": { + "2109": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "findingsIn" }, - "2057": { + "2110": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "findingsIn" }, - "2058": { + "2111": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "text" }, - "2059": { + "2112": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "schema" }, - "2060": { + "2113": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "position" }, - "2061": { + "2114": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "position" }, - "2062": { + "2115": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "F" }, - "2063": { + "2116": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "findings" }, - "2064": { + "2117": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "layer" }, - "2065": { + "2118": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "schema" }, - "2067": { + "2120": { "packageName": "@idfkit/weather", "packagePath": "src/index.ts", "qualifiedName": "" }, - "2068": { + "2121": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodingError" }, - "2069": { + "2122": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodingError.__constructor" }, - "2070": { + "2123": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodingError" }, - "2071": { + "2124": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "message" }, - "2072": { + "2125": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "options" }, - "2073": { + "2126": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "__type" }, - "2074": { + "2127": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "__type.cause" }, - "2075": { + "2128": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter" }, - "2076": { + "2129": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter.__constructor" }, - "2077": { + "2130": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter" }, - "2078": { + "2131": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "minIntervalMs" }, - "2079": { + "2132": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter.reset" }, - "2080": { + "2133": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter.reset" }, - "2081": { + "2134": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter.wait" }, - "2082": { + "2135": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter.wait" }, - "2083": { + "2136": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex" }, - "2084": { + "2137": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.__constructor" }, - "2085": { + "2138": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex" }, - "2086": { + "2139": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "stations" }, - "2087": { + "2140": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "lastModified" }, - "2088": { + "2141": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.countries" }, - "2089": { + "2142": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.countries" }, - "2090": { + "2143": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.lastModified" }, - "2091": { + "2144": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.lastModified" }, - "2092": { + "2145": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.size" }, - "2093": { + "2146": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.size" }, - "2094": { + "2147": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.stations" }, - "2095": { + "2148": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.stations" }, - "2096": { + "2149": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.filter" }, - "2097": { + "2150": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.filter" }, - "2098": { + "2151": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "options" }, - "2099": { + "2152": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.getByFilename" }, - "2100": { + "2153": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.getByFilename" }, - "2101": { + "2154": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "filename" }, - "2102": { + "2155": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.getByWmo" }, - "2103": { + "2156": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.getByWmo" }, - "2104": { + "2157": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "wmo" }, - "2105": { + "2158": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.nearest" }, - "2106": { + "2159": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.nearest" }, - "2107": { + "2160": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "latitude" }, - "2108": { + "2161": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "longitude" }, - "2109": { + "2162": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "options" }, - "2110": { + "2163": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.search" }, - "2111": { + "2164": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.search" }, - "2112": { + "2165": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "query" }, - "2113": { + "2166": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "options" }, - "2114": { + "2167": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.fromStations" }, - "2115": { + "2168": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.fromStations" }, - "2116": { + "2169": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "stations" }, - "2117": { + "2170": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation" }, - "2118": { + "2171": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.__constructor" }, - "2119": { + "2172": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation" }, - "2120": { + "2173": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "fields" }, - "2121": { + "2174": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.ashraeClimateZone" }, - "2122": { + "2175": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.cdd10" }, - "2123": { + "2176": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.city" }, - "2124": { + "2177": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.coolingDesignDbC" }, - "2125": { + "2178": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.country" }, - "2126": { + "2179": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.designConditionsSourceWmo" }, - "2127": { + "2180": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.elevation" }, - "2128": { + "2181": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.hdd18" }, - "2129": { + "2182": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.heatingDesignDbC" }, - "2130": { + "2183": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.latitude" }, - "2131": { + "2184": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.longitude" }, - "2132": { + "2185": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.source" }, - "2133": { + "2186": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.state" }, - "2134": { + "2187": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.timezone" }, - "2135": { + "2188": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.url" }, - "2136": { + "2189": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.wmo" }, - "2137": { + "2190": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.coolingDesignDbF" }, - "2138": { + "2191": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.coolingDesignDbF" }, - "2139": { + "2192": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.datasetVariant" }, - "2140": { + "2193": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.datasetVariant" }, - "2141": { + "2194": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.displayName" }, - "2142": { + "2195": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.displayName" }, - "2143": { + "2196": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.filenameStem" }, - "2144": { + "2197": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.filenameStem" }, - "2145": { + "2198": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.heatingDesignDbF" }, - "2146": { + "2199": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.heatingDesignDbF" }, - "2147": { + "2200": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.toJSON" }, - "2148": { + "2201": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.toJSON" }, - "2149": { + "2202": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.fromJSON" }, - "2150": { + "2203": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.fromJSON" }, - "2151": { + "2204": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "record" }, - "2152": { + "2205": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "DetectLocationOptions" }, - "2153": { + "2206": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodeOptions.fetch" }, - "2154": { + "2207": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "DetectLocationOptions.maxAgeMs" }, - "2155": { + "2208": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodeOptions.signal" }, - "2156": { + "2209": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "FetchWeatherOptions" }, - "2157": { + "2210": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "FetchWeatherOptions.fetch" }, - "2158": { + "2211": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "FetchWeatherOptions.rewriteUrl" }, - "2159": { + "2212": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "__type" }, - "2160": { + "2213": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "__type" }, - "2161": { + "2214": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "url" }, - "2162": { + "2215": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "FetchWeatherOptions.signal" }, - "2163": { + "2216": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "FilterOptions" }, - "2164": { + "2217": { + "packageName": "@idfkit/weather", + "packagePath": "src/station-index.ts", + "qualifiedName": "FilterOptions.climateZone" + }, + "2218": { + "packageName": "@idfkit/weather", + "packagePath": "src/station-index.ts", + "qualifiedName": "FilterOptions.climateZoneDetermined" + }, + "2219": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "FilterOptions.country" }, - "2165": { + "2220": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "FilterOptions.state" }, - "2166": { + "2221": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "FilterOptions.wmoRegion" }, - "2167": { + "2222": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodeOptions" }, - "2168": { + "2223": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodeOptions.fetch" }, - "2169": { + "2224": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodeOptions.signal" }, - "2170": { + "2225": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "IndexData" }, - "2171": { + "2226": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "IndexData.built_at" }, - "2172": { + "2227": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "IndexData.last_modified" }, - "2173": { + "2228": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "IndexData.stations" }, - "2174": { + "2229": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "LoadIndexOptions" }, - "2175": { + "2230": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "LoadIndexOptions.fetch" }, - "2176": { + "2231": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "LoadIndexOptions.signal" }, - "2177": { + "2232": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "NearestOptions" }, - "2178": { + "2233": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "NearestOptions.country" }, - "2179": { + "2234": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "NearestOptions.limit" }, - "2180": { + "2235": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "NearestOptions.maxDistanceKm" }, - "2181": { + "2236": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "RefreshIndexOptions" }, - "2182": { + "2237": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "RefreshIndexOptions.baseUrl" }, - "2183": { + "2238": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "RefreshIndexOptions.fetch" }, - "2184": { + "2239": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "RefreshIndexOptions.signal" }, - "2185": { + "2240": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "SearchOptions" }, - "2186": { + "2241": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "SearchOptions.country" }, - "2187": { + "2242": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "SearchOptions.limit" }, - "2188": { + "2243": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SearchResult" }, - "2189": { + "2244": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SearchResult.matchField" }, - "2190": { + "2245": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SearchResult.score" }, - "2191": { + "2246": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SearchResult.station" }, - "2192": { + "2247": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SpatialResult" }, - "2193": { + "2248": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SpatialResult.distanceKm" }, - "2194": { + "2249": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SpatialResult.station" }, - "2195": { + "2250": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord" }, - "2196": { + "2251": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.ashrae_climate_zone" }, - "2197": { + "2252": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.cdd10" }, - "2198": { + "2253": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.city" }, - "2199": { + "2254": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.cooling_design_db_c" }, - "2200": { + "2255": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.country" }, - "2201": { + "2256": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.design_conditions_source_wmo" }, - "2202": { + "2257": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.elevation" }, - "2203": { + "2258": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.hdd18" }, - "2204": { + "2259": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.heating_design_db_c" }, - "2205": { + "2260": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.latitude" }, - "2206": { + "2261": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.longitude" }, - "2207": { + "2262": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.source" }, - "2208": { + "2263": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.state" }, - "2209": { + "2264": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.timezone" }, - "2210": { + "2265": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.url" }, - "2211": { + "2266": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.wmo" }, - "2212": { + "2267": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "WeatherFile" + }, + "2268": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "WeatherFile.comments" + }, + "2269": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "WeatherFile.dataPeriod" + }, + "2270": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "WeatherFile.designConditions" + }, + "2271": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "WeatherFile.groundTemperatures" + }, + "2272": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "WeatherFile.holidays" + }, + "2273": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "WeatherFile.hours" + }, + "2274": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "WeatherFile.location" + }, + "2275": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "WeatherFile.typicalPeriods" + }, + "2276": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "WeatherFiles" }, - "2213": { + "2277": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "WeatherFiles.ddy" }, - "2214": { + "2278": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "WeatherFiles.epw" }, - "2215": { + "2279": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "WeatherFiles.members" }, - "2216": { + "2280": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "WeatherFiles.stat" }, - "2217": { + "2281": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "WeatherFiles.station" }, - "2218": { + "2282": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields" }, - "2219": { + "2283": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.ashraeClimateZone" }, - "2220": { + "2284": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.cdd10" }, - "2221": { + "2285": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.city" }, - "2222": { + "2286": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.coolingDesignDbC" }, - "2223": { + "2287": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.country" }, - "2224": { + "2288": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.designConditionsSourceWmo" }, - "2225": { + "2289": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.elevation" }, - "2226": { + "2290": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.hdd18" }, - "2227": { + "2291": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.heatingDesignDbC" }, - "2228": { + "2292": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.latitude" }, - "2229": { + "2293": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.longitude" }, - "2230": { + "2294": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.source" }, - "2231": { + "2295": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.state" }, - "2232": { + "2296": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.timezone" }, - "2233": { + "2297": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.url" }, - "2234": { + "2298": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.wmo" }, - "2235": { + "2299": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "FetchLike" }, - "2236": { + "2300": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "__type" }, - "2237": { + "2301": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "__type" }, - "2238": { + "2302": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "input" }, - "2239": { + "2303": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "init" }, - "2240": { + "2304": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "__type" }, - "2241": { + "2305": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "__type.headers" }, - "2242": { + "2306": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "__type.method" }, - "2243": { + "2307": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "__type.signal" }, - "2244": { + "2308": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "MatchField" }, - "2245": { + "2309": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "INDEX_FILES" }, - "2246": { + "2310": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "SOURCES_BASE_URL" }, - "2247": { + "2311": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "checkForUpdates" }, - "2248": { + "2312": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "checkForUpdates" }, - "2249": { + "2313": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "index" }, - "2250": { + "2314": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "options" }, - "2251": { + "2315": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "detectLocation" }, - "2252": { + "2316": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "detectLocation" }, - "2253": { + "2317": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "options" }, - "2254": { + "2318": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchEpw" }, - "2255": { + "2319": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchEpw" }, - "2256": { + "2320": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "station" }, - "2257": { + "2321": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "options" }, - "2258": { + "2322": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchEpwByFilename" }, - "2259": { + "2323": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchEpwByFilename" }, - "2260": { + "2324": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "filename" }, - "2261": { + "2325": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "index" }, - "2262": { + "2326": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "options" }, - "2263": { + "2327": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchWeatherArchive" }, - "2264": { + "2328": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchWeatherArchive" }, - "2265": { + "2329": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "url" }, - "2266": { + "2330": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "options" }, - "2267": { + "2331": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchWeatherFiles" }, - "2268": { + "2332": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchWeatherFiles" }, - "2269": { + "2333": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "station" }, - "2270": { + "2334": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "options" }, - "2271": { + "2335": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "geocode" }, - "2272": { + "2336": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "geocode" }, - "2273": { + "2337": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "address" }, - "2274": { + "2338": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "options" }, - "2275": { + "2339": { "packageName": "@idfkit/weather", "packagePath": "src/spatial.ts", "qualifiedName": "haversineKm" }, - "2276": { + "2340": { "packageName": "@idfkit/weather", "packagePath": "src/spatial.ts", "qualifiedName": "haversineKm" }, - "2277": { + "2341": { "packageName": "@idfkit/weather", "packagePath": "src/spatial.ts", "qualifiedName": "lat1" }, - "2278": { + "2342": { "packageName": "@idfkit/weather", "packagePath": "src/spatial.ts", "qualifiedName": "lon1" }, - "2279": { + "2343": { "packageName": "@idfkit/weather", "packagePath": "src/spatial.ts", "qualifiedName": "lat2" }, - "2280": { + "2344": { "packageName": "@idfkit/weather", "packagePath": "src/spatial.ts", "qualifiedName": "lon2" }, - "2281": { + "2345": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "indexFromData" }, - "2282": { + "2346": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "indexFromData" }, - "2283": { + "2347": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "data" }, - "2284": { + "2348": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "loadStationIndex" }, - "2285": { + "2349": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "loadStationIndex" }, - "2286": { + "2350": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "url" }, - "2287": { + "2351": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "options" }, - "2288": { + "2352": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "monthlyMeans" + }, + "2353": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "monthlyMeans" + }, + "2354": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "file" + }, + "2355": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "field" + }, + "2356": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "parseEpw" + }, + "2357": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "parseEpw" + }, + "2358": { + "packageName": "@idfkit/weather", + "packagePath": "src/epw.ts", + "qualifiedName": "text" + }, + "2359": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "parseKml" }, - "2289": { + "2360": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "parseKml" }, - "2290": { + "2361": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "text" }, - "2291": { + "2362": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "sourceName" }, - "2292": { + "2363": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "parseUrlMetadata" }, - "2293": { + "2364": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "parseUrlMetadata" }, - "2294": { + "2365": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "url" }, - "2295": { + "2366": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "refreshStationIndex" }, - "2296": { + "2367": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "refreshStationIndex" }, - "2297": { + "2368": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "options" }, - "2298": { + "2369": { "packageName": "@idfkit/weather", "packagePath": "src/unzip.ts", "qualifiedName": "unzip" }, - "2299": { + "2370": { "packageName": "@idfkit/weather", "packagePath": "src/unzip.ts", "qualifiedName": "unzip" }, - "2300": { + "2371": { "packageName": "@idfkit/weather", "packagePath": "src/unzip.ts", "qualifiedName": "buffer" }, - "2301": { + "2372": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "" }, - "2302": { + "2373": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "SavedWeatherFiles" }, - "2303": { + "2374": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "SavedWeatherFiles.ddy" }, - "2304": { + "2375": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "SavedWeatherFiles.epw" }, - "2305": { + "2376": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "SavedWeatherFiles.stat" }, - "2306": { + "2377": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "SaveWeatherFilesOptions" }, - "2307": { + "2378": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "SaveWeatherFilesOptions.stem" }, - "2308": { + "2379": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "loadBundledIndex" }, - "2309": { + "2380": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "loadBundledIndex" }, - "2310": { + "2381": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "path" }, - "2311": { + "2382": { + "packageName": "@idfkit/weather", + "packagePath": "src/node.ts", + "qualifiedName": "loadEpw" + }, + "2383": { + "packageName": "@idfkit/weather", + "packagePath": "src/node.ts", + "qualifiedName": "loadEpw" + }, + "2384": { + "packageName": "@idfkit/weather", + "packagePath": "src/node.ts", + "qualifiedName": "path" + }, + "2385": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "saveWeatherFiles" }, - "2312": { + "2386": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "saveWeatherFiles" }, - "2313": { + "2387": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "files" }, - "2314": { + "2388": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "directory" }, - "2315": { + "2389": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "options" @@ -38026,17 +39795,17 @@ "11": "packages/weather/src/node.ts" }, "reflections": { - "1": 1188, - "2": 1189, - "3": 1294, - "4": 1305, - "5": 1306, - "6": 1923, - "7": 1966, - "8": 1966, - "9": 2066, - "10": 2067, - "11": 2301 + "1": 1226, + "2": 1227, + "3": 1332, + "4": 1343, + "5": 1344, + "6": 1976, + "7": 2019, + "8": 2019, + "9": 2119, + "10": 2120, + "11": 2372 } } } diff --git a/pyproject.toml b/pyproject.toml index 1c95a23..6f40bbb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ version = "0.0.0" description = "The unified idfkit documentation site" requires-python = ">=3.12" dependencies = [ - "idfkit==1.0.0-rc.3", + "idfkit==1.0.0-rc.4", ] [tool.uv] @@ -65,20 +65,20 @@ dev = [ # Conformance corpus level the site states, as an immutable tag in idfkit-conformance. The corpus # itself is the libraries' business; the site reports which level the pages describe. [tool.idfkit.conformance] -level = "conformance-2026.8" +level = "conformance-2026.12" # Governance artifact level the parity and naming pages are rendered from, as an immutable tag in # idfkit-conformance. Read by docs/hooks/parity_macro.py, scripts/render_parity_page.py and # scripts/render_naming_map.py through the duplicated scripts/_governance_source.py. [tool.idfkit.governance] -level = "governance-2026.14" +level = "governance-2026.17" # Documentation artifact level the TypeScript half of the site renders from, as an immutable tag # in idfkit-js. It carries the TypeScript examples the pages include and the TypeDoc JSON the # TypeScript reference is generated from, published together so the two always describe the same # commit. Read by scripts/sync_js_artifacts.py and docs/hooks/typedoc_shim.py. [tool.idfkit.docs] -level = "docs-2026.3" +level = "docs-2026.4" # Library level the Python half of the site renders from, as an exact version on the package # index. New in feature 003. Two things read it, and they must agree: mkdocstrings generates the @@ -86,7 +86,7 @@ level = "docs-2026.3" # four weather-browser files out of the same one. Pinning it is what keeps the reference and the # assets on a page describing the same version of the library. [tool.idfkit.library] -level = "1.0.0-rc.3" +level = "1.0.0-rc.4" [tool.pyright] pythonVersion = "3.12" diff --git a/uv.lock b/uv.lock index 13eb7e0..2b91143 100644 --- a/uv.lock +++ b/uv.lock @@ -610,11 +610,11 @@ wheels = [ [[package]] name = "idfkit" -version = "1.0.0rc3" +version = "1.0.0rc4" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e9/d0/fea9305aa5d5bd8113b269d7af085fb50932272cf78bd03b5e4c65bab621/idfkit-1.0.0rc3.tar.gz", hash = "sha256:d92dcc2ebe85c81e3ccb1ca6c91fb1550ef707581473643024a57cdc3611ee89", size = 14849592, upload-time = "2026-09-06T23:26:59.468Z" } +sdist = { url = "https://files.pythonhosted.org/packages/86/66/2659c1064e2c51febb84cbac9b0b597906deea0482dda32fccd0f80d670d/idfkit-1.0.0rc4.tar.gz", hash = "sha256:b3c01f579a4603731fda638c71aef87c95c905c758d3f5ce59a44f96fe06d6a4", size = 14875799, upload-time = "2026-09-08T12:17:31.834Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/02/f4/2c41d790dd5ac0a4b60573921077a64287ca4911869330df2158d1e9ac08/idfkit-1.0.0rc3-py3-none-any.whl", hash = "sha256:87ddd051e9b606f7ac5cb848d8056e6980b888872f96f6f1f7a97b38f21e545d", size = 14139466, upload-time = "2026-09-06T23:26:57.069Z" }, + { url = "https://files.pythonhosted.org/packages/c8/16/c1d91b84bbc1a53ec629489cca7c272421fcd763260f37198c090347cbfc/idfkit-1.0.0rc4-py3-none-any.whl", hash = "sha256:b71a7cc3ae258026c053c7ff62927971e5d8eb5812c00f7b99be0290ce545e24", size = 14156113, upload-time = "2026-09-08T12:17:34.181Z" }, ] [[package]] @@ -642,7 +642,7 @@ dev = [ ] [package.metadata] -requires-dist = [{ name = "idfkit", specifier = "==1.0.0rc3" }] +requires-dist = [{ name = "idfkit", specifier = "==1.0.0rc4" }] [package.metadata.requires-dev] dev = [