Logical grouping of one or more sources sharing identity and (optionally)
a field schema. Dataset is the canonical entry point: createDataset
gates the compatibility check and caches it per HonuaClient.
Example
constdataset = createDataset({ id:"parcels", client, sources: [...] }); if (!(awaitdataset.isCompatible())) thrownewError("server too old"); for (constidofdataset.sourceIds()) { console.log(id, dataset.source(id)?.capabilities); }
Logical grouping of one or more sources sharing identity and (optionally) a field schema.
Datasetis the canonical entry point:createDatasetgates the compatibility check and caches it perHonuaClient.Example