diff --git a/docs/how-to/preserve-formatting.md b/docs/how-to/preserve-formatting.md new file mode 100644 index 0000000..2ef5efd --- /dev/null +++ b/docs/how-to/preserve-formatting.md @@ -0,0 +1,173 @@ +# How to save a file without reformatting it + +Both libraries can read a model and write it back exactly as it was, and then +write it back with one object changed and only that object changed. This is what +a save button needs: an editor that reformats four thousand lines to record one +edit produces a diff nobody can review, and a version control history nobody can +read. + +This guide reads a file keeping its source, writes it back unchanged, makes one +edit, and says what happens when you ask for preservation and reformatting at +the same time. It ends with the object notation, which preserves on different +terms, and that difference is the one thing on this page you could otherwise get +wrong. + +{{ parity("lossless-round-trip") }} + +## Read the file keeping its source + +Preservation is off by default. A reader who does not ask for it pays neither +the time nor the memory, and gets exactly the document they got before. + +=== "Python" + + ```python + --8<-- "docs/snippets/how-to/preserve-formatting/read_keeping_the_source.py:example" + ``` + +=== "TypeScript" + + ```ts + --8<-- "docs/snippets/js/how-to/preserve-formatting/read_keeping_the_source.ts:example" + ``` + +## Write it back unchanged + +A document read this way and written with nothing changed produces the text it +was read from, byte for byte. + +=== "Python" + + ```python + --8<-- "docs/snippets/how-to/preserve-formatting/write_it_back_unchanged.py:example" + ``` + +=== "TypeScript" + + ```ts + --8<-- "docs/snippets/js/how-to/preserve-formatting/write_it_back_unchanged.ts:example" + ``` + +That includes everything a formatter would otherwise decide for you: the +comments, the blank lines that group four hundred surfaces into rooms, the +indentation as the author left it, the line endings whatever they are, and +whether the file ends in a newline. + +## Change one field, and change one object + +An edit reformats the object it touched. Everything else, and everything between +the objects, comes back from the characters it was read from. + +=== "Python" + + ```python + --8<-- "docs/snippets/how-to/preserve-formatting/one_edit_one_object.py:example" + ``` + +=== "TypeScript" + + ```ts + --8<-- "docs/snippets/js/how-to/preserve-formatting/one_edit_one_object.ts:example" + ``` + +Renaming an object counts as changing every object that pointed at it, because +a rename rewrites those references. All of them are reformatted, and none of +them is left naming something that no longer exists. + +Writing a field the value it already holds is not a change. The object is +reproduced from its own characters, so a `3.000` stays `3.000` rather than +becoming `3`. + +## Ask whether a write will preserve + +A document remembers whether it was read with preservation. That is how an +editor decides whether to warn before saving. + +=== "Python" + + ```python + --8<-- "docs/snippets/how-to/preserve-formatting/ask_whether_a_write_will_preserve.py:example" + ``` + +=== "TypeScript" + + ```ts + --8<-- "docs/snippets/js/how-to/preserve-formatting/ask_whether_a_write_will_preserve.ts:example" + ``` + +## Preserving and reformatting are refused together + +Reproducing the original text and laying it out differently are contradictory +requests. One of them has to be dropped, and neither should be dropped in +silence, so asking for both raises. + +=== "Python" + + ```python + --8<-- "docs/snippets/how-to/preserve-formatting/preserving_and_reformatting_are_refused.py:example" + ``` + +=== "TypeScript" + + ```ts + --8<-- "docs/snippets/js/how-to/preserve-formatting/preserving_and_reformatting_are_refused.ts:example" + ``` + +The refused set is the same in both languages: the controls that change how an +object is laid out. Asking for a different output *form* is not refused, because +a form is a different artifact that the original text was never going to +express, so you get the form and preservation does not apply. + +| Ask for | Together with | You get | +| --- | --- | --- | +| Preservation | Indent, comment column, ordering, version placement | An error naming both halves | +| Preservation | Compressed output, or output without field comments | That form, and no preservation | +| Preservation | A document read without it | Ordinary formatted output, and no error | +| A layout control | Nothing about preservation | The control, applied | + +The third row is worth reading twice. Asking to preserve a document that has +nothing to preserve is not an error: nothing was promised, so you get ordinary +output. + +## The object notation preserves on all-or-nothing terms + +**This is the one thing on this page that differs between the two formats, and +it differs the same way in both languages.** + +The text format preserves *per object*: change one, and one is reformatted. The +object notation cannot. It has no statements to anchor an object's own +characters to, so there is no way to reproduce one object while reformatting +another. The retained text is reproduced only while nothing has been touched, +nothing has been added and nothing has been removed, and any change at all falls +the whole document back to the ordinary writer. + +=== "Python" + + ```python + --8<-- "docs/snippets/how-to/preserve-formatting/the_object_notation_is_all_or_nothing.py:example" + ``` + +=== "TypeScript" + + ```ts + --8<-- "docs/snippets/js/how-to/preserve-formatting/the_object_notation_is_all_or_nothing.ts:example" + ``` + +Removal counts, and it is the case a naive implementation gets wrong: every +object still in the document is untouched after you remove one, so asking only +the survivors says nothing changed and reproduces the original text with the +removed object still in it. Both libraries compare the object count as it was at +read time, which is what makes a removal visible at all. + +## What "the same file" means here + +Reproduction is defined against **the text the read was given**, not against a +file's bytes. If you decode a file yourself and hand over a string, you get that +string back. If you read through the library, you get back what the library's +own decoding produced, and decoding is where two known defects live: the +TypeScript reader refuses a file carrying a UTF-8 byte-order mark, and Python's +`save_idf` opens its destination without `newline=""`, so the standard library +translates line endings on the way out. + +Neither is closed by preservation, and neither is visible to it. An editor that +needs byte identity end to end should decode and encode the file itself. diff --git a/docs/snippets/how-to/preserve-formatting/ask_whether_a_write_will_preserve.py b/docs/snippets/how-to/preserve-formatting/ask_whether_a_write_will_preserve.py new file mode 100644 index 0000000..2679d14 --- /dev/null +++ b/docs/snippets/how-to/preserve-formatting/ask_whether_a_write_will_preserve.py @@ -0,0 +1,15 @@ +from __future__ import annotations + +import warnings + +from idfkit import load_idf + +model = load_idf("model.idf", preserve_formatting=True) + +# --8<-- [start:example] +if model.raw_text is None: + warnings.warn( + "This file was read without preserve_formatting, so saving will reformat it.", + stacklevel=1, + ) +# --8<-- [end:example] diff --git a/docs/snippets/how-to/preserve-formatting/one_edit_one_object.py b/docs/snippets/how-to/preserve-formatting/one_edit_one_object.py new file mode 100644 index 0000000..961e1d9 --- /dev/null +++ b/docs/snippets/how-to/preserve-formatting/one_edit_one_object.py @@ -0,0 +1,17 @@ +from __future__ import annotations + +from idfkit import load_idf + +model = load_idf("model.idf", preserve_formatting=True) + +# --8<-- [start:example] +from idfkit import write_idf + +model["Zone"]["Perimeter_ZN_1"].ceiling_height = 3.2 + +# Every other object comes back from the characters it was read from, and so +# does every comment, blank line and line ending between them. +written = write_idf(model) +# --8<-- [end:example] + +_ = written diff --git a/docs/snippets/how-to/preserve-formatting/preserving_and_reformatting_are_refused.py b/docs/snippets/how-to/preserve-formatting/preserving_and_reformatting_are_refused.py new file mode 100644 index 0000000..7e52312 --- /dev/null +++ b/docs/snippets/how-to/preserve-formatting/preserving_and_reformatting_are_refused.py @@ -0,0 +1,23 @@ +from __future__ import annotations + +from idfkit import load_idf + +model = load_idf("model.idf", preserve_formatting=True) + +# --8<-- [start:example] +from idfkit import write_idf + +# Refused: reproducing the original text and laying it out differently are +# contradictory requests, so one of them has to be dropped and neither should +# be dropped in silence. +try: + write_idf(model, preserve_formatting=True, indent=4) +except ValueError as error: + print(error) + # preserve_formatting reproduces the original text, so it cannot also apply + # indent, comment_column, ordering or version_first. Pass one or the other. + +# Granted: a different output form is a different artifact, which the original +# text was never going to express. +write_idf(model, "compressed", preserve_formatting=True) +# --8<-- [end:example] diff --git a/docs/snippets/how-to/preserve-formatting/read_keeping_the_source.py b/docs/snippets/how-to/preserve-formatting/read_keeping_the_source.py new file mode 100644 index 0000000..1fa7e6e --- /dev/null +++ b/docs/snippets/how-to/preserve-formatting/read_keeping_the_source.py @@ -0,0 +1,9 @@ +from __future__ import annotations + +# --8<-- [start:example] +from idfkit import load_idf + +model = load_idf("model.idf", preserve_formatting=True) +# --8<-- [end:example] + +_ = model diff --git a/docs/snippets/how-to/preserve-formatting/the_object_notation_is_all_or_nothing.py b/docs/snippets/how-to/preserve-formatting/the_object_notation_is_all_or_nothing.py new file mode 100644 index 0000000..eb87bc7 --- /dev/null +++ b/docs/snippets/how-to/preserve-formatting/the_object_notation_is_all_or_nothing.py @@ -0,0 +1,19 @@ +from __future__ import annotations + +from pathlib import Path + +# --8<-- [start:example] +from idfkit import load_epjson, write_epjson + +model = load_epjson("model.epJSON", preserve_formatting=True) + +write_epjson(model) == Path("model.epJSON").read_text() # True, while nothing has changed + +model.removeidfobject(model["Zone"]["Perimeter_ZN_1"]) + +# Any change at all falls the WHOLE document back to ordinary formatted output. +# The object notation has no statements, so there is nothing to anchor one +# object's own characters to and no way to reproduce one while reformatting +# another. +write_epjson(model) == Path("model.epJSON").read_text() # False +# --8<-- [end:example] diff --git a/docs/snippets/how-to/preserve-formatting/write_it_back_unchanged.py b/docs/snippets/how-to/preserve-formatting/write_it_back_unchanged.py new file mode 100644 index 0000000..532f0a7 --- /dev/null +++ b/docs/snippets/how-to/preserve-formatting/write_it_back_unchanged.py @@ -0,0 +1,13 @@ +from __future__ import annotations + +from pathlib import Path + +from idfkit import load_idf + +model = load_idf("model.idf", preserve_formatting=True) + +# --8<-- [start:example] +from idfkit import write_idf + +write_idf(model) == Path("model.idf").read_text(encoding="latin-1") # True +# --8<-- [end:example] diff --git a/docs/snippets/js/how-to/preserve-formatting/ask_whether_a_write_will_preserve.ts b/docs/snippets/js/how-to/preserve-formatting/ask_whether_a_write_will_preserve.ts new file mode 100644 index 0000000..c6d3340 --- /dev/null +++ b/docs/snippets/js/how-to/preserve-formatting/ask_whether_a_write_will_preserve.ts @@ -0,0 +1,9 @@ +import type { IdfDocument } from '@idfkit/core'; +declare const document: IdfDocument; +declare const warn: (message: string) => void; + +// --8<-- [start:example] +if (document.rawText === undefined) { + warn('This file was read without preserveFormatting, so saving will reformat it.'); +} +// --8<-- [end:example] diff --git a/docs/snippets/js/how-to/preserve-formatting/one_edit_one_object.ts b/docs/snippets/js/how-to/preserve-formatting/one_edit_one_object.ts new file mode 100644 index 0000000..a0936ef --- /dev/null +++ b/docs/snippets/js/how-to/preserve-formatting/one_edit_one_object.ts @@ -0,0 +1,13 @@ +import type { IdfDocument } from '@idfkit/core'; +import { writeIdf } from '@idfkit/core'; +declare const document: IdfDocument; + +// --8<-- [start:example] +document.require('Zone', 'Perimeter_ZN_1').set('ceiling_height', 3.2); + +// Every other object comes back from the characters it was read from, and so +// does every comment, blank line and line ending between them. +const written = writeIdf(document); +// --8<-- [end:example] + +void written; diff --git a/docs/snippets/js/how-to/preserve-formatting/preserving_and_reformatting_are_refused.ts b/docs/snippets/js/how-to/preserve-formatting/preserving_and_reformatting_are_refused.ts new file mode 100644 index 0000000..383923d --- /dev/null +++ b/docs/snippets/js/how-to/preserve-formatting/preserving_and_reformatting_are_refused.ts @@ -0,0 +1,20 @@ +import type { IdfDocument } from '@idfkit/core'; +import { writeIdf } from '@idfkit/core'; +declare const document: IdfDocument; + +// --8<-- [start:example] +// Refused: reproducing the original text and laying it out differently are +// contradictory requests, so one of them has to be dropped and neither should +// be dropped in silence. +try { + writeIdf(document, { preserveFormatting: true, indent: ' ' }); +} catch (error) { + (error as TypeError).message; + // preserveFormatting reproduces the original text, so it cannot also apply + // indent, commentColumn, ordering or versionFirst. Pass one or the other. +} + +// Granted: a different output FORM is a different artifact, which the original +// text was never going to express. +writeIdf(document, { preserveFormatting: true, compressed: true }); +// --8<-- [end:example] diff --git a/docs/snippets/js/how-to/preserve-formatting/read_keeping_the_source.ts b/docs/snippets/js/how-to/preserve-formatting/read_keeping_the_source.ts new file mode 100644 index 0000000..8fb8d30 --- /dev/null +++ b/docs/snippets/js/how-to/preserve-formatting/read_keeping_the_source.ts @@ -0,0 +1,12 @@ +// Preamble, not shown on the page: the values this example assumes it already +// has, each with the type the page's earlier steps would have given it. +import type { Schema } from '@idfkit/core'; +import { parseIdf } from '@idfkit/core'; +declare const schema: Schema; +declare const text: string; + +// --8<-- [start:example] +const { document } = parseIdf(text, schema, { preserveFormatting: true }); +// --8<-- [end:example] + +void document; diff --git a/docs/snippets/js/how-to/preserve-formatting/the_object_notation_is_all_or_nothing.ts b/docs/snippets/js/how-to/preserve-formatting/the_object_notation_is_all_or_nothing.ts new file mode 100644 index 0000000..cb0fc0d --- /dev/null +++ b/docs/snippets/js/how-to/preserve-formatting/the_object_notation_is_all_or_nothing.ts @@ -0,0 +1,18 @@ +import type { Schema } from '@idfkit/core'; +import { parseEpJson, writeEpJson } from '@idfkit/core'; +declare const schema: Schema; +declare const text: string; + +// --8<-- [start:example] +const { document } = parseEpJson(text, schema, { preserveFormatting: true }); + +writeEpJson(document) === text; // true, while nothing has changed + +document.remove(document.require('Zone', 'Perimeter_ZN_1')); + +// Any change at all falls the WHOLE document back to ordinary formatted output. +// The object notation has no statements, so there is nothing to anchor one +// object's own characters to and no way to reproduce one while reformatting +// another. +writeEpJson(document) === text; // false +// --8<-- [end:example] diff --git a/docs/snippets/js/how-to/preserve-formatting/write_it_back_unchanged.ts b/docs/snippets/js/how-to/preserve-formatting/write_it_back_unchanged.ts new file mode 100644 index 0000000..9d0d9f8 --- /dev/null +++ b/docs/snippets/js/how-to/preserve-formatting/write_it_back_unchanged.ts @@ -0,0 +1,8 @@ +import type { IdfDocument } from '@idfkit/core'; +import { writeIdf } from '@idfkit/core'; +declare const document: IdfDocument; +declare const text: string; + +// --8<-- [start:example] +writeIdf(document) === text; // true +// --8<-- [end:example] diff --git a/docs/typedoc/typedoc.json b/docs/typedoc/typedoc.json index 4ef3e75..ed826e6 100644 --- a/docs/typedoc/typedoc.json +++ b/docs/typedoc/typedoc.json @@ -1,27 +1,27 @@ { "schemaVersion": "2.0", - "id": 1174, + "id": 1187, "name": "idfkit-js", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 1292, + "id": 1305, "name": "@idfkit/core", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1293, + "id": 1306, "name": "index", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1294, + "id": 1307, "name": "IdfCollection", "variant": "declaration", "kind": 128, @@ -68,7 +68,7 @@ }, "children": [ { - "id": 1295, + "id": 1308, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L19" } ], "signatures": [ { - "id": 1296, + "id": 1309, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L19" } ], "typeParameters": [ { - "id": 1297, + "id": 1310, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -119,7 +119,7 @@ ], "parameters": [ { - "id": 1298, + "id": 1311, "name": "typeName", "variant": "param", "kind": 32768, @@ -130,7 +130,7 @@ } }, { - "id": 1299, + "id": 1312, "name": "objects", "variant": "param", "kind": 32768, @@ -145,7 +145,7 @@ "typeArguments": [ { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -160,11 +160,11 @@ ], "type": { "type": "reference", - "target": 1294, + "target": 1307, "typeArguments": [ { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -178,7 +178,7 @@ ] }, { - "id": 1300, + "id": 1313, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L14" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L14" } ], "type": { @@ -199,7 +199,7 @@ } }, { - "id": 1301, + "id": 1314, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L57" } ], "getSignature": { - "id": 1302, + "id": 1315, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L57" } ], "type": { @@ -239,7 +239,7 @@ "types": [ { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -254,7 +254,7 @@ } }, { - "id": 1303, + "id": 1316, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L51" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L51" } ], "getSignature": { - "id": 1304, + "id": 1317, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L51" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L51" } ], "type": { @@ -302,7 +302,7 @@ "types": [ { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -317,7 +317,7 @@ } }, { - "id": 1305, + "id": 1318, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L24" } ], "getSignature": { - "id": 1306, + "id": 1319, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L24" } ], "type": { @@ -351,7 +351,7 @@ } }, { - "id": 1307, + "id": 1320, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L28" } ], "signatures": [ { - "id": 1308, + "id": 1321, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L28" } ], "type": { @@ -389,7 +389,7 @@ "typeArguments": [ { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -415,7 +415,7 @@ } }, { - "id": 1309, + "id": 1322, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L69" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L69" } ], "signatures": [ { - "id": 1310, + "id": 1323, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L69" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L69" } ], "parameters": [ { - "id": 1311, + "id": 1324, "name": "predicate", "variant": "param", "kind": 32768, @@ -453,28 +453,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1312, + "id": 1325, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 1313, + "id": 1326, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1314, + "id": 1327, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -482,7 +482,7 @@ } }, { - "id": 1315, + "id": 1328, "name": "index", "variant": "param", "kind": 32768, @@ -507,7 +507,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -518,7 +518,7 @@ ] }, { - "id": 1316, + "id": 1329, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L77" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L77" } ], "signatures": [ { - "id": 1317, + "id": 1330, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L77" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L77" } ], "parameters": [ { - "id": 1318, + "id": 1331, "name": "predicate", "variant": "param", "kind": 32768, @@ -556,28 +556,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1319, + "id": 1332, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 1320, + "id": 1333, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1321, + "id": 1334, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -585,7 +585,7 @@ } }, { - "id": 1322, + "id": 1335, "name": "index", "variant": "param", "kind": 32768, @@ -611,7 +611,7 @@ "types": [ { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -627,7 +627,7 @@ ] }, { - "id": 1323, + "id": 1336, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L33" } ], "signatures": [ { - "id": 1324, + "id": 1337, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L33" } ], "parameters": [ { - "id": 1325, + "id": 1338, "name": "name", "variant": "param", "kind": 32768, @@ -681,7 +681,7 @@ "types": [ { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -697,7 +697,7 @@ ] }, { - "id": 1326, + "id": 1339, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L46" } ], "signatures": [ { - "id": 1327, + "id": 1340, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L46" } ], "parameters": [ { - "id": 1328, + "id": 1341, "name": "name", "variant": "param", "kind": 32768, @@ -746,7 +746,7 @@ ] }, { - "id": 1329, + "id": 1342, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L73" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L73" } ], "signatures": [ { - "id": 1330, + "id": 1343, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L73" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L73" } ], "typeParameters": [ { - "id": 1331, + "id": 1344, "name": "R", "variant": "typeParam", "kind": 131072, @@ -785,7 +785,7 @@ ], "parameters": [ { - "id": 1332, + "id": 1345, "name": "fn", "variant": "param", "kind": 32768, @@ -793,28 +793,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1333, + "id": 1346, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 1334, + "id": 1347, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1335, + "id": 1348, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -822,7 +822,7 @@ } }, { - "id": 1336, + "id": 1349, "name": "index", "variant": "param", "kind": 32768, @@ -835,7 +835,7 @@ ], "type": { "type": "reference", - "target": 1331, + "target": 1344, "name": "R", "package": "@idfkit/core", "refersToTypeParameter": true @@ -850,7 +850,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1331, + "target": 1344, "name": "R", "package": "@idfkit/core", "refersToTypeParameter": true @@ -860,7 +860,7 @@ ] }, { - "id": 1337, + "id": 1350, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L61" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L61" } ], "signatures": [ { - "id": 1338, + "id": 1351, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L61" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L61" } ], "type": { @@ -899,7 +899,7 @@ ] }, { - "id": 1339, + "id": 1352, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L38" } ], "signatures": [ { - "id": 1340, + "id": 1353, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L38" } ], "parameters": [ { - "id": 1341, + "id": 1354, "name": "name", "variant": "param", "kind": 32768, @@ -950,7 +950,7 @@ ], "type": { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -960,7 +960,7 @@ ] }, { - "id": 1342, + "id": 1355, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L65" } ], "signatures": [ { - "id": 1343, + "id": 1356, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L65" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -1003,7 +1003,7 @@ ] }, { - "id": 1344, + "id": 1357, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L82" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L82" } ], "signatures": [ { - "id": 1345, + "id": 1358, "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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L82" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L82" } ], "parameters": [ { - "id": 1346, + "id": 1359, "name": "field", "variant": "param", "kind": 32768, @@ -1068,7 +1068,7 @@ } }, { - "id": 1347, + "id": 1360, "name": "value", "variant": "param", "kind": 32768, @@ -1083,7 +1083,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -1098,36 +1098,36 @@ { "title": "Constructors", "children": [ - 1295 + 1308 ] }, { "title": "Properties", "children": [ - 1300 + 1313 ] }, { "title": "Accessors", "children": [ - 1301, - 1303, - 1305 + 1314, + 1316, + 1318 ] }, { "title": "Methods", "children": [ - 1307, - 1309, - 1316, - 1323, - 1326, + 1320, + 1322, 1329, - 1337, + 1336, 1339, 1342, - 1344 + 1350, + 1352, + 1355, + 1357 ] } ], @@ -1136,25 +1136,25 @@ "fileName": "core/src/collection.ts", "line": 13, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/collection.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/collection.ts#L13" } ], "typeParameters": [ { - "id": 1348, + "id": 1361, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -1171,7 +1171,7 @@ "typeArguments": [ { "type": "reference", - "target": 1348, + "target": 1361, "name": "T", "package": "@idfkit/core", "qualifiedName": "IdfCollection.T", @@ -1184,7 +1184,7 @@ ] }, { - "id": 1349, + "id": 1362, "name": "IdfDocument", "variant": "declaration", "kind": 128, @@ -1215,7 +1215,7 @@ }, "children": [ { - "id": 1350, + "id": 1363, "name": "constructor", "variant": "declaration", "kind": 512, @@ -1223,14 +1223,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 29, + "line": 32, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L29" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L32" } ], "signatures": [ { - "id": 1351, + "id": 1364, "name": "IdfDocument", "variant": "signature", "kind": 16384, @@ -1238,27 +1238,27 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 29, + "line": 32, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L29" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L32" } ], "typeParameters": [ { - "id": 1352, + "id": 1365, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1774, + "target": 1793, "name": "UntypedMap", "package": "@idfkit/core" } @@ -1266,14 +1266,14 @@ ], "parameters": [ { - "id": 1353, + "id": 1366, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1550, + "target": 1566, "name": "Schema", "package": "@idfkit/schemas" } @@ -1281,11 +1281,11 @@ ], "type": { "type": "reference", - "target": 1349, + "target": 1362, "typeArguments": [ { "type": "reference", - "target": 1422, + "target": 1437, "name": "M", "package": "@idfkit/core", "qualifiedName": "IdfDocument.M", @@ -1299,7 +1299,7 @@ ] }, { - "id": 1354, + "id": 1367, "name": "schema", "variant": "declaration", "kind": 1024, @@ -1309,20 +1309,95 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 22, + "line": 23, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L23" } ], "type": { "type": "reference", - "target": 1550, + "target": 1566, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1355, + "id": 1368, + "name": "rawText", + "variant": "declaration", + "kind": 262144, + "flags": {}, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 52, + "character": 6, + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L52" + } + ], + "getSignature": { + "id": 1369, + "name": "rawText", + "variant": "signature", + "kind": 524288, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The text this document was read from, when it was read with " + }, + { + "kind": "code", + "text": "`preserveFormatting`" + }, + { + "kind": "text", + "text": ".\n\n" + }, + { + "kind": "code", + "text": "`undefined`" + }, + { + "kind": "text", + "text": " after an ordinary read, which is how a consumer answers whether a write will\npreserve: a save button that has to say \"this will reformat your file\" needs this and nothing\nmore. The anchoring behind it stays internal, because " + }, + { + "kind": "code", + "text": "`scanIdf`" + }, + { + "kind": "text", + "text": " already exports the layer." + } + ] + }, + "sources": [ + { + "fileName": "core/src/document.ts", + "line": 52, + "character": 6, + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L52" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "undefined" + } + ] + } + } + }, + { + "id": 1370, "name": "references", "variant": "declaration", "kind": 262144, @@ -1330,13 +1405,13 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 38, + "line": 41, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L41" } ], "getSignature": { - "id": 1356, + "id": 1371, "name": "references", "variant": "signature", "kind": 524288, @@ -1344,21 +1419,21 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 38, + "line": 41, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L41" } ], "type": { "type": "reference", - "target": 1506, + "target": 1522, "name": "ReferenceGraph", "package": "@idfkit/core" } } }, { - "id": 1357, + "id": 1372, "name": "size", "variant": "declaration", "kind": 262144, @@ -1366,13 +1441,13 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 48, + "line": 83, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L48" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L83" } ], "getSignature": { - "id": 1358, + "id": 1373, "name": "size", "variant": "signature", "kind": 524288, @@ -1388,9 +1463,9 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 48, + "line": 83, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L48" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L83" } ], "type": { @@ -1400,7 +1475,7 @@ } }, { - "id": 1359, + "id": 1374, "name": "version", "variant": "declaration", "kind": 262144, @@ -1408,13 +1483,13 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 34, + "line": 37, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L37" } ], "getSignature": { - "id": 1360, + "id": 1375, "name": "version", "variant": "signature", "kind": 524288, @@ -1438,9 +1513,9 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 34, + "line": 37, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L37" } ], "type": { @@ -1450,7 +1525,7 @@ } }, { - "id": 1361, + "id": 1376, "name": "add", "variant": "declaration", "kind": 2048, @@ -1458,14 +1533,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 157, + "line": 192, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L157" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L192" } ], "signatures": [ { - "id": 1362, + "id": 1377, "name": "add", "variant": "signature", "kind": 4096, @@ -1505,14 +1580,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 157, + "line": 192, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L157" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L192" } ], "typeParameters": [ { - "id": 1363, + "id": 1378, "name": "K", "variant": "typeParam", "kind": 131072, @@ -1534,7 +1609,7 @@ { "type": "reflection", "declaration": { - "id": 1364, + "id": 1379, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1549,21 +1624,21 @@ ], "parameters": [ { - "id": 1365, + "id": 1380, "name": "type", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1363, + "target": 1378, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true } }, { - "id": 1366, + "id": 1381, "name": "name", "variant": "param", "kind": 32768, @@ -1583,18 +1658,18 @@ } }, { - "id": 1367, + "id": 1382, "name": "values", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1775, + "target": 1794, "typeArguments": [ { "type": "reference", - "target": 1422, + "target": 1437, "name": "M", "package": "@idfkit/core", "qualifiedName": "IdfDocument.M", @@ -1602,7 +1677,7 @@ }, { "type": "reference", - "target": 1363, + "target": 1378, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -1619,17 +1694,17 @@ "types": [ { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" }, { "type": "reference", - "target": 1764, + "target": 1783, "typeArguments": [ { "type": "reference", - "target": 1422, + "target": 1437, "name": "M", "package": "@idfkit/core", "qualifiedName": "IdfDocument.M", @@ -1637,7 +1712,7 @@ }, { "type": "reference", - "target": 1363, + "target": 1378, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -1652,7 +1727,7 @@ ] }, { - "id": 1368, + "id": 1383, "name": "addRaw", "variant": "declaration", "kind": 2048, @@ -1660,14 +1735,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 172, + "line": 207, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L172" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L207" } ], "signatures": [ { - "id": 1369, + "id": 1384, "name": "addRaw", "variant": "signature", "kind": 4096, @@ -1683,14 +1758,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 172, + "line": 207, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L172" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L207" } ], "parameters": [ { - "id": 1370, + "id": 1385, "name": "type", "variant": "param", "kind": 32768, @@ -1701,7 +1776,7 @@ } }, { - "id": 1371, + "id": 1386, "name": "name", "variant": "param", "kind": 32768, @@ -1721,14 +1796,14 @@ } }, { - "id": 1372, + "id": 1387, "name": "values", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1763, + "target": 1782, "name": "FieldValues", "package": "@idfkit/core" }, @@ -1737,7 +1812,7 @@ ], "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -1745,7 +1820,7 @@ ] }, { - "id": 1373, + "id": 1388, "name": "all", "variant": "declaration", "kind": 2048, @@ -1753,14 +1828,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 95, + "line": 130, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L130" } ], "signatures": [ { - "id": 1374, + "id": 1389, "name": "all", "variant": "signature", "kind": 4096, @@ -1936,14 +2011,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 95, + "line": 130, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L130" } ], "typeParameters": [ { - "id": 1375, + "id": 1390, "name": "K", "variant": "typeParam", "kind": 131072, @@ -1965,7 +2040,7 @@ { "type": "reflection", "declaration": { - "id": 1376, + "id": 1391, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1980,14 +2055,14 @@ ], "parameters": [ { - "id": 1377, + "id": 1392, "name": "type", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1375, + "target": 1390, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -1996,24 +2071,24 @@ ], "type": { "type": "reference", - "target": 1294, + "target": 1307, "typeArguments": [ { "type": "intersection", "types": [ { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" }, { "type": "reference", - "target": 1764, + "target": 1783, "typeArguments": [ { "type": "reference", - "target": 1422, + "target": 1437, "name": "M", "package": "@idfkit/core", "qualifiedName": "IdfDocument.M", @@ -2021,7 +2096,7 @@ }, { "type": "reference", - "target": 1375, + "target": 1390, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -2040,7 +2115,7 @@ ] }, { - "id": 1378, + "id": 1393, "name": "attach", "variant": "declaration", "kind": 2048, @@ -2048,14 +2123,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 203, + "line": 238, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L203" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L238" } ], "signatures": [ { - "id": 1379, + "id": 1394, "name": "attach", "variant": "signature", "kind": 4096, @@ -2095,21 +2170,21 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 203, + "line": 238, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L203" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L238" } ], "parameters": [ { - "id": 1380, + "id": 1395, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -2117,7 +2192,7 @@ ], "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -2125,7 +2200,7 @@ ] }, { - "id": 1381, + "id": 1396, "name": "danglingReferences", "variant": "declaration", "kind": 2048, @@ -2133,14 +2208,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 267, + "line": 305, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L267" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L305" } ], "signatures": [ { - "id": 1382, + "id": 1397, "name": "danglingReferences", "variant": "signature", "kind": 4096, @@ -2156,16 +2231,16 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 267, + "line": 305, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L267" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L305" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 1683, + "target": 1700, "name": "ReferenceEdge", "package": "@idfkit/core" } @@ -2174,7 +2249,7 @@ ] }, { - "id": 1383, + "id": 1398, "name": "get", "variant": "declaration", "kind": 2048, @@ -2182,14 +2257,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 137, + "line": 172, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L137" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L172" } ], "signatures": [ { - "id": 1384, + "id": 1399, "name": "get", "variant": "signature", "kind": 4096, @@ -2205,14 +2280,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 137, + "line": 172, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L137" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L172" } ], "typeParameters": [ { - "id": 1385, + "id": 1400, "name": "K", "variant": "typeParam", "kind": 131072, @@ -2234,7 +2309,7 @@ { "type": "reflection", "declaration": { - "id": 1386, + "id": 1401, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2249,21 +2324,21 @@ ], "parameters": [ { - "id": 1387, + "id": 1402, "name": "type", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1385, + "target": 1400, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true } }, { - "id": 1388, + "id": 1403, "name": "name", "variant": "param", "kind": 32768, @@ -2282,17 +2357,17 @@ "types": [ { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" }, { "type": "reference", - "target": 1764, + "target": 1783, "typeArguments": [ { "type": "reference", - "target": 1422, + "target": 1437, "name": "M", "package": "@idfkit/core", "qualifiedName": "IdfDocument.M", @@ -2300,7 +2375,7 @@ }, { "type": "reference", - "target": 1385, + "target": 1400, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -2321,7 +2396,7 @@ ] }, { - "id": 1389, + "id": 1404, "name": "has", "variant": "declaration", "kind": 2048, @@ -2329,14 +2404,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 147, + "line": 182, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L147" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L182" } ], "signatures": [ { - "id": 1390, + "id": 1405, "name": "has", "variant": "signature", "kind": 4096, @@ -2352,14 +2427,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 147, + "line": 182, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L147" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L182" } ], "parameters": [ { - "id": 1391, + "id": 1406, "name": "type", "variant": "param", "kind": 32768, @@ -2378,7 +2453,7 @@ ] }, { - "id": 1392, + "id": 1407, "name": "objects", "variant": "declaration", "kind": 2048, @@ -2386,14 +2461,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 262, + "line": 300, "character": 3, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L262" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L300" } ], "signatures": [ { - "id": 1393, + "id": 1408, "name": "objects", "variant": "signature", "kind": 4096, @@ -2409,9 +2484,9 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 262, + "line": 300, "character": 3, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L262" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L300" } ], "type": { @@ -2424,7 +2499,7 @@ "typeArguments": [ { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -2436,7 +2511,7 @@ ] }, { - "id": 1394, + "id": 1409, "name": "onFieldChanged", "variant": "declaration", "kind": 2048, @@ -2444,14 +2519,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 313, + "line": 351, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L313" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L351" } ], "signatures": [ { - "id": 1395, + "id": 1410, "name": "onFieldChanged", "variant": "signature", "kind": 4096, @@ -2459,27 +2534,27 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 313, + "line": 351, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L313" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L351" } ], "parameters": [ { - "id": 1396, + "id": 1411, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1397, + "id": 1412, "name": "field", "variant": "param", "kind": 32768, @@ -2490,7 +2565,7 @@ } }, { - "id": 1398, + "id": 1413, "name": "previous", "variant": "param", "kind": 32768, @@ -2501,7 +2576,7 @@ } }, { - "id": 1399, + "id": 1414, "name": "next", "variant": "param", "kind": 32768, @@ -2518,19 +2593,19 @@ }, "implementationOf": { "type": "reference", - "target": 1644, + "target": 1660, "name": "ObjectOwner.onFieldChanged" } } ], "implementationOf": { "type": "reference", - "target": 1643, + "target": 1659, "name": "ObjectOwner.onFieldChanged" } }, { - "id": 1400, + "id": 1415, "name": "onNameChanged", "variant": "declaration", "kind": 2048, @@ -2538,14 +2613,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 326, + "line": 370, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L326" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L370" } ], "signatures": [ { - "id": 1401, + "id": 1416, "name": "onNameChanged", "variant": "signature", "kind": 4096, @@ -2553,27 +2628,27 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 326, + "line": 370, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L326" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L370" } ], "parameters": [ { - "id": 1402, + "id": 1417, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1403, + "id": 1418, "name": "previous", "variant": "param", "kind": 32768, @@ -2584,7 +2659,7 @@ } }, { - "id": 1404, + "id": 1419, "name": "next", "variant": "param", "kind": 32768, @@ -2601,19 +2676,19 @@ }, "implementationOf": { "type": "reference", - "target": 1650, + "target": 1666, "name": "ObjectOwner.onNameChanged" } } ], "implementationOf": { "type": "reference", - "target": 1649, + "target": 1665, "name": "ObjectOwner.onNameChanged" } }, { - "id": 1405, + "id": 1420, "name": "remove", "variant": "declaration", "kind": 2048, @@ -2621,14 +2696,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 235, + "line": 273, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L235" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L273" } ], "signatures": [ { - "id": 1406, + "id": 1421, "name": "remove", "variant": "signature", "kind": 4096, @@ -2644,21 +2719,21 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 235, + "line": 273, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L235" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L273" } ], "parameters": [ { - "id": 1407, + "id": 1422, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -2672,7 +2747,7 @@ ] }, { - "id": 1408, + "id": 1423, "name": "rename", "variant": "declaration", "kind": 2048, @@ -2680,14 +2755,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 254, + "line": 292, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L254" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L292" } ], "signatures": [ { - "id": 1409, + "id": 1424, "name": "rename", "variant": "signature", "kind": 4096, @@ -2711,27 +2786,27 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 254, + "line": 292, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L254" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L292" } ], "parameters": [ { - "id": 1410, + "id": 1425, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1411, + "id": 1426, "name": "next", "variant": "param", "kind": 32768, @@ -2750,7 +2825,7 @@ ] }, { - "id": 1412, + "id": 1427, "name": "require", "variant": "declaration", "kind": 2048, @@ -2758,14 +2833,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 142, + "line": 177, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L142" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L177" } ], "signatures": [ { - "id": 1413, + "id": 1428, "name": "require", "variant": "signature", "kind": 4096, @@ -2781,14 +2856,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 142, + "line": 177, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L142" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L177" } ], "typeParameters": [ { - "id": 1414, + "id": 1429, "name": "K", "variant": "typeParam", "kind": 131072, @@ -2810,7 +2885,7 @@ { "type": "reflection", "declaration": { - "id": 1415, + "id": 1430, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2825,21 +2900,21 @@ ], "parameters": [ { - "id": 1416, + "id": 1431, "name": "type", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1414, + "target": 1429, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true } }, { - "id": 1417, + "id": 1432, "name": "name", "variant": "param", "kind": 32768, @@ -2855,17 +2930,17 @@ "types": [ { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" }, { "type": "reference", - "target": 1764, + "target": 1783, "typeArguments": [ { "type": "reference", - "target": 1422, + "target": 1437, "name": "M", "package": "@idfkit/core", "qualifiedName": "IdfDocument.M", @@ -2873,7 +2948,7 @@ }, { "type": "reference", - "target": 1414, + "target": 1429, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -2888,7 +2963,7 @@ ] }, { - "id": 1418, + "id": 1433, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -2896,14 +2971,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 286, + "line": 324, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L286" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L324" } ], "signatures": [ { - "id": 1419, + "id": 1434, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -2943,9 +3018,9 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 286, + "line": 324, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L286" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L324" } ], "type": { @@ -2986,7 +3061,7 @@ }, { "type": "reference", - "target": 1769, + "target": 1788, "name": "StoredValue", "package": "@idfkit/core" } @@ -3006,7 +3081,7 @@ ] }, { - "id": 1420, + "id": 1435, "name": "types", "variant": "declaration", "kind": 2048, @@ -3014,14 +3089,14 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 43, + "line": 78, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L78" } ], "signatures": [ { - "id": 1421, + "id": 1436, "name": "types", "variant": "signature", "kind": 4096, @@ -3037,9 +3112,9 @@ "sources": [ { "fileName": "core/src/document.ts", - "line": 43, + "line": 78, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L78" } ], "type": { @@ -3057,68 +3132,69 @@ { "title": "Constructors", "children": [ - 1350 + 1363 ] }, { "title": "Properties", "children": [ - 1354 + 1367 ] }, { "title": "Accessors", "children": [ - 1355, - 1357, - 1359 + 1368, + 1370, + 1372, + 1374 ] }, { "title": "Methods", "children": [ - 1361, - 1368, - 1373, - 1378, - 1381, + 1376, 1383, - 1389, - 1392, - 1394, - 1400, - 1405, - 1408, - 1412, - 1418, - 1420 + 1388, + 1393, + 1396, + 1398, + 1404, + 1407, + 1409, + 1415, + 1420, + 1423, + 1427, + 1433, + 1435 ] } ], "sources": [ { "fileName": "core/src/document.ts", - "line": 21, + "line": 22, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/document.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/document.ts#L22" } ], "typeParameters": [ { - "id": 1422, + "id": 1437, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1774, + "target": 1793, "name": "UntypedMap", "package": "@idfkit/core" } @@ -3127,14 +3203,14 @@ "implementedTypes": [ { "type": "reference", - "target": 1642, + "target": 1658, "name": "ObjectOwner", "package": "@idfkit/core" } ] }, { - "id": 1423, + "id": 1438, "name": "IdfObject", "variant": "declaration", "kind": 128, @@ -3181,7 +3257,7 @@ }, "children": [ { - "id": 1424, + "id": 1439, "name": "[DATA]", "variant": "declaration", "kind": 1024, @@ -3191,9 +3267,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 43, + "line": 44, "character": 19, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L44" } ], "type": { @@ -3210,7 +3286,7 @@ }, { "type": "reference", - "target": 1769, + "target": 1788, "name": "StoredValue", "package": "@idfkit/core" } @@ -3220,7 +3296,7 @@ } }, { - "id": 1425, + "id": 1440, "name": "[KEY]", "variant": "declaration", "kind": 1024, @@ -3228,9 +3304,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 47, + "line": 48, "character": 10, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L48" } ], "type": { @@ -3239,7 +3315,7 @@ } }, { - "id": 1426, + "id": 1441, "name": "[NAME]", "variant": "declaration", "kind": 1024, @@ -3247,9 +3323,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 46, + "line": 47, "character": 10, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L47" } ], "type": { @@ -3258,7 +3334,7 @@ } }, { - "id": 1427, + "id": 1442, "name": "[OWNER]", "variant": "declaration", "kind": 1024, @@ -3266,9 +3342,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 45, + "line": 46, "character": 10, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L45" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L46" } ], "type": { @@ -3276,7 +3352,7 @@ "types": [ { "type": "reference", - "target": 1642, + "target": 1658, "name": "ObjectOwner", "package": "@idfkit/core" }, @@ -3288,7 +3364,7 @@ } }, { - "id": 1428, + "id": 1443, "name": "[SHAPE]", "variant": "declaration", "kind": 1024, @@ -3298,20 +3374,64 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 44, + "line": 45, "character": 19, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L44" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L45" } ], "type": { "type": "reference", - "target": 1491, + "target": 1507, "name": "ObjectShape", "package": "@idfkit/core" } }, { - "id": 1429, + "id": 1444, + "name": "[SOURCE]", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Index into the document's preserved anchors, or " + }, + { + "kind": "code", + "text": "`undefined`" + }, + { + "kind": "text", + "text": " once anything has changed this." + } + ] + }, + "sources": [ + { + "fileName": "core/src/object.ts", + "line": 50, + "character": 10, + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L50" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "undefined" + } + ] + } + }, + { + "id": 1445, "name": "extensible", "variant": "declaration", "kind": 262144, @@ -3319,13 +3439,13 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 186, + "line": 209, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L186" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L209" } ], "getSignature": { - "id": 1430, + "id": 1446, "name": "extensible", "variant": "signature", "kind": 524288, @@ -3334,23 +3454,79 @@ "summary": [ { "kind": "text", - "text": "Repeat groups of the extensible section, e.g. the vertices of a surface.\n\nReturns a live array: pushing to it mutates the object." + "text": "Repeat groups of the extensible section, e.g. the vertices of a surface.\n\nReturns a live array: pushing to it mutates the object, and so does writing a field of one of\nits repeats. Both now tell the document, which they did not before: the array handed back was\nthe object's own data, so a pushed vertex reached the object without passing any accessor and\na preserving write discarded the edit in a file that loads.\n\nIt is still an array to everything that reads it. " + }, + { + "kind": "code", + "text": "`Array.isArray`" + }, + { + "kind": "text", + "text": " is true, indexing and\niteration are unchanged, " + }, + { + "kind": "code", + "text": "`map`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`filter`" + }, + { + "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" + }, + { + "kind": "code", + "text": "`instanceof`" + }, + { + "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, " + }, + { + "kind": "code", + "text": "`obj.extensible[0] = {...}`" + }, + { + "kind": "text", + "text": ",\nwrites through the array's own index slot, which cannot be caught without charging every\nvertex read. Writing the repeat's fields and " + }, + { + "kind": "code", + "text": "`splice`" + }, + { + "kind": "text", + "text": " both are heard. See " + }, + { + "kind": "code", + "text": "`extensible.ts`" + }, + { + "kind": "text", + "text": "." } ] }, "sources": [ { "fileName": "core/src/object.ts", - "line": 186, + "line": 209, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L186" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L209" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 1761, + "target": 1780, "name": "ExtensibleGroup", "package": "@idfkit/core" } @@ -3358,7 +3534,7 @@ } }, { - "id": 1431, + "id": 1447, "name": "fieldNames", "variant": "declaration", "kind": 262144, @@ -3366,13 +3542,13 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 172, + "line": 179, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L172" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L179" } ], "getSignature": { - "id": 1432, + "id": 1448, "name": "fieldNames", "variant": "signature", "kind": 524288, @@ -3388,9 +3564,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 172, + "line": 179, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L172" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L179" } ], "type": { @@ -3407,7 +3583,7 @@ } }, { - "id": 1433, + "id": 1449, "name": "isNamed", "variant": "declaration", "kind": 262144, @@ -3415,13 +3591,13 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 135, + "line": 142, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L135" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L142" } ], "getSignature": { - "id": 1434, + "id": 1450, "name": "isNamed", "variant": "signature", "kind": 524288, @@ -3437,9 +3613,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 135, + "line": 142, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L135" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L142" } ], "type": { @@ -3449,7 +3625,7 @@ } }, { - "id": 1435, + "id": 1451, "name": "key", "variant": "declaration", "kind": 262144, @@ -3457,13 +3633,13 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 130, + "line": 137, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L130" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L137" } ], "getSignature": { - "id": 1436, + "id": 1452, "name": "key", "variant": "signature", "kind": 524288, @@ -3487,9 +3663,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 130, + "line": 137, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L130" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L137" } ], "type": { @@ -3499,7 +3675,7 @@ } }, { - "id": 1437, + "id": 1453, "name": "name", "variant": "declaration", "kind": 262144, @@ -3507,19 +3683,19 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 102, + "line": 109, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L102" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L109" }, { "fileName": "core/src/object.ts", - "line": 106, + "line": 113, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L106" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L113" } ], "getSignature": { - "id": 1438, + "id": 1454, "name": "name", "variant": "signature", "kind": 524288, @@ -3535,9 +3711,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 102, + "line": 109, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L102" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L109" } ], "type": { @@ -3546,7 +3722,7 @@ } }, "setSignature": { - "id": 1439, + "id": 1455, "name": "name", "variant": "signature", "kind": 1048576, @@ -3554,14 +3730,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 106, + "line": 113, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L106" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L113" } ], "parameters": [ { - "id": 1440, + "id": 1456, "name": "value", "variant": "param", "kind": 32768, @@ -3579,7 +3755,7 @@ } }, { - "id": 1441, + "id": 1457, "name": "schema", "variant": "declaration", "kind": 262144, @@ -3587,13 +3763,13 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 92, + "line": 99, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L92" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L99" } ], "getSignature": { - "id": 1442, + "id": 1458, "name": "schema", "variant": "signature", "kind": 524288, @@ -3609,21 +3785,21 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 92, + "line": 99, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L92" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L99" } ], "type": { "type": "reference", - "target": 1711, + "target": 1728, "name": "SlimType", "package": "@idfkit/schemas" } } }, { - "id": 1443, + "id": 1459, "name": "typeName", "variant": "declaration", "kind": 262144, @@ -3631,13 +3807,13 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 87, + "line": 94, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L87" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L94" } ], "getSignature": { - "id": 1444, + "id": 1460, "name": "typeName", "variant": "signature", "kind": 524288, @@ -3661,9 +3837,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 87, + "line": 94, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L87" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L94" } ], "type": { @@ -3673,7 +3849,7 @@ } }, { - "id": 1445, + "id": 1461, "name": "clone", "variant": "declaration", "kind": 2048, @@ -3681,14 +3857,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 248, + "line": 278, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L248" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L278" } ], "signatures": [ { - "id": 1446, + "id": 1462, "name": "clone", "variant": "signature", "kind": 4096, @@ -3704,14 +3880,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 248, + "line": 278, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L248" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L278" } ], "parameters": [ { - "id": 1447, + "id": 1463, "name": "name", "variant": "param", "kind": 32768, @@ -3725,7 +3901,7 @@ ], "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -3733,7 +3909,7 @@ ] }, { - "id": 1448, + "id": 1464, "name": "declaredNames", "variant": "declaration", "kind": 2048, @@ -3741,14 +3917,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 237, + "line": 267, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L237" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L267" } ], "signatures": [ { - "id": 1449, + "id": 1465, "name": "declaredNames", "variant": "signature", "kind": 4096, @@ -3780,9 +3956,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 237, + "line": 267, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L237" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L267" } ], "type": { @@ -3796,7 +3972,7 @@ ] }, { - "id": 1450, + "id": 1466, "name": "fieldSchema", "variant": "declaration", "kind": 2048, @@ -3804,14 +3980,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 167, + "line": 174, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L167" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L174" } ], "signatures": [ { - "id": 1451, + "id": 1467, "name": "fieldSchema", "variant": "signature", "kind": 4096, @@ -3827,14 +4003,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 167, + "line": 174, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L167" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L174" } ], "parameters": [ { - "id": 1452, + "id": 1468, "name": "field", "variant": "param", "kind": 32768, @@ -3850,7 +4026,7 @@ "types": [ { "type": "reference", - "target": 1695, + "target": 1712, "name": "SlimField", "package": "@idfkit/schemas" }, @@ -3864,7 +4040,7 @@ ] }, { - "id": 1453, + "id": 1469, "name": "get", "variant": "declaration", "kind": 2048, @@ -3872,14 +4048,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 140, + "line": 147, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L140" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L147" } ], "signatures": [ { - "id": 1454, + "id": 1470, "name": "get", "variant": "signature", "kind": 4096, @@ -3895,14 +4071,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 140, + "line": 147, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L140" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L147" } ], "parameters": [ { - "id": 1455, + "id": 1471, "name": "field", "variant": "param", "kind": 32768, @@ -3918,7 +4094,7 @@ "types": [ { "type": "reference", - "target": 1769, + "target": 1788, "name": "StoredValue", "package": "@idfkit/core" }, @@ -3932,7 +4108,7 @@ ] }, { - "id": 1456, + "id": 1472, "name": "hasField", "variant": "declaration", "kind": 2048, @@ -3940,14 +4116,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 162, + "line": 169, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L162" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L169" } ], "signatures": [ { - "id": 1457, + "id": 1473, "name": "hasField", "variant": "signature", "kind": 4096, @@ -3963,14 +4139,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 162, + "line": 169, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L162" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L169" } ], "parameters": [ { - "id": 1458, + "id": 1474, "name": "field", "variant": "param", "kind": 32768, @@ -3989,7 +4165,7 @@ ] }, { - "id": 1459, + "id": 1475, "name": "outgoingReferences", "variant": "declaration", "kind": 2048, @@ -3997,14 +4173,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 203, + "line": 233, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L203" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L233" } ], "signatures": [ { - "id": 1460, + "id": 1476, "name": "outgoingReferences", "variant": "signature", "kind": 4096, @@ -4028,9 +4204,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 203, + "line": 233, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L203" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L233" } ], "type": { @@ -4038,14 +4214,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1461, + "id": 1477, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1462, + "id": 1478, "name": "field", "variant": "declaration", "kind": 1024, @@ -4053,9 +4229,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 203, + "line": 233, "character": 32, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L203" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L233" } ], "type": { @@ -4064,7 +4240,7 @@ } }, { - "id": 1463, + "id": 1479, "name": "index", "variant": "declaration", "kind": 1024, @@ -4074,9 +4250,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 203, + "line": 233, "character": 63, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L203" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L233" } ], "type": { @@ -4085,7 +4261,7 @@ } }, { - "id": 1464, + "id": 1480, "name": "target", "variant": "declaration", "kind": 1024, @@ -4093,9 +4269,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 203, + "line": 233, "character": 47, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L203" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L233" } ], "type": { @@ -4108,9 +4284,9 @@ { "title": "Properties", "children": [ - 1462, - 1463, - 1464 + 1478, + 1479, + 1480 ] } ] @@ -4121,7 +4297,7 @@ ] }, { - "id": 1465, + "id": 1481, "name": "set", "variant": "declaration", "kind": 2048, @@ -4129,14 +4305,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 145, + "line": 152, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L145" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L152" } ], "signatures": [ { - "id": 1466, + "id": 1482, "name": "set", "variant": "signature", "kind": 4096, @@ -4152,14 +4328,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 145, + "line": 152, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L145" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L152" } ], "parameters": [ { - "id": 1467, + "id": 1483, "name": "field", "variant": "param", "kind": 32768, @@ -4170,7 +4346,7 @@ } }, { - "id": 1468, + "id": 1484, "name": "value", "variant": "param", "kind": 32768, @@ -4180,7 +4356,7 @@ "types": [ { "type": "reference", - "target": 1769, + "target": 1788, "name": "StoredValue", "package": "@idfkit/core" }, @@ -4204,7 +4380,7 @@ ] }, { - "id": 1469, + "id": 1485, "name": "setFieldNames", "variant": "declaration", "kind": 2048, @@ -4212,14 +4388,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 177, + "line": 184, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L177" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L184" } ], "signatures": [ { - "id": 1470, + "id": 1486, "name": "setFieldNames", "variant": "signature", "kind": 4096, @@ -4235,9 +4411,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 177, + "line": 184, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L177" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L184" } ], "type": { @@ -4251,7 +4427,7 @@ ] }, { - "id": 1471, + "id": 1487, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -4259,14 +4435,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 257, + "line": 287, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L257" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L287" } ], "signatures": [ { - "id": 1472, + "id": 1488, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -4282,9 +4458,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 257, + "line": 287, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L257" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L287" } ], "type": { @@ -4301,7 +4477,7 @@ }, { "type": "reference", - "target": 1769, + "target": 1788, "name": "StoredValue", "package": "@idfkit/core" } @@ -4313,7 +4489,7 @@ ] }, { - "id": 1473, + "id": 1489, "name": "toString", "variant": "declaration", "kind": 2048, @@ -4321,14 +4497,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 271, + "line": 301, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L271" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L301" } ], "signatures": [ { - "id": 1474, + "id": 1490, "name": "toString", "variant": "signature", "kind": 4096, @@ -4336,9 +4512,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 271, + "line": 301, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L271" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L301" } ], "type": { @@ -4349,7 +4525,7 @@ ] }, { - "id": 1475, + "id": 1491, "name": "update", "variant": "declaration", "kind": 2048, @@ -4357,14 +4533,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 154, + "line": 161, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L154" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L161" } ], "signatures": [ { - "id": 1476, + "id": 1492, "name": "update", "variant": "signature", "kind": 4096, @@ -4380,21 +4556,21 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 154, + "line": 161, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L154" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L161" } ], "parameters": [ { - "id": 1477, + "id": 1493, "name": "values", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1763, + "target": 1782, "name": "FieldValues", "package": "@idfkit/core" } @@ -4408,7 +4584,7 @@ ] }, { - "id": 1478, + "id": 1494, "name": "create", "variant": "declaration", "kind": 2048, @@ -4418,14 +4594,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 57, + "line": 60, "character": 9, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L60" } ], "signatures": [ { - "id": 1479, + "id": 1495, "name": "create", "variant": "signature", "kind": 4096, @@ -4433,14 +4609,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 57, + "line": 60, "character": 9, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L60" } ], "parameters": [ { - "id": 1480, + "id": 1496, "name": "typeName", "variant": "param", "kind": 32768, @@ -4451,20 +4627,20 @@ } }, { - "id": 1481, + "id": 1497, "name": "type", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1711, + "target": 1728, "name": "SlimType", "package": "@idfkit/schemas" } }, { - "id": 1482, + "id": 1498, "name": "name", "variant": "param", "kind": 32768, @@ -4475,14 +4651,14 @@ } }, { - "id": 1483, + "id": 1499, "name": "values", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1763, + "target": 1782, "name": "FieldValues", "package": "@idfkit/core" }, @@ -4491,7 +4667,7 @@ ], "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -4503,61 +4679,62 @@ { "title": "Properties", "children": [ - 1424, - 1425, - 1426, - 1427, - 1428 + 1439, + 1440, + 1441, + 1442, + 1443, + 1444 ] }, { "title": "Accessors", "children": [ - 1429, - 1431, - 1433, - 1435, - 1437, - 1441, - 1443 + 1445, + 1447, + 1449, + 1451, + 1453, + 1457, + 1459 ] }, { "title": "Methods", "children": [ - 1445, - 1448, - 1450, - 1453, - 1456, - 1459, - 1465, + 1461, + 1464, + 1466, 1469, - 1471, - 1473, + 1472, 1475, - 1478 + 1481, + 1485, + 1487, + 1489, + 1491, + 1494 ] } ], "sources": [ { "fileName": "core/src/object.ts", - "line": 42, + "line": 43, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L42" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L43" } ] }, { - "id": 1484, + "id": 1500, "name": "IdfParseError", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1485, + "id": 1501, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4565,14 +4742,14 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 344, + "line": 436, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L344" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L436" } ], "signatures": [ { - "id": 1486, + "id": 1502, "name": "IdfParseError", "variant": "signature", "kind": 16384, @@ -4580,14 +4757,14 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 344, + "line": 436, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L344" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L436" } ], "parameters": [ { - "id": 1487, + "id": 1503, "name": "diagnostic", "variant": "param", "kind": 32768, @@ -4597,7 +4774,7 @@ "types": [ { "type": "reference", - "target": 1659, + "target": 1675, "name": "ParseDiagnostic", "package": "@idfkit/core" }, @@ -4608,7 +4785,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1659, + "target": 1675, "name": "ParseDiagnostic", "package": "@idfkit/core" } @@ -4620,7 +4797,7 @@ ], "type": { "type": "reference", - "target": 1484, + "target": 1500, "name": "IdfParseError", "package": "@idfkit/core" }, @@ -4640,7 +4817,7 @@ } }, { - "id": 1488, + "id": 1504, "name": "diagnostics", "variant": "declaration", "kind": 1024, @@ -4706,9 +4883,9 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 342, + "line": 434, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L342" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L434" } ], "type": { @@ -4718,7 +4895,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1659, + "target": 1675, "name": "ParseDiagnostic", "package": "@idfkit/core" } @@ -4726,7 +4903,7 @@ } }, { - "id": 1489, + "id": 1505, "name": "line", "variant": "declaration", "kind": 1024, @@ -4736,9 +4913,9 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 329, + "line": 421, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L329" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L421" } ], "type": { @@ -4747,7 +4924,7 @@ } }, { - "id": 1490, + "id": 1506, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -4757,9 +4934,9 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 330, + "line": 422, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L330" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L422" } ], "type": { @@ -4781,24 +4958,24 @@ { "title": "Constructors", "children": [ - 1485 + 1501 ] }, { "title": "Properties", "children": [ - 1488, - 1489, - 1490 + 1504, + 1505, + 1506 ] } ], "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 328, + "line": 420, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L328" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L420" } ], "extendedTypes": [ @@ -4815,7 +4992,7 @@ ] }, { - "id": 1491, + "id": 1507, "name": "ObjectShape", "variant": "declaration", "kind": 128, @@ -4886,7 +5063,7 @@ }, "children": [ { - "id": 1492, + "id": 1508, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4896,12 +5073,12 @@ "fileName": "core/src/shape.ts", "line": 48, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L48" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L48" } ], "signatures": [ { - "id": 1493, + "id": 1509, "name": "ObjectShape", "variant": "signature", "kind": 16384, @@ -4911,12 +5088,12 @@ "fileName": "core/src/shape.ts", "line": 48, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L48" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L48" } ], "parameters": [ { - "id": 1494, + "id": 1510, "name": "typeName", "variant": "param", "kind": 32768, @@ -4927,20 +5104,20 @@ } }, { - "id": 1495, + "id": 1511, "name": "type", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1711, + "target": 1728, "name": "SlimType", "package": "@idfkit/schemas" } }, { - "id": 1496, + "id": 1512, "name": "base", "variant": "param", "kind": 32768, @@ -4953,7 +5130,7 @@ ], "type": { "type": "reference", - "target": 1491, + "target": 1507, "name": "ObjectShape", "package": "@idfkit/core" } @@ -4961,7 +5138,7 @@ ] }, { - "id": 1497, + "id": 1513, "name": "extensibleKey", "variant": "declaration", "kind": 1024, @@ -4989,7 +5166,7 @@ "fileName": "core/src/shape.ts", "line": 44, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L44" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L44" } ], "type": { @@ -5007,7 +5184,7 @@ } }, { - "id": 1498, + "id": 1514, "name": "extensibleRefFields", "variant": "declaration", "kind": 1024, @@ -5067,7 +5244,7 @@ "fileName": "core/src/shape.ts", "line": 40, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L40" } ], "type": { @@ -5083,7 +5260,7 @@ } }, { - "id": 1499, + "id": 1515, "name": "fields", "variant": "declaration", "kind": 1024, @@ -5103,7 +5280,7 @@ "fileName": "core/src/shape.ts", "line": 28, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L28" } ], "type": { @@ -5119,7 +5296,7 @@ } }, { - "id": 1500, + "id": 1516, "name": "keyFields", "variant": "declaration", "kind": 1024, @@ -5139,7 +5316,7 @@ "fileName": "core/src/shape.ts", "line": 42, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L42" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L42" } ], "type": { @@ -5155,7 +5332,7 @@ } }, { - "id": 1501, + "id": 1517, "name": "named", "variant": "declaration", "kind": 1024, @@ -5183,7 +5360,7 @@ "fileName": "core/src/shape.ts", "line": 46, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L46" } ], "type": { @@ -5192,7 +5369,7 @@ } }, { - "id": 1502, + "id": 1518, "name": "proto", "variant": "declaration", "kind": 1024, @@ -5204,7 +5381,7 @@ "fileName": "core/src/shape.ts", "line": 25, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L25" } ], "type": { @@ -5213,7 +5390,7 @@ } }, { - "id": 1503, + "id": 1519, "name": "refFields", "variant": "declaration", "kind": 1024, @@ -5233,7 +5410,7 @@ "fileName": "core/src/shape.ts", "line": 30, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L30" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L30" } ], "type": { @@ -5249,7 +5426,7 @@ } }, { - "id": 1504, + "id": 1520, "name": "type", "variant": "declaration", "kind": 1024, @@ -5261,18 +5438,18 @@ "fileName": "core/src/shape.ts", "line": 24, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L24" } ], "type": { "type": "reference", - "target": 1711, + "target": 1728, "name": "SlimType", "package": "@idfkit/schemas" } }, { - "id": 1505, + "id": 1521, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -5284,7 +5461,7 @@ "fileName": "core/src/shape.ts", "line": 23, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L23" } ], "type": { @@ -5297,21 +5474,21 @@ { "title": "Constructors", "children": [ - 1492 + 1508 ] }, { "title": "Properties", "children": [ - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505 + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521 ] } ], @@ -5320,12 +5497,12 @@ "fileName": "core/src/shape.ts", "line": 22, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L22" } ] }, { - "id": 1506, + "id": 1522, "name": "ReferenceGraph", "variant": "declaration", "kind": 128, @@ -5348,21 +5525,21 @@ }, "children": [ { - "id": 1507, + "id": 1523, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 1508, + "id": 1524, "name": "ReferenceGraph", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 1506, + "target": 1522, "name": "ReferenceGraph", "package": "@idfkit/core" } @@ -5370,7 +5547,7 @@ ] }, { - "id": 1509, + "id": 1525, "name": "size", "variant": "declaration", "kind": 262144, @@ -5380,11 +5557,11 @@ "fileName": "core/src/references.ts", "line": 160, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L160" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L160" } ], "getSignature": { - "id": 1510, + "id": 1526, "name": "size", "variant": "signature", "kind": 524288, @@ -5394,7 +5571,7 @@ "fileName": "core/src/references.ts", "line": 160, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L160" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L160" } ], "type": { @@ -5404,7 +5581,7 @@ } }, { - "id": 1511, + "id": 1527, "name": "add", "variant": "declaration", "kind": 2048, @@ -5414,12 +5591,12 @@ "fileName": "core/src/references.ts", "line": 34, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L34" } ], "signatures": [ { - "id": 1512, + "id": 1528, "name": "add", "variant": "signature", "kind": 4096, @@ -5453,25 +5630,25 @@ "fileName": "core/src/references.ts", "line": 34, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L34" } ], "parameters": [ { - "id": 1513, + "id": 1529, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1514, + "id": 1530, "name": "field", "variant": "param", "kind": 32768, @@ -5482,7 +5659,7 @@ } }, { - "id": 1515, + "id": 1531, "name": "target", "variant": "param", "kind": 32768, @@ -5493,7 +5670,7 @@ } }, { - "id": 1516, + "id": 1532, "name": "index", "variant": "param", "kind": 32768, @@ -5514,7 +5691,7 @@ ] }, { - "id": 1517, + "id": 1533, "name": "addObject", "variant": "declaration", "kind": 2048, @@ -5524,12 +5701,12 @@ "fileName": "core/src/references.ts", "line": 55, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L55" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L55" } ], "signatures": [ { - "id": 1518, + "id": 1534, "name": "addObject", "variant": "signature", "kind": 4096, @@ -5547,19 +5724,19 @@ "fileName": "core/src/references.ts", "line": 55, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L55" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L55" } ], "parameters": [ { - "id": 1519, + "id": 1535, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -5573,7 +5750,7 @@ ] }, { - "id": 1520, + "id": 1536, "name": "clear", "variant": "declaration", "kind": 2048, @@ -5583,12 +5760,12 @@ "fileName": "core/src/references.ts", "line": 155, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L155" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L155" } ], "signatures": [ { - "id": 1521, + "id": 1537, "name": "clear", "variant": "signature", "kind": 4096, @@ -5598,7 +5775,7 @@ "fileName": "core/src/references.ts", "line": 155, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L155" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L155" } ], "type": { @@ -5609,7 +5786,7 @@ ] }, { - "id": 1522, + "id": 1538, "name": "dangling", "variant": "declaration", "kind": 2048, @@ -5619,12 +5796,12 @@ "fileName": "core/src/references.ts", "line": 146, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L146" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L146" } ], "signatures": [ { - "id": 1523, + "id": 1539, "name": "dangling", "variant": "signature", "kind": 4096, @@ -5650,12 +5827,12 @@ "fileName": "core/src/references.ts", "line": 146, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L146" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L146" } ], "parameters": [ { - "id": 1524, + "id": 1540, "name": "valid", "variant": "param", "kind": 32768, @@ -5682,7 +5859,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1683, + "target": 1700, "name": "ReferenceEdge", "package": "@idfkit/core" } @@ -5691,7 +5868,7 @@ ] }, { - "id": 1525, + "id": 1541, "name": "isReferenced", "variant": "declaration", "kind": 2048, @@ -5701,12 +5878,12 @@ "fileName": "core/src/references.ts", "line": 117, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L117" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L117" } ], "signatures": [ { - "id": 1526, + "id": 1542, "name": "isReferenced", "variant": "signature", "kind": 4096, @@ -5724,12 +5901,12 @@ "fileName": "core/src/references.ts", "line": 117, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L117" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L117" } ], "parameters": [ { - "id": 1527, + "id": 1543, "name": "name", "variant": "param", "kind": 32768, @@ -5748,7 +5925,7 @@ ] }, { - "id": 1528, + "id": 1544, "name": "referencedBy", "variant": "declaration", "kind": 2048, @@ -5758,12 +5935,12 @@ "fileName": "core/src/references.ts", "line": 111, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L111" } ], "signatures": [ { - "id": 1529, + "id": 1545, "name": "referencedBy", "variant": "signature", "kind": 4096, @@ -5781,19 +5958,19 @@ "fileName": "core/src/references.ts", "line": 111, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L111" } ], "parameters": [ { - "id": 1530, + "id": 1546, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -5810,7 +5987,7 @@ ] }, { - "id": 1531, + "id": 1547, "name": "referencing", "variant": "declaration", "kind": 2048, @@ -5820,12 +5997,12 @@ "fileName": "core/src/references.ts", "line": 98, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L98" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L98" } ], "signatures": [ { - "id": 1532, + "id": 1548, "name": "referencing", "variant": "signature", "kind": 4096, @@ -5843,12 +6020,12 @@ "fileName": "core/src/references.ts", "line": 98, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L98" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L98" } ], "parameters": [ { - "id": 1533, + "id": 1549, "name": "name", "variant": "param", "kind": 32768, @@ -5863,7 +6040,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1683, + "target": 1700, "name": "ReferenceEdge", "package": "@idfkit/core" } @@ -5872,7 +6049,7 @@ ] }, { - "id": 1534, + "id": 1550, "name": "referencingObjects", "variant": "declaration", "kind": 2048, @@ -5882,12 +6059,12 @@ "fileName": "core/src/references.ts", "line": 104, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L104" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L104" } ], "signatures": [ { - "id": 1535, + "id": 1551, "name": "referencingObjects", "variant": "signature", "kind": 4096, @@ -5905,12 +6082,12 @@ "fileName": "core/src/references.ts", "line": 104, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L104" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L104" } ], "parameters": [ { - "id": 1536, + "id": 1552, "name": "name", "variant": "param", "kind": 32768, @@ -5925,7 +6102,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -5934,7 +6111,7 @@ ] }, { - "id": 1537, + "id": 1553, "name": "removeObject", "variant": "declaration", "kind": 2048, @@ -5944,12 +6121,12 @@ "fileName": "core/src/references.ts", "line": 62, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L62" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L62" } ], "signatures": [ { - "id": 1538, + "id": 1554, "name": "removeObject", "variant": "signature", "kind": 4096, @@ -5967,19 +6144,19 @@ "fileName": "core/src/references.ts", "line": 62, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L62" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L62" } ], "parameters": [ { - "id": 1539, + "id": 1555, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -5993,7 +6170,7 @@ ] }, { - "id": 1540, + "id": 1556, "name": "retarget", "variant": "declaration", "kind": 2048, @@ -6003,12 +6180,12 @@ "fileName": "core/src/references.ts", "line": 128, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L128" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L128" } ], "signatures": [ { - "id": 1541, + "id": 1557, "name": "retarget", "variant": "signature", "kind": 4096, @@ -6042,12 +6219,12 @@ "fileName": "core/src/references.ts", "line": 128, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L128" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L128" } ], "parameters": [ { - "id": 1542, + "id": 1558, "name": "previous", "variant": "param", "kind": 32768, @@ -6058,7 +6235,7 @@ } }, { - "id": 1543, + "id": 1559, "name": "next", "variant": "param", "kind": 32768, @@ -6073,7 +6250,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1683, + "target": 1700, "name": "ReferenceEdge", "package": "@idfkit/core" } @@ -6082,7 +6259,7 @@ ] }, { - "id": 1544, + "id": 1560, "name": "updateField", "variant": "declaration", "kind": 2048, @@ -6092,12 +6269,12 @@ "fileName": "core/src/references.ts", "line": 76, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L76" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L76" } ], "signatures": [ { - "id": 1545, + "id": 1561, "name": "updateField", "variant": "signature", "kind": 4096, @@ -6115,25 +6292,25 @@ "fileName": "core/src/references.ts", "line": 76, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L76" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L76" } ], "parameters": [ { - "id": 1546, + "id": 1562, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1547, + "id": 1563, "name": "field", "variant": "param", "kind": 32768, @@ -6144,7 +6321,7 @@ } }, { - "id": 1548, + "id": 1564, "name": "previous", "variant": "param", "kind": 32768, @@ -6155,7 +6332,7 @@ } }, { - "id": 1549, + "id": 1565, "name": "next", "variant": "param", "kind": 32768, @@ -6178,29 +6355,29 @@ { "title": "Constructors", "children": [ - 1507 + 1523 ] }, { "title": "Accessors", "children": [ - 1509 + 1525 ] }, { "title": "Methods", "children": [ - 1511, - 1517, - 1520, - 1522, - 1525, - 1528, - 1531, - 1534, - 1537, - 1540, - 1544 + 1527, + 1533, + 1536, + 1538, + 1541, + 1544, + 1547, + 1550, + 1553, + 1556, + 1560 ] } ], @@ -6209,12 +6386,12 @@ "fileName": "core/src/references.ts", "line": 27, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L27" } ] }, { - "id": 1550, + "id": 1566, "name": "Schema", "variant": "declaration", "kind": 128, @@ -6229,7 +6406,7 @@ }, "children": [ { - "id": 1551, + "id": 1567, "name": "constructor", "variant": "declaration", "kind": 512, @@ -6243,7 +6420,7 @@ ], "signatures": [ { - "id": 1552, + "id": 1568, "name": "Schema", "variant": "signature", "kind": 16384, @@ -6257,7 +6434,7 @@ ], "parameters": [ { - "id": 1553, + "id": 1569, "name": "version", "variant": "param", "kind": 32768, @@ -6268,27 +6445,27 @@ } }, { - "id": 1554, + "id": 1570, "name": "manifest", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1276, + "target": 1289, "name": "Manifest", "package": "@idfkit/schemas" } }, { - "id": 1555, + "id": 1571, "name": "store", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1177, + "target": 1190, "name": "BlobStore", "package": "@idfkit/schemas" } @@ -6296,7 +6473,7 @@ ], "type": { "type": "reference", - "target": 1550, + "target": 1566, "name": "Schema", "package": "@idfkit/schemas" } @@ -6304,7 +6481,7 @@ ] }, { - "id": 1556, + "id": 1572, "name": "version", "variant": "declaration", "kind": 1024, @@ -6324,7 +6501,7 @@ } }, { - "id": 1557, + "id": 1573, "name": "typeNames", "variant": "declaration", "kind": 262144, @@ -6337,7 +6514,7 @@ } ], "getSignature": { - "id": 1558, + "id": 1574, "name": "typeNames", "variant": "signature", "kind": 524288, @@ -6371,7 +6548,7 @@ } }, { - "id": 1559, + "id": 1575, "name": "changedFrom", "variant": "declaration", "kind": 2048, @@ -6385,7 +6562,7 @@ ], "signatures": [ { - "id": 1560, + "id": 1576, "name": "changedFrom", "variant": "signature", "kind": 4096, @@ -6415,14 +6592,14 @@ ], "parameters": [ { - "id": 1561, + "id": 1577, "name": "other", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1550, + "target": 1566, "name": "Schema", "package": "@idfkit/schemas" } @@ -6430,7 +6607,7 @@ ], "type": { "type": "reference", - "target": 1691, + "target": 1708, "name": "SchemaDelta", "package": "@idfkit/schemas" } @@ -6438,7 +6615,7 @@ ] }, { - "id": 1562, + "id": 1578, "name": "field", "variant": "declaration", "kind": 2048, @@ -6452,7 +6629,7 @@ ], "signatures": [ { - "id": 1563, + "id": 1579, "name": "field", "variant": "signature", "kind": 4096, @@ -6474,7 +6651,7 @@ ], "parameters": [ { - "id": 1564, + "id": 1580, "name": "typeName", "variant": "param", "kind": 32768, @@ -6485,7 +6662,7 @@ } }, { - "id": 1565, + "id": 1581, "name": "fieldName", "variant": "param", "kind": 32768, @@ -6501,7 +6678,7 @@ "types": [ { "type": "reference", - "target": 1695, + "target": 1712, "name": "SlimField", "package": "@idfkit/schemas" }, @@ -6515,7 +6692,7 @@ ] }, { - "id": 1566, + "id": 1582, "name": "get", "variant": "declaration", "kind": 2048, @@ -6529,7 +6706,7 @@ ], "signatures": [ { - "id": 1567, + "id": 1583, "name": "get", "variant": "signature", "kind": 4096, @@ -6551,7 +6728,7 @@ ], "parameters": [ { - "id": 1568, + "id": 1584, "name": "typeName", "variant": "param", "kind": 32768, @@ -6567,7 +6744,7 @@ "types": [ { "type": "reference", - "target": 1711, + "target": 1728, "name": "SlimType", "package": "@idfkit/schemas" }, @@ -6581,7 +6758,7 @@ ] }, { - "id": 1569, + "id": 1585, "name": "has", "variant": "declaration", "kind": 2048, @@ -6595,7 +6772,7 @@ ], "signatures": [ { - "id": 1570, + "id": 1586, "name": "has", "variant": "signature", "kind": 4096, @@ -6617,7 +6794,7 @@ ], "parameters": [ { - "id": 1571, + "id": 1587, "name": "typeName", "variant": "param", "kind": 32768, @@ -6636,7 +6813,7 @@ ] }, { - "id": 1572, + "id": 1588, "name": "require", "variant": "declaration", "kind": 2048, @@ -6650,7 +6827,7 @@ ], "signatures": [ { - "id": 1573, + "id": 1589, "name": "require", "variant": "signature", "kind": 4096, @@ -6672,7 +6849,7 @@ ], "parameters": [ { - "id": 1574, + "id": 1590, "name": "typeName", "variant": "param", "kind": 32768, @@ -6685,7 +6862,7 @@ ], "type": { "type": "reference", - "target": 1711, + "target": 1728, "name": "SlimType", "package": "@idfkit/schemas" } @@ -6693,7 +6870,7 @@ ] }, { - "id": 1575, + "id": 1591, "name": "resolve", "variant": "declaration", "kind": 2048, @@ -6707,7 +6884,7 @@ ], "signatures": [ { - "id": 1576, + "id": 1592, "name": "resolve", "variant": "signature", "kind": 4096, @@ -6753,7 +6930,7 @@ ], "parameters": [ { - "id": 1577, + "id": 1593, "name": "typeName", "variant": "param", "kind": 32768, @@ -6785,30 +6962,30 @@ { "title": "Constructors", "children": [ - 1551 + 1567 ] }, { "title": "Properties", "children": [ - 1556 + 1572 ] }, { "title": "Accessors", "children": [ - 1557 + 1573 ] }, { "title": "Methods", "children": [ - 1559, - 1562, - 1566, - 1569, - 1572, - 1575 + 1575, + 1578, + 1582, + 1585, + 1588, + 1591 ] } ], @@ -6821,7 +6998,7 @@ ] }, { - "id": 1578, + "id": 1594, "name": "SchemaBundle", "variant": "declaration", "kind": 128, @@ -6836,7 +7013,7 @@ }, "children": [ { - "id": 1579, + "id": 1595, "name": "constructor", "variant": "declaration", "kind": 512, @@ -6850,7 +7027,7 @@ ], "signatures": [ { - "id": 1580, + "id": 1596, "name": "SchemaBundle", "variant": "signature", "kind": 16384, @@ -6864,14 +7041,14 @@ ], "parameters": [ { - "id": 1581, + "id": 1597, "name": "source", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1596, + "target": 1612, "name": "BundleSource", "package": "@idfkit/schemas" } @@ -6879,7 +7056,7 @@ ], "type": { "type": "reference", - "target": 1578, + "target": 1594, "name": "SchemaBundle", "package": "@idfkit/schemas" } @@ -6887,7 +7064,7 @@ ] }, { - "id": 1582, + "id": 1598, "name": "latest", "variant": "declaration", "kind": 2048, @@ -6901,7 +7078,7 @@ ], "signatures": [ { - "id": 1583, + "id": 1599, "name": "latest", "variant": "signature", "kind": 4096, @@ -6941,7 +7118,7 @@ ] }, { - "id": 1584, + "id": 1600, "name": "load", "variant": "declaration", "kind": 2048, @@ -6955,7 +7132,7 @@ ], "signatures": [ { - "id": 1585, + "id": 1601, "name": "load", "variant": "signature", "kind": 4096, @@ -6977,7 +7154,7 @@ ], "parameters": [ { - "id": 1586, + "id": 1602, "name": "version", "variant": "param", "kind": 32768, @@ -6998,7 +7175,7 @@ "typeArguments": [ { "type": "reference", - "target": 1550, + "target": 1566, "name": "Schema", "package": "@idfkit/schemas" } @@ -7010,7 +7187,7 @@ ] }, { - "id": 1587, + "id": 1603, "name": "loaded", "variant": "declaration", "kind": 2048, @@ -7024,7 +7201,7 @@ ], "signatures": [ { - "id": 1588, + "id": 1604, "name": "loaded", "variant": "signature", "kind": 4096, @@ -7046,7 +7223,7 @@ ], "parameters": [ { - "id": 1589, + "id": 1605, "name": "version", "variant": "param", "kind": 32768, @@ -7062,7 +7239,7 @@ "types": [ { "type": "reference", - "target": 1550, + "target": 1566, "name": "Schema", "package": "@idfkit/schemas" }, @@ -7076,7 +7253,7 @@ ] }, { - "id": 1590, + "id": 1606, "name": "loadProse", "variant": "declaration", "kind": 2048, @@ -7090,7 +7267,7 @@ ], "signatures": [ { - "id": 1591, + "id": 1607, "name": "loadProse", "variant": "signature", "kind": 4096, @@ -7152,7 +7329,7 @@ "typeArguments": [ { "type": "reference", - "target": 1767, + "target": 1786, "name": "ProsePool", "package": "@idfkit/schemas" } @@ -7164,7 +7341,7 @@ ] }, { - "id": 1592, + "id": 1608, "name": "prose", "variant": "declaration", "kind": 2048, @@ -7178,7 +7355,7 @@ ], "signatures": [ { - "id": 1593, + "id": 1609, "name": "prose", "variant": "signature", "kind": 4096, @@ -7235,7 +7412,7 @@ "types": [ { "type": "reference", - "target": 1767, + "target": 1786, "name": "ProsePool", "package": "@idfkit/schemas" }, @@ -7249,7 +7426,7 @@ ] }, { - "id": 1594, + "id": 1610, "name": "versions", "variant": "declaration", "kind": 2048, @@ -7263,7 +7440,7 @@ ], "signatures": [ { - "id": 1595, + "id": 1611, "name": "versions", "variant": "signature", "kind": 4096, @@ -7314,18 +7491,18 @@ { "title": "Constructors", "children": [ - 1579 + 1595 ] }, { "title": "Methods", "children": [ - 1582, - 1584, - 1587, - 1590, - 1592, - 1594 + 1598, + 1600, + 1603, + 1606, + 1608, + 1610 ] } ], @@ -7338,7 +7515,7 @@ ] }, { - "id": 1596, + "id": 1612, "name": "BundleSource", "variant": "declaration", "kind": 256, @@ -7361,7 +7538,7 @@ }, "children": [ { - "id": 1597, + "id": 1613, "name": "read", "variant": "declaration", "kind": 2048, @@ -7375,7 +7552,7 @@ ], "signatures": [ { - "id": 1598, + "id": 1614, "name": "read", "variant": "signature", "kind": 4096, @@ -7389,7 +7566,7 @@ ], "parameters": [ { - "id": 1599, + "id": 1615, "name": "fileName", "variant": "param", "kind": 32768, @@ -7424,7 +7601,7 @@ { "title": "Methods", "children": [ - 1597 + 1613 ] } ], @@ -7437,7 +7614,7 @@ ] }, { - "id": 1600, + "id": 1616, "name": "DocsUrl", "variant": "declaration", "kind": 256, @@ -7452,7 +7629,7 @@ }, "children": [ { - "id": 1601, + "id": 1617, "name": "docSet", "variant": "declaration", "kind": 1024, @@ -7480,7 +7657,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 27, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L27" } ], "type": { @@ -7502,7 +7679,7 @@ } }, { - "id": 1602, + "id": 1618, "name": "label", "variant": "declaration", "kind": 1024, @@ -7530,7 +7707,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 31, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L31" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L31" } ], "type": { @@ -7539,7 +7716,7 @@ } }, { - "id": 1603, + "id": 1619, "name": "url", "variant": "declaration", "kind": 1024, @@ -7551,7 +7728,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 25, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L25" } ], "type": { @@ -7560,7 +7737,7 @@ } }, { - "id": 1604, + "id": 1620, "name": "version", "variant": "declaration", "kind": 1024, @@ -7588,7 +7765,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 29, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L29" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L29" } ], "type": { @@ -7601,10 +7778,10 @@ { "title": "Properties", "children": [ - 1601, - 1602, - 1603, - 1604 + 1617, + 1618, + 1619, + 1620 ] } ], @@ -7613,12 +7790,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 24, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L24" } ] }, { - "id": 1605, + "id": 1621, "name": "FieldDescription", "variant": "declaration", "kind": 256, @@ -7657,7 +7834,7 @@ }, "children": [ { - "id": 1606, + "id": 1622, "name": "default", "variant": "declaration", "kind": 1024, @@ -7669,7 +7846,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 25, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L25" } ], "type": { @@ -7691,7 +7868,7 @@ } }, { - "id": 1607, + "id": 1623, "name": "enumValues", "variant": "declaration", "kind": 1024, @@ -7711,7 +7888,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 34, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L34" } ], "type": { @@ -7745,7 +7922,7 @@ } }, { - "id": 1608, + "id": 1624, "name": "exclusiveMaximum", "variant": "declaration", "kind": 1024, @@ -7773,7 +7950,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 47, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L47" } ], "type": { @@ -7795,7 +7972,7 @@ } }, { - "id": 1609, + "id": 1625, "name": "exclusiveMinimum", "variant": "declaration", "kind": 1024, @@ -7831,7 +8008,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 45, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L45" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L45" } ], "type": { @@ -7853,7 +8030,7 @@ } }, { - "id": 1610, + "id": 1626, "name": "fieldType", "variant": "declaration", "kind": 1024, @@ -7945,7 +8122,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 22, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L22" } ], "type": { @@ -7963,7 +8140,7 @@ } }, { - "id": 1611, + "id": 1627, "name": "isReference", "variant": "declaration", "kind": 1024, @@ -7983,7 +8160,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 60, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L60" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L60" } ], "type": { @@ -7992,7 +8169,7 @@ } }, { - "id": 1612, + "id": 1628, "name": "maximum", "variant": "declaration", "kind": 1024, @@ -8004,7 +8181,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 36, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L36" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L36" } ], "type": { @@ -8022,7 +8199,7 @@ } }, { - "id": 1613, + "id": 1629, "name": "minimum", "variant": "declaration", "kind": 1024, @@ -8034,7 +8211,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 35, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L35" } ], "type": { @@ -8052,7 +8229,7 @@ } }, { - "id": 1614, + "id": 1630, "name": "name", "variant": "declaration", "kind": 1024, @@ -8080,7 +8257,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 13, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L13" } ], "type": { @@ -8089,7 +8266,7 @@ } }, { - "id": 1615, + "id": 1631, "name": "note", "variant": "declaration", "kind": 1024, @@ -8141,7 +8318,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 58, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L58" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L58" } ], "type": { @@ -8159,7 +8336,7 @@ } }, { - "id": 1616, + "id": 1632, "name": "objectList", "variant": "declaration", "kind": 1024, @@ -8179,7 +8356,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 62, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L62" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L62" } ], "type": { @@ -8204,7 +8381,7 @@ } }, { - "id": 1617, + "id": 1633, "name": "required", "variant": "declaration", "kind": 1024, @@ -8232,7 +8409,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 24, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L24" } ], "type": { @@ -8241,7 +8418,7 @@ } }, { - "id": 1618, + "id": 1634, "name": "units", "variant": "declaration", "kind": 1024, @@ -8277,7 +8454,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 27, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L27" } ], "type": { @@ -8299,19 +8476,19 @@ { "title": "Properties", "children": [ - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618 + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634 ] } ], @@ -8320,19 +8497,19 @@ "fileName": "core/src/introspect/describe.ts", "line": 11, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L11" } ] }, { - "id": 1619, + "id": 1635, "name": "LexDiagnostic", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1620, + "id": 1636, "name": "code", "variant": "declaration", "kind": 1024, @@ -8376,7 +8553,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 34, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L34" } ], "type": { @@ -8391,7 +8568,7 @@ } }, { - "id": 1621, + "id": 1637, "name": "column", "variant": "declaration", "kind": 1024, @@ -8411,7 +8588,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 36, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L36" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L36" } ], "type": { @@ -8420,7 +8597,7 @@ } }, { - "id": 1622, + "id": 1638, "name": "filepath", "variant": "declaration", "kind": 1024, @@ -8440,7 +8617,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 38, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L38" } ], "type": { @@ -8449,7 +8626,7 @@ } }, { - "id": 1623, + "id": 1639, "name": "line", "variant": "declaration", "kind": 1024, @@ -8459,7 +8636,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 25, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L25" } ], "type": { @@ -8468,7 +8645,7 @@ } }, { - "id": 1624, + "id": 1640, "name": "message", "variant": "declaration", "kind": 1024, @@ -8478,7 +8655,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L24" } ], "type": { @@ -8487,7 +8664,7 @@ } }, { - "id": 1625, + "id": 1641, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -8515,7 +8692,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 46, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L46" } ], "type": { @@ -8528,12 +8705,12 @@ { "title": "Properties", "children": [ - 1620, - 1621, - 1622, - 1623, - 1624, - 1625 + 1636, + 1637, + 1638, + 1639, + 1640, + 1641 ] } ], @@ -8542,26 +8719,26 @@ "fileName": "core/src/parse/lexer.ts", "line": 23, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L23" } ], "extendedBy": [ { "type": "reference", - "target": 1659, + "target": 1675, "name": "ParseDiagnostic" } ] }, { - "id": 1626, + "id": 1642, "name": "LexOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1627, + "id": 1643, "name": "onDiagnostic", "variant": "declaration", "kind": 1024, @@ -8581,34 +8758,34 @@ "fileName": "core/src/parse/lexer.ts", "line": 65, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L65" } ], "type": { "type": "reflection", "declaration": { - "id": 1628, + "id": 1644, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 1629, + "id": 1645, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1630, + "id": 1646, "name": "diagnostic", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1619, + "target": 1635, "name": "LexDiagnostic", "package": "@idfkit/core" } @@ -8628,7 +8805,7 @@ { "title": "Properties", "children": [ - 1627 + 1643 ] } ], @@ -8637,12 +8814,12 @@ "fileName": "core/src/parse/lexer.ts", "line": 63, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L63" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L63" } ] }, { - "id": 1631, + "id": 1647, "name": "LineColumn", "variant": "declaration", "kind": 256, @@ -8657,7 +8834,7 @@ }, "children": [ { - "id": 1632, + "id": 1648, "name": "column", "variant": "declaration", "kind": 1024, @@ -8677,7 +8854,7 @@ "fileName": "core/src/syntax/region.ts", "line": 36, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/region.ts#L36" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L36" } ], "type": { @@ -8686,7 +8863,7 @@ } }, { - "id": 1633, + "id": 1649, "name": "line", "variant": "declaration", "kind": 1024, @@ -8706,7 +8883,7 @@ "fileName": "core/src/syntax/region.ts", "line": 34, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/region.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L34" } ], "type": { @@ -8719,8 +8896,8 @@ { "title": "Properties", "children": [ - 1632, - 1633 + 1648, + 1649 ] } ], @@ -8729,12 +8906,12 @@ "fileName": "core/src/syntax/region.ts", "line": 32, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/region.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L32" } ] }, { - "id": 1634, + "id": 1650, "name": "ObjectDescription", "variant": "declaration", "kind": 256, @@ -8757,7 +8934,7 @@ }, "children": [ { - "id": 1635, + "id": 1651, "name": "extensibleSize", "variant": "declaration", "kind": 1024, @@ -8777,7 +8954,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 89, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L89" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L89" } ], "type": { @@ -8795,7 +8972,7 @@ } }, { - "id": 1636, + "id": 1652, "name": "fields", "variant": "declaration", "kind": 1024, @@ -8807,7 +8984,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 81, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L81" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L81" } ], "type": { @@ -8817,7 +8994,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1605, + "target": 1621, "name": "FieldDescription", "package": "@idfkit/core" } @@ -8825,7 +9002,7 @@ } }, { - "id": 1637, + "id": 1653, "name": "hasName", "variant": "declaration", "kind": 1024, @@ -8853,7 +9030,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 85, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L85" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L85" } ], "type": { @@ -8862,7 +9039,7 @@ } }, { - "id": 1638, + "id": 1654, "name": "isExtensible", "variant": "declaration", "kind": 1024, @@ -8882,7 +9059,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 87, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L87" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L87" } ], "type": { @@ -8891,7 +9068,7 @@ } }, { - "id": 1639, + "id": 1655, "name": "memo", "variant": "declaration", "kind": 1024, @@ -8935,7 +9112,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 80, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L80" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L80" } ], "type": { @@ -8953,7 +9130,7 @@ } }, { - "id": 1640, + "id": 1656, "name": "objType", "variant": "declaration", "kind": 1024, @@ -8981,7 +9158,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 72, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L72" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L72" } ], "type": { @@ -8990,7 +9167,7 @@ } }, { - "id": 1641, + "id": 1657, "name": "requiredFields", "variant": "declaration", "kind": 1024, @@ -9010,7 +9187,7 @@ "fileName": "core/src/introspect/describe.ts", "line": 83, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L83" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L83" } ], "type": { @@ -9030,13 +9207,13 @@ { "title": "Properties", "children": [ - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641 + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657 ] } ], @@ -9045,12 +9222,12 @@ "fileName": "core/src/introspect/describe.ts", "line": 70, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L70" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L70" } ] }, { - "id": 1642, + "id": 1658, "name": "ObjectOwner", "variant": "declaration", "kind": 256, @@ -9073,7 +9250,7 @@ }, "children": [ { - "id": 1643, + "id": 1659, "name": "onFieldChanged", "variant": "declaration", "kind": 2048, @@ -9081,14 +9258,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 25, + "line": 26, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L26" } ], "signatures": [ { - "id": 1644, + "id": 1660, "name": "onFieldChanged", "variant": "signature", "kind": 4096, @@ -9096,27 +9273,27 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 25, + "line": 26, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L26" } ], "parameters": [ { - "id": 1645, + "id": 1661, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1646, + "id": 1662, "name": "field", "variant": "param", "kind": 32768, @@ -9127,7 +9304,7 @@ } }, { - "id": 1647, + "id": 1663, "name": "previous", "variant": "param", "kind": 32768, @@ -9138,7 +9315,7 @@ } }, { - "id": 1648, + "id": 1664, "name": "next", "variant": "param", "kind": 32768, @@ -9157,7 +9334,7 @@ ] }, { - "id": 1649, + "id": 1665, "name": "onNameChanged", "variant": "declaration", "kind": 2048, @@ -9165,14 +9342,14 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 26, + "line": 27, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L27" } ], "signatures": [ { - "id": 1650, + "id": 1666, "name": "onNameChanged", "variant": "signature", "kind": 4096, @@ -9180,27 +9357,27 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 26, + "line": 27, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L27" } ], "parameters": [ { - "id": 1651, + "id": 1667, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1652, + "id": 1668, "name": "previous", "variant": "param", "kind": 32768, @@ -9211,7 +9388,7 @@ } }, { - "id": 1653, + "id": 1669, "name": "next", "variant": "param", "kind": 32768, @@ -9234,36 +9411,36 @@ { "title": "Methods", "children": [ - 1643, - 1649 + 1659, + 1665 ] } ], "sources": [ { "fileName": "core/src/object.ts", - "line": 24, + "line": 25, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L25" } ], "implementedBy": [ { "type": "reference", - "target": 1349, + "target": 1362, "name": "IdfDocument" } ] }, { - "id": 1654, + "id": 1670, "name": "ObjectWriteOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1655, + "id": 1671, "name": "commentColumn", "variant": "declaration", "kind": 1024, @@ -9271,9 +9448,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 114, + "line": 181, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L114" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L181" } ], "type": { @@ -9282,7 +9459,7 @@ } }, { - "id": 1656, + "id": 1672, "name": "comments", "variant": "declaration", "kind": 1024, @@ -9290,9 +9467,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 113, + "line": 180, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L113" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L180" } ], "type": { @@ -9301,7 +9478,7 @@ } }, { - "id": 1657, + "id": 1673, "name": "compressed", "variant": "declaration", "kind": 1024, @@ -9327,9 +9504,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 117, + "line": 184, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L117" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L184" } ], "type": { @@ -9338,7 +9515,7 @@ } }, { - "id": 1658, + "id": 1674, "name": "indent", "variant": "declaration", "kind": 1024, @@ -9346,9 +9523,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 115, + "line": 182, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L115" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L182" } ], "type": { @@ -9361,31 +9538,31 @@ { "title": "Properties", "children": [ - 1655, - 1656, - 1657, - 1658 + 1671, + 1672, + 1673, + 1674 ] } ], "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 112, + "line": 179, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L112" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L179" } ] }, { - "id": 1659, + "id": 1675, "name": "ParseDiagnostic", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1660, + "id": 1676, "name": "code", "variant": "declaration", "kind": 1024, @@ -9430,7 +9607,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 34, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L34" } ], "type": { @@ -9445,12 +9622,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1620, + "target": 1636, "name": "LexDiagnostic.code" } }, { - "id": 1661, + "id": 1677, "name": "column", "variant": "declaration", "kind": 1024, @@ -9471,7 +9648,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 36, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L36" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L36" } ], "type": { @@ -9480,12 +9657,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1621, + "target": 1637, "name": "LexDiagnostic.column" } }, { - "id": 1662, + "id": 1678, "name": "filepath", "variant": "declaration", "kind": 1024, @@ -9506,7 +9683,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 38, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L38" } ], "type": { @@ -9515,12 +9692,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1622, + "target": 1638, "name": "LexDiagnostic.filepath" } }, { - "id": 1663, + "id": 1679, "name": "line", "variant": "declaration", "kind": 1024, @@ -9532,7 +9709,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 25, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L25" } ], "type": { @@ -9541,12 +9718,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1623, + "target": 1639, "name": "LexDiagnostic.line" } }, { - "id": 1664, + "id": 1680, "name": "message", "variant": "declaration", "kind": 1024, @@ -9558,7 +9735,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L24" } ], "type": { @@ -9567,12 +9744,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1624, + "target": 1640, "name": "LexDiagnostic.message" } }, { - "id": 1665, + "id": 1681, "name": "objectName", "variant": "declaration", "kind": 1024, @@ -9614,9 +9791,9 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 17, + "line": 20, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L17" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L20" } ], "type": { @@ -9625,7 +9802,7 @@ } }, { - "id": 1666, + "id": 1682, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -9654,7 +9831,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 46, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L46" } ], "type": { @@ -9663,7 +9840,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 1625, + "target": 1641, "name": "LexDiagnostic.typeName" } } @@ -9672,42 +9849,42 @@ { "title": "Properties", "children": [ - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666 + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682 ] } ], "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 9, + "line": 12, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L9" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L12" } ], "extendedTypes": [ { "type": "reference", - "target": 1619, + "target": 1635, "name": "LexDiagnostic", "package": "@idfkit/core" } ] }, { - "id": 1667, + "id": 1683, "name": "ParseOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1668, + "id": 1684, "name": "onDiagnostic", "variant": "declaration", "kind": 1024, @@ -9733,36 +9910,36 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 27, + "line": 30, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L30" } ], "type": { "type": "reflection", "declaration": { - "id": 1669, + "id": 1685, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 1670, + "id": 1686, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1671, + "id": 1687, "name": "diagnostic", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1659, + "target": 1675, "name": "ParseDiagnostic", "package": "@idfkit/core" } @@ -9778,7 +9955,71 @@ } }, { - "id": 1672, + "id": 1688, + "name": "preserveFormatting", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retain the source text and the anchoring, so a later " + }, + { + "kind": "code", + "text": "`writeIdf`" + }, + { + "kind": "text", + "text": " can reproduce it.\n\nOff by default, and the option gates every piece of the new work: a caller who does not ask\npays neither the scan nor the retention, and reading costs exactly what it costs today.\n\nWhen it is on, the read makes ONE pass and builds both the objects and the syntax layer from\nit, so the cost is the layer's own budget rather than a second read of the text.\n\nThe retained material hangs off the document, reachable as " + }, + { + "kind": "code", + "text": "`IdfDocument.rawText`" + }, + { + "kind": "text", + "text": ". It is not\nreturned beside the document: " + }, + { + "kind": "code", + "text": "`ParseResult`" + }, + { + "kind": "text", + "text": " carries exactly two keys and a test pins that it\ndoes." + } + ], + "blockTags": [ + { + "tag": "@defaultValue", + "content": [ + { + "kind": "code", + "text": "```ts\nfalse\n```" + } + ] + } + ] + }, + "sources": [ + { + "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" + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1689, "name": "strict", "variant": "declaration", "kind": 1024, @@ -9807,9 +10048,9 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 25, + "line": 28, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L28" } ], "type": { @@ -9822,36 +10063,37 @@ { "title": "Properties", "children": [ - 1668, - 1672 + 1684, + 1688, + 1689 ] } ], "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 20, + "line": 23, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L23" } ], "extendedBy": [ { "type": "reference", - "target": 1905, + "target": 1924, "name": "LoadOptions" } ] }, { - "id": 1673, + "id": 1690, "name": "ParseResult", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1674, + "id": 1691, "name": "diagnostics", "variant": "declaration", "kind": 1024, @@ -9859,23 +10101,23 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 32, + "line": 51, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L51" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 1659, + "target": 1675, "name": "ParseDiagnostic", "package": "@idfkit/core" } } }, { - "id": 1675, + "id": 1692, "name": "document", "variant": "declaration", "kind": 1024, @@ -9883,18 +10125,18 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 31, + "line": 50, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L31" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L50" } ], "type": { "type": "reference", - "target": 1349, + "target": 1362, "typeArguments": [ { "type": "reference", - "target": 1676, + "target": 1693, "name": "M", "package": "@idfkit/core", "qualifiedName": "ParseResult.M", @@ -9910,35 +10152,35 @@ { "title": "Properties", "children": [ - 1674, - 1675 + 1691, + 1692 ] } ], "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 30, + "line": 49, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L30" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L49" } ], "typeParameters": [ { - "id": 1676, + "id": 1693, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1774, + "target": 1793, "name": "UntypedMap", "package": "@idfkit/core" } @@ -9946,7 +10188,7 @@ ] }, { - "id": 1677, + "id": 1694, "name": "RawObject", "variant": "declaration", "kind": 256, @@ -9961,7 +10203,7 @@ }, "children": [ { - "id": 1678, + "id": 1695, "name": "column", "variant": "declaration", "kind": 1024, @@ -9981,7 +10223,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 12, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L12" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L12" } ], "type": { @@ -9990,7 +10232,7 @@ } }, { - "id": 1679, + "id": 1696, "name": "line", "variant": "declaration", "kind": 1024, @@ -10008,7 +10250,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 10, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L10" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L10" } ], "type": { @@ -10017,7 +10259,7 @@ } }, { - "id": 1680, + "id": 1697, "name": "offset", "variant": "declaration", "kind": 1024, @@ -10037,7 +10279,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 20, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L20" } ], "type": { @@ -10046,7 +10288,7 @@ } }, { - "id": 1681, + "id": 1698, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -10072,7 +10314,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 6, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L6" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L6" } ], "type": { @@ -10081,7 +10323,7 @@ } }, { - "id": 1682, + "id": 1699, "name": "values", "variant": "declaration", "kind": 1024, @@ -10099,7 +10341,7 @@ "fileName": "core/src/parse/lexer.ts", "line": 8, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L8" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L8" } ], "type": { @@ -10115,11 +10357,11 @@ { "title": "Properties", "children": [ - 1678, - 1679, - 1680, - 1681, - 1682 + 1695, + 1696, + 1697, + 1698, + 1699 ] } ], @@ -10128,12 +10370,12 @@ "fileName": "core/src/parse/lexer.ts", "line": 4, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L4" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L4" } ] }, { - "id": 1683, + "id": 1700, "name": "ReferenceEdge", "variant": "declaration", "kind": 256, @@ -10148,7 +10390,7 @@ }, "children": [ { - "id": 1684, + "id": 1701, "name": "field", "variant": "declaration", "kind": 1024, @@ -10160,7 +10402,7 @@ "fileName": "core/src/references.ts", "line": 6, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L6" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L6" } ], "type": { @@ -10169,7 +10411,7 @@ } }, { - "id": 1685, + "id": 1702, "name": "from", "variant": "declaration", "kind": 1024, @@ -10181,18 +10423,18 @@ "fileName": "core/src/references.ts", "line": 5, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L5" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L5" } ], "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1686, + "id": 1703, "name": "index", "variant": "declaration", "kind": 1024, @@ -10213,7 +10455,7 @@ "fileName": "core/src/references.ts", "line": 12, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L12" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L12" } ], "type": { @@ -10222,7 +10464,7 @@ } }, { - "id": 1687, + "id": 1704, "name": "target", "variant": "declaration", "kind": 1024, @@ -10234,7 +10476,7 @@ "fileName": "core/src/references.ts", "line": 7, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L7" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L7" } ], "type": { @@ -10247,10 +10489,10 @@ { "title": "Properties", "children": [ - 1684, - 1685, - 1686, - 1687 + 1701, + 1702, + 1703, + 1704 ] } ], @@ -10259,12 +10501,12 @@ "fileName": "core/src/references.ts", "line": 4, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/references.ts#L4" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/references.ts#L4" } ] }, { - "id": 1688, + "id": 1705, "name": "Region", "variant": "declaration", "kind": 256, @@ -10311,7 +10553,7 @@ }, "children": [ { - "id": 1689, + "id": 1706, "name": "end", "variant": "declaration", "kind": 1024, @@ -10331,7 +10573,7 @@ "fileName": "core/src/syntax/region.ts", "line": 20, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/region.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L20" } ], "type": { @@ -10340,7 +10582,7 @@ } }, { - "id": 1690, + "id": 1707, "name": "start", "variant": "declaration", "kind": 1024, @@ -10360,7 +10602,7 @@ "fileName": "core/src/syntax/region.ts", "line": 18, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/region.ts#L18" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L18" } ], "type": { @@ -10373,8 +10615,8 @@ { "title": "Properties", "children": [ - 1689, - 1690 + 1706, + 1707 ] } ], @@ -10383,26 +10625,26 @@ "fileName": "core/src/syntax/region.ts", "line": 16, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/region.ts#L16" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L16" } ], "extendedBy": [ { "type": "reference", - "target": 1733, + "target": 1750, "name": "Token" } ] }, { - "id": 1691, + "id": 1708, "name": "SchemaDelta", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1692, + "id": 1709, "name": "added", "variant": "declaration", "kind": 1024, @@ -10431,7 +10673,7 @@ } }, { - "id": 1693, + "id": 1710, "name": "changed", "variant": "declaration", "kind": 1024, @@ -10460,7 +10702,7 @@ } }, { - "id": 1694, + "id": 1711, "name": "removed", "variant": "declaration", "kind": 1024, @@ -10493,9 +10735,9 @@ { "title": "Properties", "children": [ - 1692, - 1693, - 1694 + 1709, + 1710, + 1711 ] } ], @@ -10508,14 +10750,14 @@ ] }, { - "id": 1695, + "id": 1712, "name": "SlimField", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1696, + "id": 1713, "name": "auto", "variant": "declaration", "kind": 1024, @@ -10559,7 +10801,7 @@ } }, { - "id": 1697, + "id": 1714, "name": "d", "variant": "declaration", "kind": 1024, @@ -10596,7 +10838,7 @@ } }, { - "id": 1698, + "id": 1715, "name": "e", "variant": "declaration", "kind": 1024, @@ -10652,7 +10894,7 @@ } }, { - "id": 1699, + "id": 1716, "name": "eb", "variant": "declaration", "kind": 1024, @@ -10720,7 +10962,7 @@ } }, { - "id": 1700, + "id": 1717, "name": "max", "variant": "declaration", "kind": 1024, @@ -10740,7 +10982,7 @@ } }, { - "id": 1701, + "id": 1718, "name": "min", "variant": "declaration", "kind": 1024, @@ -10760,7 +11002,7 @@ } }, { - "id": 1702, + "id": 1719, "name": "n", "variant": "declaration", "kind": 1024, @@ -10796,7 +11038,7 @@ } }, { - "id": 1703, + "id": 1720, "name": "ol", "variant": "declaration", "kind": 1024, @@ -10827,7 +11069,7 @@ } }, { - "id": 1704, + "id": 1721, "name": "rc", "variant": "declaration", "kind": 1024, @@ -10855,7 +11097,7 @@ } }, { - "id": 1705, + "id": 1722, "name": "ref", "variant": "declaration", "kind": 1024, @@ -10886,7 +11128,7 @@ } }, { - "id": 1706, + "id": 1723, "name": "se", "variant": "declaration", "kind": 1024, @@ -10997,7 +11239,7 @@ } }, { - "id": 1707, + "id": 1724, "name": "t", "variant": "declaration", "kind": 1024, @@ -11019,13 +11261,13 @@ ], "type": { "type": "reference", - "target": 1275, + "target": 1288, "name": "FieldKind", "package": "@idfkit/schemas" } }, { - "id": 1708, + "id": 1725, "name": "u", "variant": "declaration", "kind": 1024, @@ -11053,7 +11295,7 @@ } }, { - "id": 1709, + "id": 1726, "name": "xmax", "variant": "declaration", "kind": 1024, @@ -11098,7 +11340,7 @@ } }, { - "id": 1710, + "id": 1727, "name": "xmin", "variant": "declaration", "kind": 1024, @@ -11171,21 +11413,21 @@ { "title": "Properties", "children": [ - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710 + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727 ] } ], @@ -11198,14 +11440,14 @@ ] }, { - "id": 1711, + "id": 1728, "name": "SlimType", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1712, + "id": 1729, "name": "anon", "variant": "declaration", "kind": 1024, @@ -11249,7 +11491,7 @@ } }, { - "id": 1713, + "id": 1730, "name": "f", "variant": "declaration", "kind": 1024, @@ -11286,7 +11528,7 @@ } }, { - "id": 1714, + "id": 1731, "name": "fo", "variant": "declaration", "kind": 1024, @@ -11341,7 +11583,7 @@ } }, { - "id": 1715, + "id": 1732, "name": "g", "variant": "declaration", "kind": 1024, @@ -11377,7 +11619,7 @@ } }, { - "id": 1716, + "id": 1733, "name": "m", "variant": "declaration", "kind": 1024, @@ -11413,7 +11655,7 @@ } }, { - "id": 1717, + "id": 1734, "name": "nref", "variant": "declaration", "kind": 1024, @@ -11444,7 +11686,7 @@ } }, { - "id": 1718, + "id": 1735, "name": "nreq", "variant": "declaration", "kind": 1024, @@ -11472,7 +11714,7 @@ } }, { - "id": 1719, + "id": 1736, "name": "p", "variant": "declaration", "kind": 1024, @@ -11506,7 +11748,7 @@ }, { "type": "reference", - "target": 1695, + "target": 1712, "name": "SlimField", "package": "@idfkit/schemas" } @@ -11516,7 +11758,7 @@ } }, { - "id": 1720, + "id": 1737, "name": "r", "variant": "declaration", "kind": 1024, @@ -11547,7 +11789,7 @@ } }, { - "id": 1721, + "id": 1738, "name": "s", "variant": "declaration", "kind": 1024, @@ -11599,7 +11841,7 @@ } }, { - "id": 1722, + "id": 1739, "name": "x", "variant": "declaration", "kind": 1024, @@ -11623,7 +11865,7 @@ ], "type": { "type": "reference", - "target": 1243, + "target": 1256, "name": "SlimExtensible", "package": "@idfkit/schemas" } @@ -11633,17 +11875,17 @@ { "title": "Properties", "children": [ - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722 + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739 ] } ], @@ -11656,7 +11898,7 @@ ] }, { - "id": 1723, + "id": 1740, "name": "Statement", "variant": "declaration", "kind": 256, @@ -11671,7 +11913,7 @@ }, "children": [ { - "id": 1724, + "id": 1741, "name": "fields", "variant": "declaration", "kind": 1024, @@ -11699,7 +11941,7 @@ "fileName": "core/src/syntax/layer.ts", "line": 31, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/layer.ts#L31" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L31" } ], "type": { @@ -11709,7 +11951,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1688, + "target": 1705, "name": "Region", "package": "@idfkit/core" } @@ -11717,7 +11959,7 @@ } }, { - "id": 1725, + "id": 1742, "name": "region", "variant": "declaration", "kind": 1024, @@ -11737,18 +11979,18 @@ "fileName": "core/src/syntax/layer.ts", "line": 15, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/layer.ts#L15" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L15" } ], "type": { "type": "reference", - "target": 1688, + "target": 1705, "name": "Region", "package": "@idfkit/core" } }, { - "id": 1726, + "id": 1743, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -11768,18 +12010,18 @@ "fileName": "core/src/syntax/layer.ts", "line": 17, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/layer.ts#L17" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L17" } ], "type": { "type": "reference", - "target": 1688, + "target": 1705, "name": "Region", "package": "@idfkit/core" } }, { - "id": 1727, + "id": 1744, "name": "typeNameText", "variant": "declaration", "kind": 1024, @@ -11799,7 +12041,7 @@ "fileName": "core/src/syntax/layer.ts", "line": 19, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/layer.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L19" } ], "type": { @@ -11808,7 +12050,7 @@ } }, { - "id": 1728, + "id": 1745, "name": "unterminated", "variant": "declaration", "kind": 1024, @@ -11828,7 +12070,7 @@ "fileName": "core/src/syntax/layer.ts", "line": 33, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/layer.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L33" } ], "type": { @@ -11841,11 +12083,11 @@ { "title": "Properties", "children": [ - 1724, - 1725, - 1726, - 1727, - 1728 + 1741, + 1742, + 1743, + 1744, + 1745 ] } ], @@ -11854,12 +12096,12 @@ "fileName": "core/src/syntax/layer.ts", "line": 13, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/layer.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L13" } ] }, { - "id": 1729, + "id": 1746, "name": "SyntaxLayer", "variant": "declaration", "kind": 256, @@ -11874,7 +12116,7 @@ "kind": "inline-tag", "tag": "@link", "text": "classify", - "target": 1784 + "target": 1803 }, { "kind": "text", @@ -11908,7 +12150,7 @@ }, "children": [ { - "id": 1730, + "id": 1747, "name": "statements", "variant": "declaration", "kind": 1024, @@ -11928,7 +12170,7 @@ "fileName": "core/src/syntax/layer.ts", "line": 52, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/layer.ts#L52" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L52" } ], "type": { @@ -11938,7 +12180,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1723, + "target": 1740, "name": "Statement", "package": "@idfkit/core" } @@ -11946,7 +12188,7 @@ } }, { - "id": 1731, + "id": 1748, "name": "text", "variant": "declaration", "kind": 1024, @@ -11966,7 +12208,7 @@ "fileName": "core/src/syntax/layer.ts", "line": 50, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/layer.ts#L50" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L50" } ], "type": { @@ -11975,7 +12217,7 @@ } }, { - "id": 1732, + "id": 1749, "name": "tokens", "variant": "declaration", "kind": 1024, @@ -11995,7 +12237,7 @@ "fileName": "core/src/syntax/layer.ts", "line": 54, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/layer.ts#L54" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L54" } ], "type": { @@ -12014,9 +12256,9 @@ { "title": "Properties", "children": [ - 1730, - 1731, - 1732 + 1747, + 1748, + 1749 ] } ], @@ -12025,12 +12267,12 @@ "fileName": "core/src/syntax/layer.ts", "line": 48, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/layer.ts#L48" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L48" } ] }, { - "id": 1733, + "id": 1750, "name": "Token", "variant": "declaration", "kind": 256, @@ -12069,7 +12311,7 @@ }, "children": [ { - "id": 1734, + "id": 1751, "name": "end", "variant": "declaration", "kind": 1024, @@ -12090,7 +12332,7 @@ "fileName": "core/src/syntax/region.ts", "line": 20, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/region.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L20" } ], "type": { @@ -12099,12 +12341,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1689, + "target": 1706, "name": "Region.end" } }, { - "id": 1735, + "id": 1752, "name": "kind", "variant": "declaration", "kind": 1024, @@ -12116,18 +12358,18 @@ "fileName": "core/src/syntax/tokens.ts", "line": 27, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/tokens.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/tokens.ts#L27" } ], "type": { "type": "reference", - "target": 1770, + "target": 1789, "name": "TokenKind", "package": "@idfkit/core" } }, { - "id": 1736, + "id": 1753, "name": "start", "variant": "declaration", "kind": 1024, @@ -12148,7 +12390,7 @@ "fileName": "core/src/syntax/region.ts", "line": 18, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/region.ts#L18" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L18" } ], "type": { @@ -12157,7 +12399,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 1690, + "target": 1707, "name": "Region.start" } } @@ -12166,9 +12408,9 @@ { "title": "Properties", "children": [ - 1734, - 1735, - 1736 + 1751, + 1752, + 1753 ] } ], @@ -12177,20 +12419,20 @@ "fileName": "core/src/syntax/tokens.ts", "line": 26, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/tokens.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/tokens.ts#L26" } ], "extendedTypes": [ { "type": "reference", - "target": 1688, + "target": 1705, "name": "Region", "package": "@idfkit/core" } ] }, { - "id": 1737, + "id": 1754, "name": "ValidationError", "variant": "declaration", "kind": 256, @@ -12261,7 +12503,7 @@ }, "children": [ { - "id": 1738, + "id": 1755, "name": "code", "variant": "declaration", "kind": 1024, @@ -12281,7 +12523,7 @@ "fileName": "core/src/validate/types.ts", "line": 49, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L49" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L49" } ], "type": { @@ -12290,7 +12532,7 @@ } }, { - "id": 1739, + "id": 1756, "name": "field", "variant": "declaration", "kind": 1024, @@ -12318,7 +12560,7 @@ "fileName": "core/src/validate/types.ts", "line": 45, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L45" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L45" } ], "type": { @@ -12336,7 +12578,7 @@ } }, { - "id": 1740, + "id": 1757, "name": "message", "variant": "declaration", "kind": 1024, @@ -12356,7 +12598,7 @@ "fileName": "core/src/validate/types.ts", "line": 47, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L47" } ], "type": { @@ -12365,7 +12607,7 @@ } }, { - "id": 1741, + "id": 1758, "name": "objName", "variant": "declaration", "kind": 1024, @@ -12385,7 +12627,7 @@ "fileName": "core/src/validate/types.ts", "line": 43, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L43" } ], "type": { @@ -12394,7 +12636,7 @@ } }, { - "id": 1742, + "id": 1759, "name": "objType", "variant": "declaration", "kind": 1024, @@ -12414,7 +12656,7 @@ "fileName": "core/src/validate/types.ts", "line": 41, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L41" } ], "type": { @@ -12423,7 +12665,7 @@ } }, { - "id": 1743, + "id": 1760, "name": "severity", "variant": "declaration", "kind": 1024, @@ -12443,12 +12685,12 @@ "fileName": "core/src/validate/types.ts", "line": 39, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L39" } ], "type": { "type": "reference", - "target": 1768, + "target": 1787, "name": "Severity", "package": "@idfkit/core" } @@ -12458,12 +12700,12 @@ { "title": "Properties", "children": [ - 1738, - 1739, - 1740, - 1741, - 1742, - 1743 + 1755, + 1756, + 1757, + 1758, + 1759, + 1760 ] } ], @@ -12472,12 +12714,12 @@ "fileName": "core/src/validate/types.ts", "line": 37, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L37" } ] }, { - "id": 1744, + "id": 1761, "name": "ValidationResult", "variant": "declaration", "kind": 256, @@ -12508,7 +12750,7 @@ }, "children": [ { - "id": 1745, + "id": 1762, "name": "errors", "variant": "declaration", "kind": 1024, @@ -12520,7 +12762,7 @@ "fileName": "core/src/validate/types.ts", "line": 59, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L59" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L59" } ], "type": { @@ -12530,7 +12772,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1737, + "target": 1754, "name": "ValidationError", "package": "@idfkit/core" } @@ -12538,7 +12780,7 @@ } }, { - "id": 1746, + "id": 1763, "name": "info", "variant": "declaration", "kind": 1024, @@ -12550,7 +12792,7 @@ "fileName": "core/src/validate/types.ts", "line": 61, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L61" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L61" } ], "type": { @@ -12560,7 +12802,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1737, + "target": 1754, "name": "ValidationError", "package": "@idfkit/core" } @@ -12568,7 +12810,7 @@ } }, { - "id": 1747, + "id": 1764, "name": "isValid", "variant": "declaration", "kind": 1024, @@ -12596,7 +12838,7 @@ "fileName": "core/src/validate/types.ts", "line": 63, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L63" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L63" } ], "type": { @@ -12605,7 +12847,7 @@ } }, { - "id": 1748, + "id": 1765, "name": "totalIssues", "variant": "declaration", "kind": 1024, @@ -12629,7 +12871,7 @@ "fileName": "core/src/validate/types.ts", "line": 65, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L65" } ], "type": { @@ -12638,7 +12880,7 @@ } }, { - "id": 1749, + "id": 1766, "name": "warnings", "variant": "declaration", "kind": 1024, @@ -12650,7 +12892,7 @@ "fileName": "core/src/validate/types.ts", "line": 60, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L60" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L60" } ], "type": { @@ -12660,7 +12902,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1737, + "target": 1754, "name": "ValidationError", "package": "@idfkit/core" } @@ -12672,11 +12914,11 @@ { "title": "Properties", "children": [ - 1745, - 1746, - 1747, - 1748, - 1749 + 1762, + 1763, + 1764, + 1765, + 1766 ] } ], @@ -12685,19 +12927,19 @@ "fileName": "core/src/validate/types.ts", "line": 58, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L58" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L58" } ] }, { - "id": 1750, + "id": 1767, "name": "WriteEpJsonOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1751, + "id": 1768, "name": "indent", "variant": "declaration", "kind": 1024, @@ -12734,43 +12976,100 @@ "sources": [ { "fileName": "core/src/write/epjson.ts", - "line": 10, + "line": 11, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/epjson.ts#L10" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/epjson.ts#L11" } ], "type": { "type": "intrinsic", "name": "number" } + }, + { + "id": 1769, + "name": "preserveFormatting", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Reproduce the text the document was read from, on this format's own terms.\n\n**All or nothing, which is not what the text format does.** The object notation has no\nstatements, so there is nothing to anchor an object's own characters to and no way to\nreproduce one object while reformatting another. The retained text is therefore reproduced\nonly while nothing has been touched, nothing added and nothing removed, and any change at all\nfalls the whole document back to the ordinary writer.\n\nBoth languages preserve this format on these terms. The difference is a property of the\nformat, not of either library, and it is stated here because a reader who knows the text\nformat's per-object terms would otherwise assume them.\n\nTri-state as it is on the text writer: absent decides, " + }, + { + "kind": "code", + "text": "`true`" + }, + { + "kind": "text", + "text": " preserves and is a quiet\nfallback when there is nothing to preserve, " + }, + { + "kind": "code", + "text": "`false`" + }, + { + "kind": "text", + "text": " formats." + } + ], + "blockTags": [ + { + "tag": "@defaultValue", + "content": [ + { + "kind": "code", + "text": "```ts\nundefined, meaning decide\n```" + } + ] + } + ] + }, + "sources": [ + { + "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" + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } } ], "groups": [ { "title": "Properties", "children": [ - 1751 + 1768, + 1769 ] } ], "sources": [ { "fileName": "core/src/write/epjson.ts", - "line": 5, + "line": 6, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/epjson.ts#L5" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/epjson.ts#L6" } ] }, { - "id": 1752, + "id": 1770, "name": "WriteIdfOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1753, + "id": 1771, "name": "commentColumn", "variant": "declaration", "kind": 1024, @@ -12799,9 +13098,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 17, + "line": 19, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L17" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L19" } ], "type": { @@ -12810,7 +13109,7 @@ } }, { - "id": 1754, + "id": 1772, "name": "comments", "variant": "declaration", "kind": 1024, @@ -12847,9 +13146,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 12, + "line": 14, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L12" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L14" } ], "type": { @@ -12858,7 +13157,7 @@ } }, { - "id": 1755, + "id": 1773, "name": "compressed", "variant": "declaration", "kind": 1024, @@ -12903,9 +13202,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 59, + "line": 61, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L59" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L61" } ], "type": { @@ -12914,7 +13213,7 @@ } }, { - "id": 1756, + "id": 1774, "name": "indent", "variant": "declaration", "kind": 1024, @@ -12943,9 +13242,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 22, + "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L24" } ], "type": { @@ -12954,7 +13253,7 @@ } }, { - "id": 1757, + "id": 1775, "name": "ordering", "variant": "declaration", "kind": 1024, @@ -13023,9 +13322,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 45, + "line": 47, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L45" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L47" } ], "type": { @@ -13043,7 +13342,111 @@ } }, { - "id": 1758, + "id": 1776, + "name": "preserveFormatting", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Reproduce the text the document was read from, per object.\n\nTri-state: absent decides from the document and the other options, " + }, + { + "kind": "code", + "text": "`true`" + }, + { + "kind": "text", + "text": " preserves and\nrefuses a contradictory request, " + }, + { + "kind": "code", + "text": "`false`" + }, + { + "kind": "text", + "text": " formats. Asking for it on a document read without it\nis not an error, because nothing was promised.\n\nRefused together with " + }, + { + "kind": "code", + "text": "`indent`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`commentColumn`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`ordering`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`versionFirst`" + }, + { + "kind": "text", + "text": ": reproducing the\noriginal text and laying it out differently are contradictory. Not refused with " + }, + { + "kind": "code", + "text": "`compressed`" + }, + { + "kind": "text", + "text": "\nor " + }, + { + "kind": "code", + "text": "`comments: false`" + }, + { + "kind": "text", + "text": ", which ask for a different output FORM the source was never going to\nexpress, so producing it is honest." + } + ], + "blockTags": [ + { + "tag": "@defaultValue", + "content": [ + { + "kind": "code", + "text": "```ts\nundefined, meaning decide\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "core/src/write/idf.ts", + "line": 76, + "character": 2, + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1777, "name": "versionFirst", "variant": "declaration", "kind": 1024, @@ -13080,9 +13483,9 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 29, + "line": 31, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L29" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L31" } ], "type": { @@ -13095,26 +13498,27 @@ { "title": "Properties", "children": [ - 1753, - 1754, - 1755, - 1756, - 1757, - 1758 + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777 ] } ], "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 7, + "line": 9, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L7" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L9" } ] }, { - "id": 1759, + "id": 1778, "name": "AnyTypeMap", "variant": "declaration", "kind": 2097152, @@ -13132,7 +13536,7 @@ "fileName": "core/src/typemap.ts", "line": 23, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/typemap.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/typemap.ts#L23" } ], "type": { @@ -13157,7 +13561,7 @@ } }, { - "id": 1760, + "id": 1779, "name": "EpJson", "variant": "declaration", "kind": 2097152, @@ -13173,9 +13577,9 @@ "sources": [ { "fileName": "core/src/parse/epjson.ts", - "line": 10, + "line": 12, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/epjson.ts#L10" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/epjson.ts#L12" } ], "type": { @@ -13232,7 +13636,7 @@ } }, { - "id": 1761, + "id": 1780, "name": "ExtensibleGroup", "variant": "declaration", "kind": 2097152, @@ -13248,9 +13652,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 10, + "line": 11, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L10" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L11" } ], "type": { @@ -13284,7 +13688,7 @@ } }, { - "id": 1762, + "id": 1781, "name": "FieldValue", "variant": "declaration", "kind": 2097152, @@ -13308,9 +13712,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 7, + "line": 8, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L7" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L8" } ], "type": { @@ -13332,7 +13736,7 @@ } }, { - "id": 1763, + "id": 1782, "name": "FieldValues", "variant": "declaration", "kind": 2097152, @@ -13348,9 +13752,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 16, + "line": 17, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L16" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L17" } ], "type": { @@ -13370,7 +13774,7 @@ "types": [ { "type": "reference", - "target": 1769, + "target": 1788, "name": "StoredValue", "package": "@idfkit/core" }, @@ -13390,7 +13794,7 @@ } }, { - "id": 1764, + "id": 1783, "name": "ObjectOf", "variant": "declaration", "kind": 2097152, @@ -13408,25 +13812,25 @@ "fileName": "core/src/typemap.ts", "line": 38, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/typemap.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/typemap.ts#L38" } ], "typeParameters": [ { - "id": 1765, + "id": 1784, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" } }, { - "id": 1766, + "id": 1785, "name": "K", "variant": "typeParam", "kind": 131072, @@ -13441,7 +13845,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 1766, + "target": 1785, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -13451,7 +13855,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1765, + "target": 1784, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -13461,14 +13865,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 1766, + "target": 1785, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 1765, + "target": 1784, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -13476,14 +13880,14 @@ }, "falseType": { "type": "reference", - "target": 1774, + "target": 1793, "name": "UntypedMap", "package": "@idfkit/core" } } }, { - "id": 1767, + "id": 1786, "name": "ProsePool", "variant": "declaration", "kind": 2097152, @@ -13556,7 +13960,7 @@ } }, { - "id": 1768, + "id": 1787, "name": "Severity", "variant": "declaration", "kind": 2097152, @@ -13590,13 +13994,13 @@ "fileName": "core/src/validate/types.ts", "line": 21, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L27" } ], "type": { @@ -13608,7 +14012,7 @@ "type": "query", "queryType": { "type": "reference", - "target": 1779, + "target": 1798, "name": "Severity", "package": "@idfkit/core" } @@ -13618,7 +14022,7 @@ "type": "query", "queryType": { "type": "reference", - "target": 1779, + "target": 1798, "name": "Severity", "package": "@idfkit/core" } @@ -13626,7 +14030,7 @@ } }, { - "id": 1769, + "id": 1788, "name": "StoredValue", "variant": "declaration", "kind": 2097152, @@ -13642,9 +14046,9 @@ "sources": [ { "fileName": "core/src/object.ts", - "line": 13, + "line": 14, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/object.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/object.ts#L14" } ], "type": { @@ -13662,7 +14066,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1761, + "target": 1780, "name": "ExtensibleGroup", "package": "@idfkit/core" } @@ -13671,7 +14075,7 @@ } }, { - "id": 1770, + "id": 1789, "name": "TokenKind", "variant": "declaration", "kind": 2097152, @@ -13697,7 +14101,7 @@ "fileName": "core/src/syntax/tokens.ts", "line": 7, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/tokens.ts#L7" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/tokens.ts#L7" } ], "type": { @@ -13731,7 +14135,7 @@ } }, { - "id": 1771, + "id": 1790, "name": "TypeNameOf", "variant": "declaration", "kind": 2097152, @@ -13765,19 +14169,19 @@ "fileName": "core/src/typemap.ts", "line": 35, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/typemap.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/typemap.ts#L35" } ], "typeParameters": [ { - "id": 1772, + "id": 1791, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" } @@ -13794,7 +14198,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1772, + "target": 1791, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -13816,7 +14220,7 @@ { "type": "reflection", "declaration": { - "id": 1773, + "id": 1792, "name": "__type", "variant": "declaration", "kind": 65536, @@ -13829,7 +14233,7 @@ } }, { - "id": 1774, + "id": 1793, "name": "UntypedMap", "variant": "declaration", "kind": 2097152, @@ -13847,7 +14251,7 @@ "fileName": "core/src/typemap.ts", "line": 26, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/typemap.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/typemap.ts#L26" } ], "type": { @@ -13872,7 +14276,7 @@ } }, { - "id": 1775, + "id": 1794, "name": "ValuesOf", "variant": "declaration", "kind": 2097152, @@ -13906,25 +14310,25 @@ "fileName": "core/src/typemap.ts", "line": 52, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/typemap.ts#L52" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/typemap.ts#L52" } ], "typeParameters": [ { - "id": 1776, + "id": 1795, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" } }, { - "id": 1777, + "id": 1796, "name": "K", "variant": "typeParam", "kind": 131072, @@ -13939,7 +14343,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 1777, + "target": 1796, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true @@ -13949,7 +14353,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1776, + "target": 1795, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -13967,14 +14371,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 1777, + "target": 1796, "name": "K", "package": "@idfkit/core", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 1776, + "target": 1795, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -13986,14 +14390,14 @@ }, "falseType": { "type": "reference", - "target": 1763, + "target": 1782, "name": "FieldValues", "package": "@idfkit/core" } } }, { - "id": 1778, + "id": 1797, "name": "CONFORMANCE_LEVEL", "variant": "declaration", "kind": 32, @@ -14013,17 +14417,17 @@ "fileName": "core/src/conformance.ts", "line": 20, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/conformance.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/conformance.ts#L20" } ], "type": { "type": "literal", - "value": "conformance-2026.8" + "value": "conformance-2026.10" }, - "defaultValue": "'conformance-2026.8'" + "defaultValue": "'conformance-2026.10'" }, { - "id": 1779, + "id": 1798, "name": "Severity", "variant": "declaration", "kind": 32, @@ -14059,13 +14463,13 @@ "fileName": "core/src/validate/types.ts", "line": 21, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/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/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L27" } ], "type": { @@ -14079,14 +14483,14 @@ { "type": "reflection", "declaration": { - "id": 1780, + "id": 1799, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1781, + "id": 1800, "name": "ERROR", "variant": "declaration", "kind": 1024, @@ -14098,7 +14502,7 @@ "fileName": "core/src/validate/types.ts", "line": 22, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L22" } ], "type": { @@ -14108,7 +14512,7 @@ "defaultValue": "'error'" }, { - "id": 1782, + "id": 1801, "name": "INFO", "variant": "declaration", "kind": 1024, @@ -14120,7 +14524,7 @@ "fileName": "core/src/validate/types.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L24" } ], "type": { @@ -14130,7 +14534,7 @@ "defaultValue": "'info'" }, { - "id": 1783, + "id": 1802, "name": "WARNING", "variant": "declaration", "kind": 1024, @@ -14142,7 +14546,7 @@ "fileName": "core/src/validate/types.ts", "line": 23, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/types.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/types.ts#L23" } ], "type": { @@ -14156,9 +14560,9 @@ { "title": "Properties", "children": [ - 1781, - 1782, - 1783 + 1800, + 1801, + 1802 ] } ] @@ -14171,7 +14575,7 @@ "defaultValue": "..." }, { - "id": 1784, + "id": 1803, "name": "classify", "variant": "declaration", "kind": 64, @@ -14181,12 +14585,12 @@ "fileName": "core/src/syntax/classify.ts", "line": 26, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/classify.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/classify.ts#L26" } ], "signatures": [ { - "id": 1785, + "id": 1804, "name": "classify", "variant": "signature", "kind": 4096, @@ -14228,19 +14632,19 @@ "fileName": "core/src/syntax/classify.ts", "line": 26, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/classify.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/classify.ts#L26" } ], "parameters": [ { - "id": 1786, + "id": 1805, "name": "layer", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1729, + "target": 1746, "name": "SyntaxLayer", "package": "@idfkit/core" } @@ -14256,7 +14660,7 @@ "typeArguments": [ { "type": "reference", - "target": 1733, + "target": 1750, "name": "Token", "package": "@idfkit/core" } @@ -14268,7 +14672,7 @@ ] }, { - "id": 1787, + "id": 1806, "name": "compareVersions", "variant": "declaration", "kind": 64, @@ -14278,12 +14682,12 @@ "fileName": "core/src/versions.ts", "line": 8, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/versions.ts#L8" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/versions.ts#L8" } ], "signatures": [ { - "id": 1788, + "id": 1807, "name": "compareVersions", "variant": "signature", "kind": 4096, @@ -14301,12 +14705,12 @@ "fileName": "core/src/versions.ts", "line": 8, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/versions.ts#L8" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/versions.ts#L8" } ], "parameters": [ { - "id": 1789, + "id": 1808, "name": "a", "variant": "param", "kind": 32768, @@ -14317,7 +14721,7 @@ } }, { - "id": 1790, + "id": 1809, "name": "b", "variant": "param", "kind": 32768, @@ -14336,7 +14740,7 @@ ] }, { - "id": 1791, + "id": 1810, "name": "describeObjectType", "variant": "declaration", "kind": 64, @@ -14346,12 +14750,12 @@ "fileName": "core/src/introspect/describe.ts", "line": 108, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L108" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L108" } ], "signatures": [ { - "id": 1792, + "id": 1811, "name": "describeObjectType", "variant": "signature", "kind": 4096, @@ -14420,25 +14824,25 @@ "fileName": "core/src/introspect/describe.ts", "line": 108, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/introspect/describe.ts#L108" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/introspect/describe.ts#L108" } ], "parameters": [ { - "id": 1793, + "id": 1812, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1550, + "target": 1566, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1794, + "id": 1813, "name": "objType", "variant": "param", "kind": 32768, @@ -14449,7 +14853,7 @@ } }, { - "id": 1795, + "id": 1814, "name": "prose", "variant": "param", "kind": 32768, @@ -14458,7 +14862,7 @@ }, "type": { "type": "reference", - "target": 1767, + "target": 1786, "name": "ProsePool", "package": "@idfkit/schemas" } @@ -14466,7 +14870,7 @@ ], "type": { "type": "reference", - "target": 1634, + "target": 1650, "name": "ObjectDescription", "package": "@idfkit/core" } @@ -14474,7 +14878,7 @@ ] }, { - "id": 1796, + "id": 1815, "name": "docsUrlForObject", "variant": "declaration", "kind": 64, @@ -14484,12 +14888,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 234, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L234" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L234" } ], "signatures": [ { - "id": 1797, + "id": 1816, "name": "docsUrlForObject", "variant": "signature", "kind": 4096, @@ -14504,7 +14908,7 @@ "kind": "inline-tag", "tag": "@link", "text": "ioReferenceUrl", - "target": 1819 + "target": 1838 }, { "kind": "text", @@ -14517,12 +14921,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 234, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L234" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L234" } ], "parameters": [ { - "id": 1798, + "id": 1817, "name": "objType", "variant": "param", "kind": 32768, @@ -14533,7 +14937,7 @@ } }, { - "id": 1799, + "id": 1818, "name": "version", "variant": "param", "kind": 32768, @@ -14544,7 +14948,7 @@ } }, { - "id": 1800, + "id": 1819, "name": "schema", "variant": "param", "kind": 32768, @@ -14553,13 +14957,13 @@ }, "type": { "type": "reference", - "target": 1550, + "target": 1566, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1801, + "id": 1820, "name": "options", "variant": "param", "kind": 32768, @@ -14569,14 +14973,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1802, + "id": 1821, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1803, + "id": 1822, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -14588,7 +14992,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 238, "character": 14, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L238" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L238" } ], "type": { @@ -14601,7 +15005,7 @@ { "title": "Properties", "children": [ - 1803 + 1822 ] } ] @@ -14614,7 +15018,7 @@ "types": [ { "type": "reference", - "target": 1600, + "target": 1616, "name": "DocsUrl", "package": "@idfkit/core" }, @@ -14628,7 +15032,7 @@ ] }, { - "id": 1804, + "id": 1823, "name": "engineeringReferenceUrl", "variant": "declaration", "kind": 64, @@ -14638,12 +15042,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 191, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L191" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L191" } ], "signatures": [ { - "id": 1805, + "id": 1824, "name": "engineeringReferenceUrl", "variant": "signature", "kind": 4096, @@ -14661,12 +15065,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 191, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L191" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L191" } ], "parameters": [ { - "id": 1806, + "id": 1825, "name": "version", "variant": "param", "kind": 32768, @@ -14677,7 +15081,7 @@ } }, { - "id": 1807, + "id": 1826, "name": "options", "variant": "param", "kind": 32768, @@ -14687,14 +15091,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1808, + "id": 1827, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1809, + "id": 1828, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -14706,7 +15110,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 193, "character": 14, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L193" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L193" } ], "type": { @@ -14719,7 +15123,7 @@ { "title": "Properties", "children": [ - 1809 + 1828 ] } ] @@ -14732,7 +15136,7 @@ "types": [ { "type": "reference", - "target": 1600, + "target": 1616, "name": "DocsUrl", "package": "@idfkit/core" }, @@ -14746,7 +15150,7 @@ ] }, { - "id": 1810, + "id": 1829, "name": "getEpJsonVersion", "variant": "declaration", "kind": 64, @@ -14754,14 +15158,14 @@ "sources": [ { "fileName": "core/src/parse/epjson.ts", - "line": 87, + "line": 110, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/epjson.ts#L87" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/epjson.ts#L110" } ], "signatures": [ { - "id": 1811, + "id": 1830, "name": "getEpJsonVersion", "variant": "signature", "kind": 4096, @@ -14777,14 +15181,14 @@ "sources": [ { "fileName": "core/src/parse/epjson.ts", - "line": 87, + "line": 110, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/epjson.ts#L87" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/epjson.ts#L110" } ], "parameters": [ { - "id": 1812, + "id": 1831, "name": "source", "variant": "param", "kind": 32768, @@ -14798,7 +15202,7 @@ }, { "type": "reference", - "target": 1760, + "target": 1779, "name": "EpJson", "package": "@idfkit/core" } @@ -14823,7 +15227,7 @@ ] }, { - "id": 1813, + "id": 1832, "name": "getIdfVersion", "variant": "declaration", "kind": 64, @@ -14831,14 +15235,14 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 367, + "line": 459, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L367" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L459" } ], "signatures": [ { - "id": 1814, + "id": 1833, "name": "getIdfVersion", "variant": "signature", "kind": 4096, @@ -14854,14 +15258,14 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 367, + "line": 459, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L367" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L459" } ], "parameters": [ { - "id": 1815, + "id": 1834, "name": "text", "variant": "param", "kind": 32768, @@ -14889,7 +15293,7 @@ ] }, { - "id": 1816, + "id": 1835, "name": "httpSource", "variant": "declaration", "kind": 64, @@ -14903,7 +15307,7 @@ ], "signatures": [ { - "id": 1817, + "id": 1836, "name": "httpSource", "variant": "signature", "kind": 4096, @@ -14989,7 +15393,7 @@ ], "parameters": [ { - "id": 1818, + "id": 1837, "name": "baseUrl", "variant": "param", "kind": 32768, @@ -15002,7 +15406,7 @@ ], "type": { "type": "reference", - "target": 1596, + "target": 1612, "name": "BundleSource", "package": "@idfkit/schemas" } @@ -15010,7 +15414,7 @@ ] }, { - "id": 1819, + "id": 1838, "name": "ioReferenceUrl", "variant": "declaration", "kind": 64, @@ -15020,12 +15424,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 160, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L160" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L160" } ], "signatures": [ { - "id": 1820, + "id": 1839, "name": "ioReferenceUrl", "variant": "signature", "kind": 4096, @@ -15059,12 +15463,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 160, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L160" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L160" } ], "parameters": [ { - "id": 1821, + "id": 1840, "name": "objType", "variant": "param", "kind": 32768, @@ -15091,7 +15495,7 @@ } }, { - "id": 1822, + "id": 1841, "name": "version", "variant": "param", "kind": 32768, @@ -15118,7 +15522,7 @@ } }, { - "id": 1823, + "id": 1842, "name": "schema", "variant": "param", "kind": 32768, @@ -15135,13 +15539,13 @@ }, "type": { "type": "reference", - "target": 1550, + "target": 1566, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1824, + "id": 1843, "name": "options", "variant": "param", "kind": 32768, @@ -15163,14 +15567,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1825, + "id": 1844, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1826, + "id": 1845, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -15182,7 +15586,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 164, "character": 14, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L164" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L164" } ], "type": { @@ -15195,7 +15599,7 @@ { "title": "Properties", "children": [ - 1826 + 1845 ] } ] @@ -15208,7 +15612,7 @@ "types": [ { "type": "reference", - "target": 1600, + "target": 1616, "name": "DocsUrl", "package": "@idfkit/core" }, @@ -15222,7 +15626,7 @@ ] }, { - "id": 1827, + "id": 1846, "name": "lex", "variant": "declaration", "kind": 64, @@ -15232,12 +15636,12 @@ "fileName": "core/src/parse/lexer.ts", "line": 79, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L79" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L79" } ], "signatures": [ { - "id": 1828, + "id": 1847, "name": "lex", "variant": "signature", "kind": 4096, @@ -15271,12 +15675,12 @@ "fileName": "core/src/parse/lexer.ts", "line": 79, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/lexer.ts#L79" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/lexer.ts#L79" } ], "parameters": [ { - "id": 1829, + "id": 1848, "name": "text", "variant": "param", "kind": 32768, @@ -15287,14 +15691,14 @@ } }, { - "id": 1830, + "id": 1849, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1626, + "target": 1642, "name": "LexOptions", "package": "@idfkit/core" }, @@ -15305,7 +15709,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1677, + "target": 1694, "name": "RawObject", "package": "@idfkit/core" } @@ -15314,7 +15718,7 @@ ] }, { - "id": 1831, + "id": 1850, "name": "lineColumnAt", "variant": "declaration", "kind": 64, @@ -15324,12 +15728,12 @@ "fileName": "core/src/syntax/region.ts", "line": 95, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/region.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L95" } ], "signatures": [ { - "id": 1832, + "id": 1851, "name": "lineColumnAt", "variant": "signature", "kind": 4096, @@ -15355,12 +15759,12 @@ "fileName": "core/src/syntax/region.ts", "line": 95, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/region.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L95" } ], "parameters": [ { - "id": 1833, + "id": 1852, "name": "source", "variant": "param", "kind": 32768, @@ -15377,7 +15781,7 @@ } }, { - "id": 1834, + "id": 1853, "name": "offset", "variant": "param", "kind": 32768, @@ -15390,7 +15794,7 @@ ], "type": { "type": "reference", - "target": 1631, + "target": 1647, "name": "LineColumn", "package": "@idfkit/core" } @@ -15398,7 +15802,7 @@ ] }, { - "id": 1835, + "id": 1854, "name": "offsetAt", "variant": "declaration", "kind": 64, @@ -15408,12 +15812,12 @@ "fileName": "core/src/syntax/region.ts", "line": 111, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/region.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L111" } ], "signatures": [ { - "id": 1836, + "id": 1855, "name": "offsetAt", "variant": "signature", "kind": 4096, @@ -15428,7 +15832,7 @@ "kind": "inline-tag", "tag": "@link", "text": "lineColumnAt", - "target": 1831 + "target": 1850 }, { "kind": "text", @@ -15441,12 +15845,12 @@ "fileName": "core/src/syntax/region.ts", "line": 111, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/region.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/region.ts#L111" } ], "parameters": [ { - "id": 1837, + "id": 1856, "name": "source", "variant": "param", "kind": 32768, @@ -15463,14 +15867,14 @@ } }, { - "id": 1838, + "id": 1857, "name": "position", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1631, + "target": 1647, "name": "LineColumn", "package": "@idfkit/core" } @@ -15484,7 +15888,7 @@ ] }, { - "id": 1839, + "id": 1858, "name": "parseEpJson", "variant": "declaration", "kind": 64, @@ -15492,14 +15896,14 @@ "sources": [ { "fileName": "core/src/parse/epjson.ts", - "line": 19, + "line": 21, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/epjson.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/epjson.ts#L21" } ], "signatures": [ { - "id": 1840, + "id": 1859, "name": "parseEpJson", "variant": "signature", "kind": 4096, @@ -15515,27 +15919,27 @@ "sources": [ { "fileName": "core/src/parse/epjson.ts", - "line": 19, + "line": 21, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/epjson.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/epjson.ts#L21" } ], "typeParameters": [ { - "id": 1841, + "id": 1860, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1774, + "target": 1793, "name": "UntypedMap", "package": "@idfkit/core" } @@ -15543,7 +15947,7 @@ ], "parameters": [ { - "id": 1842, + "id": 1861, "name": "source", "variant": "param", "kind": 32768, @@ -15557,7 +15961,7 @@ }, { "type": "reference", - "target": 1760, + "target": 1779, "name": "EpJson", "package": "@idfkit/core" } @@ -15565,27 +15969,27 @@ } }, { - "id": 1843, + "id": 1862, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1550, + "target": 1566, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1844, + "id": 1863, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1667, + "target": 1683, "name": "ParseOptions", "package": "@idfkit/core" }, @@ -15594,11 +15998,11 @@ ], "type": { "type": "reference", - "target": 1673, + "target": 1690, "typeArguments": [ { "type": "reference", - "target": 1841, + "target": 1860, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -15611,7 +16015,7 @@ ] }, { - "id": 1845, + "id": 1864, "name": "parseIdf", "variant": "declaration", "kind": 64, @@ -15619,14 +16023,14 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 43, + "line": 62, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L62" } ], "signatures": [ { - "id": 1846, + "id": 1865, "name": "parseIdf", "variant": "signature", "kind": 4096, @@ -15650,27 +16054,27 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 43, + "line": 62, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L62" } ], "typeParameters": [ { - "id": 1847, + "id": 1866, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1774, + "target": 1793, "name": "UntypedMap", "package": "@idfkit/core" } @@ -15678,7 +16082,7 @@ ], "parameters": [ { - "id": 1848, + "id": 1867, "name": "text", "variant": "param", "kind": 32768, @@ -15689,27 +16093,27 @@ } }, { - "id": 1849, + "id": 1868, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1550, + "target": 1566, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1850, + "id": 1869, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1667, + "target": 1683, "name": "ParseOptions", "package": "@idfkit/core" }, @@ -15718,11 +16122,11 @@ ], "type": { "type": "reference", - "target": 1673, + "target": 1690, "typeArguments": [ { "type": "reference", - "target": 1847, + "target": 1866, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -15735,7 +16139,7 @@ ] }, { - "id": 1851, + "id": 1870, "name": "resolveVersion", "variant": "declaration", "kind": 64, @@ -15745,12 +16149,12 @@ "fileName": "core/src/versions.ts", "line": 23, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/versions.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/versions.ts#L23" } ], "signatures": [ { - "id": 1852, + "id": 1871, "name": "resolveVersion", "variant": "signature", "kind": 4096, @@ -15784,12 +16188,12 @@ "fileName": "core/src/versions.ts", "line": 23, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/versions.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/versions.ts#L23" } ], "parameters": [ { - "id": 1853, + "id": 1872, "name": "detected", "variant": "param", "kind": 32768, @@ -15800,7 +16204,7 @@ } }, { - "id": 1854, + "id": 1873, "name": "available", "variant": "param", "kind": 32768, @@ -15835,7 +16239,7 @@ ] }, { - "id": 1855, + "id": 1874, "name": "scanIdf", "variant": "declaration", "kind": 64, @@ -15845,12 +16249,12 @@ "fileName": "core/src/syntax/layer.ts", "line": 70, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/layer.ts#L70" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L70" } ], "signatures": [ { - "id": 1856, + "id": 1875, "name": "scanIdf", "variant": "signature", "kind": 4096, @@ -15876,12 +16280,12 @@ "fileName": "core/src/syntax/layer.ts", "line": 70, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/syntax/layer.ts#L70" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/syntax/layer.ts#L70" } ], "parameters": [ { - "id": 1857, + "id": 1876, "name": "text", "variant": "param", "kind": 32768, @@ -15894,7 +16298,7 @@ ], "type": { "type": "reference", - "target": 1729, + "target": 1746, "name": "SyntaxLayer", "package": "@idfkit/core" } @@ -15902,7 +16306,7 @@ ] }, { - "id": 1858, + "id": 1877, "name": "searchUrl", "variant": "declaration", "kind": 64, @@ -15912,12 +16316,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 212, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L212" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L212" } ], "signatures": [ { - "id": 1859, + "id": 1878, "name": "searchUrl", "variant": "signature", "kind": 4096, @@ -15935,12 +16339,12 @@ "fileName": "core/src/docs-url/index.ts", "line": 212, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L212" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L212" } ], "parameters": [ { - "id": 1860, + "id": 1879, "name": "query", "variant": "param", "kind": 32768, @@ -15951,7 +16355,7 @@ } }, { - "id": 1861, + "id": 1880, "name": "version", "variant": "param", "kind": 32768, @@ -15962,7 +16366,7 @@ } }, { - "id": 1862, + "id": 1881, "name": "options", "variant": "param", "kind": 32768, @@ -15972,14 +16376,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1863, + "id": 1882, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1864, + "id": 1883, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -15991,7 +16395,7 @@ "fileName": "core/src/docs-url/index.ts", "line": 215, "character": 14, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/docs-url/index.ts#L215" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/docs-url/index.ts#L215" } ], "type": { @@ -16004,7 +16408,7 @@ { "title": "Properties", "children": [ - 1864 + 1883 ] } ] @@ -16017,7 +16421,7 @@ "types": [ { "type": "reference", - "target": 1600, + "target": 1616, "name": "DocsUrl", "package": "@idfkit/core" }, @@ -16031,7 +16435,7 @@ ] }, { - "id": 1865, + "id": 1884, "name": "shapeFor", "variant": "declaration", "kind": 64, @@ -16041,12 +16445,12 @@ "fileName": "core/src/shape.ts", "line": 108, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L108" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L108" } ], "signatures": [ { - "id": 1866, + "id": 1885, "name": "shapeFor", "variant": "signature", "kind": 4096, @@ -16088,12 +16492,12 @@ "fileName": "core/src/shape.ts", "line": 108, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L108" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L108" } ], "parameters": [ { - "id": 1867, + "id": 1886, "name": "typeName", "variant": "param", "kind": 32768, @@ -16104,20 +16508,20 @@ } }, { - "id": 1868, + "id": 1887, "name": "type", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1711, + "target": 1728, "name": "SlimType", "package": "@idfkit/schemas" } }, { - "id": 1869, + "id": 1888, "name": "base", "variant": "param", "kind": 32768, @@ -16130,7 +16534,7 @@ ], "type": { "type": "reference", - "target": 1491, + "target": 1507, "name": "ObjectShape", "package": "@idfkit/core" } @@ -16138,7 +16542,7 @@ ] }, { - "id": 1870, + "id": 1889, "name": "shapeOf", "variant": "declaration", "kind": 64, @@ -16148,12 +16552,12 @@ "fileName": "core/src/shape.ts", "line": 123, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L123" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L123" } ], "signatures": [ { - "id": 1871, + "id": 1890, "name": "shapeOf", "variant": "signature", "kind": 4096, @@ -16171,19 +16575,19 @@ "fileName": "core/src/shape.ts", "line": 123, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/shape.ts#L123" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/shape.ts#L123" } ], "parameters": [ { - "id": 1872, + "id": 1891, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } @@ -16191,7 +16595,7 @@ ], "type": { "type": "reference", - "target": 1491, + "target": 1507, "name": "ObjectShape", "package": "@idfkit/core" } @@ -16199,7 +16603,7 @@ ] }, { - "id": 1873, + "id": 1892, "name": "toEpJson", "variant": "declaration", "kind": 64, @@ -16207,14 +16611,14 @@ "sources": [ { "fileName": "core/src/write/epjson.ts", - "line": 23, + "line": 56, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/epjson.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/epjson.ts#L56" } ], "signatures": [ { - "id": 1874, + "id": 1893, "name": "toEpJson", "variant": "signature", "kind": 4096, @@ -16230,21 +16634,21 @@ "sources": [ { "fileName": "core/src/write/epjson.ts", - "line": 23, + "line": 56, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/epjson.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/epjson.ts#L56" } ], "typeParameters": [ { - "id": 1875, + "id": 1894, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" } @@ -16252,18 +16656,18 @@ ], "parameters": [ { - "id": 1876, + "id": 1895, "name": "document", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1349, + "target": 1362, "typeArguments": [ { "type": "reference", - "target": 1875, + "target": 1894, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -16276,7 +16680,7 @@ ], "type": { "type": "reference", - "target": 1760, + "target": 1779, "name": "EpJson", "package": "@idfkit/core" } @@ -16284,7 +16688,7 @@ ] }, { - "id": 1877, + "id": 1896, "name": "validateDocument", "variant": "declaration", "kind": 64, @@ -16294,12 +16698,12 @@ "fileName": "core/src/validate/validate.ts", "line": 78, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/validate.ts#L78" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/validate.ts#L78" } ], "signatures": [ { - "id": 1878, + "id": 1897, "name": "validateDocument", "variant": "signature", "kind": 4096, @@ -16344,25 +16748,25 @@ "fileName": "core/src/validate/validate.ts", "line": 78, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/validate.ts#L78" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/validate.ts#L78" } ], "typeParameters": [ { - "id": 1879, + "id": 1898, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1774, + "target": 1793, "name": "UntypedMap", "package": "@idfkit/core" } @@ -16370,18 +16774,18 @@ ], "parameters": [ { - "id": 1880, + "id": 1899, "name": "doc", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1349, + "target": 1362, "typeArguments": [ { "type": "reference", - "target": 1879, + "target": 1898, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -16392,7 +16796,7 @@ } }, { - "id": 1881, + "id": 1900, "name": "options", "variant": "param", "kind": 32768, @@ -16412,7 +16816,7 @@ ], "type": { "type": "reference", - "target": 1744, + "target": 1761, "name": "ValidationResult", "package": "@idfkit/core" } @@ -16420,7 +16824,7 @@ ] }, { - "id": 1882, + "id": 1901, "name": "validateObject", "variant": "declaration", "kind": 64, @@ -16430,12 +16834,12 @@ "fileName": "core/src/validate/validate.ts", "line": 186, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/validate.ts#L186" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/validate.ts#L186" } ], "signatures": [ { - "id": 1883, + "id": 1902, "name": "validateObject", "variant": "signature", "kind": 4096, @@ -16472,38 +16876,38 @@ "fileName": "core/src/validate/validate.ts", "line": 186, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/validate/validate.ts#L186" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/validate/validate.ts#L186" } ], "parameters": [ { - "id": 1884, + "id": 1903, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1885, + "id": 1904, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1550, + "target": 1566, "name": "Schema", "package": "@idfkit/schemas" } }, { - "id": 1886, + "id": 1905, "name": "options", "variant": "param", "kind": 32768, @@ -16525,7 +16929,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1737, + "target": 1754, "name": "ValidationError", "package": "@idfkit/core" } @@ -16534,7 +16938,7 @@ ] }, { - "id": 1887, + "id": 1906, "name": "versionKey", "variant": "declaration", "kind": 64, @@ -16544,12 +16948,12 @@ "fileName": "core/src/versions.ts", "line": 2, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/versions.ts#L2" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/versions.ts#L2" } ], "signatures": [ { - "id": 1888, + "id": 1907, "name": "versionKey", "variant": "signature", "kind": 4096, @@ -16567,12 +16971,12 @@ "fileName": "core/src/versions.ts", "line": 2, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/versions.ts#L2" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/versions.ts#L2" } ], "parameters": [ { - "id": 1889, + "id": 1908, "name": "version", "variant": "param", "kind": 32768, @@ -16591,7 +16995,7 @@ ] }, { - "id": 1890, + "id": 1909, "name": "writeEpJson", "variant": "declaration", "kind": 64, @@ -16599,14 +17003,14 @@ "sources": [ { "fileName": "core/src/write/epjson.ts", - "line": 14, + "line": 34, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/epjson.ts#L14" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/epjson.ts#L34" } ], "signatures": [ { - "id": 1891, + "id": 1910, "name": "writeEpJson", "variant": "signature", "kind": 4096, @@ -16622,21 +17026,21 @@ "sources": [ { "fileName": "core/src/write/epjson.ts", - "line": 14, + "line": 34, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/epjson.ts#L14" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/epjson.ts#L34" } ], "typeParameters": [ { - "id": 1892, + "id": 1911, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" } @@ -16644,18 +17048,18 @@ ], "parameters": [ { - "id": 1893, + "id": 1912, "name": "document", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1349, + "target": 1362, "typeArguments": [ { "type": "reference", - "target": 1892, + "target": 1911, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -16666,14 +17070,14 @@ } }, { - "id": 1894, + "id": 1913, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1750, + "target": 1767, "name": "WriteEpJsonOptions", "package": "@idfkit/core" }, @@ -16688,7 +17092,7 @@ ] }, { - "id": 1895, + "id": 1914, "name": "writeIdf", "variant": "declaration", "kind": 64, @@ -16696,14 +17100,14 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 73, + "line": 91, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L73" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L91" } ], "signatures": [ { - "id": 1896, + "id": 1915, "name": "writeIdf", "variant": "signature", "kind": 4096, @@ -16712,7 +17116,15 @@ "summary": [ { "kind": "text", - "text": "Serialize a document to IDF text.\n\nOne caveat worth stating plainly: this does not round-trip formatting.\n" + "text": "Serialize a document to IDF text.\n\nTwo behaviours, chosen by how the document was read. A document read with " + }, + { + "kind": "code", + "text": "`preserveFormatting`" + }, + { + "kind": "text", + "text": "\nis written back per object: anything unchanged is reproduced from the characters it was read\nfrom, and everything between the objects is copied. A document read without it is formatted,\nwhich is what this writer has always done and still does by default.\n\nThe caveat that used to be stated here applies to the formatting path alone: " }, { "kind": "code", @@ -16720,7 +17132,7 @@ }, { "kind": "text", - "text": " in the input comes back as " + "text": " comes back as\n" }, { "kind": "code", @@ -16728,28 +17140,28 @@ }, { "kind": "text", - "text": ", because JavaScript has a single number\ntype and the distinction is lost the moment the value is parsed. The models\nare semantically identical and EnergyPlus reads both, but a textual diff of\ninput against output will show those fields. Preserving the original text\nneeds a concrete syntax tree, which the Python library has and this does not\nyet." + "text": " for a field the schema does not declare numeric. On the preserving path nothing is\nre-rendered, so nothing is lost." } ] }, "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 73, + "line": 91, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L73" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L91" } ], "typeParameters": [ { - "id": 1897, + "id": 1916, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" } @@ -16757,18 +17169,18 @@ ], "parameters": [ { - "id": 1898, + "id": 1917, "name": "document", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1349, + "target": 1362, "typeArguments": [ { "type": "reference", - "target": 1897, + "target": 1916, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -16779,14 +17191,14 @@ } }, { - "id": 1899, + "id": 1918, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1752, + "target": 1770, "name": "WriteIdfOptions", "package": "@idfkit/core" }, @@ -16801,7 +17213,7 @@ ] }, { - "id": 1900, + "id": 1919, "name": "writeObject", "variant": "declaration", "kind": 64, @@ -16809,14 +17221,14 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 121, + "line": 188, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L121" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L188" } ], "signatures": [ { - "id": 1901, + "id": 1920, "name": "writeObject", "variant": "signature", "kind": 4096, @@ -16832,34 +17244,34 @@ "sources": [ { "fileName": "core/src/write/idf.ts", - "line": 121, + "line": 188, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/write/idf.ts#L121" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/write/idf.ts#L188" } ], "parameters": [ { - "id": 1902, + "id": 1921, "name": "obj", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1423, + "target": 1438, "name": "IdfObject", "package": "@idfkit/core" } }, { - "id": 1903, + "id": 1922, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1654, + "target": 1670, "name": "ObjectWriteOptions", "package": "@idfkit/core" } @@ -16877,100 +17289,100 @@ { "title": "Classes", "children": [ - 1294, - 1349, - 1423, - 1484, - 1491, - 1506, - 1550, - 1578 + 1307, + 1362, + 1438, + 1500, + 1507, + 1522, + 1566, + 1594 ] }, { "title": "Interfaces", "children": [ - 1596, - 1600, - 1605, - 1619, - 1626, - 1631, - 1634, + 1612, + 1616, + 1621, + 1635, 1642, - 1654, - 1659, - 1667, - 1673, - 1677, + 1647, + 1650, + 1658, + 1670, + 1675, 1683, - 1688, - 1691, - 1695, - 1711, - 1723, - 1729, - 1733, - 1737, - 1744, + 1690, + 1694, + 1700, + 1705, + 1708, + 1712, + 1728, + 1740, + 1746, 1750, - 1752 + 1754, + 1761, + 1767, + 1770 ] }, { "title": "Type Aliases", "children": [ - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1767, - 1768, - 1769, - 1770, - 1771, - 1774, - 1775 + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1786, + 1787, + 1788, + 1789, + 1790, + 1793, + 1794 ] }, { "title": "Variables", "children": [ - 1778, - 1779 + 1797, + 1798 ] }, { "title": "Functions", "children": [ - 1784, - 1787, - 1791, - 1796, - 1804, + 1803, + 1806, 1810, - 1813, - 1816, - 1819, - 1827, - 1831, + 1815, + 1823, + 1829, + 1832, 1835, - 1839, - 1845, - 1851, - 1855, + 1838, + 1846, + 1850, + 1854, 1858, - 1865, + 1864, 1870, - 1873, + 1874, 1877, - 1882, - 1887, - 1890, - 1895, - 1900 + 1884, + 1889, + 1892, + 1896, + 1901, + 1906, + 1909, + 1914, + 1919 ] } ], @@ -16979,26 +17391,26 @@ "fileName": "core/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/index.ts#L1" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/index.ts#L1" } ] }, { - "id": 1904, + "id": 1923, "name": "node", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1905, + "id": 1924, "name": "LoadOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1906, + "id": 1925, "name": "bundle", "variant": "declaration", "kind": 1024, @@ -17018,18 +17430,18 @@ "fileName": "core/src/node.ts", "line": 41, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L41" } ], "type": { "type": "reference", - "target": 1578, + "target": 1594, "name": "SchemaBundle", "package": "@idfkit/schemas" } }, { - "id": 1907, + "id": 1926, "name": "onDiagnostic", "variant": "declaration", "kind": 1024, @@ -17056,36 +17468,36 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 27, + "line": 30, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L30" } ], "type": { "type": "reflection", "declaration": { - "id": 1908, + "id": 1927, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 1909, + "id": 1928, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1910, + "id": 1929, "name": "diagnostic", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1659, + "target": 1675, "name": "ParseDiagnostic", "package": "@idfkit/core" } @@ -17101,12 +17513,82 @@ }, "inheritedFrom": { "type": "reference", - "target": 1668, + "target": 1684, "name": "ParseOptions.onDiagnostic" } }, { - "id": 1911, + "id": 1930, + "name": "preserveFormatting", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Retain the source text and the anchoring, so a later " + }, + { + "kind": "code", + "text": "`writeIdf`" + }, + { + "kind": "text", + "text": " can reproduce it.\n\nOff by default, and the option gates every piece of the new work: a caller who does not ask\npays neither the scan nor the retention, and reading costs exactly what it costs today.\n\nWhen it is on, the read makes ONE pass and builds both the objects and the syntax layer from\nit, so the cost is the layer's own budget rather than a second read of the text.\n\nThe retained material hangs off the document, reachable as " + }, + { + "kind": "code", + "text": "`IdfDocument.rawText`" + }, + { + "kind": "text", + "text": ". It is not\nreturned beside the document: " + }, + { + "kind": "code", + "text": "`ParseResult`" + }, + { + "kind": "text", + "text": " carries exactly two keys and a test pins that it\ndoes." + } + ], + "blockTags": [ + { + "tag": "@defaultValue", + "content": [ + { + "kind": "code", + "text": "```ts\nfalse\n```" + } + ] + } + ] + }, + "sources": [ + { + "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" + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": 1688, + "name": "ParseOptions.preserveFormatting" + } + }, + { + "id": 1931, "name": "strict", "variant": "declaration", "kind": 1024, @@ -17136,9 +17618,9 @@ "sources": [ { "fileName": "core/src/parse/idf.ts", - "line": 25, + "line": 28, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/parse/idf.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/parse/idf.ts#L28" } ], "type": { @@ -17147,12 +17629,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1672, + "target": 1689, "name": "ParseOptions.strict" } }, { - "id": 1912, + "id": 1932, "name": "version", "variant": "declaration", "kind": 1024, @@ -17172,7 +17654,7 @@ "fileName": "core/src/node.ts", "line": 39, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L39" } ], "type": { @@ -17185,10 +17667,11 @@ { "title": "Properties", "children": [ - 1906, - 1907, - 1911, - 1912 + 1925, + 1926, + 1930, + 1931, + 1932 ] } ], @@ -17197,20 +17680,20 @@ "fileName": "core/src/node.ts", "line": 37, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L37" } ], "extendedTypes": [ { "type": "reference", - "target": 1667, + "target": 1683, "name": "ParseOptions", "package": "@idfkit/core" } ] }, { - "id": 1913, + "id": 1933, "name": "loadEpJson", "variant": "declaration", "kind": 64, @@ -17220,12 +17703,12 @@ "fileName": "core/src/node.ts", "line": 114, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L114" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L114" } ], "signatures": [ { - "id": 1914, + "id": 1934, "name": "loadEpJson", "variant": "signature", "kind": 4096, @@ -17243,25 +17726,25 @@ "fileName": "core/src/node.ts", "line": 114, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L114" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L114" } ], "typeParameters": [ { - "id": 1915, + "id": 1935, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1774, + "target": 1793, "name": "UntypedMap", "package": "@idfkit/core" } @@ -17269,7 +17752,7 @@ ], "parameters": [ { - "id": 1916, + "id": 1936, "name": "path", "variant": "param", "kind": 32768, @@ -17280,14 +17763,14 @@ } }, { - "id": 1917, + "id": 1937, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1905, + "target": 1924, "name": "LoadOptions", "package": "@idfkit/core" }, @@ -17304,11 +17787,11 @@ "typeArguments": [ { "type": "reference", - "target": 1349, + "target": 1362, "typeArguments": [ { "type": "reference", - "target": 1915, + "target": 1935, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -17325,7 +17808,7 @@ ] }, { - "id": 1918, + "id": 1938, "name": "loadIdf", "variant": "declaration", "kind": 64, @@ -17335,12 +17818,12 @@ "fileName": "core/src/node.ts", "line": 72, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L72" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L72" } ], "signatures": [ { - "id": 1919, + "id": 1939, "name": "loadIdf", "variant": "signature", "kind": 4096, @@ -17358,25 +17841,25 @@ "fileName": "core/src/node.ts", "line": 72, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L72" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L72" } ], "typeParameters": [ { - "id": 1920, + "id": 1940, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1774, + "target": 1793, "name": "UntypedMap", "package": "@idfkit/core" } @@ -17384,7 +17867,7 @@ ], "parameters": [ { - "id": 1921, + "id": 1941, "name": "path", "variant": "param", "kind": 32768, @@ -17395,14 +17878,14 @@ } }, { - "id": 1922, + "id": 1942, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1905, + "target": 1924, "name": "LoadOptions", "package": "@idfkit/core" }, @@ -17419,11 +17902,11 @@ "typeArguments": [ { "type": "reference", - "target": 1349, + "target": 1362, "typeArguments": [ { "type": "reference", - "target": 1920, + "target": 1940, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -17440,7 +17923,7 @@ ] }, { - "id": 1923, + "id": 1943, "name": "loadIdfWithDiagnostics", "variant": "declaration", "kind": 64, @@ -17450,12 +17933,12 @@ "fileName": "core/src/node.ts", "line": 80, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L80" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L80" } ], "signatures": [ { - "id": 1924, + "id": 1944, "name": "loadIdfWithDiagnostics", "variant": "signature", "kind": 4096, @@ -17473,25 +17956,25 @@ "fileName": "core/src/node.ts", "line": 80, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L80" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L80" } ], "typeParameters": [ { - "id": 1925, + "id": 1945, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" }, "default": { "type": "reference", - "target": 1774, + "target": 1793, "name": "UntypedMap", "package": "@idfkit/core" } @@ -17499,7 +17982,7 @@ ], "parameters": [ { - "id": 1926, + "id": 1946, "name": "path", "variant": "param", "kind": 32768, @@ -17510,14 +17993,14 @@ } }, { - "id": 1927, + "id": 1947, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1905, + "target": 1924, "name": "LoadOptions", "package": "@idfkit/core" }, @@ -17534,11 +18017,11 @@ "typeArguments": [ { "type": "reference", - "target": 1673, + "target": 1690, "typeArguments": [ { "type": "reference", - "target": 1925, + "target": 1945, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -17555,7 +18038,7 @@ ] }, { - "id": 1928, + "id": 1948, "name": "saveEpJson", "variant": "declaration", "kind": 64, @@ -17565,12 +18048,12 @@ "fileName": "core/src/node.ts", "line": 133, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L133" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L133" } ], "signatures": [ { - "id": 1929, + "id": 1949, "name": "saveEpJson", "variant": "signature", "kind": 4096, @@ -17588,19 +18071,19 @@ "fileName": "core/src/node.ts", "line": 133, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L133" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L133" } ], "typeParameters": [ { - "id": 1930, + "id": 1950, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" } @@ -17608,18 +18091,18 @@ ], "parameters": [ { - "id": 1931, + "id": 1951, "name": "document", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1349, + "target": 1362, "typeArguments": [ { "type": "reference", - "target": 1930, + "target": 1950, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -17630,7 +18113,7 @@ } }, { - "id": 1932, + "id": 1952, "name": "path", "variant": "param", "kind": 32768, @@ -17641,14 +18124,14 @@ } }, { - "id": 1933, + "id": 1953, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1750, + "target": 1767, "name": "WriteEpJsonOptions", "package": "@idfkit/core" }, @@ -17675,7 +18158,7 @@ ] }, { - "id": 1934, + "id": 1954, "name": "saveIdf", "variant": "declaration", "kind": 64, @@ -17685,12 +18168,12 @@ "fileName": "core/src/node.ts", "line": 124, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L124" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L124" } ], "signatures": [ { - "id": 1935, + "id": 1955, "name": "saveIdf", "variant": "signature", "kind": 4096, @@ -17708,19 +18191,19 @@ "fileName": "core/src/node.ts", "line": 124, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L124" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L124" } ], "typeParameters": [ { - "id": 1936, + "id": 1956, "name": "M", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1759, + "target": 1778, "name": "AnyTypeMap", "package": "@idfkit/core" } @@ -17728,18 +18211,18 @@ ], "parameters": [ { - "id": 1937, + "id": 1957, "name": "document", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1349, + "target": 1362, "typeArguments": [ { "type": "reference", - "target": 1936, + "target": 1956, "name": "M", "package": "@idfkit/core", "refersToTypeParameter": true @@ -17750,7 +18233,7 @@ } }, { - "id": 1938, + "id": 1958, "name": "path", "variant": "param", "kind": 32768, @@ -17761,14 +18244,14 @@ } }, { - "id": 1939, + "id": 1959, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1752, + "target": 1770, "name": "WriteIdfOptions", "package": "@idfkit/core" }, @@ -17795,7 +18278,7 @@ ] }, { - "id": 1940, + "id": 1960, "name": "schemaFor", "variant": "declaration", "kind": 64, @@ -17805,12 +18288,12 @@ "fileName": "core/src/node.ts", "line": 51, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L51" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L51" } ], "signatures": [ { - "id": 1941, + "id": 1961, "name": "schemaFor", "variant": "signature", "kind": 4096, @@ -17828,12 +18311,12 @@ "fileName": "core/src/node.ts", "line": 51, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L51" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L51" } ], "parameters": [ { - "id": 1942, + "id": 1962, "name": "detected", "variant": "param", "kind": 32768, @@ -17853,14 +18336,14 @@ } }, { - "id": 1943, + "id": 1963, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1905, + "target": 1924, "name": "LoadOptions", "package": "@idfkit/core" }, @@ -17877,7 +18360,7 @@ "typeArguments": [ { "type": "reference", - "target": 1550, + "target": 1566, "name": "Schema", "package": "@idfkit/schemas" } @@ -17889,7 +18372,7 @@ ] }, { - "id": 1944, + "id": 1964, "name": "schemas", "variant": "declaration", "kind": 64, @@ -17899,12 +18382,12 @@ "fileName": "core/src/node.ts", "line": 32, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L32" } ], "signatures": [ { - "id": 1945, + "id": 1965, "name": "schemas", "variant": "signature", "kind": 4096, @@ -17930,12 +18413,12 @@ "fileName": "core/src/node.ts", "line": 32, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L32" } ], "type": { "type": "reference", - "target": 1578, + "target": 1594, "name": "SchemaBundle", "package": "@idfkit/schemas" } @@ -17947,19 +18430,19 @@ { "title": "Interfaces", "children": [ - 1905 + 1924 ] }, { "title": "Functions", "children": [ - 1913, - 1918, - 1923, - 1928, - 1934, - 1940, - 1944 + 1933, + 1938, + 1943, + 1948, + 1954, + 1960, + 1964 ] } ], @@ -17968,7 +18451,7 @@ "fileName": "core/src/node.ts", "line": 1, "character": 0, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/core/src/node.ts#L1" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/core/src/node.ts#L1" } ] } @@ -17977,21 +18460,21 @@ { "title": "Modules", "children": [ - 1293, - 1904 + 1306, + 1923 ] } ] }, { - "id": 1946, + "id": 1966, "name": "@idfkit/language", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1947, + "id": 1967, "name": "CompletionOptions", "variant": "declaration", "kind": 256, @@ -18006,7 +18489,7 @@ }, "children": [ { - "id": 1948, + "id": 1968, "name": "document", "variant": "declaration", "kind": 1024, @@ -18027,16 +18510,16 @@ "fileName": "complete.ts", "line": 72, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L72" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L72" } ], "type": { "type": "reference", - "target": 1349, + "target": 1362, "typeArguments": [ { "type": "reference", - "target": 1774, + "target": 1793, "name": "UntypedMap", "package": "@idfkit/core" } @@ -18046,7 +18529,7 @@ } }, { - "id": 1949, + "id": 1969, "name": "prose", "variant": "declaration", "kind": 1024, @@ -18067,12 +18550,12 @@ "fileName": "complete.ts", "line": 74, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L74" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L74" } ], "type": { "type": "reference", - "target": 1277, + "target": 1290, "name": "ProsePool", "package": "@idfkit/schemas" } @@ -18082,8 +18565,8 @@ { "title": "Properties", "children": [ - 1948, - 1949 + 1968, + 1969 ] } ], @@ -18092,12 +18575,12 @@ "fileName": "complete.ts", "line": 70, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L70" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L70" } ] }, { - "id": 1950, + "id": 1970, "name": "CursorContext", "variant": "declaration", "kind": 256, @@ -18152,7 +18635,7 @@ }, "children": [ { - "id": 1951, + "id": 1971, "name": "at", "variant": "declaration", "kind": 1024, @@ -18172,7 +18655,7 @@ "fileName": "cursor.ts", "line": 15, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/cursor.ts#L15" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L15" } ], "type": { @@ -18198,7 +18681,7 @@ } }, { - "id": 1952, + "id": 1972, "name": "fieldIndex", "variant": "declaration", "kind": 1024, @@ -18242,7 +18725,7 @@ "fileName": "cursor.ts", "line": 22, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/cursor.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L22" } ], "type": { @@ -18260,7 +18743,7 @@ } }, { - "id": 1953, + "id": 1973, "name": "fieldName", "variant": "declaration", "kind": 1024, @@ -18280,7 +18763,7 @@ "fileName": "cursor.ts", "line": 26, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/cursor.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L26" } ], "type": { @@ -18298,7 +18781,7 @@ } }, { - "id": 1954, + "id": 1974, "name": "statement", "variant": "declaration", "kind": 1024, @@ -18318,18 +18801,18 @@ "fileName": "cursor.ts", "line": 13, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/cursor.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L13" } ], "type": { "type": "reference", - "target": 1723, + "target": 1740, "name": "Statement", "package": "@idfkit/core" } }, { - "id": 1955, + "id": 1975, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -18349,7 +18832,7 @@ "fileName": "cursor.ts", "line": 24, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/cursor.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L24" } ], "type": { @@ -18371,11 +18854,11 @@ { "title": "Properties", "children": [ - 1951, - 1952, - 1953, - 1954, - 1955 + 1971, + 1972, + 1973, + 1974, + 1975 ] } ], @@ -18384,12 +18867,12 @@ "fileName": "cursor.ts", "line": 11, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/cursor.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L11" } ] }, { - "id": 1956, + "id": 1976, "name": "Declaration", "variant": "declaration", "kind": 256, @@ -18404,7 +18887,7 @@ }, "children": [ { - "id": 1957, + "id": 1977, "name": "region", "variant": "declaration", "kind": 1024, @@ -18424,18 +18907,18 @@ "fileName": "declaration.ts", "line": 20, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/declaration.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L20" } ], "type": { "type": "reference", - "target": 1688, + "target": 1705, "name": "Region", "package": "@idfkit/core" } }, { - "id": 1958, + "id": 1978, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -18455,7 +18938,7 @@ "fileName": "declaration.ts", "line": 22, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/declaration.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L22" } ], "type": { @@ -18468,8 +18951,8 @@ { "title": "Properties", "children": [ - 1957, - 1958 + 1977, + 1978 ] } ], @@ -18478,12 +18961,12 @@ "fileName": "declaration.ts", "line": 12, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/declaration.ts#L12" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L12" } ] }, { - "id": 1959, + "id": 1979, "name": "Explanation", "variant": "declaration", "kind": 256, @@ -18514,7 +18997,7 @@ }, "children": [ { - "id": 1960, + "id": 1980, "name": "docs", "variant": "declaration", "kind": 1024, @@ -18550,7 +19033,7 @@ "fileName": "explain.ts", "line": 68, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L68" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L68" } ], "type": { @@ -18558,7 +19041,7 @@ "types": [ { "type": "reference", - "target": 1600, + "target": 1616, "name": "DocsUrl", "package": "@idfkit/core" }, @@ -18570,7 +19053,7 @@ } }, { - "id": 1961, + "id": 1981, "name": "field", "variant": "declaration", "kind": 1024, @@ -18646,7 +19129,7 @@ "fileName": "explain.ts", "line": 61, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L61" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L61" } ], "type": { @@ -18654,7 +19137,7 @@ "types": [ { "type": "reference", - "target": 1605, + "target": 1621, "name": "FieldDescription", "package": "@idfkit/core" }, @@ -18666,7 +19149,7 @@ } }, { - "id": 1962, + "id": 1982, "name": "fieldName", "variant": "declaration", "kind": 1024, @@ -18702,7 +19185,7 @@ "fileName": "explain.ts", "line": 39, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L39" } ], "type": { @@ -18720,7 +19203,7 @@ } }, { - "id": 1963, + "id": 1983, "name": "of", "variant": "declaration", "kind": 1024, @@ -18740,7 +19223,7 @@ "fileName": "explain.ts", "line": 35, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L35" } ], "type": { @@ -18758,7 +19241,7 @@ } }, { - "id": 1964, + "id": 1984, "name": "prose", "variant": "declaration", "kind": 1024, @@ -18786,7 +19269,7 @@ "fileName": "explain.ts", "line": 47, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L47" } ], "type": { @@ -18804,7 +19287,7 @@ } }, { - "id": 1965, + "id": 1985, "name": "region", "variant": "declaration", "kind": 1024, @@ -18840,18 +19323,18 @@ "fileName": "explain.ts", "line": 33, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L33" } ], "type": { "type": "reference", - "target": 1688, + "target": 1705, "name": "Region", "package": "@idfkit/core" } }, { - "id": 1966, + "id": 1986, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -18871,7 +19354,7 @@ "fileName": "explain.ts", "line": 37, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L37" } ], "type": { @@ -18884,13 +19367,13 @@ { "title": "Properties", "children": [ - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966 + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986 ] } ], @@ -18899,12 +19382,12 @@ "fileName": "explain.ts", "line": 21, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L21" } ] }, { - "id": 1967, + "id": 1987, "name": "Offer", "variant": "declaration", "kind": 256, @@ -18919,7 +19402,7 @@ }, "children": [ { - "id": 1968, + "id": 1988, "name": "kind", "variant": "declaration", "kind": 1024, @@ -18939,7 +19422,7 @@ "fileName": "complete.ts", "line": 35, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L35" } ], "type": { @@ -18961,7 +19444,7 @@ } }, { - "id": 1969, + "id": 1989, "name": "prose", "variant": "declaration", "kind": 1024, @@ -18981,7 +19464,7 @@ "fileName": "complete.ts", "line": 46, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L46" } ], "type": { @@ -18999,7 +19482,7 @@ } }, { - "id": 1970, + "id": 1990, "name": "replaces", "variant": "declaration", "kind": 1024, @@ -19035,18 +19518,18 @@ "fileName": "complete.ts", "line": 33, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L33" } ], "type": { "type": "reference", - "target": 1688, + "target": 1705, "name": "Region", "package": "@idfkit/core" } }, { - "id": 1971, + "id": 1991, "name": "required", "variant": "declaration", "kind": 1024, @@ -19066,7 +19549,7 @@ "fileName": "complete.ts", "line": 37, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L37" } ], "type": { @@ -19084,7 +19567,7 @@ } }, { - "id": 1972, + "id": 1992, "name": "value", "variant": "declaration", "kind": 1024, @@ -19104,7 +19587,7 @@ "fileName": "complete.ts", "line": 21, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L21" } ], "type": { @@ -19117,11 +19600,11 @@ { "title": "Properties", "children": [ - 1968, - 1969, - 1970, - 1971, - 1972 + 1988, + 1989, + 1990, + 1991, + 1992 ] } ], @@ -19130,12 +19613,12 @@ "fileName": "complete.ts", "line": 19, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L19" } ] }, { - "id": 1973, + "id": 1993, "name": "CompletionResult", "variant": "declaration", "kind": 2097152, @@ -19169,7 +19652,7 @@ "fileName": "complete.ts", "line": 62, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L62" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L62" } ], "type": { @@ -19178,14 +19661,14 @@ { "type": "reflection", "declaration": { - "id": 1974, + "id": 1994, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1975, + "id": 1995, "name": "offers", "variant": "declaration", "kind": 1024, @@ -19197,7 +19680,7 @@ "fileName": "complete.ts", "line": 63, "character": 38, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L63" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L63" } ], "type": { @@ -19207,7 +19690,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1967, + "target": 1987, "name": "Offer", "package": "@idfkit/language" } @@ -19215,7 +19698,7 @@ } }, { - "id": 1976, + "id": 1996, "name": "status", "variant": "declaration", "kind": 1024, @@ -19227,7 +19710,7 @@ "fileName": "complete.ts", "line": 63, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L63" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L63" } ], "type": { @@ -19240,8 +19723,8 @@ { "title": "Properties", "children": [ - 1975, - 1976 + 1995, + 1996 ] } ] @@ -19250,14 +19733,14 @@ { "type": "reflection", "declaration": { - "id": 1977, + "id": 1997, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1978, + "id": 1998, "name": "status", "variant": "declaration", "kind": 1024, @@ -19269,7 +19752,7 @@ "fileName": "complete.ts", "line": 64, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L64" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L64" } ], "type": { @@ -19282,7 +19765,7 @@ { "title": "Properties", "children": [ - 1978 + 1998 ] } ] @@ -19291,14 +19774,14 @@ { "type": "reflection", "declaration": { - "id": 1979, + "id": 1999, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1980, + "id": 2000, "name": "status", "variant": "declaration", "kind": 1024, @@ -19310,7 +19793,7 @@ "fileName": "complete.ts", "line": 65, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L65" } ], "type": { @@ -19323,7 +19806,7 @@ { "title": "Properties", "children": [ - 1980 + 2000 ] } ] @@ -19332,14 +19815,14 @@ { "type": "reflection", "declaration": { - "id": 1981, + "id": 2001, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1982, + "id": 2002, "name": "status", "variant": "declaration", "kind": 1024, @@ -19351,7 +19834,7 @@ "fileName": "complete.ts", "line": 66, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L66" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L66" } ], "type": { @@ -19360,7 +19843,7 @@ } }, { - "id": 1983, + "id": 2003, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -19372,7 +19855,7 @@ "fileName": "complete.ts", "line": 66, "character": 47, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L66" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L66" } ], "type": { @@ -19385,8 +19868,8 @@ { "title": "Properties", "children": [ - 1982, - 1983 + 2002, + 2003 ] } ] @@ -19395,14 +19878,14 @@ { "type": "reflection", "declaration": { - "id": 1984, + "id": 2004, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1985, + "id": 2005, "name": "status", "variant": "declaration", "kind": 1024, @@ -19414,7 +19897,7 @@ "fileName": "complete.ts", "line": 67, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L67" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L67" } ], "type": { @@ -19427,7 +19910,7 @@ { "title": "Properties", "children": [ - 1985 + 2005 ] } ] @@ -19437,7 +19920,7 @@ } }, { - "id": 1986, + "id": 2006, "name": "DeclarationResult", "variant": "declaration", "kind": 2097152, @@ -19471,7 +19954,7 @@ "fileName": "declaration.ts", "line": 37, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/declaration.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L37" } ], "type": { @@ -19480,14 +19963,14 @@ { "type": "reflection", "declaration": { - "id": 1987, + "id": 2007, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1988, + "id": 2008, "name": "declarations", "variant": "declaration", "kind": 1024, @@ -19499,7 +19982,7 @@ "fileName": "declaration.ts", "line": 38, "character": 38, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/declaration.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L38" } ], "type": { @@ -19509,7 +19992,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1956, + "target": 1976, "name": "Declaration", "package": "@idfkit/language" } @@ -19517,7 +20000,7 @@ } }, { - "id": 1989, + "id": 2009, "name": "status", "variant": "declaration", "kind": 1024, @@ -19529,7 +20012,7 @@ "fileName": "declaration.ts", "line": 38, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/declaration.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L38" } ], "type": { @@ -19542,8 +20025,8 @@ { "title": "Properties", "children": [ - 1988, - 1989 + 2008, + 2009 ] } ] @@ -19552,14 +20035,14 @@ { "type": "reflection", "declaration": { - "id": 1990, + "id": 2010, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1991, + "id": 2011, "name": "status", "variant": "declaration", "kind": 1024, @@ -19571,7 +20054,7 @@ "fileName": "declaration.ts", "line": 39, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/declaration.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L39" } ], "type": { @@ -19584,7 +20067,7 @@ { "title": "Properties", "children": [ - 1991 + 2011 ] } ] @@ -19593,14 +20076,14 @@ { "type": "reflection", "declaration": { - "id": 1992, + "id": 2012, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1993, + "id": 2013, "name": "status", "variant": "declaration", "kind": 1024, @@ -19612,7 +20095,7 @@ "fileName": "declaration.ts", "line": 40, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/declaration.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L40" } ], "type": { @@ -19621,7 +20104,7 @@ } }, { - "id": 1994, + "id": 2014, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -19633,7 +20116,7 @@ "fileName": "declaration.ts", "line": 40, "character": 47, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/declaration.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L40" } ], "type": { @@ -19646,8 +20129,8 @@ { "title": "Properties", "children": [ - 1993, - 1994 + 2013, + 2014 ] } ] @@ -19656,14 +20139,14 @@ { "type": "reflection", "declaration": { - "id": 1995, + "id": 2015, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1996, + "id": 2016, "name": "status", "variant": "declaration", "kind": 1024, @@ -19675,7 +20158,7 @@ "fileName": "declaration.ts", "line": 41, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/declaration.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L41" } ], "type": { @@ -19688,7 +20171,7 @@ { "title": "Properties", "children": [ - 1996 + 2016 ] } ] @@ -19698,7 +20181,7 @@ } }, { - "id": 1997, + "id": 2017, "name": "ExplanationResult", "variant": "declaration", "kind": 2097152, @@ -19724,7 +20207,7 @@ "fileName": "explain.ts", "line": 79, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L79" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L79" } ], "type": { @@ -19733,14 +20216,14 @@ { "type": "reflection", "declaration": { - "id": 1998, + "id": 2018, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1999, + "id": 2019, "name": "explanation", "variant": "declaration", "kind": 1024, @@ -19752,18 +20235,18 @@ "fileName": "explain.ts", "line": 80, "character": 38, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L80" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L80" } ], "type": { "type": "reference", - "target": 1959, + "target": 1979, "name": "Explanation", "package": "@idfkit/language" } }, { - "id": 2000, + "id": 2020, "name": "status", "variant": "declaration", "kind": 1024, @@ -19775,7 +20258,7 @@ "fileName": "explain.ts", "line": 80, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L80" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L80" } ], "type": { @@ -19788,8 +20271,8 @@ { "title": "Properties", "children": [ - 1999, - 2000 + 2019, + 2020 ] } ] @@ -19798,14 +20281,14 @@ { "type": "reflection", "declaration": { - "id": 2001, + "id": 2021, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2002, + "id": 2022, "name": "status", "variant": "declaration", "kind": 1024, @@ -19817,7 +20300,7 @@ "fileName": "explain.ts", "line": 81, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L81" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L81" } ], "type": { @@ -19830,7 +20313,7 @@ { "title": "Properties", "children": [ - 2002 + 2022 ] } ] @@ -19839,14 +20322,14 @@ { "type": "reflection", "declaration": { - "id": 2003, + "id": 2023, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2004, + "id": 2024, "name": "status", "variant": "declaration", "kind": 1024, @@ -19858,7 +20341,7 @@ "fileName": "explain.ts", "line": 82, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L82" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L82" } ], "type": { @@ -19867,7 +20350,7 @@ } }, { - "id": 2005, + "id": 2025, "name": "typeName", "variant": "declaration", "kind": 1024, @@ -19879,7 +20362,7 @@ "fileName": "explain.ts", "line": 82, "character": 47, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L82" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L82" } ], "type": { @@ -19892,8 +20375,8 @@ { "title": "Properties", "children": [ - 2004, - 2005 + 2024, + 2025 ] } ] @@ -19902,14 +20385,14 @@ { "type": "reflection", "declaration": { - "id": 2006, + "id": 2026, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2007, + "id": 2027, "name": "status", "variant": "declaration", "kind": 1024, @@ -19921,7 +20404,7 @@ "fileName": "explain.ts", "line": 83, "character": 15, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L83" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L83" } ], "type": { @@ -19934,7 +20417,7 @@ { "title": "Properties", "children": [ - 2007 + 2027 ] } ] @@ -19944,7 +20427,7 @@ } }, { - "id": 2008, + "id": 2028, "name": "PositionedFinding", "variant": "declaration", "kind": 2097152, @@ -19986,12 +20469,12 @@ "fileName": "findings.ts", "line": 21, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/findings.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L21" } ], "typeParameters": [ { - "id": 2009, + "id": 2029, "name": "F", "variant": "typeParam", "kind": 131072, @@ -20003,7 +20486,7 @@ "types": [ { "type": "reference", - "target": 2009, + "target": 2029, "name": "F", "package": "@idfkit/language", "refersToTypeParameter": true @@ -20011,14 +20494,14 @@ { "type": "reflection", "declaration": { - "id": 2010, + "id": 2030, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2011, + "id": 2031, "name": "precision", "variant": "declaration", "kind": 1024, @@ -20038,7 +20521,7 @@ "fileName": "findings.ts", "line": 25, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/findings.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L25" } ], "type": { @@ -20056,7 +20539,7 @@ } }, { - "id": 2012, + "id": 2032, "name": "region", "variant": "declaration", "kind": 1024, @@ -20076,12 +20559,12 @@ "fileName": "findings.ts", "line": 23, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/findings.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L23" } ], "type": { "type": "reference", - "target": 1688, + "target": 1705, "name": "Region", "package": "@idfkit/core" } @@ -20091,8 +20574,8 @@ { "title": "Properties", "children": [ - 2011, - 2012 + 2031, + 2032 ] } ] @@ -20102,7 +20585,7 @@ } }, { - "id": 2013, + "id": 2033, "name": "completionsAt", "variant": "declaration", "kind": 64, @@ -20112,12 +20595,12 @@ "fileName": "complete.ts", "line": 103, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L103" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L103" } ], "signatures": [ { - "id": 2014, + "id": 2034, "name": "completionsAt", "variant": "signature", "kind": 4096, @@ -20132,7 +20615,7 @@ "kind": "inline-tag", "tag": "@link", "text": "contextAt", - "target": 2019 + "target": 2039 }, { "kind": "text", @@ -20169,12 +20652,12 @@ "fileName": "complete.ts", "line": 103, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/complete.ts#L103" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/complete.ts#L103" } ], "parameters": [ { - "id": 2015, + "id": 2035, "name": "text", "variant": "param", "kind": 32768, @@ -20185,7 +20668,7 @@ } }, { - "id": 2016, + "id": 2036, "name": "offset", "variant": "param", "kind": 32768, @@ -20196,7 +20679,7 @@ } }, { - "id": 2017, + "id": 2037, "name": "schema", "variant": "param", "kind": 32768, @@ -20206,7 +20689,7 @@ "types": [ { "type": "reference", - "target": 1186, + "target": 1199, "name": "Schema", "package": "@idfkit/schemas" }, @@ -20218,14 +20701,14 @@ } }, { - "id": 2018, + "id": 2038, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1947, + "target": 1967, "name": "CompletionOptions", "package": "@idfkit/language" }, @@ -20234,7 +20717,7 @@ ], "type": { "type": "reference", - "target": 1973, + "target": 1993, "name": "CompletionResult", "package": "@idfkit/language" } @@ -20242,7 +20725,7 @@ ] }, { - "id": 2019, + "id": 2039, "name": "contextAt", "variant": "declaration", "kind": 64, @@ -20288,12 +20771,12 @@ "fileName": "cursor.ts", "line": 60, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/cursor.ts#L60" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L60" } ], "signatures": [ { - "id": 2020, + "id": 2040, "name": "contextAt", "variant": "signature", "kind": 4096, @@ -20327,12 +20810,12 @@ "fileName": "cursor.ts", "line": 60, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/cursor.ts#L60" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/cursor.ts#L60" } ], "parameters": [ { - "id": 2021, + "id": 2041, "name": "text", "variant": "param", "kind": 32768, @@ -20343,7 +20826,7 @@ } }, { - "id": 2022, + "id": 2042, "name": "offset", "variant": "param", "kind": 32768, @@ -20354,7 +20837,7 @@ } }, { - "id": 2023, + "id": 2043, "name": "schema", "variant": "param", "kind": 32768, @@ -20363,7 +20846,7 @@ }, "type": { "type": "reference", - "target": 1186, + "target": 1199, "name": "Schema", "package": "@idfkit/schemas" } @@ -20371,7 +20854,7 @@ ], "type": { "type": "reference", - "target": 1950, + "target": 1970, "name": "CursorContext", "package": "@idfkit/language" } @@ -20379,7 +20862,7 @@ ] }, { - "id": 2024, + "id": 2044, "name": "declarationAt", "variant": "declaration", "kind": 64, @@ -20389,12 +20872,12 @@ "fileName": "declaration.ts", "line": 78, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/declaration.ts#L78" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L78" } ], "signatures": [ { - "id": 2025, + "id": 2045, "name": "declarationAt", "variant": "signature", "kind": 4096, @@ -20452,12 +20935,12 @@ "fileName": "declaration.ts", "line": 78, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/declaration.ts#L78" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/declaration.ts#L78" } ], "parameters": [ { - "id": 2026, + "id": 2046, "name": "text", "variant": "param", "kind": 32768, @@ -20468,7 +20951,7 @@ } }, { - "id": 2027, + "id": 2047, "name": "offset", "variant": "param", "kind": 32768, @@ -20479,7 +20962,7 @@ } }, { - "id": 2028, + "id": 2048, "name": "schema", "variant": "param", "kind": 32768, @@ -20489,7 +20972,7 @@ "types": [ { "type": "reference", - "target": 1186, + "target": 1199, "name": "Schema", "package": "@idfkit/schemas" }, @@ -20501,14 +20984,14 @@ } }, { - "id": 2029, + "id": 2049, "name": "document", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1349, + "target": 1362, "name": "IdfDocument", "package": "@idfkit/core" } @@ -20516,7 +20999,7 @@ ], "type": { "type": "reference", - "target": 1986, + "target": 2006, "name": "DeclarationResult", "package": "@idfkit/language" } @@ -20524,7 +21007,7 @@ ] }, { - "id": 2030, + "id": 2050, "name": "explainAt", "variant": "declaration", "kind": 64, @@ -20534,12 +21017,12 @@ "fileName": "explain.ts", "line": 106, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L106" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L106" } ], "signatures": [ { - "id": 2031, + "id": 2051, "name": "explainAt", "variant": "signature", "kind": 4096, @@ -20554,7 +21037,7 @@ "kind": "inline-tag", "tag": "@link", "text": "contextAt", - "target": 2019 + "target": 2039 }, { "kind": "text", @@ -20591,12 +21074,12 @@ "fileName": "explain.ts", "line": 106, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/explain.ts#L106" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/explain.ts#L106" } ], "parameters": [ { - "id": 2032, + "id": 2052, "name": "text", "variant": "param", "kind": 32768, @@ -20607,7 +21090,7 @@ } }, { - "id": 2033, + "id": 2053, "name": "offset", "variant": "param", "kind": 32768, @@ -20618,7 +21101,7 @@ } }, { - "id": 2034, + "id": 2054, "name": "schema", "variant": "param", "kind": 32768, @@ -20628,7 +21111,7 @@ "types": [ { "type": "reference", - "target": 1186, + "target": 1199, "name": "Schema", "package": "@idfkit/schemas" }, @@ -20640,7 +21123,7 @@ } }, { - "id": 2035, + "id": 2055, "name": "prose", "variant": "param", "kind": 32768, @@ -20649,7 +21132,7 @@ }, "type": { "type": "reference", - "target": 1277, + "target": 1290, "name": "ProsePool", "package": "@idfkit/schemas" } @@ -20657,7 +21140,7 @@ ], "type": { "type": "reference", - "target": 1997, + "target": 2017, "name": "ExplanationResult", "package": "@idfkit/language" } @@ -20665,7 +21148,7 @@ ] }, { - "id": 2036, + "id": 2056, "name": "findingsIn", "variant": "declaration", "kind": 64, @@ -20675,12 +21158,12 @@ "fileName": "findings.ts", "line": 47, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/findings.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L47" } ], "signatures": [ { - "id": 2037, + "id": 2057, "name": "findingsIn", "variant": "signature", "kind": 4096, @@ -20695,7 +21178,7 @@ "kind": "inline-tag", "tag": "@link", "text": "position", - "target": 2040 + "target": 2060 }, { "kind": "text", @@ -20719,12 +21202,12 @@ "fileName": "findings.ts", "line": 47, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/findings.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L47" } ], "parameters": [ { - "id": 2038, + "id": 2058, "name": "text", "variant": "param", "kind": 32768, @@ -20735,14 +21218,14 @@ } }, { - "id": 2039, + "id": 2059, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1186, + "target": 1199, "name": "Schema", "package": "@idfkit/schemas" } @@ -20755,20 +21238,20 @@ "type": "array", "elementType": { "type": "reference", - "target": 2008, + "target": 2028, "typeArguments": [ { "type": "union", "types": [ { "type": "reference", - "target": 1659, + "target": 1675, "name": "ParseDiagnostic", "package": "@idfkit/core" }, { "type": "reference", - "target": 1737, + "target": 1754, "name": "ValidationError", "package": "@idfkit/core" } @@ -20784,7 +21267,7 @@ ] }, { - "id": 2040, + "id": 2060, "name": "position", "variant": "declaration", "kind": 64, @@ -20794,12 +21277,12 @@ "fileName": "findings.ts", "line": 84, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/findings.ts#L84" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L84" } ], "signatures": [ { - "id": 2041, + "id": 2061, "name": "position", "variant": "signature", "kind": 4096, @@ -20814,7 +21297,7 @@ "kind": "inline-tag", "tag": "@link", "text": "findingsIn", - "target": 2036 + "target": 2056 }, { "kind": "text", @@ -20827,12 +21310,12 @@ "fileName": "findings.ts", "line": 84, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/language/src/findings.ts#L84" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/language/src/findings.ts#L84" } ], "typeParameters": [ { - "id": 2042, + "id": 2062, "name": "F", "variant": "typeParam", "kind": 131072, @@ -20845,7 +21328,7 @@ ], "parameters": [ { - "id": 2043, + "id": 2063, "name": "findings", "variant": "param", "kind": 32768, @@ -20857,7 +21340,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2042, + "target": 2062, "name": "F", "package": "@idfkit/language", "refersToTypeParameter": true @@ -20866,27 +21349,27 @@ } }, { - "id": 2044, + "id": 2064, "name": "layer", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1729, + "target": 1746, "name": "SyntaxLayer", "package": "@idfkit/core" } }, { - "id": 2045, + "id": 2065, "name": "schema", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1186, + "target": 1199, "name": "Schema", "package": "@idfkit/schemas" } @@ -20899,11 +21382,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 2008, + "target": 2028, "typeArguments": [ { "type": "reference", - "target": 2042, + "target": 2062, "name": "F", "package": "@idfkit/language", "refersToTypeParameter": true @@ -20922,51 +21405,51 @@ { "title": "Interfaces", "children": [ - 1947, - 1950, - 1956, - 1959, - 1967 + 1967, + 1970, + 1976, + 1979, + 1987 ] }, { "title": "Type Aliases", "children": [ - 1973, - 1986, - 1997, - 2008 + 1993, + 2006, + 2017, + 2028 ] }, { "title": "Functions", "children": [ - 2013, - 2019, - 2024, - 2030, - 2036, - 2040 + 2033, + 2039, + 2044, + 2050, + 2056, + 2060 ] } ] }, { - "id": 1175, + "id": 1188, "name": "@idfkit/schemas", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1176, + "id": 1189, "name": "index", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1177, + "id": 1190, "name": "BlobStore", "variant": "declaration", "kind": 128, @@ -20981,7 +21464,7 @@ }, "children": [ { - "id": 1178, + "id": 1191, "name": "constructor", "variant": "declaration", "kind": 512, @@ -20991,12 +21474,12 @@ "fileName": "schema.ts", "line": 114, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L114" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L114" } ], "signatures": [ { - "id": 1179, + "id": 1192, "name": "BlobStore", "variant": "signature", "kind": 16384, @@ -21006,12 +21489,12 @@ "fileName": "schema.ts", "line": 114, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L114" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L114" } ], "parameters": [ { - "id": 1180, + "id": 1193, "name": "raw", "variant": "param", "kind": 32768, @@ -21030,7 +21513,7 @@ }, { "type": "reference", - "target": 1263, + "target": 1276, "name": "SlimType", "package": "@idfkit/schemas" } @@ -21042,7 +21525,7 @@ ], "type": { "type": "reference", - "target": 1177, + "target": 1190, "name": "BlobStore", "package": "@idfkit/schemas" } @@ -21050,7 +21533,7 @@ ] }, { - "id": 1181, + "id": 1194, "name": "size", "variant": "declaration", "kind": 262144, @@ -21060,11 +21543,11 @@ "fileName": "schema.ts", "line": 131, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L131" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L131" } ], "getSignature": { - "id": 1182, + "id": 1195, "name": "size", "variant": "signature", "kind": 524288, @@ -21074,7 +21557,7 @@ "fileName": "schema.ts", "line": 131, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L131" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L131" } ], "type": { @@ -21084,7 +21567,7 @@ } }, { - "id": 1183, + "id": 1196, "name": "hydrate", "variant": "declaration", "kind": 2048, @@ -21094,12 +21577,12 @@ "fileName": "schema.ts", "line": 118, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L118" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L118" } ], "signatures": [ { - "id": 1184, + "id": 1197, "name": "hydrate", "variant": "signature", "kind": 4096, @@ -21109,12 +21592,12 @@ "fileName": "schema.ts", "line": 118, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L118" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L118" } ], "parameters": [ { - "id": 1185, + "id": 1198, "name": "hash", "variant": "param", "kind": 32768, @@ -21127,7 +21610,7 @@ ], "type": { "type": "reference", - "target": 1263, + "target": 1276, "name": "SlimType", "package": "@idfkit/schemas" } @@ -21139,19 +21622,19 @@ { "title": "Constructors", "children": [ - 1178 + 1191 ] }, { "title": "Accessors", "children": [ - 1181 + 1194 ] }, { "title": "Methods", "children": [ - 1183 + 1196 ] } ], @@ -21160,12 +21643,12 @@ "fileName": "schema.ts", "line": 110, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L110" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L110" } ] }, { - "id": 1186, + "id": 1199, "name": "Schema", "variant": "declaration", "kind": 128, @@ -21180,7 +21663,7 @@ }, "children": [ { - "id": 1187, + "id": 1200, "name": "constructor", "variant": "declaration", "kind": 512, @@ -21190,12 +21673,12 @@ "fileName": "schema.ts", "line": 19, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L19" } ], "signatures": [ { - "id": 1188, + "id": 1201, "name": "Schema", "variant": "signature", "kind": 16384, @@ -21205,12 +21688,12 @@ "fileName": "schema.ts", "line": 19, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L19" } ], "parameters": [ { - "id": 1189, + "id": 1202, "name": "version", "variant": "param", "kind": 32768, @@ -21221,27 +21704,27 @@ } }, { - "id": 1190, + "id": 1203, "name": "manifest", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1276, + "target": 1289, "name": "Manifest", "package": "@idfkit/schemas" } }, { - "id": 1191, + "id": 1204, "name": "store", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1177, + "target": 1190, "name": "BlobStore", "package": "@idfkit/schemas" } @@ -21249,7 +21732,7 @@ ], "type": { "type": "reference", - "target": 1186, + "target": 1199, "name": "Schema", "package": "@idfkit/schemas" } @@ -21257,7 +21740,7 @@ ] }, { - "id": 1192, + "id": 1205, "name": "version", "variant": "declaration", "kind": 1024, @@ -21269,7 +21752,7 @@ "fileName": "schema.ts", "line": 11, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L11" } ], "type": { @@ -21278,7 +21761,7 @@ } }, { - "id": 1193, + "id": 1206, "name": "typeNames", "variant": "declaration", "kind": 262144, @@ -21288,11 +21771,11 @@ "fileName": "schema.ts", "line": 26, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L26" } ], "getSignature": { - "id": 1194, + "id": 1207, "name": "typeNames", "variant": "signature", "kind": 524288, @@ -21310,7 +21793,7 @@ "fileName": "schema.ts", "line": 26, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L26" } ], "type": { @@ -21327,7 +21810,7 @@ } }, { - "id": 1195, + "id": 1208, "name": "changedFrom", "variant": "declaration", "kind": 2048, @@ -21337,12 +21820,12 @@ "fileName": "schema.ts", "line": 77, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L77" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L77" } ], "signatures": [ { - "id": 1196, + "id": 1209, "name": "changedFrom", "variant": "signature", "kind": 4096, @@ -21368,19 +21851,19 @@ "fileName": "schema.ts", "line": 77, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L77" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L77" } ], "parameters": [ { - "id": 1197, + "id": 1210, "name": "other", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1186, + "target": 1199, "name": "Schema", "package": "@idfkit/schemas" } @@ -21388,7 +21871,7 @@ ], "type": { "type": "reference", - "target": 1239, + "target": 1252, "name": "SchemaDelta", "package": "@idfkit/schemas" } @@ -21396,7 +21879,7 @@ ] }, { - "id": 1198, + "id": 1211, "name": "field", "variant": "declaration", "kind": 2048, @@ -21406,12 +21889,12 @@ "fileName": "schema.ts", "line": 66, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L66" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L66" } ], "signatures": [ { - "id": 1199, + "id": 1212, "name": "field", "variant": "signature", "kind": 4096, @@ -21429,12 +21912,12 @@ "fileName": "schema.ts", "line": 66, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L66" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L66" } ], "parameters": [ { - "id": 1200, + "id": 1213, "name": "typeName", "variant": "param", "kind": 32768, @@ -21445,7 +21928,7 @@ } }, { - "id": 1201, + "id": 1214, "name": "fieldName", "variant": "param", "kind": 32768, @@ -21461,7 +21944,7 @@ "types": [ { "type": "reference", - "target": 1247, + "target": 1260, "name": "SlimField", "package": "@idfkit/schemas" }, @@ -21475,7 +21958,7 @@ ] }, { - "id": 1202, + "id": 1215, "name": "get", "variant": "declaration", "kind": 2048, @@ -21485,12 +21968,12 @@ "fileName": "schema.ts", "line": 50, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L50" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L50" } ], "signatures": [ { - "id": 1203, + "id": 1216, "name": "get", "variant": "signature", "kind": 4096, @@ -21508,12 +21991,12 @@ "fileName": "schema.ts", "line": 50, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L50" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L50" } ], "parameters": [ { - "id": 1204, + "id": 1217, "name": "typeName", "variant": "param", "kind": 32768, @@ -21529,7 +22012,7 @@ "types": [ { "type": "reference", - "target": 1263, + "target": 1276, "name": "SlimType", "package": "@idfkit/schemas" }, @@ -21543,7 +22026,7 @@ ] }, { - "id": 1205, + "id": 1218, "name": "has", "variant": "declaration", "kind": 2048, @@ -21553,12 +22036,12 @@ "fileName": "schema.ts", "line": 32, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L32" } ], "signatures": [ { - "id": 1206, + "id": 1219, "name": "has", "variant": "signature", "kind": 4096, @@ -21576,12 +22059,12 @@ "fileName": "schema.ts", "line": 32, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L32" } ], "parameters": [ { - "id": 1207, + "id": 1220, "name": "typeName", "variant": "param", "kind": 32768, @@ -21600,7 +22083,7 @@ ] }, { - "id": 1208, + "id": 1221, "name": "require", "variant": "declaration", "kind": 2048, @@ -21610,12 +22093,12 @@ "fileName": "schema.ts", "line": 57, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L57" } ], "signatures": [ { - "id": 1209, + "id": 1222, "name": "require", "variant": "signature", "kind": 4096, @@ -21633,12 +22116,12 @@ "fileName": "schema.ts", "line": 57, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L57" } ], "parameters": [ { - "id": 1210, + "id": 1223, "name": "typeName", "variant": "param", "kind": 32768, @@ -21651,7 +22134,7 @@ ], "type": { "type": "reference", - "target": 1263, + "target": 1276, "name": "SlimType", "package": "@idfkit/schemas" } @@ -21659,7 +22142,7 @@ ] }, { - "id": 1211, + "id": 1224, "name": "resolve", "variant": "declaration", "kind": 2048, @@ -21669,12 +22152,12 @@ "fileName": "schema.ts", "line": 43, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L43" } ], "signatures": [ { - "id": 1212, + "id": 1225, "name": "resolve", "variant": "signature", "kind": 4096, @@ -21716,12 +22199,12 @@ "fileName": "schema.ts", "line": 43, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L43" } ], "parameters": [ { - "id": 1213, + "id": 1226, "name": "typeName", "variant": "param", "kind": 32768, @@ -21753,30 +22236,30 @@ { "title": "Constructors", "children": [ - 1187 + 1200 ] }, { "title": "Properties", "children": [ - 1192 + 1205 ] }, { "title": "Accessors", "children": [ - 1193 + 1206 ] }, { "title": "Methods", "children": [ - 1195, - 1198, - 1202, - 1205, 1208, - 1211 + 1211, + 1215, + 1218, + 1221, + 1224 ] } ], @@ -21785,12 +22268,12 @@ "fileName": "schema.ts", "line": 10, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L10" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L10" } ] }, { - "id": 1214, + "id": 1227, "name": "SchemaBundle", "variant": "declaration", "kind": 128, @@ -21805,7 +22288,7 @@ }, "children": [ { - "id": 1215, + "id": 1228, "name": "constructor", "variant": "declaration", "kind": 512, @@ -21815,12 +22298,12 @@ "fileName": "index.ts", "line": 90, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L90" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L90" } ], "signatures": [ { - "id": 1216, + "id": 1229, "name": "SchemaBundle", "variant": "signature", "kind": 16384, @@ -21830,19 +22313,19 @@ "fileName": "index.ts", "line": 90, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L90" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L90" } ], "parameters": [ { - "id": 1217, + "id": 1230, "name": "source", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1235, + "target": 1248, "name": "BundleSource", "package": "@idfkit/schemas" } @@ -21850,7 +22333,7 @@ ], "type": { "type": "reference", - "target": 1214, + "target": 1227, "name": "SchemaBundle", "package": "@idfkit/schemas" } @@ -21858,7 +22341,7 @@ ] }, { - "id": 1218, + "id": 1231, "name": "latest", "variant": "declaration", "kind": 2048, @@ -21868,12 +22351,12 @@ "fileName": "index.ts", "line": 100, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L100" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L100" } ], "signatures": [ { - "id": 1219, + "id": 1232, "name": "latest", "variant": "signature", "kind": 4096, @@ -21891,7 +22374,7 @@ "fileName": "index.ts", "line": 100, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L100" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L100" } ], "type": { @@ -21914,7 +22397,7 @@ ] }, { - "id": 1220, + "id": 1233, "name": "load", "variant": "declaration", "kind": 2048, @@ -21924,12 +22407,12 @@ "fileName": "index.ts", "line": 112, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L112" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L112" } ], "signatures": [ { - "id": 1221, + "id": 1234, "name": "load", "variant": "signature", "kind": 4096, @@ -21947,12 +22430,12 @@ "fileName": "index.ts", "line": 112, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L112" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L112" } ], "parameters": [ { - "id": 1222, + "id": 1235, "name": "version", "variant": "param", "kind": 32768, @@ -21973,7 +22456,7 @@ "typeArguments": [ { "type": "reference", - "target": 1186, + "target": 1199, "name": "Schema", "package": "@idfkit/schemas" } @@ -21985,7 +22468,7 @@ ] }, { - "id": 1223, + "id": 1236, "name": "loaded", "variant": "declaration", "kind": 2048, @@ -21995,12 +22478,12 @@ "fileName": "index.ts", "line": 125, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L125" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L125" } ], "signatures": [ { - "id": 1224, + "id": 1237, "name": "loaded", "variant": "signature", "kind": 4096, @@ -22018,12 +22501,12 @@ "fileName": "index.ts", "line": 125, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L125" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L125" } ], "parameters": [ { - "id": 1225, + "id": 1238, "name": "version", "variant": "param", "kind": 32768, @@ -22039,7 +22522,7 @@ "types": [ { "type": "reference", - "target": 1186, + "target": 1199, "name": "Schema", "package": "@idfkit/schemas" }, @@ -22053,7 +22536,7 @@ ] }, { - "id": 1226, + "id": 1239, "name": "loadProse", "variant": "declaration", "kind": 2048, @@ -22063,12 +22546,12 @@ "fileName": "index.ts", "line": 145, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L145" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L145" } ], "signatures": [ { - "id": 1227, + "id": 1240, "name": "loadProse", "variant": "signature", "kind": 4096, @@ -22118,7 +22601,7 @@ "fileName": "index.ts", "line": 145, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L145" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L145" } ], "type": { @@ -22131,7 +22614,7 @@ "typeArguments": [ { "type": "reference", - "target": 1277, + "target": 1290, "name": "ProsePool", "package": "@idfkit/schemas" } @@ -22143,7 +22626,7 @@ ] }, { - "id": 1228, + "id": 1241, "name": "prose", "variant": "declaration", "kind": 2048, @@ -22153,12 +22636,12 @@ "fileName": "index.ts", "line": 169, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L169" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L169" } ], "signatures": [ { - "id": 1229, + "id": 1242, "name": "prose", "variant": "signature", "kind": 4096, @@ -22208,7 +22691,7 @@ "fileName": "index.ts", "line": 169, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L169" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L169" } ], "type": { @@ -22216,7 +22699,7 @@ "types": [ { "type": "reference", - "target": 1277, + "target": 1290, "name": "ProsePool", "package": "@idfkit/schemas" }, @@ -22230,7 +22713,7 @@ ] }, { - "id": 1230, + "id": 1243, "name": "versions", "variant": "declaration", "kind": 2048, @@ -22240,12 +22723,12 @@ "fileName": "index.ts", "line": 95, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L95" } ], "signatures": [ { - "id": 1231, + "id": 1244, "name": "versions", "variant": "signature", "kind": 4096, @@ -22263,7 +22746,7 @@ "fileName": "index.ts", "line": 95, "character": 8, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L95" } ], "type": { @@ -22297,18 +22780,18 @@ { "title": "Constructors", "children": [ - 1215 + 1228 ] }, { "title": "Methods", "children": [ - 1218, - 1220, - 1223, - 1226, - 1228, - 1230 + 1231, + 1233, + 1236, + 1239, + 1241, + 1243 ] } ], @@ -22317,19 +22800,19 @@ "fileName": "index.ts", "line": 79, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L79" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L79" } ] }, { - "id": 1232, + "id": 1245, "name": "BundleIndex", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1233, + "id": 1246, "name": "manifests", "variant": "declaration", "kind": 1024, @@ -22347,7 +22830,7 @@ "fileName": "types.ts", "line": 161, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L161" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L161" } ], "type": { @@ -22372,7 +22855,7 @@ } }, { - "id": 1234, + "id": 1247, "name": "versions", "variant": "declaration", "kind": 1024, @@ -22398,7 +22881,7 @@ "fileName": "types.ts", "line": 159, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L159" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L159" } ], "type": { @@ -22414,8 +22897,8 @@ { "title": "Properties", "children": [ - 1233, - 1234 + 1246, + 1247 ] } ], @@ -22424,12 +22907,12 @@ "fileName": "types.ts", "line": 157, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L157" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L157" } ] }, { - "id": 1235, + "id": 1248, "name": "BundleSource", "variant": "declaration", "kind": 256, @@ -22452,7 +22935,7 @@ }, "children": [ { - "id": 1236, + "id": 1249, "name": "read", "variant": "declaration", "kind": 2048, @@ -22462,12 +22945,12 @@ "fileName": "index.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L24" } ], "signatures": [ { - "id": 1237, + "id": 1250, "name": "read", "variant": "signature", "kind": 4096, @@ -22477,12 +22960,12 @@ "fileName": "index.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L24" } ], "parameters": [ { - "id": 1238, + "id": 1251, "name": "fileName", "variant": "param", "kind": 32768, @@ -22517,7 +23000,7 @@ { "title": "Methods", "children": [ - 1236 + 1249 ] } ], @@ -22526,19 +23009,19 @@ "fileName": "index.ts", "line": 23, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L23" } ] }, { - "id": 1239, + "id": 1252, "name": "SchemaDelta", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1240, + "id": 1253, "name": "added", "variant": "declaration", "kind": 1024, @@ -22556,7 +23039,7 @@ "fileName": "schema.ts", "line": 97, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L97" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L97" } ], "type": { @@ -22568,7 +23051,7 @@ } }, { - "id": 1241, + "id": 1254, "name": "changed", "variant": "declaration", "kind": 1024, @@ -22586,7 +23069,7 @@ "fileName": "schema.ts", "line": 101, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L101" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L101" } ], "type": { @@ -22598,7 +23081,7 @@ } }, { - "id": 1242, + "id": 1255, "name": "removed", "variant": "declaration", "kind": 1024, @@ -22616,7 +23099,7 @@ "fileName": "schema.ts", "line": 99, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L99" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L99" } ], "type": { @@ -22632,9 +23115,9 @@ { "title": "Properties", "children": [ - 1240, - 1241, - 1242 + 1253, + 1254, + 1255 ] } ], @@ -22643,19 +23126,19 @@ "fileName": "schema.ts", "line": 95, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/schema.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/schema.ts#L95" } ] }, { - "id": 1243, + "id": 1256, "name": "SlimExtensible", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1244, + "id": 1257, "name": "fields", "variant": "declaration", "kind": 1024, @@ -22673,7 +23156,7 @@ "fileName": "types.ts", "line": 111, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L111" } ], "type": { @@ -22685,7 +23168,7 @@ } }, { - "id": 1245, + "id": 1258, "name": "key", "variant": "declaration", "kind": 1024, @@ -22711,7 +23194,7 @@ "fileName": "types.ts", "line": 109, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L109" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L109" } ], "type": { @@ -22720,7 +23203,7 @@ } }, { - "id": 1246, + "id": 1259, "name": "p", "variant": "declaration", "kind": 1024, @@ -22746,7 +23229,7 @@ "fileName": "types.ts", "line": 113, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L113" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L113" } ], "type": { @@ -22763,7 +23246,7 @@ }, { "type": "reference", - "target": 1247, + "target": 1260, "name": "SlimField", "package": "@idfkit/schemas" } @@ -22777,9 +23260,9 @@ { "title": "Properties", "children": [ - 1244, - 1245, - 1246 + 1257, + 1258, + 1259 ] } ], @@ -22788,19 +23271,19 @@ "fileName": "types.ts", "line": 107, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L107" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L107" } ] }, { - "id": 1247, + "id": 1260, "name": "SlimField", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1248, + "id": 1261, "name": "auto", "variant": "declaration", "kind": 1024, @@ -22836,7 +23319,7 @@ "fileName": "types.ts", "line": 33, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L33" } ], "type": { @@ -22845,7 +23328,7 @@ } }, { - "id": 1249, + "id": 1262, "name": "d", "variant": "declaration", "kind": 1024, @@ -22865,7 +23348,7 @@ "fileName": "types.ts", "line": 63, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L63" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L63" } ], "type": { @@ -22883,7 +23366,7 @@ } }, { - "id": 1250, + "id": 1263, "name": "e", "variant": "declaration", "kind": 1024, @@ -22919,7 +23402,7 @@ "fileName": "types.ts", "line": 61, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L61" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L61" } ], "type": { @@ -22940,7 +23423,7 @@ } }, { - "id": 1251, + "id": 1264, "name": "eb", "variant": "declaration", "kind": 1024, @@ -23000,7 +23483,7 @@ "fileName": "types.ts", "line": 96, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L96" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L96" } ], "type": { @@ -23009,7 +23492,7 @@ } }, { - "id": 1252, + "id": 1265, "name": "max", "variant": "declaration", "kind": 1024, @@ -23021,7 +23504,7 @@ "fileName": "types.ts", "line": 65, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L65" } ], "type": { @@ -23030,7 +23513,7 @@ } }, { - "id": 1253, + "id": 1266, "name": "min", "variant": "declaration", "kind": 1024, @@ -23042,7 +23525,7 @@ "fileName": "types.ts", "line": 64, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L64" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L64" } ], "type": { @@ -23051,7 +23534,7 @@ } }, { - "id": 1254, + "id": 1267, "name": "n", "variant": "declaration", "kind": 1024, @@ -23079,7 +23562,7 @@ "fileName": "types.ts", "line": 104, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L104" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L104" } ], "type": { @@ -23088,7 +23571,7 @@ } }, { - "id": 1255, + "id": 1268, "name": "ol", "variant": "declaration", "kind": 1024, @@ -23108,7 +23591,7 @@ "fileName": "types.ts", "line": 51, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L51" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L51" } ], "type": { @@ -23120,7 +23603,7 @@ } }, { - "id": 1256, + "id": 1269, "name": "rc", "variant": "declaration", "kind": 1024, @@ -23140,7 +23623,7 @@ "fileName": "types.ts", "line": 82, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L82" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L82" } ], "type": { @@ -23149,7 +23632,7 @@ } }, { - "id": 1257, + "id": 1270, "name": "ref", "variant": "declaration", "kind": 1024, @@ -23169,7 +23652,7 @@ "fileName": "types.ts", "line": 53, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L53" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L53" } ], "type": { @@ -23181,7 +23664,7 @@ } }, { - "id": 1258, + "id": 1271, "name": "se", "variant": "declaration", "kind": 1024, @@ -23281,7 +23764,7 @@ "fileName": "types.ts", "line": 49, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L49" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L49" } ], "type": { @@ -23293,7 +23776,7 @@ } }, { - "id": 1259, + "id": 1272, "name": "t", "variant": "declaration", "kind": 1024, @@ -23311,18 +23794,18 @@ "fileName": "types.ts", "line": 25, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L25" } ], "type": { "type": "reference", - "target": 1275, + "target": 1288, "name": "FieldKind", "package": "@idfkit/schemas" } }, { - "id": 1260, + "id": 1273, "name": "u", "variant": "declaration", "kind": 1024, @@ -23342,7 +23825,7 @@ "fileName": "types.ts", "line": 80, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L80" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L80" } ], "type": { @@ -23351,7 +23834,7 @@ } }, { - "id": 1261, + "id": 1274, "name": "xmax", "variant": "declaration", "kind": 1024, @@ -23379,7 +23862,7 @@ "fileName": "types.ts", "line": 78, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L78" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L78" } ], "type": { @@ -23397,7 +23880,7 @@ } }, { - "id": 1262, + "id": 1275, "name": "xmin", "variant": "declaration", "kind": 1024, @@ -23449,7 +23932,7 @@ "fileName": "types.ts", "line": 76, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L76" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L76" } ], "type": { @@ -23471,21 +23954,21 @@ { "title": "Properties", "children": [ - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, 1261, - 1262 + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275 ] } ], @@ -23494,19 +23977,19 @@ "fileName": "types.ts", "line": 23, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L23" } ] }, { - "id": 1263, + "id": 1276, "name": "SlimType", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1264, + "id": 1277, "name": "anon", "variant": "declaration", "kind": 1024, @@ -23542,7 +24025,7 @@ "fileName": "types.ts", "line": 130, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L130" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L130" } ], "type": { @@ -23551,7 +24034,7 @@ } }, { - "id": 1265, + "id": 1278, "name": "f", "variant": "declaration", "kind": 1024, @@ -23577,7 +24060,7 @@ "fileName": "types.ts", "line": 118, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L118" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L118" } ], "type": { @@ -23589,7 +24072,7 @@ } }, { - "id": 1266, + "id": 1279, "name": "fo", "variant": "declaration", "kind": 1024, @@ -23633,7 +24116,7 @@ "fileName": "types.ts", "line": 151, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L151" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L151" } ], "type": { @@ -23645,7 +24128,7 @@ } }, { - "id": 1267, + "id": 1280, "name": "g", "variant": "declaration", "kind": 1024, @@ -23673,7 +24156,7 @@ "fileName": "types.ts", "line": 134, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L134" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L134" } ], "type": { @@ -23682,7 +24165,7 @@ } }, { - "id": 1268, + "id": 1281, "name": "m", "variant": "declaration", "kind": 1024, @@ -23710,7 +24193,7 @@ "fileName": "types.ts", "line": 142, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L142" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L142" } ], "type": { @@ -23719,7 +24202,7 @@ } }, { - "id": 1269, + "id": 1282, "name": "nref", "variant": "declaration", "kind": 1024, @@ -23739,7 +24222,7 @@ "fileName": "types.ts", "line": 124, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L124" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L124" } ], "type": { @@ -23751,7 +24234,7 @@ } }, { - "id": 1270, + "id": 1283, "name": "nreq", "variant": "declaration", "kind": 1024, @@ -23771,7 +24254,7 @@ "fileName": "types.ts", "line": 126, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L126" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L126" } ], "type": { @@ -23780,7 +24263,7 @@ } }, { - "id": 1271, + "id": 1284, "name": "p", "variant": "declaration", "kind": 1024, @@ -23798,7 +24281,7 @@ "fileName": "types.ts", "line": 120, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L120" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L120" } ], "type": { @@ -23815,7 +24298,7 @@ }, { "type": "reference", - "target": 1247, + "target": 1260, "name": "SlimField", "package": "@idfkit/schemas" } @@ -23825,7 +24308,7 @@ } }, { - "id": 1272, + "id": 1285, "name": "r", "variant": "declaration", "kind": 1024, @@ -23845,7 +24328,7 @@ "fileName": "types.ts", "line": 122, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L122" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L122" } ], "type": { @@ -23857,7 +24340,7 @@ } }, { - "id": 1273, + "id": 1286, "name": "s", "variant": "declaration", "kind": 1024, @@ -23901,7 +24384,7 @@ "fileName": "types.ts", "line": 128, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L128" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L128" } ], "type": { @@ -23910,7 +24393,7 @@ } }, { - "id": 1274, + "id": 1287, "name": "x", "variant": "declaration", "kind": 1024, @@ -23930,12 +24413,12 @@ "fileName": "types.ts", "line": 132, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L132" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L132" } ], "type": { "type": "reference", - "target": 1243, + "target": 1256, "name": "SlimExtensible", "package": "@idfkit/schemas" } @@ -23945,17 +24428,17 @@ { "title": "Properties", "children": [ - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274 + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287 ] } ], @@ -23964,12 +24447,12 @@ "fileName": "types.ts", "line": 116, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L116" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L116" } ] }, { - "id": 1275, + "id": 1288, "name": "FieldKind", "variant": "declaration", "kind": 2097152, @@ -23987,7 +24470,7 @@ "fileName": "types.ts", "line": 13, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L13" } ], "type": { @@ -24039,7 +24522,7 @@ } }, { - "id": 1276, + "id": 1289, "name": "Manifest", "variant": "declaration", "kind": 2097152, @@ -24057,7 +24540,7 @@ "fileName": "types.ts", "line": 155, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L155" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L155" } ], "type": { @@ -24082,7 +24565,7 @@ } }, { - "id": 1277, + "id": 1290, "name": "ProsePool", "variant": "declaration", "kind": 2097152, @@ -24140,7 +24623,7 @@ "fileName": "types.ts", "line": 175, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/types.ts#L175" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/types.ts#L175" } ], "type": { @@ -24156,7 +24639,7 @@ } }, { - "id": 1278, + "id": 1291, "name": "httpSource", "variant": "declaration", "kind": 64, @@ -24166,12 +24649,12 @@ "fileName": "index.ts", "line": 41, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L41" } ], "signatures": [ { - "id": 1279, + "id": 1292, "name": "httpSource", "variant": "signature", "kind": 4096, @@ -24253,12 +24736,12 @@ "fileName": "index.ts", "line": 41, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L41" } ], "parameters": [ { - "id": 1280, + "id": 1293, "name": "baseUrl", "variant": "param", "kind": 32768, @@ -24271,7 +24754,7 @@ ], "type": { "type": "reference", - "target": 1235, + "target": 1248, "name": "BundleSource", "package": "@idfkit/schemas" } @@ -24283,34 +24766,34 @@ { "title": "Classes", "children": [ - 1177, - 1186, - 1214 + 1190, + 1199, + 1227 ] }, { "title": "Interfaces", "children": [ - 1232, - 1235, - 1239, - 1243, - 1247, - 1263 + 1245, + 1248, + 1252, + 1256, + 1260, + 1276 ] }, { "title": "Type Aliases", "children": [ - 1275, - 1276, - 1277 + 1288, + 1289, + 1290 ] }, { "title": "Functions", "children": [ - 1278 + 1291 ] } ], @@ -24319,19 +24802,19 @@ "fileName": "index.ts", "line": 1, "character": 0, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/index.ts#L1" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/index.ts#L1" } ] }, { - "id": 1281, + "id": 1294, "name": "node", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 1282, + "id": 1295, "name": "localBundle", "variant": "declaration", "kind": 64, @@ -24341,12 +24824,12 @@ "fileName": "node.ts", "line": 27, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/node.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L27" } ], "signatures": [ { - "id": 1283, + "id": 1296, "name": "localBundle", "variant": "signature", "kind": 4096, @@ -24364,12 +24847,12 @@ "fileName": "node.ts", "line": 27, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/node.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L27" } ], "parameters": [ { - "id": 1284, + "id": 1297, "name": "dataDir", "variant": "param", "kind": 32768, @@ -24384,7 +24867,7 @@ ], "type": { "type": "reference", - "target": 1214, + "target": 1227, "name": "SchemaBundle", "package": "@idfkit/schemas" } @@ -24392,7 +24875,7 @@ ] }, { - "id": 1285, + "id": 1298, "name": "nodeSource", "variant": "declaration", "kind": 64, @@ -24402,12 +24885,12 @@ "fileName": "node.ts", "line": 17, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/node.ts#L17" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L17" } ], "signatures": [ { - "id": 1286, + "id": 1299, "name": "nodeSource", "variant": "signature", "kind": 4096, @@ -24425,12 +24908,12 @@ "fileName": "node.ts", "line": 17, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/node.ts#L17" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L17" } ], "parameters": [ { - "id": 1287, + "id": 1300, "name": "dataDir", "variant": "param", "kind": 32768, @@ -24444,7 +24927,7 @@ ], "type": { "type": "reference", - "target": 1235, + "target": 1248, "name": "BundleSource", "package": "@idfkit/schemas" } @@ -24452,7 +24935,7 @@ ] }, { - "id": 1288, + "id": 1301, "name": "readBundleFileSync", "variant": "declaration", "kind": 64, @@ -24462,12 +24945,12 @@ "fileName": "node.ts", "line": 38, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/node.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L38" } ], "signatures": [ { - "id": 1289, + "id": 1302, "name": "readBundleFileSync", "variant": "signature", "kind": 4096, @@ -24493,12 +24976,12 @@ "fileName": "node.ts", "line": 38, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/node.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L38" } ], "parameters": [ { - "id": 1290, + "id": 1303, "name": "fileName", "variant": "param", "kind": 32768, @@ -24509,7 +24992,7 @@ } }, { - "id": 1291, + "id": 1304, "name": "dataDir", "variant": "param", "kind": 32768, @@ -24533,9 +25016,9 @@ { "title": "Functions", "children": [ - 1282, - 1285, - 1288 + 1295, + 1298, + 1301 ] } ], @@ -24544,7 +25027,7 @@ "fileName": "node.ts", "line": 1, "character": 0, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/schemas/src/node.ts#L1" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/schemas/src/node.ts#L1" } ] } @@ -24553,28 +25036,28 @@ { "title": "Modules", "children": [ - 1176, - 1281 + 1189, + 1294 ] } ] }, { - "id": 2046, + "id": 2066, "name": "@idfkit/weather", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 2047, + "id": 2067, "name": "index", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 2048, + "id": 2068, "name": "GeocodingError", "variant": "declaration", "kind": 128, @@ -24589,7 +25072,7 @@ }, "children": [ { - "id": 2049, + "id": 2069, "name": "constructor", "variant": "declaration", "kind": 512, @@ -24599,12 +25082,12 @@ "fileName": "geocode.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L24" } ], "signatures": [ { - "id": 2050, + "id": 2070, "name": "GeocodingError", "variant": "signature", "kind": 16384, @@ -24614,12 +25097,12 @@ "fileName": "geocode.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L24" } ], "parameters": [ { - "id": 2051, + "id": 2071, "name": "message", "variant": "param", "kind": 32768, @@ -24630,7 +25113,7 @@ } }, { - "id": 2052, + "id": 2072, "name": "options", "variant": "param", "kind": 32768, @@ -24640,14 +25123,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2053, + "id": 2073, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2054, + "id": 2074, "name": "cause", "variant": "declaration", "kind": 1024, @@ -24659,7 +25142,7 @@ "fileName": "geocode.ts", "line": 24, "character": 43, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L24" } ], "type": { @@ -24672,7 +25155,7 @@ { "title": "Properties", "children": [ - 2054 + 2074 ] } ] @@ -24682,7 +25165,7 @@ ], "type": { "type": "reference", - "target": 2048, + "target": 2068, "name": "GeocodingError", "package": "@idfkit/weather" }, @@ -24706,7 +25189,7 @@ { "title": "Constructors", "children": [ - 2049 + 2069 ] } ], @@ -24715,7 +25198,7 @@ "fileName": "geocode.ts", "line": 23, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L23" } ], "extendedTypes": [ @@ -24732,7 +25215,7 @@ ] }, { - "id": 2055, + "id": 2075, "name": "RateLimiter", "variant": "declaration", "kind": 128, @@ -24755,7 +25238,7 @@ }, "children": [ { - "id": 2056, + "id": 2076, "name": "constructor", "variant": "declaration", "kind": 512, @@ -24765,12 +25248,12 @@ "fileName": "geocode.ts", "line": 40, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L40" } ], "signatures": [ { - "id": 2057, + "id": 2077, "name": "RateLimiter", "variant": "signature", "kind": 16384, @@ -24780,12 +25263,12 @@ "fileName": "geocode.ts", "line": 40, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L40" } ], "parameters": [ { - "id": 2058, + "id": 2078, "name": "minIntervalMs", "variant": "param", "kind": 32768, @@ -24799,7 +25282,7 @@ ], "type": { "type": "reference", - "target": 2055, + "target": 2075, "name": "RateLimiter", "package": "@idfkit/weather" } @@ -24807,7 +25290,7 @@ ] }, { - "id": 2059, + "id": 2079, "name": "reset", "variant": "declaration", "kind": 2048, @@ -24817,12 +25300,12 @@ "fileName": "geocode.ts", "line": 57, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L57" } ], "signatures": [ { - "id": 2060, + "id": 2080, "name": "reset", "variant": "signature", "kind": 4096, @@ -24848,7 +25331,7 @@ "fileName": "geocode.ts", "line": 57, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L57" } ], "type": { @@ -24859,7 +25342,7 @@ ] }, { - "id": 2061, + "id": 2081, "name": "wait", "variant": "declaration", "kind": 2048, @@ -24869,12 +25352,12 @@ "fileName": "geocode.ts", "line": 45, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L45" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L45" } ], "signatures": [ { - "id": 2062, + "id": 2082, "name": "wait", "variant": "signature", "kind": 4096, @@ -24892,7 +25375,7 @@ "fileName": "geocode.ts", "line": 45, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L45" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L45" } ], "type": { @@ -24919,14 +25402,14 @@ { "title": "Constructors", "children": [ - 2056 + 2076 ] }, { "title": "Methods", "children": [ - 2059, - 2061 + 2079, + 2081 ] } ], @@ -24935,19 +25418,19 @@ "fileName": "geocode.ts", "line": 35, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L35" } ] }, { - "id": 2063, + "id": 2083, "name": "StationIndex", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2064, + "id": 2084, "name": "constructor", "variant": "declaration", "kind": 512, @@ -24957,12 +25440,12 @@ "fileName": "station-index.ts", "line": 123, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L123" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L123" } ], "signatures": [ { - "id": 2065, + "id": 2085, "name": "StationIndex", "variant": "signature", "kind": 16384, @@ -24972,12 +25455,12 @@ "fileName": "station-index.ts", "line": 123, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L123" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L123" } ], "parameters": [ { - "id": 2066, + "id": 2086, "name": "stations", "variant": "param", "kind": 32768, @@ -24989,7 +25472,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -24997,7 +25480,7 @@ } }, { - "id": 2067, + "id": 2087, "name": "lastModified", "variant": "param", "kind": 32768, @@ -25027,7 +25510,7 @@ ], "type": { "type": "reference", - "target": 2063, + "target": 2083, "name": "StationIndex", "package": "@idfkit/weather" } @@ -25035,7 +25518,7 @@ ] }, { - "id": 2068, + "id": 2088, "name": "countries", "variant": "declaration", "kind": 262144, @@ -25045,11 +25528,11 @@ "fileName": "station-index.ts", "line": 153, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L153" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L153" } ], "getSignature": { - "id": 2069, + "id": 2089, "name": "countries", "variant": "signature", "kind": 524288, @@ -25067,7 +25550,7 @@ "fileName": "station-index.ts", "line": 153, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L153" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L153" } ], "type": { @@ -25080,7 +25563,7 @@ } }, { - "id": 2070, + "id": 2090, "name": "lastModified", "variant": "declaration", "kind": 262144, @@ -25090,11 +25573,11 @@ "fileName": "station-index.ts", "line": 148, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L148" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L148" } ], "getSignature": { - "id": 2071, + "id": 2091, "name": "lastModified", "variant": "signature", "kind": 524288, @@ -25120,7 +25603,7 @@ "fileName": "station-index.ts", "line": 148, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L148" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L148" } ], "type": { @@ -25158,7 +25641,7 @@ } }, { - "id": 2072, + "id": 2092, "name": "size", "variant": "declaration", "kind": 262144, @@ -25168,11 +25651,11 @@ "fileName": "station-index.ts", "line": 143, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L143" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L143" } ], "getSignature": { - "id": 2073, + "id": 2093, "name": "size", "variant": "signature", "kind": 524288, @@ -25190,7 +25673,7 @@ "fileName": "station-index.ts", "line": 143, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L143" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L143" } ], "type": { @@ -25200,7 +25683,7 @@ } }, { - "id": 2074, + "id": 2094, "name": "stations", "variant": "declaration", "kind": 262144, @@ -25210,11 +25693,11 @@ "fileName": "station-index.ts", "line": 138, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L138" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L138" } ], "getSignature": { - "id": 2075, + "id": 2095, "name": "stations", "variant": "signature", "kind": 524288, @@ -25232,7 +25715,7 @@ "fileName": "station-index.ts", "line": 138, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L138" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L138" } ], "type": { @@ -25242,7 +25725,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -25251,7 +25734,7 @@ } }, { - "id": 2076, + "id": 2096, "name": "filter", "variant": "declaration", "kind": 2048, @@ -25261,12 +25744,12 @@ "fileName": "station-index.ts", "line": 261, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L261" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L261" } ], "signatures": [ { - "id": 2077, + "id": 2097, "name": "filter", "variant": "signature", "kind": 4096, @@ -25284,19 +25767,19 @@ "fileName": "station-index.ts", "line": 261, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L261" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L261" } ], "parameters": [ { - "id": 2078, + "id": 2098, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2143, + "target": 2163, "name": "FilterOptions", "package": "@idfkit/weather" }, @@ -25307,7 +25790,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -25316,7 +25799,7 @@ ] }, { - "id": 2079, + "id": 2099, "name": "getByFilename", "variant": "declaration", "kind": 2048, @@ -25326,12 +25809,12 @@ "fileName": "station-index.ts", "line": 170, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L170" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L170" } ], "signatures": [ { - "id": 2080, + "id": 2100, "name": "getByFilename", "variant": "signature", "kind": 4096, @@ -25349,12 +25832,12 @@ "fileName": "station-index.ts", "line": 170, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L170" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L170" } ], "parameters": [ { - "id": 2081, + "id": 2101, "name": "filename", "variant": "param", "kind": 32768, @@ -25369,7 +25852,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -25378,7 +25861,7 @@ ] }, { - "id": 2082, + "id": 2102, "name": "getByWmo", "variant": "declaration", "kind": 2048, @@ -25388,12 +25871,12 @@ "fileName": "station-index.ts", "line": 161, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L161" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L161" } ], "signatures": [ { - "id": 2083, + "id": 2103, "name": "getByWmo", "variant": "signature", "kind": 4096, @@ -25411,12 +25894,12 @@ "fileName": "station-index.ts", "line": 161, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L161" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L161" } ], "parameters": [ { - "id": 2084, + "id": 2104, "name": "wmo", "variant": "param", "kind": 32768, @@ -25431,7 +25914,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -25440,7 +25923,7 @@ ] }, { - "id": 2085, + "id": 2105, "name": "nearest", "variant": "declaration", "kind": 2048, @@ -25450,12 +25933,12 @@ "fileName": "station-index.ts", "line": 222, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L222" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L222" } ], "signatures": [ { - "id": 2086, + "id": 2106, "name": "nearest", "variant": "signature", "kind": 4096, @@ -25481,12 +25964,12 @@ "fileName": "station-index.ts", "line": 222, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L222" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L222" } ], "parameters": [ { - "id": 2087, + "id": 2107, "name": "latitude", "variant": "param", "kind": 32768, @@ -25497,7 +25980,7 @@ } }, { - "id": 2088, + "id": 2108, "name": "longitude", "variant": "param", "kind": 32768, @@ -25508,14 +25991,14 @@ } }, { - "id": 2089, + "id": 2109, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2157, + "target": 2177, "name": "NearestOptions", "package": "@idfkit/weather" }, @@ -25526,7 +26009,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2172, + "target": 2192, "name": "SpatialResult", "package": "@idfkit/weather" } @@ -25535,7 +26018,7 @@ ] }, { - "id": 2090, + "id": 2110, "name": "search", "variant": "declaration", "kind": 2048, @@ -25545,12 +26028,12 @@ "fileName": "station-index.ts", "line": 186, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L186" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L186" } ], "signatures": [ { - "id": 2091, + "id": 2111, "name": "search", "variant": "signature", "kind": 4096, @@ -25565,7 +26048,7 @@ "kind": "inline-tag", "tag": "@link", "text": "getByFilename", - "target": 2079 + "target": 2099 }, { "kind": "text", @@ -25578,12 +26061,12 @@ "fileName": "station-index.ts", "line": 186, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L186" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L186" } ], "parameters": [ { - "id": 2092, + "id": 2112, "name": "query", "variant": "param", "kind": 32768, @@ -25594,14 +26077,14 @@ } }, { - "id": 2093, + "id": 2113, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2165, + "target": 2185, "name": "SearchOptions", "package": "@idfkit/weather" }, @@ -25612,7 +26095,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2168, + "target": 2188, "name": "SearchResult", "package": "@idfkit/weather" } @@ -25621,7 +26104,7 @@ ] }, { - "id": 2094, + "id": 2114, "name": "fromStations", "variant": "declaration", "kind": 2048, @@ -25633,12 +26116,12 @@ "fileName": "station-index.ts", "line": 133, "character": 9, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L133" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L133" } ], "signatures": [ { - "id": 2095, + "id": 2115, "name": "fromStations", "variant": "signature", "kind": 4096, @@ -25656,12 +26139,12 @@ "fileName": "station-index.ts", "line": 133, "character": 9, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L133" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L133" } ], "parameters": [ { - "id": 2096, + "id": 2116, "name": "stations", "variant": "param", "kind": 32768, @@ -25673,7 +26156,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -25683,7 +26166,7 @@ ], "type": { "type": "reference", - "target": 2063, + "target": 2083, "name": "StationIndex", "package": "@idfkit/weather" } @@ -25695,27 +26178,27 @@ { "title": "Constructors", "children": [ - 2064 + 2084 ] }, { "title": "Accessors", "children": [ - 2068, - 2070, - 2072, - 2074 + 2088, + 2090, + 2092, + 2094 ] }, { "title": "Methods", "children": [ - 2076, - 2079, - 2082, - 2085, - 2090, - 2094 + 2096, + 2099, + 2102, + 2105, + 2110, + 2114 ] } ], @@ -25724,12 +26207,12 @@ "fileName": "station-index.ts", "line": 116, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L116" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L116" } ] }, { - "id": 2097, + "id": 2117, "name": "WeatherStation", "variant": "declaration", "kind": 128, @@ -25744,7 +26227,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationIndex", - "target": 2063 + "target": 2083 }, { "kind": "text", @@ -25754,7 +26237,7 @@ }, "children": [ { - "id": 2098, + "id": 2118, "name": "constructor", "variant": "declaration", "kind": 512, @@ -25764,12 +26247,12 @@ "fileName": "station.ts", "line": 102, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L102" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L102" } ], "signatures": [ { - "id": 2099, + "id": 2119, "name": "WeatherStation", "variant": "signature", "kind": 16384, @@ -25779,19 +26262,19 @@ "fileName": "station.ts", "line": 102, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L102" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L102" } ], "parameters": [ { - "id": 2100, + "id": 2120, "name": "fields", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2198, + "target": 2218, "name": "WeatherStationFields", "package": "@idfkit/weather" } @@ -25799,7 +26282,7 @@ ], "type": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -25807,7 +26290,7 @@ ] }, { - "id": 2101, + "id": 2121, "name": "ashraeClimateZone", "variant": "declaration", "kind": 1024, @@ -25835,7 +26318,7 @@ "fileName": "station.ts", "line": 95, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L95" } ], "type": { @@ -25844,14 +26327,14 @@ }, "implementationOf": { "type": "reference", - "target": 2199, + "target": 2219, "name": "Readonly.ashraeClimateZone", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.ashraeClimateZone" } }, { - "id": 2102, + "id": 2122, "name": "cdd10", "variant": "declaration", "kind": 1024, @@ -25871,7 +26354,7 @@ "fileName": "station.ts", "line": 99, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L99" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L99" } ], "type": { @@ -25880,14 +26363,14 @@ }, "implementationOf": { "type": "reference", - "target": 2200, + "target": 2220, "name": "Readonly.cdd10", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.cdd10" } }, { - "id": 2103, + "id": 2123, "name": "city", "variant": "declaration", "kind": 1024, @@ -25915,7 +26398,7 @@ "fileName": "station.ts", "line": 87, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L87" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L87" } ], "type": { @@ -25924,14 +26407,14 @@ }, "implementationOf": { "type": "reference", - "target": 2201, + "target": 2221, "name": "Readonly.city", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.city" } }, { - "id": 2104, + "id": 2124, "name": "coolingDesignDbC", "variant": "declaration", "kind": 1024, @@ -25951,7 +26434,7 @@ "fileName": "station.ts", "line": 97, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L97" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L97" } ], "type": { @@ -25960,14 +26443,14 @@ }, "implementationOf": { "type": "reference", - "target": 2202, + "target": 2222, "name": "Readonly.coolingDesignDbC", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.coolingDesignDbC" } }, { - "id": 2105, + "id": 2125, "name": "country", "variant": "declaration", "kind": 1024, @@ -25995,7 +26478,7 @@ "fileName": "station.ts", "line": 85, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L85" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L85" } ], "type": { @@ -26004,14 +26487,14 @@ }, "implementationOf": { "type": "reference", - "target": 2203, + "target": 2223, "name": "Readonly.country", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.country" } }, { - "id": 2106, + "id": 2126, "name": "designConditionsSourceWmo", "variant": "declaration", "kind": 1024, @@ -26039,7 +26522,7 @@ "fileName": "station.ts", "line": 100, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L100" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L100" } ], "type": { @@ -26057,14 +26540,14 @@ }, "implementationOf": { "type": "reference", - "target": 2204, + "target": 2224, "name": "Readonly.designConditionsSourceWmo", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.designConditionsSourceWmo" } }, { - "id": 2107, + "id": 2127, "name": "elevation", "variant": "declaration", "kind": 1024, @@ -26084,7 +26567,7 @@ "fileName": "station.ts", "line": 93, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L93" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L93" } ], "type": { @@ -26093,14 +26576,14 @@ }, "implementationOf": { "type": "reference", - "target": 2205, + "target": 2225, "name": "Readonly.elevation", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.elevation" } }, { - "id": 2108, + "id": 2128, "name": "hdd18", "variant": "declaration", "kind": 1024, @@ -26120,7 +26603,7 @@ "fileName": "station.ts", "line": 98, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L98" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L98" } ], "type": { @@ -26129,14 +26612,14 @@ }, "implementationOf": { "type": "reference", - "target": 2206, + "target": 2226, "name": "Readonly.hdd18", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.hdd18" } }, { - "id": 2109, + "id": 2129, "name": "heatingDesignDbC", "variant": "declaration", "kind": 1024, @@ -26156,7 +26639,7 @@ "fileName": "station.ts", "line": 96, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L96" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L96" } ], "type": { @@ -26165,14 +26648,14 @@ }, "implementationOf": { "type": "reference", - "target": 2207, + "target": 2227, "name": "Readonly.heatingDesignDbC", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.heatingDesignDbC" } }, { - "id": 2110, + "id": 2130, "name": "latitude", "variant": "declaration", "kind": 1024, @@ -26192,7 +26675,7 @@ "fileName": "station.ts", "line": 90, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L90" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L90" } ], "type": { @@ -26201,14 +26684,14 @@ }, "implementationOf": { "type": "reference", - "target": 2208, + "target": 2228, "name": "Readonly.latitude", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.latitude" } }, { - "id": 2111, + "id": 2131, "name": "longitude", "variant": "declaration", "kind": 1024, @@ -26228,7 +26711,7 @@ "fileName": "station.ts", "line": 91, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L91" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L91" } ], "type": { @@ -26237,14 +26720,14 @@ }, "implementationOf": { "type": "reference", - "target": 2209, + "target": 2229, "name": "Readonly.longitude", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.longitude" } }, { - "id": 2112, + "id": 2132, "name": "source", "variant": "declaration", "kind": 1024, @@ -26280,7 +26763,7 @@ "fileName": "station.ts", "line": 89, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L89" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L89" } ], "type": { @@ -26289,14 +26772,14 @@ }, "implementationOf": { "type": "reference", - "target": 2210, + "target": 2230, "name": "Readonly.source", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.source" } }, { - "id": 2113, + "id": 2133, "name": "state", "variant": "declaration", "kind": 1024, @@ -26324,7 +26807,7 @@ "fileName": "station.ts", "line": 86, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L86" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L86" } ], "type": { @@ -26333,14 +26816,14 @@ }, "implementationOf": { "type": "reference", - "target": 2211, + "target": 2231, "name": "Readonly.state", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.state" } }, { - "id": 2114, + "id": 2134, "name": "timezone", "variant": "declaration", "kind": 1024, @@ -26368,7 +26851,7 @@ "fileName": "station.ts", "line": 92, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L92" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L92" } ], "type": { @@ -26377,14 +26860,14 @@ }, "implementationOf": { "type": "reference", - "target": 2212, + "target": 2232, "name": "Readonly.timezone", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.timezone" } }, { - "id": 2115, + "id": 2135, "name": "url", "variant": "declaration", "kind": 1024, @@ -26404,7 +26887,7 @@ "fileName": "station.ts", "line": 94, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L94" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L94" } ], "type": { @@ -26413,14 +26896,14 @@ }, "implementationOf": { "type": "reference", - "target": 2213, + "target": 2233, "name": "Readonly.url", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.url" } }, { - "id": 2116, + "id": 2136, "name": "wmo", "variant": "declaration", "kind": 1024, @@ -26440,7 +26923,7 @@ "fileName": "station.ts", "line": 88, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L88" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L88" } ], "type": { @@ -26449,14 +26932,14 @@ }, "implementationOf": { "type": "reference", - "target": 2214, + "target": 2234, "name": "Readonly.wmo", "package": "@idfkit/weather", "qualifiedName": "WeatherStationFields.wmo" } }, { - "id": 2117, + "id": 2137, "name": "coolingDesignDbF", "variant": "declaration", "kind": 262144, @@ -26466,11 +26949,11 @@ "fileName": "station.ts", "line": 161, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L161" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L161" } ], "getSignature": { - "id": 2118, + "id": 2138, "name": "coolingDesignDbF", "variant": "signature", "kind": 524288, @@ -26488,7 +26971,7 @@ "fileName": "station.ts", "line": 161, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L161" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L161" } ], "type": { @@ -26498,7 +26981,7 @@ } }, { - "id": 2119, + "id": 2139, "name": "datasetVariant", "variant": "declaration", "kind": 262144, @@ -26508,11 +26991,11 @@ "fileName": "station.ts", "line": 149, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L149" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L149" } ], "getSignature": { - "id": 2120, + "id": 2140, "name": "datasetVariant", "variant": "signature", "kind": 524288, @@ -26546,7 +27029,7 @@ "fileName": "station.ts", "line": 149, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L149" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L149" } ], "type": { @@ -26556,7 +27039,7 @@ } }, { - "id": 2121, + "id": 2141, "name": "displayName", "variant": "declaration", "kind": 262144, @@ -26566,11 +27049,11 @@ "fileName": "station.ts", "line": 127, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L127" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L127" } ], "getSignature": { - "id": 2122, + "id": 2142, "name": "displayName", "variant": "signature", "kind": 524288, @@ -26596,7 +27079,7 @@ "fileName": "station.ts", "line": 127, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L127" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L127" } ], "type": { @@ -26606,7 +27089,7 @@ } }, { - "id": 2123, + "id": 2143, "name": "filenameStem", "variant": "declaration", "kind": 262144, @@ -26616,11 +27099,11 @@ "fileName": "station.ts", "line": 140, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L140" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L140" } ], "getSignature": { - "id": 2124, + "id": 2144, "name": "filenameStem", "variant": "signature", "kind": 524288, @@ -26654,7 +27137,7 @@ "fileName": "station.ts", "line": 140, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L140" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L140" } ], "type": { @@ -26664,7 +27147,7 @@ } }, { - "id": 2125, + "id": 2145, "name": "heatingDesignDbF", "variant": "declaration", "kind": 262144, @@ -26674,11 +27157,11 @@ "fileName": "station.ts", "line": 156, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L156" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L156" } ], "getSignature": { - "id": 2126, + "id": 2146, "name": "heatingDesignDbF", "variant": "signature", "kind": 524288, @@ -26696,7 +27179,7 @@ "fileName": "station.ts", "line": 156, "character": 6, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L156" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L156" } ], "type": { @@ -26706,7 +27189,7 @@ } }, { - "id": 2127, + "id": 2147, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -26716,12 +27199,12 @@ "fileName": "station.ts", "line": 166, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L166" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L166" } ], "signatures": [ { - "id": 2128, + "id": 2148, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -26736,7 +27219,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationRecord", - "target": 2175 + "target": 2195 }, { "kind": "text", @@ -26749,12 +27232,12 @@ "fileName": "station.ts", "line": 166, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L166" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L166" } ], "type": { "type": "reference", - "target": 2175, + "target": 2195, "name": "StationRecord", "package": "@idfkit/weather" } @@ -26762,7 +27245,7 @@ ] }, { - "id": 2129, + "id": 2149, "name": "fromJSON", "variant": "declaration", "kind": 2048, @@ -26774,12 +27257,12 @@ "fileName": "station.ts", "line": 194, "character": 9, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L194" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L194" } ], "signatures": [ { - "id": 2130, + "id": 2150, "name": "fromJSON", "variant": "signature", "kind": 4096, @@ -26813,19 +27296,19 @@ "fileName": "station.ts", "line": 194, "character": 9, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L194" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L194" } ], "parameters": [ { - "id": 2131, + "id": 2151, "name": "record", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2175, + "target": 2195, "name": "StationRecord", "package": "@idfkit/weather" } @@ -26833,7 +27316,7 @@ ], "type": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -26845,45 +27328,45 @@ { "title": "Constructors", "children": [ - 2098 + 2118 ] }, { "title": "Properties", "children": [ - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116 + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136 ] }, { "title": "Accessors", "children": [ - 2117, - 2119, - 2121, - 2123, - 2125 + 2137, + 2139, + 2141, + 2143, + 2145 ] }, { "title": "Methods", "children": [ - 2127, - 2129 + 2147, + 2149 ] } ], @@ -26892,7 +27375,7 @@ "fileName": "station.ts", "line": 84, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L84" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L84" } ], "implementedTypes": [ @@ -26914,7 +27397,7 @@ "typeArguments": [ { "type": "reference", - "target": 2198, + "target": 2218, "name": "WeatherStationFields", "package": "@idfkit/weather" } @@ -26929,7 +27412,7 @@ ] }, { - "id": 2132, + "id": 2152, "name": "DetectLocationOptions", "variant": "declaration", "kind": 256, @@ -26944,7 +27427,7 @@ "kind": "inline-tag", "tag": "@link", "text": "detectLocation", - "target": 2231 + "target": 2251 }, { "kind": "text", @@ -26954,7 +27437,7 @@ }, "children": [ { - "id": 2133, + "id": 2153, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -26967,23 +27450,23 @@ "fileName": "geocode.ts", "line": 71, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L71" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L71" } ], "type": { "type": "reference", - "target": 2215, + "target": 2235, "name": "FetchLike", "package": "@idfkit/weather" }, "inheritedFrom": { "type": "reference", - "target": 2148, + "target": 2168, "name": "GeocodeOptions.fetch" } }, { - "id": 2134, + "id": 2154, "name": "maxAgeMs", "variant": "declaration", "kind": 1024, @@ -27011,7 +27494,7 @@ "fileName": "geocode.ts", "line": 129, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L129" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L129" } ], "type": { @@ -27020,7 +27503,7 @@ } }, { - "id": 2135, + "id": 2155, "name": "signal", "variant": "declaration", "kind": 1024, @@ -27033,7 +27516,7 @@ "fileName": "geocode.ts", "line": 72, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L72" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L72" } ], "type": { @@ -27049,7 +27532,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 2149, + "target": 2169, "name": "GeocodeOptions.signal" } } @@ -27058,9 +27541,9 @@ { "title": "Properties", "children": [ - 2133, - 2134, - 2135 + 2153, + 2154, + 2155 ] } ], @@ -27069,20 +27552,20 @@ "fileName": "geocode.ts", "line": 124, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L124" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L124" } ], "extendedTypes": [ { "type": "reference", - "target": 2147, + "target": 2167, "name": "GeocodeOptions", "package": "@idfkit/weather" } ] }, { - "id": 2136, + "id": 2156, "name": "FetchWeatherOptions", "variant": "declaration", "kind": 256, @@ -27097,7 +27580,7 @@ }, "children": [ { - "id": 2137, + "id": 2157, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -27125,18 +27608,18 @@ "fileName": "download.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L24" } ], "type": { "type": "reference", - "target": 2215, + "target": 2235, "name": "FetchLike", "package": "@idfkit/weather" } }, { - "id": 2138, + "id": 2158, "name": "rewriteUrl", "variant": "declaration", "kind": 1024, @@ -27164,27 +27647,27 @@ "fileName": "download.ts", "line": 29, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L29" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L29" } ], "type": { "type": "reflection", "declaration": { - "id": 2139, + "id": 2159, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2140, + "id": 2160, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2141, + "id": 2161, "name": "url", "variant": "param", "kind": 32768, @@ -27205,7 +27688,7 @@ } }, { - "id": 2142, + "id": 2162, "name": "signal", "variant": "declaration", "kind": 1024, @@ -27233,7 +27716,7 @@ "fileName": "download.ts", "line": 31, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L31" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L31" } ], "type": { @@ -27253,9 +27736,9 @@ { "title": "Properties", "children": [ - 2137, - 2138, - 2142 + 2157, + 2158, + 2162 ] } ], @@ -27264,12 +27747,12 @@ "fileName": "download.ts", "line": 22, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L22" } ] }, { - "id": 2143, + "id": 2163, "name": "FilterOptions", "variant": "declaration", "kind": 256, @@ -27284,7 +27767,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationIndex.filter", - "target": 2076 + "target": 2096 }, { "kind": "text", @@ -27294,7 +27777,7 @@ }, "children": [ { - "id": 2144, + "id": 2164, "name": "country", "variant": "declaration", "kind": 1024, @@ -27306,7 +27789,7 @@ "fileName": "station-index.ts", "line": 110, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L110" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L110" } ], "type": { @@ -27315,7 +27798,7 @@ } }, { - "id": 2145, + "id": 2165, "name": "state", "variant": "declaration", "kind": 1024, @@ -27327,7 +27810,7 @@ "fileName": "station-index.ts", "line": 111, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L111" } ], "type": { @@ -27336,7 +27819,7 @@ } }, { - "id": 2146, + "id": 2166, "name": "wmoRegion", "variant": "declaration", "kind": 1024, @@ -27364,7 +27847,7 @@ "fileName": "station-index.ts", "line": 113, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L113" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L113" } ], "type": { @@ -27377,9 +27860,9 @@ { "title": "Properties", "children": [ - 2144, - 2145, - 2146 + 2164, + 2165, + 2166 ] } ], @@ -27388,12 +27871,12 @@ "fileName": "station-index.ts", "line": 109, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L109" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L109" } ] }, { - "id": 2147, + "id": 2167, "name": "GeocodeOptions", "variant": "declaration", "kind": 256, @@ -27408,7 +27891,7 @@ "kind": "inline-tag", "tag": "@link", "text": "geocode", - "target": 2251 + "target": 2271 }, { "kind": "text", @@ -27418,7 +27901,7 @@ "kind": "inline-tag", "tag": "@link", "text": "detectLocation", - "target": 2231 + "target": 2251 }, { "kind": "text", @@ -27428,7 +27911,7 @@ }, "children": [ { - "id": 2148, + "id": 2168, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -27440,18 +27923,18 @@ "fileName": "geocode.ts", "line": 71, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L71" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L71" } ], "type": { "type": "reference", - "target": 2215, + "target": 2235, "name": "FetchLike", "package": "@idfkit/weather" } }, { - "id": 2149, + "id": 2169, "name": "signal", "variant": "declaration", "kind": 1024, @@ -27463,7 +27946,7 @@ "fileName": "geocode.ts", "line": 72, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L72" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L72" } ], "type": { @@ -27483,8 +27966,8 @@ { "title": "Properties", "children": [ - 2148, - 2149 + 2168, + 2169 ] } ], @@ -27493,19 +27976,19 @@ "fileName": "geocode.ts", "line": 70, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L70" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L70" } ], "extendedBy": [ { "type": "reference", - "target": 2132, + "target": 2152, "name": "DetectLocationOptions" } ] }, { - "id": 2150, + "id": 2170, "name": "IndexData", "variant": "declaration", "kind": 256, @@ -27528,7 +28011,7 @@ }, "children": [ { - "id": 2151, + "id": 2171, "name": "built_at", "variant": "declaration", "kind": 1024, @@ -27540,7 +28023,7 @@ "fileName": "load.ts", "line": 37, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L37" } ], "type": { @@ -27549,7 +28032,7 @@ } }, { - "id": 2152, + "id": 2172, "name": "last_modified", "variant": "declaration", "kind": 1024, @@ -27561,7 +28044,7 @@ "fileName": "load.ts", "line": 38, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L38" } ], "type": { @@ -27586,7 +28069,7 @@ } }, { - "id": 2153, + "id": 2173, "name": "stations", "variant": "declaration", "kind": 1024, @@ -27596,14 +28079,14 @@ "fileName": "load.ts", "line": 39, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L39" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 2175, + "target": 2195, "name": "StationRecord", "package": "@idfkit/weather" } @@ -27614,9 +28097,9 @@ { "title": "Properties", "children": [ - 2151, - 2152, - 2153 + 2171, + 2172, + 2173 ] } ], @@ -27625,12 +28108,12 @@ "fileName": "load.ts", "line": 36, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L36" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L36" } ] }, { - "id": 2154, + "id": 2174, "name": "LoadIndexOptions", "variant": "declaration", "kind": 256, @@ -27645,7 +28128,7 @@ "kind": "inline-tag", "tag": "@link", "text": "loadStationIndex", - "target": 2264 + "target": 2284 }, { "kind": "text", @@ -27655,7 +28138,7 @@ }, "children": [ { - "id": 2155, + "id": 2175, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -27667,18 +28150,18 @@ "fileName": "load.ts", "line": 74, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L74" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L74" } ], "type": { "type": "reference", - "target": 2215, + "target": 2235, "name": "FetchLike", "package": "@idfkit/weather" } }, { - "id": 2156, + "id": 2176, "name": "signal", "variant": "declaration", "kind": 1024, @@ -27690,7 +28173,7 @@ "fileName": "load.ts", "line": 75, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L75" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L75" } ], "type": { @@ -27710,8 +28193,8 @@ { "title": "Properties", "children": [ - 2155, - 2156 + 2175, + 2176 ] } ], @@ -27720,12 +28203,12 @@ "fileName": "load.ts", "line": 73, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L73" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L73" } ] }, { - "id": 2157, + "id": 2177, "name": "NearestOptions", "variant": "declaration", "kind": 256, @@ -27740,7 +28223,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationIndex.nearest", - "target": 2085 + "target": 2105 }, { "kind": "text", @@ -27750,7 +28233,7 @@ }, "children": [ { - "id": 2158, + "id": 2178, "name": "country", "variant": "declaration", "kind": 1024, @@ -27770,7 +28253,7 @@ "fileName": "station-index.ts", "line": 105, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L105" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L105" } ], "type": { @@ -27779,7 +28262,7 @@ } }, { - "id": 2159, + "id": 2179, "name": "limit", "variant": "declaration", "kind": 1024, @@ -27799,7 +28282,7 @@ "fileName": "station-index.ts", "line": 101, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L101" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L101" } ], "type": { @@ -27808,7 +28291,7 @@ } }, { - "id": 2160, + "id": 2180, "name": "maxDistanceKm", "variant": "declaration", "kind": 1024, @@ -27828,7 +28311,7 @@ "fileName": "station-index.ts", "line": 103, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L103" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L103" } ], "type": { @@ -27841,9 +28324,9 @@ { "title": "Properties", "children": [ - 2158, - 2159, - 2160 + 2178, + 2179, + 2180 ] } ], @@ -27852,12 +28335,12 @@ "fileName": "station-index.ts", "line": 99, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L99" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L99" } ] }, { - "id": 2161, + "id": 2181, "name": "RefreshIndexOptions", "variant": "declaration", "kind": 256, @@ -27872,7 +28355,7 @@ "kind": "inline-tag", "tag": "@link", "text": "refreshStationIndex", - "target": 2275 + "target": 2295 }, { "kind": "text", @@ -27882,7 +28365,7 @@ }, "children": [ { - "id": 2162, + "id": 2182, "name": "baseUrl", "variant": "declaration", "kind": 1024, @@ -27902,7 +28385,7 @@ "fileName": "load.ts", "line": 106, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L106" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L106" } ], "type": { @@ -27911,7 +28394,7 @@ } }, { - "id": 2163, + "id": 2183, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -27923,18 +28406,18 @@ "fileName": "load.ts", "line": 104, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L104" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L104" } ], "type": { "type": "reference", - "target": 2215, + "target": 2235, "name": "FetchLike", "package": "@idfkit/weather" } }, { - "id": 2164, + "id": 2184, "name": "signal", "variant": "declaration", "kind": 1024, @@ -27946,7 +28429,7 @@ "fileName": "load.ts", "line": 107, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L107" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L107" } ], "type": { @@ -27966,9 +28449,9 @@ { "title": "Properties", "children": [ - 2162, - 2163, - 2164 + 2182, + 2183, + 2184 ] } ], @@ -27977,12 +28460,12 @@ "fileName": "load.ts", "line": 103, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L103" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L103" } ] }, { - "id": 2165, + "id": 2185, "name": "SearchOptions", "variant": "declaration", "kind": 256, @@ -27997,7 +28480,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationIndex.search", - "target": 2090 + "target": 2110 }, { "kind": "text", @@ -28007,7 +28490,7 @@ }, "children": [ { - "id": 2166, + "id": 2186, "name": "country", "variant": "declaration", "kind": 1024, @@ -28027,7 +28510,7 @@ "fileName": "station-index.ts", "line": 95, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L95" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L95" } ], "type": { @@ -28036,7 +28519,7 @@ } }, { - "id": 2167, + "id": 2187, "name": "limit", "variant": "declaration", "kind": 1024, @@ -28056,7 +28539,7 @@ "fileName": "station-index.ts", "line": 93, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L93" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L93" } ], "type": { @@ -28069,8 +28552,8 @@ { "title": "Properties", "children": [ - 2166, - 2167 + 2186, + 2187 ] } ], @@ -28079,12 +28562,12 @@ "fileName": "station-index.ts", "line": 91, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station-index.ts#L91" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station-index.ts#L91" } ] }, { - "id": 2168, + "id": 2188, "name": "SearchResult", "variant": "declaration", "kind": 256, @@ -28099,7 +28582,7 @@ }, "children": [ { - "id": 2169, + "id": 2189, "name": "matchField", "variant": "declaration", "kind": 1024, @@ -28117,18 +28600,18 @@ "fileName": "station.ts", "line": 238, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L238" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L238" } ], "type": { "type": "reference", - "target": 2224, + "target": 2244, "name": "MatchField", "package": "@idfkit/weather" } }, { - "id": 2170, + "id": 2190, "name": "score", "variant": "declaration", "kind": 1024, @@ -28146,7 +28629,7 @@ "fileName": "station.ts", "line": 236, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L236" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L236" } ], "type": { @@ -28155,7 +28638,7 @@ } }, { - "id": 2171, + "id": 2191, "name": "station", "variant": "declaration", "kind": 1024, @@ -28165,12 +28648,12 @@ "fileName": "station.ts", "line": 234, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L234" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L234" } ], "type": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -28180,9 +28663,9 @@ { "title": "Properties", "children": [ - 2169, - 2170, - 2171 + 2189, + 2190, + 2191 ] } ], @@ -28191,12 +28674,12 @@ "fileName": "station.ts", "line": 233, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L233" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L233" } ] }, { - "id": 2172, + "id": 2192, "name": "SpatialResult", "variant": "declaration", "kind": 256, @@ -28211,7 +28694,7 @@ }, "children": [ { - "id": 2173, + "id": 2193, "name": "distanceKm", "variant": "declaration", "kind": 1024, @@ -28229,7 +28712,7 @@ "fileName": "station.ts", "line": 245, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L245" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L245" } ], "type": { @@ -28238,7 +28721,7 @@ } }, { - "id": 2174, + "id": 2194, "name": "station", "variant": "declaration", "kind": 1024, @@ -28248,12 +28731,12 @@ "fileName": "station.ts", "line": 243, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L243" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L243" } ], "type": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -28263,8 +28746,8 @@ { "title": "Properties", "children": [ - 2173, - 2174 + 2193, + 2194 ] } ], @@ -28273,12 +28756,12 @@ "fileName": "station.ts", "line": 242, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L242" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L242" } ] }, { - "id": 2175, + "id": 2195, "name": "StationRecord", "variant": "declaration", "kind": 256, @@ -28309,7 +28792,7 @@ "kind": "inline-tag", "tag": "@link", "text": "WeatherStation", - "target": 2097 + "target": 2117 }, { "kind": "text", @@ -28319,7 +28802,7 @@ "kind": "inline-tag", "tag": "@link", "text": "WeatherStation.fromJSON", - "target": 2129 + "target": 2149 }, { "kind": "text", @@ -28329,7 +28812,7 @@ "kind": "inline-tag", "tag": "@link", "text": "WeatherStation.toJSON", - "target": 2127 + "target": 2147 }, { "kind": "text", @@ -28339,7 +28822,7 @@ }, "children": [ { - "id": 2176, + "id": 2196, "name": "ashrae_climate_zone", "variant": "declaration", "kind": 1024, @@ -28349,7 +28832,7 @@ "fileName": "station.ts", "line": 30, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L30" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L30" } ], "type": { @@ -28358,7 +28841,7 @@ } }, { - "id": 2177, + "id": 2197, "name": "cdd10", "variant": "declaration", "kind": 1024, @@ -28368,7 +28851,7 @@ "fileName": "station.ts", "line": 34, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L34" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L34" } ], "type": { @@ -28377,7 +28860,7 @@ } }, { - "id": 2178, + "id": 2198, "name": "city", "variant": "declaration", "kind": 1024, @@ -28387,7 +28870,7 @@ "fileName": "station.ts", "line": 22, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L22" } ], "type": { @@ -28396,7 +28879,7 @@ } }, { - "id": 2179, + "id": 2199, "name": "cooling_design_db_c", "variant": "declaration", "kind": 1024, @@ -28406,7 +28889,7 @@ "fileName": "station.ts", "line": 32, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L32" } ], "type": { @@ -28415,7 +28898,7 @@ } }, { - "id": 2180, + "id": 2200, "name": "country", "variant": "declaration", "kind": 1024, @@ -28425,7 +28908,7 @@ "fileName": "station.ts", "line": 20, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L20" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L20" } ], "type": { @@ -28434,7 +28917,7 @@ } }, { - "id": 2181, + "id": 2201, "name": "design_conditions_source_wmo", "variant": "declaration", "kind": 1024, @@ -28444,7 +28927,7 @@ "fileName": "station.ts", "line": 35, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L35" } ], "type": { @@ -28462,7 +28945,7 @@ } }, { - "id": 2182, + "id": 2202, "name": "elevation", "variant": "declaration", "kind": 1024, @@ -28472,7 +28955,7 @@ "fileName": "station.ts", "line": 28, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L28" } ], "type": { @@ -28481,7 +28964,7 @@ } }, { - "id": 2183, + "id": 2203, "name": "hdd18", "variant": "declaration", "kind": 1024, @@ -28491,7 +28974,7 @@ "fileName": "station.ts", "line": 33, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L33" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L33" } ], "type": { @@ -28500,7 +28983,7 @@ } }, { - "id": 2184, + "id": 2204, "name": "heating_design_db_c", "variant": "declaration", "kind": 1024, @@ -28510,7 +28993,7 @@ "fileName": "station.ts", "line": 31, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L31" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L31" } ], "type": { @@ -28519,7 +29002,7 @@ } }, { - "id": 2185, + "id": 2205, "name": "latitude", "variant": "declaration", "kind": 1024, @@ -28529,7 +29012,7 @@ "fileName": "station.ts", "line": 25, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L25" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L25" } ], "type": { @@ -28538,7 +29021,7 @@ } }, { - "id": 2186, + "id": 2206, "name": "longitude", "variant": "declaration", "kind": 1024, @@ -28548,7 +29031,7 @@ "fileName": "station.ts", "line": 26, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L26" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L26" } ], "type": { @@ -28557,7 +29040,7 @@ } }, { - "id": 2187, + "id": 2207, "name": "source", "variant": "declaration", "kind": 1024, @@ -28567,7 +29050,7 @@ "fileName": "station.ts", "line": 24, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L24" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L24" } ], "type": { @@ -28576,7 +29059,7 @@ } }, { - "id": 2188, + "id": 2208, "name": "state", "variant": "declaration", "kind": 1024, @@ -28586,7 +29069,7 @@ "fileName": "station.ts", "line": 21, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L21" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L21" } ], "type": { @@ -28595,7 +29078,7 @@ } }, { - "id": 2189, + "id": 2209, "name": "timezone", "variant": "declaration", "kind": 1024, @@ -28605,7 +29088,7 @@ "fileName": "station.ts", "line": 27, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L27" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L27" } ], "type": { @@ -28614,7 +29097,7 @@ } }, { - "id": 2190, + "id": 2210, "name": "url", "variant": "declaration", "kind": 1024, @@ -28624,7 +29107,7 @@ "fileName": "station.ts", "line": 29, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L29" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L29" } ], "type": { @@ -28633,7 +29116,7 @@ } }, { - "id": 2191, + "id": 2211, "name": "wmo", "variant": "declaration", "kind": 1024, @@ -28643,7 +29126,7 @@ "fileName": "station.ts", "line": 23, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L23" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L23" } ], "type": { @@ -28656,22 +29139,22 @@ { "title": "Properties", "children": [ - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191 + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211 ] } ], @@ -28680,12 +29163,12 @@ "fileName": "station.ts", "line": 19, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L19" } ] }, { - "id": 2192, + "id": 2212, "name": "WeatherFiles", "variant": "declaration", "kind": 256, @@ -28700,7 +29183,7 @@ }, "children": [ { - "id": 2193, + "id": 2213, "name": "ddy", "variant": "declaration", "kind": 1024, @@ -28726,7 +29209,7 @@ "fileName": "download.ts", "line": 40, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L40" } ], "type": { @@ -28744,7 +29227,7 @@ } }, { - "id": 2194, + "id": 2214, "name": "epw", "variant": "declaration", "kind": 1024, @@ -28762,7 +29245,7 @@ "fileName": "download.ts", "line": 38, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L38" } ], "type": { @@ -28771,7 +29254,7 @@ } }, { - "id": 2195, + "id": 2215, "name": "members", "variant": "declaration", "kind": 1024, @@ -28821,7 +29304,7 @@ "fileName": "download.ts", "line": 47, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L47" } ], "type": { @@ -28864,7 +29347,7 @@ } }, { - "id": 2196, + "id": 2216, "name": "stat", "variant": "declaration", "kind": 1024, @@ -28890,7 +29373,7 @@ "fileName": "download.ts", "line": 42, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L42" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L42" } ], "type": { @@ -28908,7 +29391,7 @@ } }, { - "id": 2197, + "id": 2217, "name": "station", "variant": "declaration", "kind": 1024, @@ -28918,12 +29401,12 @@ "fileName": "download.ts", "line": 36, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L36" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L36" } ], "type": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -28933,11 +29416,11 @@ { "title": "Properties", "children": [ - 2193, - 2194, - 2195, - 2196, - 2197 + 2213, + 2214, + 2215, + 2216, + 2217 ] } ], @@ -28946,12 +29429,12 @@ "fileName": "download.ts", "line": 35, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L35" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L35" } ] }, { - "id": 2198, + "id": 2218, "name": "WeatherStationFields", "variant": "declaration", "kind": 256, @@ -28966,7 +29449,7 @@ "kind": "inline-tag", "tag": "@link", "text": "WeatherStation", - "target": 2097 + "target": 2117 }, { "kind": "text", @@ -28976,7 +29459,7 @@ }, "children": [ { - "id": 2199, + "id": 2219, "name": "ashraeClimateZone", "variant": "declaration", "kind": 1024, @@ -29002,7 +29485,7 @@ "fileName": "station.ts", "line": 61, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L61" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L61" } ], "type": { @@ -29011,7 +29494,7 @@ } }, { - "id": 2200, + "id": 2220, "name": "cdd10", "variant": "declaration", "kind": 1024, @@ -29029,7 +29512,7 @@ "fileName": "station.ts", "line": 69, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L69" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L69" } ], "type": { @@ -29038,7 +29521,7 @@ } }, { - "id": 2201, + "id": 2221, "name": "city", "variant": "declaration", "kind": 1024, @@ -29064,7 +29547,7 @@ "fileName": "station.ts", "line": 45, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L45" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L45" } ], "type": { @@ -29073,7 +29556,7 @@ } }, { - "id": 2202, + "id": 2222, "name": "coolingDesignDbC", "variant": "declaration", "kind": 1024, @@ -29091,7 +29574,7 @@ "fileName": "station.ts", "line": 65, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L65" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L65" } ], "type": { @@ -29100,7 +29583,7 @@ } }, { - "id": 2203, + "id": 2223, "name": "country", "variant": "declaration", "kind": 1024, @@ -29126,7 +29609,7 @@ "fileName": "station.ts", "line": 41, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L41" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L41" } ], "type": { @@ -29135,7 +29618,7 @@ } }, { - "id": 2204, + "id": 2224, "name": "designConditionsSourceWmo", "variant": "declaration", "kind": 1024, @@ -29163,7 +29646,7 @@ "fileName": "station.ts", "line": 74, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L74" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L74" } ], "type": { @@ -29181,7 +29664,7 @@ } }, { - "id": 2205, + "id": 2225, "name": "elevation", "variant": "declaration", "kind": 1024, @@ -29199,7 +29682,7 @@ "fileName": "station.ts", "line": 57, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L57" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L57" } ], "type": { @@ -29208,7 +29691,7 @@ } }, { - "id": 2206, + "id": 2226, "name": "hdd18", "variant": "declaration", "kind": 1024, @@ -29226,7 +29709,7 @@ "fileName": "station.ts", "line": 67, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L67" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L67" } ], "type": { @@ -29235,7 +29718,7 @@ } }, { - "id": 2207, + "id": 2227, "name": "heatingDesignDbC", "variant": "declaration", "kind": 1024, @@ -29253,7 +29736,7 @@ "fileName": "station.ts", "line": 63, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L63" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L63" } ], "type": { @@ -29262,7 +29745,7 @@ } }, { - "id": 2208, + "id": 2228, "name": "latitude", "variant": "declaration", "kind": 1024, @@ -29280,7 +29763,7 @@ "fileName": "station.ts", "line": 51, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L51" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L51" } ], "type": { @@ -29289,7 +29772,7 @@ } }, { - "id": 2209, + "id": 2229, "name": "longitude", "variant": "declaration", "kind": 1024, @@ -29307,7 +29790,7 @@ "fileName": "station.ts", "line": 53, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L53" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L53" } ], "type": { @@ -29316,7 +29799,7 @@ } }, { - "id": 2210, + "id": 2230, "name": "source", "variant": "declaration", "kind": 1024, @@ -29350,7 +29833,7 @@ "fileName": "station.ts", "line": 49, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L49" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L49" } ], "type": { @@ -29359,7 +29842,7 @@ } }, { - "id": 2211, + "id": 2231, "name": "state", "variant": "declaration", "kind": 1024, @@ -29385,7 +29868,7 @@ "fileName": "station.ts", "line": 43, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L43" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L43" } ], "type": { @@ -29394,7 +29877,7 @@ } }, { - "id": 2212, + "id": 2232, "name": "timezone", "variant": "declaration", "kind": 1024, @@ -29420,7 +29903,7 @@ "fileName": "station.ts", "line": 55, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L55" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L55" } ], "type": { @@ -29429,7 +29912,7 @@ } }, { - "id": 2213, + "id": 2233, "name": "url", "variant": "declaration", "kind": 1024, @@ -29447,7 +29930,7 @@ "fileName": "station.ts", "line": 59, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L59" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L59" } ], "type": { @@ -29456,7 +29939,7 @@ } }, { - "id": 2214, + "id": 2234, "name": "wmo", "variant": "declaration", "kind": 1024, @@ -29474,7 +29957,7 @@ "fileName": "station.ts", "line": 47, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L47" } ], "type": { @@ -29487,22 +29970,22 @@ { "title": "Properties", "children": [ - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214 + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234 ] } ], @@ -29511,12 +29994,12 @@ "fileName": "station.ts", "line": 39, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L39" } ] }, { - "id": 2215, + "id": 2235, "name": "FetchLike", "variant": "declaration", "kind": 2097152, @@ -29542,27 +30025,27 @@ "fileName": "http.ts", "line": 11, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/http.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/http.ts#L11" } ], "type": { "type": "reflection", "declaration": { - "id": 2216, + "id": 2236, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 2217, + "id": 2237, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2218, + "id": 2238, "name": "input", "variant": "param", "kind": 32768, @@ -29589,7 +30072,7 @@ } }, { - "id": 2219, + "id": 2239, "name": "init", "variant": "param", "kind": 32768, @@ -29599,14 +30082,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2220, + "id": 2240, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2221, + "id": 2241, "name": "headers", "variant": "declaration", "kind": 1024, @@ -29618,7 +30101,7 @@ "fileName": "http.ts", "line": 13, "character": 28, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/http.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/http.ts#L13" } ], "type": { @@ -29643,7 +30126,7 @@ } }, { - "id": 2222, + "id": 2242, "name": "method", "variant": "declaration", "kind": 1024, @@ -29655,7 +30138,7 @@ "fileName": "http.ts", "line": 13, "character": 11, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/http.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/http.ts#L13" } ], "type": { @@ -29664,7 +30147,7 @@ } }, { - "id": 2223, + "id": 2243, "name": "signal", "variant": "declaration", "kind": 1024, @@ -29676,7 +30159,7 @@ "fileName": "http.ts", "line": 13, "character": 62, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/http.ts#L13" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/http.ts#L13" } ], "type": { @@ -29696,9 +30179,9 @@ { "title": "Properties", "children": [ - 2221, - 2222, - 2223 + 2241, + 2242, + 2243 ] } ] @@ -29735,7 +30218,7 @@ } }, { - "id": 2224, + "id": 2244, "name": "MatchField", "variant": "declaration", "kind": 2097152, @@ -29753,7 +30236,7 @@ "fileName": "station.ts", "line": 230, "character": 12, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/station.ts#L230" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/station.ts#L230" } ], "type": { @@ -29787,7 +30270,7 @@ } }, { - "id": 2225, + "id": 2245, "name": "INDEX_FILES", "variant": "declaration", "kind": 32, @@ -29807,7 +30290,7 @@ "fileName": "load.ts", "line": 22, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L22" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L22" } ], "type": { @@ -29824,7 +30307,7 @@ "defaultValue": "..." }, { - "id": 2226, + "id": 2246, "name": "SOURCES_BASE_URL", "variant": "declaration", "kind": 32, @@ -29844,7 +30327,7 @@ "fileName": "load.ts", "line": 19, "character": 13, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L19" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L19" } ], "type": { @@ -29854,7 +30337,7 @@ "defaultValue": "'https://climate.onebuilding.org/sources'" }, { - "id": 2227, + "id": 2247, "name": "checkForUpdates", "variant": "declaration", "kind": 64, @@ -29864,12 +30347,12 @@ "fileName": "load.ts", "line": 152, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L152" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L152" } ], "signatures": [ { - "id": 2228, + "id": 2248, "name": "checkForUpdates", "variant": "signature", "kind": 4096, @@ -29911,32 +30394,32 @@ "fileName": "load.ts", "line": 152, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L152" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L152" } ], "parameters": [ { - "id": 2229, + "id": 2249, "name": "index", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2063, + "target": 2083, "name": "StationIndex", "package": "@idfkit/weather" } }, { - "id": 2230, + "id": 2250, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2161, + "target": 2181, "name": "RefreshIndexOptions", "package": "@idfkit/weather" }, @@ -29963,7 +30446,7 @@ ] }, { - "id": 2231, + "id": 2251, "name": "detectLocation", "variant": "declaration", "kind": 64, @@ -29973,12 +30456,12 @@ "fileName": "geocode.ts", "line": 144, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L144" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L144" } ], "signatures": [ { - "id": 2232, + "id": 2252, "name": "detectLocation", "variant": "signature", "kind": 4096, @@ -30009,7 +30492,7 @@ "kind": "inline-tag", "tag": "@link", "text": "geocode", - "target": 2251 + "target": 2271 }, { "kind": "text", @@ -30024,7 +30507,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GeocodingError", - "target": 2048 + "target": 2068 }, { "kind": "text", @@ -30039,19 +30522,19 @@ "fileName": "geocode.ts", "line": 144, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L144" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L144" } ], "parameters": [ { - "id": 2233, + "id": 2253, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2132, + "target": 2152, "name": "DetectLocationOptions", "package": "@idfkit/weather" }, @@ -30087,7 +30570,7 @@ ] }, { - "id": 2234, + "id": 2254, "name": "fetchEpw", "variant": "declaration", "kind": 64, @@ -30097,12 +30580,12 @@ "fileName": "download.ts", "line": 111, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L111" } ], "signatures": [ { - "id": 2235, + "id": 2255, "name": "fetchEpw", "variant": "signature", "kind": 4096, @@ -30128,32 +30611,32 @@ "fileName": "download.ts", "line": 111, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L111" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L111" } ], "parameters": [ { - "id": 2236, + "id": 2256, "name": "station", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } }, { - "id": 2237, + "id": 2257, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2136, + "target": 2156, "name": "FetchWeatherOptions", "package": "@idfkit/weather" }, @@ -30180,7 +30663,7 @@ ] }, { - "id": 2238, + "id": 2258, "name": "fetchEpwByFilename", "variant": "declaration", "kind": 64, @@ -30190,12 +30673,12 @@ "fileName": "download.ts", "line": 124, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L124" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L124" } ], "signatures": [ { - "id": 2239, + "id": 2259, "name": "fetchEpwByFilename", "variant": "signature", "kind": 4096, @@ -30224,12 +30707,12 @@ "fileName": "download.ts", "line": 124, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L124" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L124" } ], "parameters": [ { - "id": 2240, + "id": 2260, "name": "filename", "variant": "param", "kind": 32768, @@ -30240,27 +30723,27 @@ } }, { - "id": 2241, + "id": 2261, "name": "index", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2063, + "target": 2083, "name": "StationIndex", "package": "@idfkit/weather" } }, { - "id": 2242, + "id": 2262, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2136, + "target": 2156, "name": "FetchWeatherOptions", "package": "@idfkit/weather" }, @@ -30287,7 +30770,7 @@ ] }, { - "id": 2243, + "id": 2263, "name": "fetchWeatherArchive", "variant": "declaration", "kind": 64, @@ -30297,12 +30780,12 @@ "fileName": "download.ts", "line": 56, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L56" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L56" } ], "signatures": [ { - "id": 2244, + "id": 2264, "name": "fetchWeatherArchive", "variant": "signature", "kind": 4096, @@ -30317,7 +30800,7 @@ "kind": "inline-tag", "tag": "@link", "text": "fetchWeatherFiles", - "target": 2247 + "target": 2267 }, { "kind": "text", @@ -30327,7 +30810,7 @@ "kind": "inline-tag", "tag": "@link", "text": "fetchEpw", - "target": 2234 + "target": 2254 }, { "kind": "text", @@ -30340,12 +30823,12 @@ "fileName": "download.ts", "line": 56, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L56" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L56" } ], "parameters": [ { - "id": 2245, + "id": 2265, "name": "url", "variant": "param", "kind": 32768, @@ -30356,14 +30839,14 @@ } }, { - "id": 2246, + "id": 2266, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2136, + "target": 2156, "name": "FetchWeatherOptions", "package": "@idfkit/weather" }, @@ -30424,7 +30907,7 @@ ] }, { - "id": 2247, + "id": 2267, "name": "fetchWeatherFiles", "variant": "declaration", "kind": 64, @@ -30434,12 +30917,12 @@ "fileName": "download.ts", "line": 89, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L89" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L89" } ], "signatures": [ { - "id": 2248, + "id": 2268, "name": "fetchWeatherFiles", "variant": "signature", "kind": 4096, @@ -30476,32 +30959,32 @@ "fileName": "download.ts", "line": 89, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/download.ts#L89" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/download.ts#L89" } ], "parameters": [ { - "id": 2249, + "id": 2269, "name": "station", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } }, { - "id": 2250, + "id": 2270, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2136, + "target": 2156, "name": "FetchWeatherOptions", "package": "@idfkit/weather" }, @@ -30518,7 +31001,7 @@ "typeArguments": [ { "type": "reference", - "target": 2192, + "target": 2212, "name": "WeatherFiles", "package": "@idfkit/weather" } @@ -30530,7 +31013,7 @@ ] }, { - "id": 2251, + "id": 2271, "name": "geocode", "variant": "declaration", "kind": 64, @@ -30540,12 +31023,12 @@ "fileName": "geocode.ts", "line": 84, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L84" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L84" } ], "signatures": [ { - "id": 2252, + "id": 2272, "name": "geocode", "variant": "signature", "kind": 4096, @@ -30573,7 +31056,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GeocodingError", - "target": 2048 + "target": 2068 }, { "kind": "text", @@ -30588,12 +31071,12 @@ "fileName": "geocode.ts", "line": 84, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/geocode.ts#L84" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/geocode.ts#L84" } ], "parameters": [ { - "id": 2253, + "id": 2273, "name": "address", "variant": "param", "kind": 32768, @@ -30604,14 +31087,14 @@ } }, { - "id": 2254, + "id": 2274, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2147, + "target": 2167, "name": "GeocodeOptions", "package": "@idfkit/weather" }, @@ -30647,7 +31130,7 @@ ] }, { - "id": 2255, + "id": 2275, "name": "haversineKm", "variant": "declaration", "kind": 64, @@ -30657,12 +31140,12 @@ "fileName": "spatial.ts", "line": 11, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/spatial.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/spatial.ts#L11" } ], "signatures": [ { - "id": 2256, + "id": 2276, "name": "haversineKm", "variant": "signature", "kind": 4096, @@ -30696,12 +31179,12 @@ "fileName": "spatial.ts", "line": 11, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/spatial.ts#L11" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/spatial.ts#L11" } ], "parameters": [ { - "id": 2257, + "id": 2277, "name": "lat1", "variant": "param", "kind": 32768, @@ -30712,7 +31195,7 @@ } }, { - "id": 2258, + "id": 2278, "name": "lon1", "variant": "param", "kind": 32768, @@ -30723,7 +31206,7 @@ } }, { - "id": 2259, + "id": 2279, "name": "lat2", "variant": "param", "kind": 32768, @@ -30734,7 +31217,7 @@ } }, { - "id": 2260, + "id": 2280, "name": "lon2", "variant": "param", "kind": 32768, @@ -30753,7 +31236,7 @@ ] }, { - "id": 2261, + "id": 2281, "name": "indexFromData", "variant": "declaration", "kind": 64, @@ -30763,12 +31246,12 @@ "fileName": "load.ts", "line": 48, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L48" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L48" } ], "signatures": [ { - "id": 2262, + "id": 2282, "name": "indexFromData", "variant": "signature", "kind": 4096, @@ -30783,7 +31266,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationIndex", - "target": 2063 + "target": 2083 }, { "kind": "text", @@ -30796,19 +31279,19 @@ "fileName": "load.ts", "line": 48, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L48" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L48" } ], "parameters": [ { - "id": 2263, + "id": 2283, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2150, + "target": 2170, "name": "IndexData", "package": "@idfkit/weather" } @@ -30816,7 +31299,7 @@ ], "type": { "type": "reference", - "target": 2063, + "target": 2083, "name": "StationIndex", "package": "@idfkit/weather" } @@ -30824,7 +31307,7 @@ ] }, { - "id": 2264, + "id": 2284, "name": "loadStationIndex", "variant": "declaration", "kind": 64, @@ -30834,12 +31317,12 @@ "fileName": "load.ts", "line": 85, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L85" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L85" } ], "signatures": [ { - "id": 2265, + "id": 2285, "name": "loadStationIndex", "variant": "signature", "kind": 4096, @@ -30862,7 +31345,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StationIndex", - "target": 2063 + "target": 2083 }, { "kind": "text", @@ -30883,12 +31366,12 @@ "fileName": "load.ts", "line": 85, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L85" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L85" } ], "parameters": [ { - "id": 2266, + "id": 2286, "name": "url", "variant": "param", "kind": 32768, @@ -30915,14 +31398,14 @@ } }, { - "id": 2267, + "id": 2287, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2154, + "target": 2174, "name": "LoadIndexOptions", "package": "@idfkit/weather" }, @@ -30939,7 +31422,7 @@ "typeArguments": [ { "type": "reference", - "target": 2063, + "target": 2083, "name": "StationIndex", "package": "@idfkit/weather" } @@ -30951,7 +31434,7 @@ ] }, { - "id": 2268, + "id": 2288, "name": "parseKml", "variant": "declaration", "kind": 64, @@ -30961,12 +31444,12 @@ "fileName": "kml.ts", "line": 162, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/kml.ts#L162" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/kml.ts#L162" } ], "signatures": [ { - "id": 2269, + "id": 2289, "name": "parseKml", "variant": "signature", "kind": 4096, @@ -30984,12 +31467,12 @@ "fileName": "kml.ts", "line": 162, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/kml.ts#L162" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/kml.ts#L162" } ], "parameters": [ { - "id": 2270, + "id": 2290, "name": "text", "variant": "param", "kind": 32768, @@ -31008,7 +31491,7 @@ } }, { - "id": 2271, + "id": 2291, "name": "sourceName", "variant": "param", "kind": 32768, @@ -31032,7 +31515,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2097, + "target": 2117, "name": "WeatherStation", "package": "@idfkit/weather" } @@ -31041,7 +31524,7 @@ ] }, { - "id": 2272, + "id": 2292, "name": "parseUrlMetadata", "variant": "declaration", "kind": 64, @@ -31051,12 +31534,12 @@ "fileName": "kml.ts", "line": 47, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/kml.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/kml.ts#L47" } ], "signatures": [ { - "id": 2273, + "id": 2293, "name": "parseUrlMetadata", "variant": "signature", "kind": 4096, @@ -31093,12 +31576,12 @@ "fileName": "kml.ts", "line": 47, "character": 16, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/kml.ts#L47" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/kml.ts#L47" } ], "parameters": [ { - "id": 2274, + "id": 2294, "name": "url", "variant": "param", "kind": 32768, @@ -31134,7 +31617,7 @@ ] }, { - "id": 2275, + "id": 2295, "name": "refreshStationIndex", "variant": "declaration", "kind": 64, @@ -31144,12 +31627,12 @@ "fileName": "load.ts", "line": 118, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L118" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L118" } ], "signatures": [ { - "id": 2276, + "id": 2296, "name": "refreshStationIndex", "variant": "signature", "kind": 4096, @@ -31164,7 +31647,7 @@ "kind": "inline-tag", "tag": "@link", "text": "loadStationIndex", - "target": 2264 + "target": 2284 }, { "kind": "text", @@ -31198,7 +31681,7 @@ "kind": "inline-tag", "tag": "@link", "text": "checkForUpdates", - "target": 2227 + "target": 2247 }, { "kind": "text", @@ -31211,19 +31694,19 @@ "fileName": "load.ts", "line": 118, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/load.ts#L118" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/load.ts#L118" } ], "parameters": [ { - "id": 2277, + "id": 2297, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2161, + "target": 2181, "name": "RefreshIndexOptions", "package": "@idfkit/weather" }, @@ -31240,7 +31723,7 @@ "typeArguments": [ { "type": "reference", - "target": 2063, + "target": 2083, "name": "StationIndex", "package": "@idfkit/weather" } @@ -31252,7 +31735,7 @@ ] }, { - "id": 2278, + "id": 2298, "name": "unzip", "variant": "declaration", "kind": 64, @@ -31262,12 +31745,12 @@ "fileName": "unzip.ts", "line": 32, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/unzip.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/unzip.ts#L32" } ], "signatures": [ { - "id": 2279, + "id": 2299, "name": "unzip", "variant": "signature", "kind": 4096, @@ -31296,12 +31779,12 @@ "fileName": "unzip.ts", "line": 32, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/unzip.ts#L32" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/unzip.ts#L32" } ], "parameters": [ { - "id": 2280, + "id": 2300, "name": "buffer", "variant": "param", "kind": 32768, @@ -31376,62 +31859,62 @@ { "title": "Classes", "children": [ - 2048, - 2055, - 2063, - 2097 + 2068, + 2075, + 2083, + 2117 ] }, { "title": "Interfaces", "children": [ - 2132, - 2136, - 2143, - 2147, - 2150, - 2154, - 2157, - 2161, - 2165, - 2168, - 2172, - 2175, + 2152, + 2156, + 2163, + 2167, + 2170, + 2174, + 2177, + 2181, + 2185, + 2188, 2192, - 2198 + 2195, + 2212, + 2218 ] }, { "title": "Type Aliases", "children": [ - 2215, - 2224 + 2235, + 2244 ] }, { "title": "Variables", "children": [ - 2225, - 2226 + 2245, + 2246 ] }, { "title": "Functions", "children": [ - 2227, - 2231, - 2234, - 2238, - 2243, 2247, 2251, - 2255, - 2261, - 2264, - 2268, - 2272, + 2254, + 2258, + 2263, + 2267, + 2271, 2275, - 2278 + 2281, + 2284, + 2288, + 2292, + 2295, + 2298 ] } ], @@ -31440,19 +31923,19 @@ "fileName": "index.ts", "line": 1, "character": 0, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/index.ts#L1" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/index.ts#L1" } ] }, { - "id": 2281, + "id": 2301, "name": "node", "variant": "declaration", "kind": 2, "flags": {}, "children": [ { - "id": 2282, + "id": 2302, "name": "SavedWeatherFiles", "variant": "declaration", "kind": 256, @@ -31467,7 +31950,7 @@ "kind": "inline-tag", "tag": "@link", "text": "saveWeatherFiles", - "target": 2291 + "target": 2311 }, { "kind": "text", @@ -31485,7 +31968,7 @@ }, "children": [ { - "id": 2283, + "id": 2303, "name": "ddy", "variant": "declaration", "kind": 1024, @@ -31495,7 +31978,7 @@ "fileName": "node.ts", "line": 39, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/node.ts#L39" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L39" } ], "type": { @@ -31513,7 +31996,7 @@ } }, { - "id": 2284, + "id": 2304, "name": "epw", "variant": "declaration", "kind": 1024, @@ -31523,7 +32006,7 @@ "fileName": "node.ts", "line": 38, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/node.ts#L38" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L38" } ], "type": { @@ -31532,7 +32015,7 @@ } }, { - "id": 2285, + "id": 2305, "name": "stat", "variant": "declaration", "kind": 1024, @@ -31542,7 +32025,7 @@ "fileName": "node.ts", "line": 40, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/node.ts#L40" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L40" } ], "type": { @@ -31564,9 +32047,9 @@ { "title": "Properties", "children": [ - 2283, - 2284, - 2285 + 2303, + 2304, + 2305 ] } ], @@ -31575,12 +32058,12 @@ "fileName": "node.ts", "line": 37, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/node.ts#L37" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L37" } ] }, { - "id": 2286, + "id": 2306, "name": "SaveWeatherFilesOptions", "variant": "declaration", "kind": 256, @@ -31595,7 +32078,7 @@ "kind": "inline-tag", "tag": "@link", "text": "saveWeatherFiles", - "target": 2291 + "target": 2311 }, { "kind": "text", @@ -31605,7 +32088,7 @@ }, "children": [ { - "id": 2287, + "id": 2307, "name": "stem", "variant": "declaration", "kind": 1024, @@ -31625,7 +32108,7 @@ "fileName": "node.ts", "line": 46, "character": 2, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/node.ts#L46" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L46" } ], "type": { @@ -31638,7 +32121,7 @@ { "title": "Properties", "children": [ - 2287 + 2307 ] } ], @@ -31647,12 +32130,12 @@ "fileName": "node.ts", "line": 44, "character": 17, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/node.ts#L44" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L44" } ] }, { - "id": 2288, + "id": 2308, "name": "loadBundledIndex", "variant": "declaration", "kind": 64, @@ -31662,12 +32145,12 @@ "fileName": "node.ts", "line": 28, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/node.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L28" } ], "signatures": [ { - "id": 2289, + "id": 2309, "name": "loadBundledIndex", "variant": "signature", "kind": 4096, @@ -31701,12 +32184,12 @@ "fileName": "node.ts", "line": 28, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/node.ts#L28" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L28" } ], "parameters": [ { - "id": 2290, + "id": 2310, "name": "path", "variant": "param", "kind": 32768, @@ -31744,7 +32227,7 @@ "typeArguments": [ { "type": "reference", - "target": 2063, + "target": 2083, "name": "StationIndex", "package": "@idfkit/weather" } @@ -31756,7 +32239,7 @@ ] }, { - "id": 2291, + "id": 2311, "name": "saveWeatherFiles", "variant": "declaration", "kind": 64, @@ -31766,12 +32249,12 @@ "fileName": "node.ts", "line": 55, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/node.ts#L55" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L55" } ], "signatures": [ { - "id": 2292, + "id": 2312, "name": "saveWeatherFiles", "variant": "signature", "kind": 4096, @@ -31797,25 +32280,25 @@ "fileName": "node.ts", "line": 55, "character": 22, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/node.ts#L55" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L55" } ], "parameters": [ { - "id": 2293, + "id": 2313, "name": "files", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2192, + "target": 2212, "name": "WeatherFiles", "package": "@idfkit/weather" } }, { - "id": 2294, + "id": 2314, "name": "directory", "variant": "param", "kind": 32768, @@ -31826,14 +32309,14 @@ } }, { - "id": 2295, + "id": 2315, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2286, + "target": 2306, "name": "SaveWeatherFilesOptions", "package": "@idfkit/weather" }, @@ -31850,7 +32333,7 @@ "typeArguments": [ { "type": "reference", - "target": 2282, + "target": 2302, "name": "SavedWeatherFiles", "package": "@idfkit/weather" } @@ -31866,15 +32349,15 @@ { "title": "Interfaces", "children": [ - 2282, - 2286 + 2302, + 2306 ] }, { "title": "Functions", "children": [ - 2288, - 2291 + 2308, + 2311 ] } ], @@ -31883,7 +32366,7 @@ "fileName": "node.ts", "line": 1, "character": 0, - "url": "https://github.com/idfkit/idfkit-js/blob/5709c285ece2218491b8a8832f3c9e672736bbfd/packages/weather/src/node.ts#L1" + "url": "https://github.com/idfkit/idfkit-js/blob/84c8070a6c4de7ead24b9f24738547fc8f87a4e2/packages/weather/src/node.ts#L1" } ] } @@ -31892,8 +32375,8 @@ { "title": "Modules", "children": [ - 2047, - 2281 + 2067, + 2301 ] } ] @@ -31903,5591 +32386,5626 @@ { "title": "Modules", "children": [ - 1292, - 1946, - 1175, - 2046 + 1305, + 1966, + 1188, + 2066 ] } ], "packageName": "idfkit-js", "symbolIdMap": { - "1176": { + "1189": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "" }, - "1177": { + "1190": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore" }, - "1178": { + "1191": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore.__constructor" }, - "1179": { + "1192": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore" }, - "1180": { + "1193": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "raw" }, - "1181": { + "1194": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore.size" }, - "1182": { + "1195": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore.size" }, - "1183": { + "1196": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore.hydrate" }, - "1184": { + "1197": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "BlobStore.hydrate" }, - "1185": { + "1198": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "hash" }, - "1186": { + "1199": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema" }, - "1187": { + "1200": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.__constructor" }, - "1188": { + "1201": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema" }, - "1189": { + "1202": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "version" }, - "1190": { + "1203": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "manifest" }, - "1191": { + "1204": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "store" }, - "1192": { + "1205": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.version" }, - "1193": { + "1206": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.typeNames" }, - "1194": { + "1207": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.typeNames" }, - "1195": { + "1208": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.changedFrom" }, - "1196": { + "1209": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.changedFrom" }, - "1197": { + "1210": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "other" }, - "1198": { + "1211": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.field" }, - "1199": { + "1212": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.field" }, - "1200": { + "1213": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1201": { + "1214": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "fieldName" }, - "1202": { + "1215": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.get" }, - "1203": { + "1216": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.get" }, - "1204": { + "1217": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1205": { + "1218": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.has" }, - "1206": { + "1219": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.has" }, - "1207": { + "1220": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1208": { + "1221": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.require" }, - "1209": { + "1222": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.require" }, - "1210": { + "1223": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1211": { + "1224": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.resolve" }, - "1212": { + "1225": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.resolve" }, - "1213": { + "1226": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1214": { + "1227": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle" }, - "1215": { + "1228": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.__constructor" }, - "1216": { + "1229": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle" }, - "1217": { + "1230": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "source" }, - "1218": { + "1231": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.latest" }, - "1219": { + "1232": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.latest" }, - "1220": { + "1233": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.load" }, - "1221": { + "1234": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.load" }, - "1222": { + "1235": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "version" }, - "1223": { + "1236": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loaded" }, - "1224": { + "1237": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loaded" }, - "1225": { + "1238": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "version" }, - "1226": { + "1239": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loadProse" }, - "1227": { + "1240": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loadProse" }, - "1228": { + "1241": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.prose" }, - "1229": { + "1242": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.prose" }, - "1230": { + "1243": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.versions" }, - "1231": { + "1244": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.versions" }, - "1232": { + "1245": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "BundleIndex" }, - "1233": { + "1246": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "BundleIndex.manifests" }, - "1234": { + "1247": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "BundleIndex.versions" }, - "1235": { + "1248": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "BundleSource" }, - "1236": { + "1249": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "BundleSource.read" }, - "1237": { + "1250": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "BundleSource.read" }, - "1238": { + "1251": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "fileName" }, - "1239": { + "1252": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta" }, - "1240": { + "1253": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta.added" }, - "1241": { + "1254": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta.changed" }, - "1242": { + "1255": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta.removed" }, - "1243": { + "1256": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimExtensible" }, - "1244": { + "1257": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimExtensible.fields" }, - "1245": { + "1258": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimExtensible.key" }, - "1246": { + "1259": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimExtensible.p" }, - "1247": { + "1260": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField" }, - "1248": { + "1261": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.auto" }, - "1249": { + "1262": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.d" }, - "1250": { + "1263": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.e" }, - "1251": { + "1264": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.eb" }, - "1252": { + "1265": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.max" }, - "1253": { + "1266": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.min" }, - "1254": { + "1267": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.n" }, - "1255": { + "1268": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.ol" }, - "1256": { + "1269": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.rc" }, - "1257": { + "1270": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.ref" }, - "1258": { + "1271": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.se" }, - "1259": { + "1272": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.t" }, - "1260": { + "1273": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.u" }, - "1261": { + "1274": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.xmax" }, - "1262": { + "1275": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.xmin" }, - "1263": { + "1276": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType" }, - "1264": { + "1277": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.anon" }, - "1265": { + "1278": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.f" }, - "1266": { + "1279": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.fo" }, - "1267": { + "1280": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.g" }, - "1268": { + "1281": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.m" }, - "1269": { + "1282": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.nref" }, - "1270": { + "1283": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.nreq" }, - "1271": { + "1284": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.p" }, - "1272": { + "1285": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.r" }, - "1273": { + "1286": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.s" }, - "1274": { + "1287": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.x" }, - "1275": { + "1288": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "FieldKind" }, - "1276": { + "1289": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "Manifest" }, - "1277": { + "1290": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "ProsePool" }, - "1278": { + "1291": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "httpSource" }, - "1279": { + "1292": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "httpSource" }, - "1280": { + "1293": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "baseUrl" }, - "1281": { + "1294": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "" }, - "1282": { + "1295": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "localBundle" }, - "1283": { + "1296": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "localBundle" }, - "1284": { + "1297": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "dataDir" }, - "1285": { + "1298": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "nodeSource" }, - "1286": { + "1299": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "nodeSource" }, - "1287": { + "1300": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "dataDir" }, - "1288": { + "1301": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "readBundleFileSync" }, - "1289": { + "1302": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "readBundleFileSync" }, - "1290": { + "1303": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "fileName" }, - "1291": { + "1304": { "packageName": "@idfkit/schemas", "packagePath": "src/node.ts", "qualifiedName": "dataDir" }, - "1293": { + "1306": { "packageName": "@idfkit/core", "packagePath": "src/index.ts", "qualifiedName": "" }, - "1294": { + "1307": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection" }, - "1295": { + "1308": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.__constructor" }, - "1296": { + "1309": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection" }, - "1297": { + "1310": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.T" }, - "1298": { + "1311": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "typeName" }, - "1299": { + "1312": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "objects" }, - "1300": { + "1313": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.typeName" }, - "1301": { + "1314": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.first" }, - "1302": { + "1315": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.first" }, - "1303": { + "1316": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.only" }, - "1304": { + "1317": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.only" }, - "1305": { + "1318": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.size" }, - "1306": { + "1319": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.size" }, - "1307": { + "1320": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.[iterator]" }, - "1308": { + "1321": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.[iterator]" }, - "1309": { + "1322": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.filter" }, - "1310": { + "1323": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.filter" }, - "1311": { + "1324": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "predicate" }, - "1312": { + "1325": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "__type" }, - "1313": { + "1326": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "__type" }, - "1314": { + "1327": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "obj" }, - "1315": { + "1328": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "index" }, - "1316": { + "1329": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.find" }, - "1317": { + "1330": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.find" }, - "1318": { + "1331": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "predicate" }, - "1319": { + "1332": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "__type" }, - "1320": { + "1333": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "__type" }, - "1321": { + "1334": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "obj" }, - "1322": { + "1335": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "index" }, - "1323": { + "1336": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.get" }, - "1324": { + "1337": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.get" }, - "1325": { + "1338": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "name" }, - "1326": { + "1339": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.has" }, - "1327": { + "1340": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.has" }, - "1328": { + "1341": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "name" }, - "1329": { + "1342": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.map" }, - "1330": { + "1343": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.map" }, - "1331": { + "1344": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "R" }, - "1332": { + "1345": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "fn" }, - "1333": { + "1346": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "__type" }, - "1334": { + "1347": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "__type" }, - "1335": { + "1348": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "obj" }, - "1336": { + "1349": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "index" }, - "1337": { + "1350": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.names" }, - "1338": { + "1351": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.names" }, - "1339": { + "1352": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.require" }, - "1340": { + "1353": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.require" }, - "1341": { + "1354": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "name" }, - "1342": { + "1355": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.toArray" }, - "1343": { + "1356": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.toArray" }, - "1344": { + "1357": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.where" }, - "1345": { + "1358": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.where" }, - "1346": { + "1359": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "field" }, - "1347": { + "1360": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "value" }, - "1348": { + "1361": { "packageName": "@idfkit/core", "packagePath": "src/collection.ts", "qualifiedName": "IdfCollection.T" }, - "1349": { + "1362": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument" }, - "1350": { + "1363": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.__constructor" }, - "1351": { + "1364": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument" }, - "1352": { + "1365": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.M" }, - "1353": { + "1366": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "schema" }, - "1354": { + "1367": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.schema" }, - "1355": { + "1368": { + "packageName": "@idfkit/core", + "packagePath": "src/document.ts", + "qualifiedName": "IdfDocument.rawText" + }, + "1369": { + "packageName": "@idfkit/core", + "packagePath": "src/document.ts", + "qualifiedName": "IdfDocument.rawText" + }, + "1370": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.references" }, - "1356": { + "1371": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.references" }, - "1357": { + "1372": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.size" }, - "1358": { + "1373": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.size" }, - "1359": { + "1374": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.version" }, - "1360": { + "1375": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.version" }, - "1361": { + "1376": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.add" }, - "1362": { + "1377": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.add" }, - "1363": { + "1378": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "K" }, - "1364": { + "1379": { "packageName": "idfkit-js", "packagePath": "", "qualifiedName": "__type" }, - "1365": { + "1380": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "type" }, - "1366": { + "1381": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "name" }, - "1367": { + "1382": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "values" }, - "1368": { + "1383": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.addRaw" }, - "1369": { + "1384": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.addRaw" }, - "1370": { + "1385": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "type" }, - "1371": { + "1386": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "name" }, - "1372": { + "1387": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "values" }, - "1373": { + "1388": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.all" }, - "1374": { + "1389": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.all" }, - "1375": { + "1390": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "K" }, - "1376": { + "1391": { "packageName": "idfkit-js", "packagePath": "", "qualifiedName": "__type" }, - "1377": { + "1392": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "type" }, - "1378": { + "1393": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.attach" }, - "1379": { + "1394": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.attach" }, - "1380": { + "1395": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "obj" }, - "1381": { + "1396": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.danglingReferences" }, - "1382": { + "1397": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.danglingReferences" }, - "1383": { + "1398": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.get" }, - "1384": { + "1399": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.get" }, - "1385": { + "1400": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "K" }, - "1386": { + "1401": { "packageName": "idfkit-js", "packagePath": "", "qualifiedName": "__type" }, - "1387": { + "1402": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "type" }, - "1388": { + "1403": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "name" }, - "1389": { + "1404": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.has" }, - "1390": { + "1405": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.has" }, - "1391": { + "1406": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "type" }, - "1392": { + "1407": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.objects" }, - "1393": { + "1408": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.objects" }, - "1394": { + "1409": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.onFieldChanged" }, - "1395": { + "1410": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.onFieldChanged" }, - "1396": { + "1411": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "obj" }, - "1397": { + "1412": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "field" }, - "1398": { + "1413": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "previous" }, - "1399": { + "1414": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "next" }, - "1400": { + "1415": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.onNameChanged" }, - "1401": { + "1416": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.onNameChanged" }, - "1402": { + "1417": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "obj" }, - "1403": { + "1418": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "previous" }, - "1404": { + "1419": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "next" }, - "1405": { + "1420": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.remove" }, - "1406": { + "1421": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.remove" }, - "1407": { + "1422": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "obj" }, - "1408": { + "1423": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.rename" }, - "1409": { + "1424": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.rename" }, - "1410": { + "1425": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "obj" }, - "1411": { + "1426": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "next" }, - "1412": { + "1427": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.require" }, - "1413": { + "1428": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.require" }, - "1414": { + "1429": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "K" }, - "1415": { + "1430": { "packageName": "idfkit-js", "packagePath": "", "qualifiedName": "__type" }, - "1416": { + "1431": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "type" }, - "1417": { + "1432": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "name" }, - "1418": { + "1433": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.toJSON" }, - "1419": { + "1434": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.toJSON" }, - "1420": { + "1435": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.types" }, - "1421": { + "1436": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.types" }, - "1422": { + "1437": { "packageName": "@idfkit/core", "packagePath": "src/document.ts", "qualifiedName": "IdfDocument.M" }, - "1423": { + "1438": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject" }, - "1424": { + "1439": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.[DATA]" }, - "1425": { + "1440": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.[KEY]" }, - "1426": { + "1441": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.[NAME]" }, - "1427": { + "1442": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.[OWNER]" }, - "1428": { + "1443": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.[SHAPE]" }, - "1429": { + "1444": { + "packageName": "@idfkit/core", + "packagePath": "src/object.ts", + "qualifiedName": "IdfObject.[SOURCE]" + }, + "1445": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.extensible" }, - "1430": { + "1446": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.extensible" }, - "1431": { + "1447": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.fieldNames" }, - "1432": { + "1448": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.fieldNames" }, - "1433": { + "1449": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.isNamed" }, - "1434": { + "1450": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.isNamed" }, - "1435": { + "1451": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.key" }, - "1436": { + "1452": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.key" }, - "1437": { + "1453": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.name" }, - "1438": { + "1454": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.name" }, - "1439": { + "1455": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.name" }, - "1440": { + "1456": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "value" }, - "1441": { + "1457": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.schema" }, - "1442": { + "1458": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.schema" }, - "1443": { + "1459": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.typeName" }, - "1444": { + "1460": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.typeName" }, - "1445": { + "1461": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.clone" }, - "1446": { + "1462": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.clone" }, - "1447": { + "1463": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "name" }, - "1448": { + "1464": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.declaredNames" }, - "1449": { + "1465": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.declaredNames" }, - "1450": { + "1466": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.fieldSchema" }, - "1451": { + "1467": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.fieldSchema" }, - "1452": { + "1468": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "field" }, - "1453": { + "1469": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.get" }, - "1454": { + "1470": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.get" }, - "1455": { + "1471": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "field" }, - "1456": { + "1472": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.hasField" }, - "1457": { + "1473": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.hasField" }, - "1458": { + "1474": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "field" }, - "1459": { + "1475": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.outgoingReferences" }, - "1460": { + "1476": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.outgoingReferences" }, - "1461": { + "1477": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "__type" }, - "1462": { + "1478": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "__type.field" }, - "1463": { + "1479": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "__type.index" }, - "1464": { + "1480": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "__type.target" }, - "1465": { + "1481": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.set" }, - "1466": { + "1482": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.set" }, - "1467": { + "1483": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "field" }, - "1468": { + "1484": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "value" }, - "1469": { + "1485": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.setFieldNames" }, - "1470": { + "1486": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.setFieldNames" }, - "1471": { + "1487": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.toJSON" }, - "1472": { + "1488": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.toJSON" }, - "1473": { + "1489": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.toString" }, - "1474": { + "1490": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.toString" }, - "1475": { + "1491": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.update" }, - "1476": { + "1492": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.update" }, - "1477": { + "1493": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "values" }, - "1478": { + "1494": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.create" }, - "1479": { + "1495": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "IdfObject.create" }, - "1480": { + "1496": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "typeName" }, - "1481": { + "1497": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "type" }, - "1482": { + "1498": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "name" }, - "1483": { + "1499": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "values" }, - "1484": { + "1500": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "IdfParseError" }, - "1485": { + "1501": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "IdfParseError.__constructor" }, - "1486": { + "1502": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "IdfParseError" }, - "1487": { + "1503": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "diagnostic" }, - "1488": { + "1504": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "IdfParseError.diagnostics" }, - "1489": { + "1505": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "IdfParseError.line" }, - "1490": { + "1506": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "IdfParseError.typeName" }, - "1491": { + "1507": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape" }, - "1492": { + "1508": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.__constructor" }, - "1493": { + "1509": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape" }, - "1494": { + "1510": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "typeName" }, - "1495": { + "1511": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "type" }, - "1496": { + "1512": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "base" }, - "1497": { + "1513": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.extensibleKey" }, - "1498": { + "1514": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.extensibleRefFields" }, - "1499": { + "1515": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.fields" }, - "1500": { + "1516": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.keyFields" }, - "1501": { + "1517": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.named" }, - "1502": { + "1518": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.proto" }, - "1503": { + "1519": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.refFields" }, - "1504": { + "1520": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.type" }, - "1505": { + "1521": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "ObjectShape.typeName" }, - "1506": { + "1522": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph" }, - "1509": { + "1525": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.size" }, - "1510": { + "1526": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.size" }, - "1511": { + "1527": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.add" }, - "1512": { + "1528": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.add" }, - "1513": { + "1529": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "obj" }, - "1514": { + "1530": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "field" }, - "1515": { + "1531": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "target" }, - "1516": { + "1532": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "index" }, - "1517": { + "1533": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.addObject" }, - "1518": { + "1534": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.addObject" }, - "1519": { + "1535": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "obj" }, - "1520": { + "1536": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.clear" }, - "1521": { + "1537": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.clear" }, - "1522": { + "1538": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.dangling" }, - "1523": { + "1539": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.dangling" }, - "1524": { + "1540": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "valid" }, - "1525": { + "1541": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.isReferenced" }, - "1526": { + "1542": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.isReferenced" }, - "1527": { + "1543": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "name" }, - "1528": { + "1544": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.referencedBy" }, - "1529": { + "1545": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.referencedBy" }, - "1530": { + "1546": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "obj" }, - "1531": { + "1547": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.referencing" }, - "1532": { + "1548": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.referencing" }, - "1533": { + "1549": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "name" }, - "1534": { + "1550": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.referencingObjects" }, - "1535": { + "1551": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.referencingObjects" }, - "1536": { + "1552": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "name" }, - "1537": { + "1553": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.removeObject" }, - "1538": { + "1554": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.removeObject" }, - "1539": { + "1555": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "obj" }, - "1540": { + "1556": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.retarget" }, - "1541": { + "1557": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.retarget" }, - "1542": { + "1558": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "previous" }, - "1543": { + "1559": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "next" }, - "1544": { + "1560": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.updateField" }, - "1545": { + "1561": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceGraph.updateField" }, - "1546": { + "1562": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "obj" }, - "1547": { + "1563": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "field" }, - "1548": { + "1564": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "previous" }, - "1549": { + "1565": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "next" }, - "1550": { + "1566": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema" }, - "1551": { + "1567": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.__constructor" }, - "1552": { + "1568": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema" }, - "1553": { + "1569": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "version" }, - "1554": { + "1570": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "manifest" }, - "1555": { + "1571": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "store" }, - "1556": { + "1572": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.version" }, - "1557": { + "1573": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.typeNames" }, - "1558": { + "1574": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.typeNames" }, - "1559": { + "1575": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.changedFrom" }, - "1560": { + "1576": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.changedFrom" }, - "1561": { + "1577": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "other" }, - "1562": { + "1578": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.field" }, - "1563": { + "1579": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.field" }, - "1564": { + "1580": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1565": { + "1581": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "fieldName" }, - "1566": { + "1582": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.get" }, - "1567": { + "1583": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.get" }, - "1568": { + "1584": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1569": { + "1585": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.has" }, - "1570": { + "1586": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.has" }, - "1571": { + "1587": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1572": { + "1588": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.require" }, - "1573": { + "1589": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.require" }, - "1574": { + "1590": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1575": { + "1591": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.resolve" }, - "1576": { + "1592": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "Schema.resolve" }, - "1577": { + "1593": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "typeName" }, - "1578": { + "1594": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle" }, - "1579": { + "1595": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.__constructor" }, - "1580": { + "1596": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle" }, - "1581": { + "1597": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "source" }, - "1582": { + "1598": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.latest" }, - "1583": { + "1599": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.latest" }, - "1584": { + "1600": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.load" }, - "1585": { + "1601": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.load" }, - "1586": { + "1602": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "version" }, - "1587": { + "1603": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loaded" }, - "1588": { + "1604": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loaded" }, - "1589": { + "1605": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "version" }, - "1590": { + "1606": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loadProse" }, - "1591": { + "1607": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.loadProse" }, - "1592": { + "1608": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.prose" }, - "1593": { + "1609": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.prose" }, - "1594": { + "1610": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.versions" }, - "1595": { + "1611": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "SchemaBundle.versions" }, - "1596": { + "1612": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "BundleSource" }, - "1597": { + "1613": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "BundleSource.read" }, - "1598": { + "1614": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "BundleSource.read" }, - "1599": { + "1615": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "fileName" }, - "1600": { + "1616": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "DocsUrl" }, - "1601": { + "1617": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "DocsUrl.docSet" }, - "1602": { + "1618": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "DocsUrl.label" }, - "1603": { + "1619": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "DocsUrl.url" }, - "1604": { + "1620": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "DocsUrl.version" }, - "1605": { + "1621": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription" }, - "1606": { + "1622": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.default" }, - "1607": { + "1623": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.enumValues" }, - "1608": { + "1624": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.exclusiveMaximum" }, - "1609": { + "1625": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.exclusiveMinimum" }, - "1610": { + "1626": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.fieldType" }, - "1611": { + "1627": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.isReference" }, - "1612": { + "1628": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.maximum" }, - "1613": { + "1629": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.minimum" }, - "1614": { + "1630": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.name" }, - "1615": { + "1631": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.note" }, - "1616": { + "1632": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.objectList" }, - "1617": { + "1633": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.required" }, - "1618": { + "1634": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "FieldDescription.units" }, - "1619": { + "1635": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic" }, - "1620": { + "1636": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.code" }, - "1621": { + "1637": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.column" }, - "1622": { + "1638": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.filepath" }, - "1623": { + "1639": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.line" }, - "1624": { + "1640": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.message" }, - "1625": { + "1641": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.typeName" }, - "1626": { + "1642": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexOptions" }, - "1627": { + "1643": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexOptions.onDiagnostic" }, - "1628": { + "1644": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "__type" }, - "1629": { + "1645": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "__type" }, - "1630": { + "1646": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "diagnostic" }, - "1631": { + "1647": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "LineColumn" }, - "1632": { + "1648": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "LineColumn.column" }, - "1633": { + "1649": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "LineColumn.line" }, - "1634": { + "1650": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription" }, - "1635": { + "1651": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.extensibleSize" }, - "1636": { + "1652": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.fields" }, - "1637": { + "1653": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.hasName" }, - "1638": { + "1654": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.isExtensible" }, - "1639": { + "1655": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.memo" }, - "1640": { + "1656": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.objType" }, - "1641": { + "1657": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "ObjectDescription.requiredFields" }, - "1642": { + "1658": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "ObjectOwner" }, - "1643": { + "1659": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "ObjectOwner.onFieldChanged" }, - "1644": { + "1660": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "ObjectOwner.onFieldChanged" }, - "1645": { + "1661": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "obj" }, - "1646": { + "1662": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "field" }, - "1647": { + "1663": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "previous" }, - "1648": { + "1664": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "next" }, - "1649": { + "1665": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "ObjectOwner.onNameChanged" }, - "1650": { + "1666": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "ObjectOwner.onNameChanged" }, - "1651": { + "1667": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "obj" }, - "1652": { + "1668": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "previous" }, - "1653": { + "1669": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "next" }, - "1654": { + "1670": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "ObjectWriteOptions" }, - "1655": { + "1671": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "ObjectWriteOptions.commentColumn" }, - "1656": { + "1672": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "ObjectWriteOptions.comments" }, - "1657": { + "1673": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "ObjectWriteOptions.compressed" }, - "1658": { + "1674": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "ObjectWriteOptions.indent" }, - "1659": { + "1675": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseDiagnostic" }, - "1660": { + "1676": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.code" }, - "1661": { + "1677": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.column" }, - "1662": { + "1678": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.filepath" }, - "1663": { + "1679": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.line" }, - "1664": { + "1680": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.message" }, - "1665": { + "1681": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseDiagnostic.objectName" }, - "1666": { + "1682": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "LexDiagnostic.typeName" }, - "1667": { + "1683": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseOptions" }, - "1668": { + "1684": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseOptions.onDiagnostic" }, - "1669": { + "1685": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "__type" }, - "1670": { + "1686": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "__type" }, - "1671": { + "1687": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "diagnostic" }, - "1672": { + "1688": { + "packageName": "@idfkit/core", + "packagePath": "src/parse/idf.ts", + "qualifiedName": "ParseOptions.preserveFormatting" + }, + "1689": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseOptions.strict" }, - "1673": { + "1690": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseResult" }, - "1674": { + "1691": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseResult.diagnostics" }, - "1675": { + "1692": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseResult.document" }, - "1676": { + "1693": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseResult.M" }, - "1677": { + "1694": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "RawObject" }, - "1678": { + "1695": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "RawObject.column" }, - "1679": { + "1696": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "RawObject.line" }, - "1680": { + "1697": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "RawObject.offset" }, - "1681": { + "1698": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "RawObject.typeName" }, - "1682": { + "1699": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "RawObject.values" }, - "1683": { + "1700": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceEdge" }, - "1684": { + "1701": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceEdge.field" }, - "1685": { + "1702": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceEdge.from" }, - "1686": { + "1703": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceEdge.index" }, - "1687": { + "1704": { "packageName": "@idfkit/core", "packagePath": "src/references.ts", "qualifiedName": "ReferenceEdge.target" }, - "1688": { + "1705": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "Region" }, - "1689": { + "1706": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "Region.end" }, - "1690": { + "1707": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "Region.start" }, - "1691": { + "1708": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta" }, - "1692": { + "1709": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta.added" }, - "1693": { + "1710": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta.changed" }, - "1694": { + "1711": { "packageName": "@idfkit/schemas", "packagePath": "src/schema.ts", "qualifiedName": "SchemaDelta.removed" }, - "1695": { + "1712": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField" }, - "1696": { + "1713": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.auto" }, - "1697": { + "1714": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.d" }, - "1698": { + "1715": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.e" }, - "1699": { + "1716": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.eb" }, - "1700": { + "1717": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.max" }, - "1701": { + "1718": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.min" }, - "1702": { + "1719": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.n" }, - "1703": { + "1720": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.ol" }, - "1704": { + "1721": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.rc" }, - "1705": { + "1722": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.ref" }, - "1706": { + "1723": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.se" }, - "1707": { + "1724": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.t" }, - "1708": { + "1725": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.u" }, - "1709": { + "1726": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.xmax" }, - "1710": { + "1727": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimField.xmin" }, - "1711": { + "1728": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType" }, - "1712": { + "1729": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.anon" }, - "1713": { + "1730": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.f" }, - "1714": { + "1731": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.fo" }, - "1715": { + "1732": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.g" }, - "1716": { + "1733": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.m" }, - "1717": { + "1734": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.nref" }, - "1718": { + "1735": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.nreq" }, - "1719": { + "1736": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.p" }, - "1720": { + "1737": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.r" }, - "1721": { + "1738": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.s" }, - "1722": { + "1739": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "SlimType.x" }, - "1723": { + "1740": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "Statement" }, - "1724": { + "1741": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "Statement.fields" }, - "1725": { + "1742": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "Statement.region" }, - "1726": { + "1743": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "Statement.typeName" }, - "1727": { + "1744": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "Statement.typeNameText" }, - "1728": { + "1745": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "Statement.unterminated" }, - "1729": { + "1746": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "SyntaxLayer" }, - "1730": { + "1747": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "SyntaxLayer.statements" }, - "1731": { + "1748": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "SyntaxLayer.text" }, - "1732": { + "1749": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "SyntaxLayer.tokens" }, - "1733": { + "1750": { "packageName": "@idfkit/core", "packagePath": "src/syntax/tokens.ts", "qualifiedName": "Token" }, - "1734": { + "1751": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "Region.end" }, - "1735": { + "1752": { "packageName": "@idfkit/core", "packagePath": "src/syntax/tokens.ts", "qualifiedName": "Token.kind" }, - "1736": { + "1753": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "Region.start" }, - "1737": { + "1754": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError" }, - "1738": { + "1755": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError.code" }, - "1739": { + "1756": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError.field" }, - "1740": { + "1757": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError.message" }, - "1741": { + "1758": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError.objName" }, - "1742": { + "1759": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError.objType" }, - "1743": { + "1760": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationError.severity" }, - "1744": { + "1761": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationResult" }, - "1745": { + "1762": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationResult.errors" }, - "1746": { + "1763": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationResult.info" }, - "1747": { + "1764": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationResult.isValid" }, - "1748": { + "1765": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationResult.totalIssues" }, - "1749": { + "1766": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "ValidationResult.warnings" }, - "1750": { + "1767": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "WriteEpJsonOptions" }, - "1751": { + "1768": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "WriteEpJsonOptions.indent" }, - "1752": { + "1769": { + "packageName": "@idfkit/core", + "packagePath": "src/write/epjson.ts", + "qualifiedName": "WriteEpJsonOptions.preserveFormatting" + }, + "1770": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions" }, - "1753": { + "1771": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions.commentColumn" }, - "1754": { + "1772": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions.comments" }, - "1755": { + "1773": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions.compressed" }, - "1756": { + "1774": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions.indent" }, - "1757": { + "1775": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions.ordering" }, - "1758": { + "1776": { + "packageName": "@idfkit/core", + "packagePath": "src/write/idf.ts", + "qualifiedName": "WriteIdfOptions.preserveFormatting" + }, + "1777": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "WriteIdfOptions.versionFirst" }, - "1759": { + "1778": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "AnyTypeMap" }, - "1760": { + "1779": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "EpJson" }, - "1761": { + "1780": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "ExtensibleGroup" }, - "1762": { + "1781": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "FieldValue" }, - "1763": { + "1782": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "FieldValues" }, - "1764": { + "1783": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "ObjectOf" }, - "1765": { + "1784": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "M" }, - "1766": { + "1785": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "K" }, - "1767": { + "1786": { "packageName": "@idfkit/schemas", "packagePath": "src/types.ts", "qualifiedName": "ProsePool" }, - "1768": { + "1787": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "Severity" }, - "1769": { + "1788": { "packageName": "@idfkit/core", "packagePath": "src/object.ts", "qualifiedName": "StoredValue" }, - "1770": { + "1789": { "packageName": "@idfkit/core", "packagePath": "src/syntax/tokens.ts", "qualifiedName": "TokenKind" }, - "1771": { + "1790": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "TypeNameOf" }, - "1772": { + "1791": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "M" }, - "1773": { + "1792": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "__type" }, - "1774": { + "1793": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "UntypedMap" }, - "1775": { + "1794": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "ValuesOf" }, - "1776": { + "1795": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "M" }, - "1777": { + "1796": { "packageName": "@idfkit/core", "packagePath": "src/typemap.ts", "qualifiedName": "K" }, - "1778": { + "1797": { "packageName": "@idfkit/core", "packagePath": "src/conformance.ts", "qualifiedName": "CONFORMANCE_LEVEL" }, - "1779": { + "1798": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "Severity" }, - "1780": { + "1799": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "__object" }, - "1781": { + "1800": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "__object.ERROR" }, - "1782": { + "1801": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "__object.INFO" }, - "1783": { + "1802": { "packageName": "@idfkit/core", "packagePath": "src/validate/types.ts", "qualifiedName": "__object.WARNING" }, - "1784": { + "1803": { "packageName": "@idfkit/core", "packagePath": "src/syntax/classify.ts", "qualifiedName": "classify" }, - "1785": { + "1804": { "packageName": "@idfkit/core", "packagePath": "src/syntax/classify.ts", "qualifiedName": "classify" }, - "1786": { + "1805": { "packageName": "@idfkit/core", "packagePath": "src/syntax/classify.ts", "qualifiedName": "layer" }, - "1787": { + "1806": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "compareVersions" }, - "1788": { + "1807": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "compareVersions" }, - "1789": { + "1808": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "a" }, - "1790": { + "1809": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "b" }, - "1791": { + "1810": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "describeObjectType" }, - "1792": { + "1811": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "describeObjectType" }, - "1793": { + "1812": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "schema" }, - "1794": { + "1813": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "objType" }, - "1795": { + "1814": { "packageName": "@idfkit/core", "packagePath": "src/introspect/describe.ts", "qualifiedName": "prose" }, - "1796": { + "1815": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "docsUrlForObject" }, - "1797": { + "1816": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "docsUrlForObject" }, - "1798": { + "1817": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "objType" }, - "1799": { + "1818": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "version" }, - "1800": { + "1819": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "schema" }, - "1801": { + "1820": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "options" }, - "1802": { + "1821": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type" }, - "1803": { + "1822": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type.baseUrl" }, - "1804": { + "1823": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "engineeringReferenceUrl" }, - "1805": { + "1824": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "engineeringReferenceUrl" }, - "1806": { + "1825": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "version" }, - "1807": { + "1826": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "options" }, - "1808": { + "1827": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type" }, - "1809": { + "1828": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type.baseUrl" }, - "1810": { + "1829": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "getEpJsonVersion" }, - "1811": { + "1830": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "getEpJsonVersion" }, - "1812": { + "1831": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "source" }, - "1813": { + "1832": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "getIdfVersion" }, - "1814": { + "1833": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "getIdfVersion" }, - "1815": { + "1834": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "text" }, - "1816": { + "1835": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "httpSource" }, - "1817": { + "1836": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "httpSource" }, - "1818": { + "1837": { "packageName": "@idfkit/schemas", "packagePath": "src/index.ts", "qualifiedName": "baseUrl" }, - "1819": { + "1838": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "ioReferenceUrl" }, - "1820": { + "1839": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "ioReferenceUrl" }, - "1821": { + "1840": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "objType" }, - "1822": { + "1841": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "version" }, - "1823": { + "1842": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "schema" }, - "1824": { + "1843": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "options" }, - "1825": { + "1844": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type" }, - "1826": { + "1845": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type.baseUrl" }, - "1827": { + "1846": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "lex" }, - "1828": { + "1847": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "lex" }, - "1829": { + "1848": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "text" }, - "1830": { + "1849": { "packageName": "@idfkit/core", "packagePath": "src/parse/lexer.ts", "qualifiedName": "options" }, - "1831": { + "1850": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "lineColumnAt" }, - "1832": { + "1851": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "lineColumnAt" }, - "1833": { + "1852": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "source" }, - "1834": { + "1853": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "offset" }, - "1835": { + "1854": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "offsetAt" }, - "1836": { + "1855": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "offsetAt" }, - "1837": { + "1856": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "source" }, - "1838": { + "1857": { "packageName": "@idfkit/core", "packagePath": "src/syntax/region.ts", "qualifiedName": "position" }, - "1839": { + "1858": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "parseEpJson" }, - "1840": { + "1859": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "parseEpJson" }, - "1841": { + "1860": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "M" }, - "1842": { + "1861": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "source" }, - "1843": { + "1862": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "schema" }, - "1844": { + "1863": { "packageName": "@idfkit/core", "packagePath": "src/parse/epjson.ts", "qualifiedName": "options" }, - "1845": { + "1864": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "parseIdf" }, - "1846": { + "1865": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "parseIdf" }, - "1847": { + "1866": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "M" }, - "1848": { + "1867": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "text" }, - "1849": { + "1868": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "schema" }, - "1850": { + "1869": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "options" }, - "1851": { + "1870": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "resolveVersion" }, - "1852": { + "1871": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "resolveVersion" }, - "1853": { + "1872": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "detected" }, - "1854": { + "1873": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "available" }, - "1855": { + "1874": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "scanIdf" }, - "1856": { + "1875": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "scanIdf" }, - "1857": { + "1876": { "packageName": "@idfkit/core", "packagePath": "src/syntax/layer.ts", "qualifiedName": "text" }, - "1858": { + "1877": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "searchUrl" }, - "1859": { + "1878": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "searchUrl" }, - "1860": { + "1879": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "query" }, - "1861": { + "1880": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "version" }, - "1862": { + "1881": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "options" }, - "1863": { + "1882": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type" }, - "1864": { + "1883": { "packageName": "@idfkit/core", "packagePath": "src/docs-url/index.ts", "qualifiedName": "__type.baseUrl" }, - "1865": { + "1884": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "shapeFor" }, - "1866": { + "1885": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "shapeFor" }, - "1867": { + "1886": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "typeName" }, - "1868": { + "1887": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "type" }, - "1869": { + "1888": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "base" }, - "1870": { + "1889": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "shapeOf" }, - "1871": { + "1890": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "shapeOf" }, - "1872": { + "1891": { "packageName": "@idfkit/core", "packagePath": "src/shape.ts", "qualifiedName": "obj" }, - "1873": { + "1892": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "toEpJson" }, - "1874": { + "1893": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "toEpJson" }, - "1875": { + "1894": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "M" }, - "1876": { + "1895": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "document" }, - "1877": { + "1896": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "validateDocument" }, - "1878": { + "1897": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "validateDocument" }, - "1879": { + "1898": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "M" }, - "1880": { + "1899": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "doc" }, - "1881": { + "1900": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "options" }, - "1882": { + "1901": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "validateObject" }, - "1883": { + "1902": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "validateObject" }, - "1884": { + "1903": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "obj" }, - "1885": { + "1904": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "schema" }, - "1886": { + "1905": { "packageName": "@idfkit/core", "packagePath": "src/validate/validate.ts", "qualifiedName": "options" }, - "1887": { + "1906": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "versionKey" }, - "1888": { + "1907": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "versionKey" }, - "1889": { + "1908": { "packageName": "@idfkit/core", "packagePath": "src/versions.ts", "qualifiedName": "version" }, - "1890": { + "1909": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "writeEpJson" }, - "1891": { + "1910": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "writeEpJson" }, - "1892": { + "1911": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "M" }, - "1893": { + "1912": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "document" }, - "1894": { + "1913": { "packageName": "@idfkit/core", "packagePath": "src/write/epjson.ts", "qualifiedName": "options" }, - "1895": { + "1914": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "writeIdf" }, - "1896": { + "1915": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "writeIdf" }, - "1897": { + "1916": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "M" }, - "1898": { + "1917": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "document" }, - "1899": { + "1918": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "options" }, - "1900": { + "1919": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "writeObject" }, - "1901": { + "1920": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "writeObject" }, - "1902": { + "1921": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "obj" }, - "1903": { + "1922": { "packageName": "@idfkit/core", "packagePath": "src/write/idf.ts", "qualifiedName": "options" }, - "1904": { + "1923": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "" }, - "1905": { + "1924": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "LoadOptions" }, - "1906": { + "1925": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "LoadOptions.bundle" }, - "1907": { + "1926": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseOptions.onDiagnostic" }, - "1908": { + "1927": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "__type" }, - "1909": { + "1928": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "__type" }, - "1910": { + "1929": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "diagnostic" }, - "1911": { + "1930": { + "packageName": "@idfkit/core", + "packagePath": "src/parse/idf.ts", + "qualifiedName": "ParseOptions.preserveFormatting" + }, + "1931": { "packageName": "@idfkit/core", "packagePath": "src/parse/idf.ts", "qualifiedName": "ParseOptions.strict" }, - "1912": { + "1932": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "LoadOptions.version" }, - "1913": { + "1933": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "loadEpJson" }, - "1914": { + "1934": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "loadEpJson" }, - "1915": { + "1935": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "M" }, - "1916": { + "1936": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "path" }, - "1917": { + "1937": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "options" }, - "1918": { + "1938": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "loadIdf" }, - "1919": { + "1939": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "loadIdf" }, - "1920": { + "1940": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "M" }, - "1921": { + "1941": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "path" }, - "1922": { + "1942": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "options" }, - "1923": { + "1943": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "loadIdfWithDiagnostics" }, - "1924": { + "1944": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "loadIdfWithDiagnostics" }, - "1925": { + "1945": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "M" }, - "1926": { + "1946": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "path" }, - "1927": { + "1947": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "options" }, - "1928": { + "1948": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "saveEpJson" }, - "1929": { + "1949": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "saveEpJson" }, - "1930": { + "1950": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "M" }, - "1931": { + "1951": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "document" }, - "1932": { + "1952": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "path" }, - "1933": { + "1953": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "options" }, - "1934": { + "1954": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "saveIdf" }, - "1935": { + "1955": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "saveIdf" }, - "1936": { + "1956": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "M" }, - "1937": { + "1957": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "document" }, - "1938": { + "1958": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "path" }, - "1939": { + "1959": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "options" }, - "1940": { + "1960": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "schemaFor" }, - "1941": { + "1961": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "schemaFor" }, - "1942": { + "1962": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "detected" }, - "1943": { + "1963": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "options" }, - "1944": { + "1964": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "schemas" }, - "1945": { + "1965": { "packageName": "@idfkit/core", "packagePath": "src/node.ts", "qualifiedName": "schemas" }, - "1946": { + "1966": { "packageName": "@idfkit/language", "packagePath": "src/index.ts", "qualifiedName": "" }, - "1947": { + "1967": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "CompletionOptions" }, - "1948": { + "1968": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "CompletionOptions.document" }, - "1949": { + "1969": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "CompletionOptions.prose" }, - "1950": { + "1970": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "CursorContext" }, - "1951": { + "1971": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "CursorContext.at" }, - "1952": { + "1972": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "CursorContext.fieldIndex" }, - "1953": { + "1973": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "CursorContext.fieldName" }, - "1954": { + "1974": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "CursorContext.statement" }, - "1955": { + "1975": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "CursorContext.typeName" }, - "1956": { + "1976": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "Declaration" }, - "1957": { + "1977": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "Declaration.region" }, - "1958": { + "1978": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "Declaration.typeName" }, - "1959": { + "1979": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation" }, - "1960": { + "1980": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.docs" }, - "1961": { + "1981": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.field" }, - "1962": { + "1982": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.fieldName" }, - "1963": { + "1983": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.of" }, - "1964": { + "1984": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.prose" }, - "1965": { + "1985": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.region" }, - "1966": { + "1986": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "Explanation.typeName" }, - "1967": { + "1987": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "Offer" }, - "1968": { + "1988": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "Offer.kind" }, - "1969": { + "1989": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "Offer.prose" }, - "1970": { + "1990": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "Offer.replaces" }, - "1971": { + "1991": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "Offer.required" }, - "1972": { + "1992": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "Offer.value" }, - "1973": { + "1993": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "CompletionResult" }, - "1974": { + "1994": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type" }, - "1975": { + "1995": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.offers" }, - "1976": { + "1996": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.status" }, - "1977": { + "1997": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type" }, - "1978": { + "1998": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.status" }, - "1979": { + "1999": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type" }, - "1980": { + "2000": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.status" }, - "1981": { + "2001": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type" }, - "1982": { + "2002": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.status" }, - "1983": { + "2003": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.typeName" }, - "1984": { + "2004": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type" }, - "1985": { + "2005": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "__type.status" }, - "1986": { + "2006": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "DeclarationResult" }, - "1987": { + "2007": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type" }, - "1988": { + "2008": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type.declarations" }, - "1989": { + "2009": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type.status" }, - "1990": { + "2010": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type" }, - "1991": { + "2011": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type.status" }, - "1992": { + "2012": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type" }, - "1993": { + "2013": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type.status" }, - "1994": { + "2014": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type.typeName" }, - "1995": { + "2015": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type" }, - "1996": { + "2016": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "__type.status" }, - "1997": { + "2017": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "ExplanationResult" }, - "1998": { + "2018": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type" }, - "1999": { + "2019": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type.explanation" }, - "2000": { + "2020": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type.status" }, - "2001": { + "2021": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type" }, - "2002": { + "2022": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type.status" }, - "2003": { + "2023": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type" }, - "2004": { + "2024": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type.status" }, - "2005": { + "2025": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type.typeName" }, - "2006": { + "2026": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type" }, - "2007": { + "2027": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "__type.status" }, - "2008": { + "2028": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "PositionedFinding" }, - "2009": { + "2029": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "F" }, - "2010": { + "2030": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "__type" }, - "2011": { + "2031": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "__type.precision" }, - "2012": { + "2032": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "__type.region" }, - "2013": { + "2033": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "completionsAt" }, - "2014": { + "2034": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "completionsAt" }, - "2015": { + "2035": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "text" }, - "2016": { + "2036": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "offset" }, - "2017": { + "2037": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "schema" }, - "2018": { + "2038": { "packageName": "@idfkit/language", "packagePath": "src/complete.ts", "qualifiedName": "options" }, - "2019": { + "2039": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "contextAt" }, - "2020": { + "2040": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "contextAt" }, - "2021": { + "2041": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "text" }, - "2022": { + "2042": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "offset" }, - "2023": { + "2043": { "packageName": "@idfkit/language", "packagePath": "src/cursor.ts", "qualifiedName": "schema" }, - "2024": { + "2044": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "declarationAt" }, - "2025": { + "2045": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "declarationAt" }, - "2026": { + "2046": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "text" }, - "2027": { + "2047": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "offset" }, - "2028": { + "2048": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "schema" }, - "2029": { + "2049": { "packageName": "@idfkit/language", "packagePath": "src/declaration.ts", "qualifiedName": "document" }, - "2030": { + "2050": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "explainAt" }, - "2031": { + "2051": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "explainAt" }, - "2032": { + "2052": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "text" }, - "2033": { + "2053": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "offset" }, - "2034": { + "2054": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "schema" }, - "2035": { + "2055": { "packageName": "@idfkit/language", "packagePath": "src/explain.ts", "qualifiedName": "prose" }, - "2036": { + "2056": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "findingsIn" }, - "2037": { + "2057": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "findingsIn" }, - "2038": { + "2058": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "text" }, - "2039": { + "2059": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "schema" }, - "2040": { + "2060": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "position" }, - "2041": { + "2061": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "position" }, - "2042": { + "2062": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "F" }, - "2043": { + "2063": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "findings" }, - "2044": { + "2064": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "layer" }, - "2045": { + "2065": { "packageName": "@idfkit/language", "packagePath": "src/findings.ts", "qualifiedName": "schema" }, - "2047": { + "2067": { "packageName": "@idfkit/weather", "packagePath": "src/index.ts", "qualifiedName": "" }, - "2048": { + "2068": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodingError" }, - "2049": { + "2069": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodingError.__constructor" }, - "2050": { + "2070": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodingError" }, - "2051": { + "2071": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "message" }, - "2052": { + "2072": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "options" }, - "2053": { + "2073": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "__type" }, - "2054": { + "2074": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "__type.cause" }, - "2055": { + "2075": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter" }, - "2056": { + "2076": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter.__constructor" }, - "2057": { + "2077": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter" }, - "2058": { + "2078": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "minIntervalMs" }, - "2059": { + "2079": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter.reset" }, - "2060": { + "2080": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter.reset" }, - "2061": { + "2081": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter.wait" }, - "2062": { + "2082": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "RateLimiter.wait" }, - "2063": { + "2083": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex" }, - "2064": { + "2084": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.__constructor" }, - "2065": { + "2085": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex" }, - "2066": { + "2086": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "stations" }, - "2067": { + "2087": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "lastModified" }, - "2068": { + "2088": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.countries" }, - "2069": { + "2089": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.countries" }, - "2070": { + "2090": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.lastModified" }, - "2071": { + "2091": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.lastModified" }, - "2072": { + "2092": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.size" }, - "2073": { + "2093": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.size" }, - "2074": { + "2094": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.stations" }, - "2075": { + "2095": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.stations" }, - "2076": { + "2096": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.filter" }, - "2077": { + "2097": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.filter" }, - "2078": { + "2098": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "options" }, - "2079": { + "2099": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.getByFilename" }, - "2080": { + "2100": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.getByFilename" }, - "2081": { + "2101": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "filename" }, - "2082": { + "2102": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.getByWmo" }, - "2083": { + "2103": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.getByWmo" }, - "2084": { + "2104": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "wmo" }, - "2085": { + "2105": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.nearest" }, - "2086": { + "2106": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.nearest" }, - "2087": { + "2107": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "latitude" }, - "2088": { + "2108": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "longitude" }, - "2089": { + "2109": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "options" }, - "2090": { + "2110": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.search" }, - "2091": { + "2111": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.search" }, - "2092": { + "2112": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "query" }, - "2093": { + "2113": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "options" }, - "2094": { + "2114": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.fromStations" }, - "2095": { + "2115": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "StationIndex.fromStations" }, - "2096": { + "2116": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "stations" }, - "2097": { + "2117": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation" }, - "2098": { + "2118": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.__constructor" }, - "2099": { + "2119": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation" }, - "2100": { + "2120": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "fields" }, - "2101": { + "2121": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.ashraeClimateZone" }, - "2102": { + "2122": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.cdd10" }, - "2103": { + "2123": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.city" }, - "2104": { + "2124": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.coolingDesignDbC" }, - "2105": { + "2125": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.country" }, - "2106": { + "2126": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.designConditionsSourceWmo" }, - "2107": { + "2127": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.elevation" }, - "2108": { + "2128": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.hdd18" }, - "2109": { + "2129": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.heatingDesignDbC" }, - "2110": { + "2130": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.latitude" }, - "2111": { + "2131": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.longitude" }, - "2112": { + "2132": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.source" }, - "2113": { + "2133": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.state" }, - "2114": { + "2134": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.timezone" }, - "2115": { + "2135": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.url" }, - "2116": { + "2136": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.wmo" }, - "2117": { + "2137": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.coolingDesignDbF" }, - "2118": { + "2138": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.coolingDesignDbF" }, - "2119": { + "2139": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.datasetVariant" }, - "2120": { + "2140": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.datasetVariant" }, - "2121": { + "2141": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.displayName" }, - "2122": { + "2142": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.displayName" }, - "2123": { + "2143": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.filenameStem" }, - "2124": { + "2144": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.filenameStem" }, - "2125": { + "2145": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.heatingDesignDbF" }, - "2126": { + "2146": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.heatingDesignDbF" }, - "2127": { + "2147": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.toJSON" }, - "2128": { + "2148": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.toJSON" }, - "2129": { + "2149": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.fromJSON" }, - "2130": { + "2150": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStation.fromJSON" }, - "2131": { + "2151": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "record" }, - "2132": { + "2152": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "DetectLocationOptions" }, - "2133": { + "2153": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodeOptions.fetch" }, - "2134": { + "2154": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "DetectLocationOptions.maxAgeMs" }, - "2135": { + "2155": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodeOptions.signal" }, - "2136": { + "2156": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "FetchWeatherOptions" }, - "2137": { + "2157": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "FetchWeatherOptions.fetch" }, - "2138": { + "2158": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "FetchWeatherOptions.rewriteUrl" }, - "2139": { + "2159": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "__type" }, - "2140": { + "2160": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "__type" }, - "2141": { + "2161": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "url" }, - "2142": { + "2162": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "FetchWeatherOptions.signal" }, - "2143": { + "2163": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "FilterOptions" }, - "2144": { + "2164": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "FilterOptions.country" }, - "2145": { + "2165": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "FilterOptions.state" }, - "2146": { + "2166": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "FilterOptions.wmoRegion" }, - "2147": { + "2167": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodeOptions" }, - "2148": { + "2168": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodeOptions.fetch" }, - "2149": { + "2169": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "GeocodeOptions.signal" }, - "2150": { + "2170": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "IndexData" }, - "2151": { + "2171": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "IndexData.built_at" }, - "2152": { + "2172": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "IndexData.last_modified" }, - "2153": { + "2173": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "IndexData.stations" }, - "2154": { + "2174": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "LoadIndexOptions" }, - "2155": { + "2175": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "LoadIndexOptions.fetch" }, - "2156": { + "2176": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "LoadIndexOptions.signal" }, - "2157": { + "2177": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "NearestOptions" }, - "2158": { + "2178": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "NearestOptions.country" }, - "2159": { + "2179": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "NearestOptions.limit" }, - "2160": { + "2180": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "NearestOptions.maxDistanceKm" }, - "2161": { + "2181": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "RefreshIndexOptions" }, - "2162": { + "2182": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "RefreshIndexOptions.baseUrl" }, - "2163": { + "2183": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "RefreshIndexOptions.fetch" }, - "2164": { + "2184": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "RefreshIndexOptions.signal" }, - "2165": { + "2185": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "SearchOptions" }, - "2166": { + "2186": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "SearchOptions.country" }, - "2167": { + "2187": { "packageName": "@idfkit/weather", "packagePath": "src/station-index.ts", "qualifiedName": "SearchOptions.limit" }, - "2168": { + "2188": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SearchResult" }, - "2169": { + "2189": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SearchResult.matchField" }, - "2170": { + "2190": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SearchResult.score" }, - "2171": { + "2191": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SearchResult.station" }, - "2172": { + "2192": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SpatialResult" }, - "2173": { + "2193": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SpatialResult.distanceKm" }, - "2174": { + "2194": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "SpatialResult.station" }, - "2175": { + "2195": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord" }, - "2176": { + "2196": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.ashrae_climate_zone" }, - "2177": { + "2197": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.cdd10" }, - "2178": { + "2198": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.city" }, - "2179": { + "2199": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.cooling_design_db_c" }, - "2180": { + "2200": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.country" }, - "2181": { + "2201": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.design_conditions_source_wmo" }, - "2182": { + "2202": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.elevation" }, - "2183": { + "2203": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.hdd18" }, - "2184": { + "2204": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.heating_design_db_c" }, - "2185": { + "2205": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.latitude" }, - "2186": { + "2206": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.longitude" }, - "2187": { + "2207": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.source" }, - "2188": { + "2208": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.state" }, - "2189": { + "2209": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.timezone" }, - "2190": { + "2210": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.url" }, - "2191": { + "2211": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "StationRecord.wmo" }, - "2192": { + "2212": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "WeatherFiles" }, - "2193": { + "2213": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "WeatherFiles.ddy" }, - "2194": { + "2214": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "WeatherFiles.epw" }, - "2195": { + "2215": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "WeatherFiles.members" }, - "2196": { + "2216": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "WeatherFiles.stat" }, - "2197": { + "2217": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "WeatherFiles.station" }, - "2198": { + "2218": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields" }, - "2199": { + "2219": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.ashraeClimateZone" }, - "2200": { + "2220": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.cdd10" }, - "2201": { + "2221": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.city" }, - "2202": { + "2222": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.coolingDesignDbC" }, - "2203": { + "2223": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.country" }, - "2204": { + "2224": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.designConditionsSourceWmo" }, - "2205": { + "2225": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.elevation" }, - "2206": { + "2226": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.hdd18" }, - "2207": { + "2227": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.heatingDesignDbC" }, - "2208": { + "2228": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.latitude" }, - "2209": { + "2229": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.longitude" }, - "2210": { + "2230": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.source" }, - "2211": { + "2231": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.state" }, - "2212": { + "2232": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.timezone" }, - "2213": { + "2233": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.url" }, - "2214": { + "2234": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "WeatherStationFields.wmo" }, - "2215": { + "2235": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "FetchLike" }, - "2216": { + "2236": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "__type" }, - "2217": { + "2237": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "__type" }, - "2218": { + "2238": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "input" }, - "2219": { + "2239": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "init" }, - "2220": { + "2240": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "__type" }, - "2221": { + "2241": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "__type.headers" }, - "2222": { + "2242": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "__type.method" }, - "2223": { + "2243": { "packageName": "@idfkit/weather", "packagePath": "src/http.ts", "qualifiedName": "__type.signal" }, - "2224": { + "2244": { "packageName": "@idfkit/weather", "packagePath": "src/station.ts", "qualifiedName": "MatchField" }, - "2225": { + "2245": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "INDEX_FILES" }, - "2226": { + "2246": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "SOURCES_BASE_URL" }, - "2227": { + "2247": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "checkForUpdates" }, - "2228": { + "2248": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "checkForUpdates" }, - "2229": { + "2249": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "index" }, - "2230": { + "2250": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "options" }, - "2231": { + "2251": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "detectLocation" }, - "2232": { + "2252": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "detectLocation" }, - "2233": { + "2253": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "options" }, - "2234": { + "2254": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchEpw" }, - "2235": { + "2255": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchEpw" }, - "2236": { + "2256": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "station" }, - "2237": { + "2257": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "options" }, - "2238": { + "2258": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchEpwByFilename" }, - "2239": { + "2259": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchEpwByFilename" }, - "2240": { + "2260": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "filename" }, - "2241": { + "2261": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "index" }, - "2242": { + "2262": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "options" }, - "2243": { + "2263": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchWeatherArchive" }, - "2244": { + "2264": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchWeatherArchive" }, - "2245": { + "2265": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "url" }, - "2246": { + "2266": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "options" }, - "2247": { + "2267": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchWeatherFiles" }, - "2248": { + "2268": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "fetchWeatherFiles" }, - "2249": { + "2269": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "station" }, - "2250": { + "2270": { "packageName": "@idfkit/weather", "packagePath": "src/download.ts", "qualifiedName": "options" }, - "2251": { + "2271": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "geocode" }, - "2252": { + "2272": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "geocode" }, - "2253": { + "2273": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "address" }, - "2254": { + "2274": { "packageName": "@idfkit/weather", "packagePath": "src/geocode.ts", "qualifiedName": "options" }, - "2255": { + "2275": { "packageName": "@idfkit/weather", "packagePath": "src/spatial.ts", "qualifiedName": "haversineKm" }, - "2256": { + "2276": { "packageName": "@idfkit/weather", "packagePath": "src/spatial.ts", "qualifiedName": "haversineKm" }, - "2257": { + "2277": { "packageName": "@idfkit/weather", "packagePath": "src/spatial.ts", "qualifiedName": "lat1" }, - "2258": { + "2278": { "packageName": "@idfkit/weather", "packagePath": "src/spatial.ts", "qualifiedName": "lon1" }, - "2259": { + "2279": { "packageName": "@idfkit/weather", "packagePath": "src/spatial.ts", "qualifiedName": "lat2" }, - "2260": { + "2280": { "packageName": "@idfkit/weather", "packagePath": "src/spatial.ts", "qualifiedName": "lon2" }, - "2261": { + "2281": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "indexFromData" }, - "2262": { + "2282": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "indexFromData" }, - "2263": { + "2283": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "data" }, - "2264": { + "2284": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "loadStationIndex" }, - "2265": { + "2285": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "loadStationIndex" }, - "2266": { + "2286": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "url" }, - "2267": { + "2287": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "options" }, - "2268": { + "2288": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "parseKml" }, - "2269": { + "2289": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "parseKml" }, - "2270": { + "2290": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "text" }, - "2271": { + "2291": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "sourceName" }, - "2272": { + "2292": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "parseUrlMetadata" }, - "2273": { + "2293": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "parseUrlMetadata" }, - "2274": { + "2294": { "packageName": "@idfkit/weather", "packagePath": "src/kml.ts", "qualifiedName": "url" }, - "2275": { + "2295": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "refreshStationIndex" }, - "2276": { + "2296": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "refreshStationIndex" }, - "2277": { + "2297": { "packageName": "@idfkit/weather", "packagePath": "src/load.ts", "qualifiedName": "options" }, - "2278": { + "2298": { "packageName": "@idfkit/weather", "packagePath": "src/unzip.ts", "qualifiedName": "unzip" }, - "2279": { + "2299": { "packageName": "@idfkit/weather", "packagePath": "src/unzip.ts", "qualifiedName": "unzip" }, - "2280": { + "2300": { "packageName": "@idfkit/weather", "packagePath": "src/unzip.ts", "qualifiedName": "buffer" }, - "2281": { + "2301": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "" }, - "2282": { + "2302": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "SavedWeatherFiles" }, - "2283": { + "2303": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "SavedWeatherFiles.ddy" }, - "2284": { + "2304": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "SavedWeatherFiles.epw" }, - "2285": { + "2305": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "SavedWeatherFiles.stat" }, - "2286": { + "2306": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "SaveWeatherFilesOptions" }, - "2287": { + "2307": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "SaveWeatherFilesOptions.stem" }, - "2288": { + "2308": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "loadBundledIndex" }, - "2289": { + "2309": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "loadBundledIndex" }, - "2290": { + "2310": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "path" }, - "2291": { + "2311": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "saveWeatherFiles" }, - "2292": { + "2312": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "saveWeatherFiles" }, - "2293": { + "2313": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "files" }, - "2294": { + "2314": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "directory" }, - "2295": { + "2315": { "packageName": "@idfkit/weather", "packagePath": "src/node.ts", "qualifiedName": "options" @@ -37508,17 +38026,17 @@ "11": "packages/weather/src/node.ts" }, "reflections": { - "1": 1175, - "2": 1176, - "3": 1281, - "4": 1292, - "5": 1293, - "6": 1904, - "7": 1946, - "8": 1946, - "9": 2046, - "10": 2047, - "11": 2281 + "1": 1188, + "2": 1189, + "3": 1294, + "4": 1305, + "5": 1306, + "6": 1923, + "7": 1966, + "8": 1966, + "9": 2066, + "10": 2067, + "11": 2301 } } } diff --git a/mkdocs.yml b/mkdocs.yml index bd284e2..ab39059 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -53,6 +53,7 @@ nav: - How to migrate from eppy: migration.md - Reading and editing models: - Collect diagnostics instead of throwing: how-to/collect-diagnostics.md + - Save a file without reformatting it: how-to/preserve-formatting.md - Edit extensible groups: how-to/edit-extensible-groups.md - Compare two EnergyPlus versions: how-to/compare-versions.md - In the browser: diff --git a/pyproject.toml b/pyproject.toml index 4a4431a..87fac41 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,14 +71,14 @@ level = "conformance-2026.8" # 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.12" +level = "governance-2026.14" # 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.2" +level = "docs-2026.3" # 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