/** * @copyright Sister Software * @license AGPL-3.0 * @author Teffen Ellis, et al. * * `state-ny-notaries`: New York Commissioned Notaries CSV consumer. * * The New York Department of State publishes a registry of commissioned notaries public. Each row * optionally carries a business name and business address (~1-5% fill rate). * * The adapter consumes the CSV the operator pre-downloads via `fetch-state-sources.ts`. Column * names match the data.ny.gov export header (note: some columns have leading spaces). * * License: stamped `"Public Domain"` per New York state government open-data terms. */ import type { CorpusAdapter } from "@mailwoman/corpus/types"; /** * Registry id for this adapter. Stamped into every row it emits, so a corpus record can be traced back to the dataset * it came from. */ export declare const STATE_NY_NOTARIES_ADAPTER_ID = "state-ny-notaries"; /** * License carried by this source (Public Domain), attached to each row so downstream consumers inherit the terms rather * than having to look them up. */ export declare const STATE_NY_NOTARIES_DEFAULT_LICENSE = "Public Domain"; export declare function createStateNyNotariesAdapter(): CorpusAdapter; /** * The configured adapter instance registered with the corpus builder. */ export declare const stateNyNotariesAdapter: CorpusAdapter; //# sourceMappingURL=adapter.d.ts.map