@mailwoman/codex 9.0.0 → 9.1.0

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.
@@ -5,231 +5,245 @@
5
5
  *
6
6
  * USPS Publication 28, Appendix C — Postal Service Standard Suffix Abbreviations.
7
7
  *
8
- * For each canonical suffix the value lists every recognized variant in USPS-published order; the
9
- * first variant is the preferred USPS abbreviation (e.g. `AVENUE ["AVE", "AV", "AVEN", "AVENU",
10
- * "AVN", "AVNUE"]` — `AVE` is what the post office prints).
8
+ * The DATA lives in `./street-suffix.json` so non-TS consumers (the Python training loader's
9
+ * lexicon builder, audits) read the identical record no hand-mirrored copies. Two keys:
11
10
  *
12
- * This module is the single home for the USPS suffix table. It carries both the synthesis-layer
13
- * helpers (`US_STREET_SUFFIX_PREFERRED_ABBR`, `matchCase`, `matchTrailingSuffix` used by
14
- * `@mailwoman/corpus`) and the richer branded-type lookup (`StreetSuffix`, `lookupStreetSuffix`,
15
- * `isStreetSuffix`) The data is verbatim USPS Pub-28; the two APIs share one underlying record.
11
+ * - `variants` verbatim USPS Pub-28: canonical suffix every recognized variant in
12
+ * USPS-published order; the first variant is the preferred USPS abbreviation (e.g.
13
+ * `AVENUE ["AVE", ...]` `AVE` is what the post office prints).
14
+ * - `nameProneCanonicals` OUR curation, not Pub-28: canonicals also observed as ordinary
15
+ * proper-name heads in street names (PARK, HILL, CREEK…), from golden v0.1.3 + the OA street
16
+ * pool. Shared by the golden relabel flags, the #1569 shard recipe, and (via the
17
+ * `gazetteer affix-relabel` v2 lexicon) the Python relabel pass, so the instrument and the
18
+ * training feed cannot drift onto different definitions of the ambiguous class.
19
+ *
20
+ * This module remains the single TS home for the table: the synthesis-layer helpers
21
+ * (`US_STREET_SUFFIX_PREFERRED_ABBR`, `matchCase`, `matchTrailingSuffix` — used by
22
+ * `@mailwoman/corpus`) and the richer branded-type lookup (`StreetSuffix`,
23
+ * `lookupStreetSuffix`, `isStreetSuffix`) share the one underlying JSON record.
16
24
  * @see {@link https://pe.usps.com/text/pub28/28apc_002.htm USPS Street Suffix Abbreviations}
17
25
  */
18
26
  /**
19
27
  * Canonical USPS street suffix → list of recognized variants. The first variant in each list is the preferred USPS
20
- * abbreviation. Keys + values are uppercase per the publication.
28
+ * abbreviation. Keys + values are uppercase per the publication. Data: `./street-suffix.json`.
21
29
  */
22
30
  export declare const US_STREET_SUFFIX_VARIANTS: {
23
- readonly ALLEY: readonly ["ALY", "ALLEE", "ALLY"];
24
- readonly ANEX: readonly ["ANX", "ANNEX", "ANNX"];
25
- readonly ARCADE: readonly ["ARC"];
26
- readonly AVENUE: readonly ["AVE", "AV", "AVEN", "AVENU", "AVN", "AVNUE"];
27
- readonly BAYOU: readonly ["BYU", "BAYOO"];
28
- readonly BEACH: readonly ["BCH"];
29
- readonly BEND: readonly ["BND"];
30
- readonly BLUFF: readonly ["BLF", "BLUF"];
31
- readonly BLUFFS: readonly ["BLFS"];
32
- readonly BOTTOM: readonly ["BTM", "BOT", "BOTTM"];
33
- readonly BOULEVARD: readonly ["BLVD", "BOUL", "BOULV"];
34
- readonly BRANCH: readonly ["BR", "BRNCH"];
35
- readonly BRIDGE: readonly ["BRG", "BRDGE"];
36
- readonly BROOK: readonly ["BRK"];
37
- readonly BROOKS: readonly ["BRKS"];
38
- readonly BURG: readonly ["BG"];
39
- readonly BURGS: readonly ["BGS"];
40
- readonly BYPASS: readonly ["BYP", "BYPA", "BYPAS", "BYPS"];
41
- readonly CAMP: readonly ["CP", "CMP"];
42
- readonly CANYON: readonly ["CYN", "CANYN", "CNYN"];
43
- readonly CAPE: readonly ["CPE"];
44
- readonly CAUSEWAY: readonly ["CSWY", "CAUSWA"];
45
- readonly CENTER: readonly ["CTR", "CEN", "CENT", "CENTR", "CENTRE", "CNTER", "CNTR"];
46
- readonly CENTERS: readonly ["CTRS"];
47
- readonly CIRCLE: readonly ["CIR", "CIRC", "CIRCL", "CRCL", "CRCLE"];
48
- readonly CIRCLES: readonly ["CIRS"];
49
- readonly CLIFF: readonly ["CLF"];
50
- readonly CLIFFS: readonly ["CLFS"];
51
- readonly CLUB: readonly ["CLB"];
52
- readonly COMMON: readonly ["CMN"];
53
- readonly COMMONS: readonly ["CMNS"];
54
- readonly CORNER: readonly ["COR"];
55
- readonly CORNERS: readonly ["CORS"];
56
- readonly COURSE: readonly ["CRSE"];
57
- readonly COURT: readonly ["CT"];
58
- readonly COURTS: readonly ["CTS"];
59
- readonly COVE: readonly ["CV"];
60
- readonly COVES: readonly ["CVS"];
61
- readonly CREEK: readonly ["CRK"];
62
- readonly CRESCENT: readonly ["CRES", "CRSENT", "CRSNT"];
63
- readonly CREST: readonly ["CRST"];
64
- readonly CROSSING: readonly ["XING", "CRSSNG"];
65
- readonly CROSSROAD: readonly ["XRD"];
66
- readonly CROSSROADS: readonly ["XRDS"];
67
- readonly CURVE: readonly ["CURV"];
68
- readonly DALE: readonly ["DL"];
69
- readonly DAM: readonly ["DM"];
70
- readonly DIVIDE: readonly ["DV", "DIV", "DVD"];
71
- readonly DRIVE: readonly ["DR", "DRIV", "DRV"];
72
- readonly DRIVES: readonly ["DRS"];
73
- readonly ESTATE: readonly ["EST"];
74
- readonly ESTATES: readonly ["ESTS"];
75
- readonly EXPRESSWAY: readonly ["EXPY", "EXP", "EXPR", "EXPRESS", "EXPW"];
76
- readonly EXTENSION: readonly ["EXT", "EXTN", "EXTNSN"];
77
- readonly EXTENSIONS: readonly ["EXTS"];
78
- readonly FALL: readonly ["FALL"];
79
- readonly FALLS: readonly ["FLS"];
80
- readonly FERRY: readonly ["FRY", "FRRY"];
81
- readonly FIELD: readonly ["FLD"];
82
- readonly FIELDS: readonly ["FLDS"];
83
- readonly FLAT: readonly ["FLT"];
84
- readonly FLATS: readonly ["FLTS"];
85
- readonly FORD: readonly ["FRD"];
86
- readonly FORDS: readonly ["FRDS"];
87
- readonly FOREST: readonly ["FRST", "FORESTS"];
88
- readonly FORGE: readonly ["FRG", "FORG"];
89
- readonly FORGES: readonly ["FRGS"];
90
- readonly FORK: readonly ["FRK"];
91
- readonly FORKS: readonly ["FRKS"];
92
- readonly FORT: readonly ["FT", "FRT"];
93
- readonly FREEWAY: readonly ["FWY", "FREEWY", "FRWAY", "FRWY"];
94
- readonly GARDEN: readonly ["GDN", "GARDN", "GRDEN", "GRDN"];
95
- readonly GARDENS: readonly ["GDNS", "GRDNS"];
96
- readonly GATEWAY: readonly ["GTWY", "GATEWY", "GATWAY", "GTWAY"];
97
- readonly GLEN: readonly ["GLN"];
98
- readonly GLENS: readonly ["GLNS"];
99
- readonly GREEN: readonly ["GRN"];
100
- readonly GREENS: readonly ["GRNS"];
101
- readonly GROVE: readonly ["GRV", "GROV"];
102
- readonly GROVES: readonly ["GRVS"];
103
- readonly HARBOR: readonly ["HBR", "HARB", "HARBR", "HRBOR"];
104
- readonly HARBORS: readonly ["HBRS"];
105
- readonly HAVEN: readonly ["HVN"];
106
- readonly HEIGHTS: readonly ["HTS", "HT"];
107
- readonly HIGHWAY: readonly ["HWY", "HIGHWY", "HIWAY", "HIWY", "HWAY"];
108
- readonly HILL: readonly ["HL"];
109
- readonly HILLS: readonly ["HLS"];
110
- readonly HOLLOW: readonly ["HOLW", "HLLW", "HOLLOWS", "HOLWS"];
111
- readonly INLET: readonly ["INLT"];
112
- readonly ISLAND: readonly ["IS", "ISLND"];
113
- readonly ISLANDS: readonly ["ISS", "ISLNDS"];
114
- readonly ISLE: readonly ["ISLE", "ISLES"];
115
- readonly JUNCTION: readonly ["JCT", "JCTION", "JCTN", "JUNCTN", "JUNCTON"];
116
- readonly JUNCTIONS: readonly ["JCTS", "JCTNS"];
117
- readonly KEY: readonly ["KY"];
118
- readonly KEYS: readonly ["KYS"];
119
- readonly KNOLL: readonly ["KNL", "KNOL"];
120
- readonly KNOLLS: readonly ["KNLS"];
121
- readonly LAKE: readonly ["LK"];
122
- readonly LAKES: readonly ["LKS"];
123
- readonly LAND: readonly ["LAND"];
124
- readonly LANDING: readonly ["LNDG", "LNDNG"];
125
- readonly LANE: readonly ["LN"];
126
- readonly LIGHT: readonly ["LGT"];
127
- readonly LIGHTS: readonly ["LGTS"];
128
- readonly LOAF: readonly ["LF"];
129
- readonly LOCK: readonly ["LCK"];
130
- readonly LOCKS: readonly ["LCKS"];
131
- readonly LODGE: readonly ["LDG", "LDGE", "LODG"];
132
- readonly LOOP: readonly ["LOOP", "LOOPS"];
133
- readonly MALL: readonly ["MALL"];
134
- readonly MANOR: readonly ["MNR"];
135
- readonly MANORS: readonly ["MNRS"];
136
- readonly MEADOW: readonly ["MDW"];
137
- readonly MEADOWS: readonly ["MDWS", "MDW", "MEDOWS"];
138
- readonly MEWS: readonly ["MEWS"];
139
- readonly MILL: readonly ["ML"];
140
- readonly MILLS: readonly ["MLS"];
141
- readonly MISSION: readonly ["MSN", "MISSN", "MSSN"];
142
- readonly MOTORWAY: readonly ["MTWY"];
143
- readonly MOUNT: readonly ["MT", "MNT"];
144
- readonly MOUNTAIN: readonly ["MTN", "MNTAIN", "MNTN", "MOUNTIN", "MTIN"];
145
- readonly MOUNTAINS: readonly ["MTNS", "MNTNS"];
146
- readonly NECK: readonly ["NCK"];
147
- readonly ORCHARD: readonly ["ORCH", "ORCHRD"];
148
- readonly OVAL: readonly ["OVAL", "OVL"];
149
- readonly OVERPASS: readonly ["OPAS"];
150
- readonly PARK: readonly ["PARK", "PRK", "PARKS"];
151
- readonly PARKWAY: readonly ["PKWY", "PARKWY", "PKWAY", "PKY"];
152
- readonly PARKWAYS: readonly ["PKWY", "PKWYS"];
153
- readonly PASS: readonly ["PASS"];
154
- readonly PASSAGE: readonly ["PSGE"];
155
- readonly PATH: readonly ["PATH", "PATHS"];
156
- readonly PIKE: readonly ["PIKE", "PIKES"];
157
- readonly PINE: readonly ["PNE"];
158
- readonly PINES: readonly ["PNES"];
159
- readonly PLACE: readonly ["PL"];
160
- readonly PLAIN: readonly ["PLN"];
161
- readonly PLAINS: readonly ["PLNS"];
162
- readonly PLAZA: readonly ["PLZ", "PLZA"];
163
- readonly POINT: readonly ["PT"];
164
- readonly POINTS: readonly ["PTS"];
165
- readonly PORT: readonly ["PRT"];
166
- readonly PORTS: readonly ["PRTS"];
167
- readonly PRAIRIE: readonly ["PR", "PRR"];
168
- readonly RADIAL: readonly ["RADL", "RAD", "RADIEL"];
169
- readonly RAMP: readonly ["RAMP"];
170
- readonly RANCH: readonly ["RNCH", "RANCHES", "RNCHS"];
171
- readonly RAPID: readonly ["RPD"];
172
- readonly RAPIDS: readonly ["RPDS"];
173
- readonly REST: readonly ["RST"];
174
- readonly RIDGE: readonly ["RDG", "RDGE"];
175
- readonly RIDGES: readonly ["RDGS"];
176
- readonly RIVER: readonly ["RIV", "RVR", "RIVR"];
177
- readonly ROAD: readonly ["RD"];
178
- readonly ROADS: readonly ["RDS"];
179
- readonly ROUTE: readonly ["RTE"];
180
- readonly ROW: readonly ["ROW"];
181
- readonly RUE: readonly ["RUE"];
182
- readonly RUN: readonly ["RUN"];
183
- readonly SHOAL: readonly ["SHL"];
184
- readonly SHOALS: readonly ["SHLS"];
185
- readonly SHORE: readonly ["SHR", "SHOAR"];
186
- readonly SHORES: readonly ["SHRS", "SHOARS"];
187
- readonly SKYWAY: readonly ["SKWY"];
188
- readonly SPRING: readonly ["SPG", "SPNG", "SPRNG"];
189
- readonly SPRINGS: readonly ["SPGS", "SPNGS", "SPRNGS"];
190
- readonly SPUR: readonly ["SPUR"];
191
- readonly SPURS: readonly ["SPUR"];
192
- readonly SQUARE: readonly ["SQ", "SQR", "SQRE", "SQU"];
193
- readonly SQUARES: readonly ["SQS", "SQRS"];
194
- readonly STATION: readonly ["STA", "STATN", "STN"];
195
- readonly STRAVENUE: readonly ["STRA", "STRAV", "STRAVEN", "STRAVN", "STRVN", "STRVNUE"];
196
- readonly STREAM: readonly ["STRM", "STREME"];
197
- readonly STREET: readonly ["ST", "STRT", "STR"];
198
- readonly STREETS: readonly ["STS"];
199
- readonly SUMMIT: readonly ["SMT", "SUMIT", "SUMITT"];
200
- readonly TERRACE: readonly ["TER", "TERR"];
201
- readonly THROUGHWAY: readonly ["TRWY"];
202
- readonly TRACE: readonly ["TRCE", "TRACES"];
203
- readonly TRACK: readonly ["TRAK", "TRACKS", "TRK", "TRKS"];
204
- readonly TRAFFICWAY: readonly ["TRFY"];
205
- readonly TRAIL: readonly ["TRL", "TRAILS", "TRLS"];
206
- readonly TRAILER: readonly ["TRLR", "TRLRS"];
207
- readonly TUNNEL: readonly ["TUNL", "TUNEL", "TUNLS", "TUNNELS", "TUNNL"];
208
- readonly TURNPIKE: readonly ["TPKE", "TRNPK", "TURNPK"];
209
- readonly UNDERPASS: readonly ["UPAS"];
210
- readonly UNION: readonly ["UN"];
211
- readonly UNIONS: readonly ["UNS"];
212
- readonly VALLEY: readonly ["VLY", "VALLY", "VLLY"];
213
- readonly VALLEYS: readonly ["VLYS"];
214
- readonly VIADUCT: readonly ["VIA", "VDCT", "VIADCT"];
215
- readonly VIEW: readonly ["VW"];
216
- readonly VIEWS: readonly ["VWS"];
217
- readonly VILLAGE: readonly ["VLG", "VILL", "VILLAG", "VILLG", "VILLIAGE"];
218
- readonly VILLAGES: readonly ["VLGS"];
219
- readonly VILLE: readonly ["VL"];
220
- readonly VISTA: readonly ["VIS", "VIST", "VST", "VSTA"];
221
- readonly WALK: readonly ["WALK"];
222
- readonly WALKS: readonly ["WALK"];
223
- readonly WALL: readonly ["WALL"];
224
- readonly WAY: readonly ["WAY", "WY"];
225
- readonly WAYS: readonly ["WAYS"];
226
- readonly WELL: readonly ["WL"];
227
- readonly WELLS: readonly ["WLS"];
31
+ ALLEY: string[];
32
+ ANEX: string[];
33
+ ARCADE: string[];
34
+ AVENUE: string[];
35
+ BAYOU: string[];
36
+ BEACH: string[];
37
+ BEND: string[];
38
+ BLUFF: string[];
39
+ BLUFFS: string[];
40
+ BOTTOM: string[];
41
+ BOULEVARD: string[];
42
+ BRANCH: string[];
43
+ BRIDGE: string[];
44
+ BROOK: string[];
45
+ BROOKS: string[];
46
+ BURG: string[];
47
+ BURGS: string[];
48
+ BYPASS: string[];
49
+ CAMP: string[];
50
+ CANYON: string[];
51
+ CAPE: string[];
52
+ CAUSEWAY: string[];
53
+ CENTER: string[];
54
+ CENTERS: string[];
55
+ CIRCLE: string[];
56
+ CIRCLES: string[];
57
+ CLIFF: string[];
58
+ CLIFFS: string[];
59
+ CLUB: string[];
60
+ COMMON: string[];
61
+ COMMONS: string[];
62
+ CORNER: string[];
63
+ CORNERS: string[];
64
+ COURSE: string[];
65
+ COURT: string[];
66
+ COURTS: string[];
67
+ COVE: string[];
68
+ COVES: string[];
69
+ CREEK: string[];
70
+ CRESCENT: string[];
71
+ CREST: string[];
72
+ CROSSING: string[];
73
+ CROSSROAD: string[];
74
+ CROSSROADS: string[];
75
+ CURVE: string[];
76
+ DALE: string[];
77
+ DAM: string[];
78
+ DIVIDE: string[];
79
+ DRIVE: string[];
80
+ DRIVES: string[];
81
+ ESTATE: string[];
82
+ ESTATES: string[];
83
+ EXPRESSWAY: string[];
84
+ EXTENSION: string[];
85
+ EXTENSIONS: string[];
86
+ FALL: string[];
87
+ FALLS: string[];
88
+ FERRY: string[];
89
+ FIELD: string[];
90
+ FIELDS: string[];
91
+ FLAT: string[];
92
+ FLATS: string[];
93
+ FORD: string[];
94
+ FORDS: string[];
95
+ FOREST: string[];
96
+ FORGE: string[];
97
+ FORGES: string[];
98
+ FORK: string[];
99
+ FORKS: string[];
100
+ FORT: string[];
101
+ FREEWAY: string[];
102
+ GARDEN: string[];
103
+ GARDENS: string[];
104
+ GATEWAY: string[];
105
+ GLEN: string[];
106
+ GLENS: string[];
107
+ GREEN: string[];
108
+ GREENS: string[];
109
+ GROVE: string[];
110
+ GROVES: string[];
111
+ HARBOR: string[];
112
+ HARBORS: string[];
113
+ HAVEN: string[];
114
+ HEIGHTS: string[];
115
+ HIGHWAY: string[];
116
+ HILL: string[];
117
+ HILLS: string[];
118
+ HOLLOW: string[];
119
+ INLET: string[];
120
+ ISLAND: string[];
121
+ ISLANDS: string[];
122
+ ISLE: string[];
123
+ JUNCTION: string[];
124
+ JUNCTIONS: string[];
125
+ KEY: string[];
126
+ KEYS: string[];
127
+ KNOLL: string[];
128
+ KNOLLS: string[];
129
+ LAKE: string[];
130
+ LAKES: string[];
131
+ LAND: string[];
132
+ LANDING: string[];
133
+ LANE: string[];
134
+ LIGHT: string[];
135
+ LIGHTS: string[];
136
+ LOAF: string[];
137
+ LOCK: string[];
138
+ LOCKS: string[];
139
+ LODGE: string[];
140
+ LOOP: string[];
141
+ MALL: string[];
142
+ MANOR: string[];
143
+ MANORS: string[];
144
+ MEADOW: string[];
145
+ MEADOWS: string[];
146
+ MEWS: string[];
147
+ MILL: string[];
148
+ MILLS: string[];
149
+ MISSION: string[];
150
+ MOTORWAY: string[];
151
+ MOUNT: string[];
152
+ MOUNTAIN: string[];
153
+ MOUNTAINS: string[];
154
+ NECK: string[];
155
+ ORCHARD: string[];
156
+ OVAL: string[];
157
+ OVERPASS: string[];
158
+ PARK: string[];
159
+ PARKWAY: string[];
160
+ PARKWAYS: string[];
161
+ PASS: string[];
162
+ PASSAGE: string[];
163
+ PATH: string[];
164
+ PIKE: string[];
165
+ PINE: string[];
166
+ PINES: string[];
167
+ PLACE: string[];
168
+ PLAIN: string[];
169
+ PLAINS: string[];
170
+ PLAZA: string[];
171
+ POINT: string[];
172
+ POINTS: string[];
173
+ PORT: string[];
174
+ PORTS: string[];
175
+ PRAIRIE: string[];
176
+ RADIAL: string[];
177
+ RAMP: string[];
178
+ RANCH: string[];
179
+ RAPID: string[];
180
+ RAPIDS: string[];
181
+ REST: string[];
182
+ RIDGE: string[];
183
+ RIDGES: string[];
184
+ RIVER: string[];
185
+ ROAD: string[];
186
+ ROADS: string[];
187
+ ROUTE: string[];
188
+ ROW: string[];
189
+ RUE: string[];
190
+ RUN: string[];
191
+ SHOAL: string[];
192
+ SHOALS: string[];
193
+ SHORE: string[];
194
+ SHORES: string[];
195
+ SKYWAY: string[];
196
+ SPRING: string[];
197
+ SPRINGS: string[];
198
+ SPUR: string[];
199
+ SPURS: string[];
200
+ SQUARE: string[];
201
+ SQUARES: string[];
202
+ STATION: string[];
203
+ STRAVENUE: string[];
204
+ STREAM: string[];
205
+ STREET: string[];
206
+ STREETS: string[];
207
+ SUMMIT: string[];
208
+ TERRACE: string[];
209
+ THROUGHWAY: string[];
210
+ TRACE: string[];
211
+ TRACK: string[];
212
+ TRAFFICWAY: string[];
213
+ TRAIL: string[];
214
+ TRAILER: string[];
215
+ TUNNEL: string[];
216
+ TURNPIKE: string[];
217
+ UNDERPASS: string[];
218
+ UNION: string[];
219
+ UNIONS: string[];
220
+ VALLEY: string[];
221
+ VALLEYS: string[];
222
+ VIADUCT: string[];
223
+ VIEW: string[];
224
+ VIEWS: string[];
225
+ VILLAGE: string[];
226
+ VILLAGES: string[];
227
+ VILLE: string[];
228
+ VISTA: string[];
229
+ WALK: string[];
230
+ WALKS: string[];
231
+ WALL: string[];
232
+ WAY: string[];
233
+ WAYS: string[];
234
+ WELL: string[];
235
+ WELLS: string[];
228
236
  };
229
237
  /**
230
238
  * Canonical USPS suffix (full word, uppercase per the publication).
231
239
  */
232
240
  export type USStreetSuffix = keyof typeof US_STREET_SUFFIX_VARIANTS;
241
+ /**
242
+ * Pub-28 canonicals that are also common head nouns in street/place names ("Menlo PARK Road", "Blue HILL Rd") — the
243
+ * ambiguous class behind #1569. Curated (golden v0.1.3 + OA street pool), NOT part of the USPS publication; see
244
+ * `nameProneCanonicals` in `./street-suffix.json`.
245
+ */
246
+ export declare const NAME_PRONE_US_SUFFIXES: ReadonlySet<USStreetSuffix>;
233
247
  /**
234
248
  * Inverse lookup: every variant abbreviation OR full canonical word → its canonical key. Built once at module load,
235
249
  * lowercase-keyed for case-insensitive matching (`street` → `"STREET"`, `st` → `"STREET"`, `strt` → `"STREET"`, …).
@@ -259,211 +273,211 @@ export declare function matchTrailingSuffix(street: string): {
259
273
  * The USPS suffix record, under its original isp-nexus name. Aliases {@link US_STREET_SUFFIX_VARIANTS}.
260
274
  */
261
275
  export declare const StreetSuffixAbbreviationRecord: {
262
- readonly ALLEY: readonly ["ALY", "ALLEE", "ALLY"];
263
- readonly ANEX: readonly ["ANX", "ANNEX", "ANNX"];
264
- readonly ARCADE: readonly ["ARC"];
265
- readonly AVENUE: readonly ["AVE", "AV", "AVEN", "AVENU", "AVN", "AVNUE"];
266
- readonly BAYOU: readonly ["BYU", "BAYOO"];
267
- readonly BEACH: readonly ["BCH"];
268
- readonly BEND: readonly ["BND"];
269
- readonly BLUFF: readonly ["BLF", "BLUF"];
270
- readonly BLUFFS: readonly ["BLFS"];
271
- readonly BOTTOM: readonly ["BTM", "BOT", "BOTTM"];
272
- readonly BOULEVARD: readonly ["BLVD", "BOUL", "BOULV"];
273
- readonly BRANCH: readonly ["BR", "BRNCH"];
274
- readonly BRIDGE: readonly ["BRG", "BRDGE"];
275
- readonly BROOK: readonly ["BRK"];
276
- readonly BROOKS: readonly ["BRKS"];
277
- readonly BURG: readonly ["BG"];
278
- readonly BURGS: readonly ["BGS"];
279
- readonly BYPASS: readonly ["BYP", "BYPA", "BYPAS", "BYPS"];
280
- readonly CAMP: readonly ["CP", "CMP"];
281
- readonly CANYON: readonly ["CYN", "CANYN", "CNYN"];
282
- readonly CAPE: readonly ["CPE"];
283
- readonly CAUSEWAY: readonly ["CSWY", "CAUSWA"];
284
- readonly CENTER: readonly ["CTR", "CEN", "CENT", "CENTR", "CENTRE", "CNTER", "CNTR"];
285
- readonly CENTERS: readonly ["CTRS"];
286
- readonly CIRCLE: readonly ["CIR", "CIRC", "CIRCL", "CRCL", "CRCLE"];
287
- readonly CIRCLES: readonly ["CIRS"];
288
- readonly CLIFF: readonly ["CLF"];
289
- readonly CLIFFS: readonly ["CLFS"];
290
- readonly CLUB: readonly ["CLB"];
291
- readonly COMMON: readonly ["CMN"];
292
- readonly COMMONS: readonly ["CMNS"];
293
- readonly CORNER: readonly ["COR"];
294
- readonly CORNERS: readonly ["CORS"];
295
- readonly COURSE: readonly ["CRSE"];
296
- readonly COURT: readonly ["CT"];
297
- readonly COURTS: readonly ["CTS"];
298
- readonly COVE: readonly ["CV"];
299
- readonly COVES: readonly ["CVS"];
300
- readonly CREEK: readonly ["CRK"];
301
- readonly CRESCENT: readonly ["CRES", "CRSENT", "CRSNT"];
302
- readonly CREST: readonly ["CRST"];
303
- readonly CROSSING: readonly ["XING", "CRSSNG"];
304
- readonly CROSSROAD: readonly ["XRD"];
305
- readonly CROSSROADS: readonly ["XRDS"];
306
- readonly CURVE: readonly ["CURV"];
307
- readonly DALE: readonly ["DL"];
308
- readonly DAM: readonly ["DM"];
309
- readonly DIVIDE: readonly ["DV", "DIV", "DVD"];
310
- readonly DRIVE: readonly ["DR", "DRIV", "DRV"];
311
- readonly DRIVES: readonly ["DRS"];
312
- readonly ESTATE: readonly ["EST"];
313
- readonly ESTATES: readonly ["ESTS"];
314
- readonly EXPRESSWAY: readonly ["EXPY", "EXP", "EXPR", "EXPRESS", "EXPW"];
315
- readonly EXTENSION: readonly ["EXT", "EXTN", "EXTNSN"];
316
- readonly EXTENSIONS: readonly ["EXTS"];
317
- readonly FALL: readonly ["FALL"];
318
- readonly FALLS: readonly ["FLS"];
319
- readonly FERRY: readonly ["FRY", "FRRY"];
320
- readonly FIELD: readonly ["FLD"];
321
- readonly FIELDS: readonly ["FLDS"];
322
- readonly FLAT: readonly ["FLT"];
323
- readonly FLATS: readonly ["FLTS"];
324
- readonly FORD: readonly ["FRD"];
325
- readonly FORDS: readonly ["FRDS"];
326
- readonly FOREST: readonly ["FRST", "FORESTS"];
327
- readonly FORGE: readonly ["FRG", "FORG"];
328
- readonly FORGES: readonly ["FRGS"];
329
- readonly FORK: readonly ["FRK"];
330
- readonly FORKS: readonly ["FRKS"];
331
- readonly FORT: readonly ["FT", "FRT"];
332
- readonly FREEWAY: readonly ["FWY", "FREEWY", "FRWAY", "FRWY"];
333
- readonly GARDEN: readonly ["GDN", "GARDN", "GRDEN", "GRDN"];
334
- readonly GARDENS: readonly ["GDNS", "GRDNS"];
335
- readonly GATEWAY: readonly ["GTWY", "GATEWY", "GATWAY", "GTWAY"];
336
- readonly GLEN: readonly ["GLN"];
337
- readonly GLENS: readonly ["GLNS"];
338
- readonly GREEN: readonly ["GRN"];
339
- readonly GREENS: readonly ["GRNS"];
340
- readonly GROVE: readonly ["GRV", "GROV"];
341
- readonly GROVES: readonly ["GRVS"];
342
- readonly HARBOR: readonly ["HBR", "HARB", "HARBR", "HRBOR"];
343
- readonly HARBORS: readonly ["HBRS"];
344
- readonly HAVEN: readonly ["HVN"];
345
- readonly HEIGHTS: readonly ["HTS", "HT"];
346
- readonly HIGHWAY: readonly ["HWY", "HIGHWY", "HIWAY", "HIWY", "HWAY"];
347
- readonly HILL: readonly ["HL"];
348
- readonly HILLS: readonly ["HLS"];
349
- readonly HOLLOW: readonly ["HOLW", "HLLW", "HOLLOWS", "HOLWS"];
350
- readonly INLET: readonly ["INLT"];
351
- readonly ISLAND: readonly ["IS", "ISLND"];
352
- readonly ISLANDS: readonly ["ISS", "ISLNDS"];
353
- readonly ISLE: readonly ["ISLE", "ISLES"];
354
- readonly JUNCTION: readonly ["JCT", "JCTION", "JCTN", "JUNCTN", "JUNCTON"];
355
- readonly JUNCTIONS: readonly ["JCTS", "JCTNS"];
356
- readonly KEY: readonly ["KY"];
357
- readonly KEYS: readonly ["KYS"];
358
- readonly KNOLL: readonly ["KNL", "KNOL"];
359
- readonly KNOLLS: readonly ["KNLS"];
360
- readonly LAKE: readonly ["LK"];
361
- readonly LAKES: readonly ["LKS"];
362
- readonly LAND: readonly ["LAND"];
363
- readonly LANDING: readonly ["LNDG", "LNDNG"];
364
- readonly LANE: readonly ["LN"];
365
- readonly LIGHT: readonly ["LGT"];
366
- readonly LIGHTS: readonly ["LGTS"];
367
- readonly LOAF: readonly ["LF"];
368
- readonly LOCK: readonly ["LCK"];
369
- readonly LOCKS: readonly ["LCKS"];
370
- readonly LODGE: readonly ["LDG", "LDGE", "LODG"];
371
- readonly LOOP: readonly ["LOOP", "LOOPS"];
372
- readonly MALL: readonly ["MALL"];
373
- readonly MANOR: readonly ["MNR"];
374
- readonly MANORS: readonly ["MNRS"];
375
- readonly MEADOW: readonly ["MDW"];
376
- readonly MEADOWS: readonly ["MDWS", "MDW", "MEDOWS"];
377
- readonly MEWS: readonly ["MEWS"];
378
- readonly MILL: readonly ["ML"];
379
- readonly MILLS: readonly ["MLS"];
380
- readonly MISSION: readonly ["MSN", "MISSN", "MSSN"];
381
- readonly MOTORWAY: readonly ["MTWY"];
382
- readonly MOUNT: readonly ["MT", "MNT"];
383
- readonly MOUNTAIN: readonly ["MTN", "MNTAIN", "MNTN", "MOUNTIN", "MTIN"];
384
- readonly MOUNTAINS: readonly ["MTNS", "MNTNS"];
385
- readonly NECK: readonly ["NCK"];
386
- readonly ORCHARD: readonly ["ORCH", "ORCHRD"];
387
- readonly OVAL: readonly ["OVAL", "OVL"];
388
- readonly OVERPASS: readonly ["OPAS"];
389
- readonly PARK: readonly ["PARK", "PRK", "PARKS"];
390
- readonly PARKWAY: readonly ["PKWY", "PARKWY", "PKWAY", "PKY"];
391
- readonly PARKWAYS: readonly ["PKWY", "PKWYS"];
392
- readonly PASS: readonly ["PASS"];
393
- readonly PASSAGE: readonly ["PSGE"];
394
- readonly PATH: readonly ["PATH", "PATHS"];
395
- readonly PIKE: readonly ["PIKE", "PIKES"];
396
- readonly PINE: readonly ["PNE"];
397
- readonly PINES: readonly ["PNES"];
398
- readonly PLACE: readonly ["PL"];
399
- readonly PLAIN: readonly ["PLN"];
400
- readonly PLAINS: readonly ["PLNS"];
401
- readonly PLAZA: readonly ["PLZ", "PLZA"];
402
- readonly POINT: readonly ["PT"];
403
- readonly POINTS: readonly ["PTS"];
404
- readonly PORT: readonly ["PRT"];
405
- readonly PORTS: readonly ["PRTS"];
406
- readonly PRAIRIE: readonly ["PR", "PRR"];
407
- readonly RADIAL: readonly ["RADL", "RAD", "RADIEL"];
408
- readonly RAMP: readonly ["RAMP"];
409
- readonly RANCH: readonly ["RNCH", "RANCHES", "RNCHS"];
410
- readonly RAPID: readonly ["RPD"];
411
- readonly RAPIDS: readonly ["RPDS"];
412
- readonly REST: readonly ["RST"];
413
- readonly RIDGE: readonly ["RDG", "RDGE"];
414
- readonly RIDGES: readonly ["RDGS"];
415
- readonly RIVER: readonly ["RIV", "RVR", "RIVR"];
416
- readonly ROAD: readonly ["RD"];
417
- readonly ROADS: readonly ["RDS"];
418
- readonly ROUTE: readonly ["RTE"];
419
- readonly ROW: readonly ["ROW"];
420
- readonly RUE: readonly ["RUE"];
421
- readonly RUN: readonly ["RUN"];
422
- readonly SHOAL: readonly ["SHL"];
423
- readonly SHOALS: readonly ["SHLS"];
424
- readonly SHORE: readonly ["SHR", "SHOAR"];
425
- readonly SHORES: readonly ["SHRS", "SHOARS"];
426
- readonly SKYWAY: readonly ["SKWY"];
427
- readonly SPRING: readonly ["SPG", "SPNG", "SPRNG"];
428
- readonly SPRINGS: readonly ["SPGS", "SPNGS", "SPRNGS"];
429
- readonly SPUR: readonly ["SPUR"];
430
- readonly SPURS: readonly ["SPUR"];
431
- readonly SQUARE: readonly ["SQ", "SQR", "SQRE", "SQU"];
432
- readonly SQUARES: readonly ["SQS", "SQRS"];
433
- readonly STATION: readonly ["STA", "STATN", "STN"];
434
- readonly STRAVENUE: readonly ["STRA", "STRAV", "STRAVEN", "STRAVN", "STRVN", "STRVNUE"];
435
- readonly STREAM: readonly ["STRM", "STREME"];
436
- readonly STREET: readonly ["ST", "STRT", "STR"];
437
- readonly STREETS: readonly ["STS"];
438
- readonly SUMMIT: readonly ["SMT", "SUMIT", "SUMITT"];
439
- readonly TERRACE: readonly ["TER", "TERR"];
440
- readonly THROUGHWAY: readonly ["TRWY"];
441
- readonly TRACE: readonly ["TRCE", "TRACES"];
442
- readonly TRACK: readonly ["TRAK", "TRACKS", "TRK", "TRKS"];
443
- readonly TRAFFICWAY: readonly ["TRFY"];
444
- readonly TRAIL: readonly ["TRL", "TRAILS", "TRLS"];
445
- readonly TRAILER: readonly ["TRLR", "TRLRS"];
446
- readonly TUNNEL: readonly ["TUNL", "TUNEL", "TUNLS", "TUNNELS", "TUNNL"];
447
- readonly TURNPIKE: readonly ["TPKE", "TRNPK", "TURNPK"];
448
- readonly UNDERPASS: readonly ["UPAS"];
449
- readonly UNION: readonly ["UN"];
450
- readonly UNIONS: readonly ["UNS"];
451
- readonly VALLEY: readonly ["VLY", "VALLY", "VLLY"];
452
- readonly VALLEYS: readonly ["VLYS"];
453
- readonly VIADUCT: readonly ["VIA", "VDCT", "VIADCT"];
454
- readonly VIEW: readonly ["VW"];
455
- readonly VIEWS: readonly ["VWS"];
456
- readonly VILLAGE: readonly ["VLG", "VILL", "VILLAG", "VILLG", "VILLIAGE"];
457
- readonly VILLAGES: readonly ["VLGS"];
458
- readonly VILLE: readonly ["VL"];
459
- readonly VISTA: readonly ["VIS", "VIST", "VST", "VSTA"];
460
- readonly WALK: readonly ["WALK"];
461
- readonly WALKS: readonly ["WALK"];
462
- readonly WALL: readonly ["WALL"];
463
- readonly WAY: readonly ["WAY", "WY"];
464
- readonly WAYS: readonly ["WAYS"];
465
- readonly WELL: readonly ["WL"];
466
- readonly WELLS: readonly ["WLS"];
276
+ ALLEY: string[];
277
+ ANEX: string[];
278
+ ARCADE: string[];
279
+ AVENUE: string[];
280
+ BAYOU: string[];
281
+ BEACH: string[];
282
+ BEND: string[];
283
+ BLUFF: string[];
284
+ BLUFFS: string[];
285
+ BOTTOM: string[];
286
+ BOULEVARD: string[];
287
+ BRANCH: string[];
288
+ BRIDGE: string[];
289
+ BROOK: string[];
290
+ BROOKS: string[];
291
+ BURG: string[];
292
+ BURGS: string[];
293
+ BYPASS: string[];
294
+ CAMP: string[];
295
+ CANYON: string[];
296
+ CAPE: string[];
297
+ CAUSEWAY: string[];
298
+ CENTER: string[];
299
+ CENTERS: string[];
300
+ CIRCLE: string[];
301
+ CIRCLES: string[];
302
+ CLIFF: string[];
303
+ CLIFFS: string[];
304
+ CLUB: string[];
305
+ COMMON: string[];
306
+ COMMONS: string[];
307
+ CORNER: string[];
308
+ CORNERS: string[];
309
+ COURSE: string[];
310
+ COURT: string[];
311
+ COURTS: string[];
312
+ COVE: string[];
313
+ COVES: string[];
314
+ CREEK: string[];
315
+ CRESCENT: string[];
316
+ CREST: string[];
317
+ CROSSING: string[];
318
+ CROSSROAD: string[];
319
+ CROSSROADS: string[];
320
+ CURVE: string[];
321
+ DALE: string[];
322
+ DAM: string[];
323
+ DIVIDE: string[];
324
+ DRIVE: string[];
325
+ DRIVES: string[];
326
+ ESTATE: string[];
327
+ ESTATES: string[];
328
+ EXPRESSWAY: string[];
329
+ EXTENSION: string[];
330
+ EXTENSIONS: string[];
331
+ FALL: string[];
332
+ FALLS: string[];
333
+ FERRY: string[];
334
+ FIELD: string[];
335
+ FIELDS: string[];
336
+ FLAT: string[];
337
+ FLATS: string[];
338
+ FORD: string[];
339
+ FORDS: string[];
340
+ FOREST: string[];
341
+ FORGE: string[];
342
+ FORGES: string[];
343
+ FORK: string[];
344
+ FORKS: string[];
345
+ FORT: string[];
346
+ FREEWAY: string[];
347
+ GARDEN: string[];
348
+ GARDENS: string[];
349
+ GATEWAY: string[];
350
+ GLEN: string[];
351
+ GLENS: string[];
352
+ GREEN: string[];
353
+ GREENS: string[];
354
+ GROVE: string[];
355
+ GROVES: string[];
356
+ HARBOR: string[];
357
+ HARBORS: string[];
358
+ HAVEN: string[];
359
+ HEIGHTS: string[];
360
+ HIGHWAY: string[];
361
+ HILL: string[];
362
+ HILLS: string[];
363
+ HOLLOW: string[];
364
+ INLET: string[];
365
+ ISLAND: string[];
366
+ ISLANDS: string[];
367
+ ISLE: string[];
368
+ JUNCTION: string[];
369
+ JUNCTIONS: string[];
370
+ KEY: string[];
371
+ KEYS: string[];
372
+ KNOLL: string[];
373
+ KNOLLS: string[];
374
+ LAKE: string[];
375
+ LAKES: string[];
376
+ LAND: string[];
377
+ LANDING: string[];
378
+ LANE: string[];
379
+ LIGHT: string[];
380
+ LIGHTS: string[];
381
+ LOAF: string[];
382
+ LOCK: string[];
383
+ LOCKS: string[];
384
+ LODGE: string[];
385
+ LOOP: string[];
386
+ MALL: string[];
387
+ MANOR: string[];
388
+ MANORS: string[];
389
+ MEADOW: string[];
390
+ MEADOWS: string[];
391
+ MEWS: string[];
392
+ MILL: string[];
393
+ MILLS: string[];
394
+ MISSION: string[];
395
+ MOTORWAY: string[];
396
+ MOUNT: string[];
397
+ MOUNTAIN: string[];
398
+ MOUNTAINS: string[];
399
+ NECK: string[];
400
+ ORCHARD: string[];
401
+ OVAL: string[];
402
+ OVERPASS: string[];
403
+ PARK: string[];
404
+ PARKWAY: string[];
405
+ PARKWAYS: string[];
406
+ PASS: string[];
407
+ PASSAGE: string[];
408
+ PATH: string[];
409
+ PIKE: string[];
410
+ PINE: string[];
411
+ PINES: string[];
412
+ PLACE: string[];
413
+ PLAIN: string[];
414
+ PLAINS: string[];
415
+ PLAZA: string[];
416
+ POINT: string[];
417
+ POINTS: string[];
418
+ PORT: string[];
419
+ PORTS: string[];
420
+ PRAIRIE: string[];
421
+ RADIAL: string[];
422
+ RAMP: string[];
423
+ RANCH: string[];
424
+ RAPID: string[];
425
+ RAPIDS: string[];
426
+ REST: string[];
427
+ RIDGE: string[];
428
+ RIDGES: string[];
429
+ RIVER: string[];
430
+ ROAD: string[];
431
+ ROADS: string[];
432
+ ROUTE: string[];
433
+ ROW: string[];
434
+ RUE: string[];
435
+ RUN: string[];
436
+ SHOAL: string[];
437
+ SHOALS: string[];
438
+ SHORE: string[];
439
+ SHORES: string[];
440
+ SKYWAY: string[];
441
+ SPRING: string[];
442
+ SPRINGS: string[];
443
+ SPUR: string[];
444
+ SPURS: string[];
445
+ SQUARE: string[];
446
+ SQUARES: string[];
447
+ STATION: string[];
448
+ STRAVENUE: string[];
449
+ STREAM: string[];
450
+ STREET: string[];
451
+ STREETS: string[];
452
+ SUMMIT: string[];
453
+ TERRACE: string[];
454
+ THROUGHWAY: string[];
455
+ TRACE: string[];
456
+ TRACK: string[];
457
+ TRAFFICWAY: string[];
458
+ TRAIL: string[];
459
+ TRAILER: string[];
460
+ TUNNEL: string[];
461
+ TURNPIKE: string[];
462
+ UNDERPASS: string[];
463
+ UNION: string[];
464
+ UNIONS: string[];
465
+ VALLEY: string[];
466
+ VALLEYS: string[];
467
+ VIADUCT: string[];
468
+ VIEW: string[];
469
+ VIEWS: string[];
470
+ VILLAGE: string[];
471
+ VILLAGES: string[];
472
+ VILLE: string[];
473
+ VISTA: string[];
474
+ WALK: string[];
475
+ WALKS: string[];
476
+ WALL: string[];
477
+ WAY: string[];
478
+ WAYS: string[];
479
+ WELL: string[];
480
+ WELLS: string[];
467
481
  };
468
482
  export type StreetSuffixAbbreviationRecord = typeof US_STREET_SUFFIX_VARIANTS;
469
483
  /**