/** * @copyright Sister Software * @license AGPL-3.0 * @author Teffen Ellis, et al. * * `state-tx-notaries`: Texas Notary Public Commissions CSV consumer. * * The Texas Secretary of State publishes a registry of commissioned notaries public. Each row * optionally carries a mailing address in free-form text (often multi-line with embedded * city/state/zip). Address fill rate is ~5-10%. * * The adapter parses the embedded `Address` field for city/state/zip using a trailing `"CITY, ST * ZIP"` pattern. * * License: stamped `"Public Domain"` per Texas 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_TX_NOTARIES_ADAPTER_ID = "state-tx-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_TX_NOTARIES_DEFAULT_LICENSE = "Public Domain"; export declare function createStateTxNotariesAdapter(): CorpusAdapter; /** * The configured adapter instance registered with the corpus builder. */ export declare const stateTxNotariesAdapter: CorpusAdapter; //# sourceMappingURL=adapter.d.ts.map