gedcom-ts 2026.5.0 → 2026.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -1
- package/README.md +189 -106
- package/dist/geocode/index.d.ts +3 -0
- package/dist/geocode/place-city-utils.d.ts +15 -0
- package/dist/geocode/place-clusters.d.ts +73 -0
- package/dist/geocode/place-geocode.d.ts +50 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +1 -1
- package/dist/services/CitySearch.d.ts +4 -0
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -20,7 +20,9 @@ export { importGedFile, createEmptyReadGed, IMPORT_ERR_ZIP_GED_UNREADABLE } from
|
|
|
20
20
|
export { ExportGedcomFile, ExportGedzipFile, type GedcomExportOptions } from "./export/GEDCOM";
|
|
21
21
|
export { createSosaMap } from "./utils/sosa/calculate-sosa";
|
|
22
22
|
export { remainingTypesAct } from "./utils/acts-helper/acts-helper";
|
|
23
|
+
/** @deprecated Use `searchPlaces` / `searchPlacesWithContext`. */
|
|
23
24
|
export { getCityCoordinates } from "./services/CitySearch";
|
|
25
|
+
export { normalizeCityKey, tidyCityDisplay, findCanonicalCityLabel, type GeocodeCandidate, type GeocodeContext, type GeocodeFetchFn, type GeocodeSearchOptions, type CoordVariant, type CityHarmonizationCluster, NOMINATIM_SEARCH_URL, defaultGeocodeUserAgent, parseCityQuery, countryLabelToIso, isoToCountryLabel, inferGeocodeContext, buildGeocodeQuery, geocodeContextWithHint, rankGeocodeCandidates, searchPlaces, searchPlacesWithContext, levenshteinDistance, citiesAreSimilar, clusterKeyForCity, similarCityKey, type SimilarCityActGroup, type GroupActsBySimilarCityOptions, type FilterActsBySimilarCityOptions, groupActsBySimilarCity, filterActsBySimilarCity, actsNeedingGeocodeForCity, findHarmonizationClustersFromActs, findHarmonizationClusters, applyCoordinatesToActs, applyGeocodeCandidateToActs, } from "./geocode";
|
|
24
26
|
export { resolveDatasetVersion } from "./utils/gedcom/datasetVersion";
|
|
25
27
|
export type { GedcomDatasetVersion } from "./utils/gedcom/datasetVersion";
|
|
26
28
|
export { guessMediaFormFromUri } from "./utils/gedcom/mediaFormFromUri";
|