@mailwoman/tiger 4.16.1 → 5.0.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.
- package/block-group.ts +2 -3
- package/class-code.ts +268 -318
- package/constants.ts +2 -4
- package/county-subdivision.ts +3 -4
- package/county.ts +2 -3
- package/files.ts +1 -0
- package/functional-status.ts +4 -6
- package/geoid.ts +20 -18
- package/legal-statistical-area.ts +4 -6
- package/out/block-group.d.ts +2 -3
- package/out/block-group.d.ts.map +1 -1
- package/out/class-code.d.ts +268 -318
- package/out/class-code.d.ts.map +1 -1
- package/out/class-code.js +268 -318
- package/out/class-code.js.map +1 -1
- package/out/constants.d.ts +2 -4
- package/out/constants.d.ts.map +1 -1
- package/out/county-subdivision.d.ts +3 -4
- package/out/county-subdivision.d.ts.map +1 -1
- package/out/county.d.ts +2 -3
- package/out/county.d.ts.map +1 -1
- package/out/county.js.map +1 -1
- package/out/files.d.ts.map +1 -1
- package/out/files.js.map +1 -1
- package/out/functional-status.d.ts +4 -6
- package/out/functional-status.d.ts.map +1 -1
- package/out/functional-status.js +4 -6
- package/out/functional-status.js.map +1 -1
- package/out/geoid.d.ts +15 -15
- package/out/geoid.d.ts.map +1 -1
- package/out/geoid.js +3 -4
- package/out/geoid.js.map +1 -1
- package/out/legal-statistical-area.d.ts +4 -6
- package/out/legal-statistical-area.d.ts.map +1 -1
- package/out/legal-statistical-area.js +4 -6
- package/out/legal-statistical-area.js.map +1 -1
- package/out/sdk/fetch.d.ts +3 -6
- package/out/sdk/fetch.d.ts.map +1 -1
- package/out/sdk/fetch.js +3 -4
- package/out/sdk/fetch.js.map +1 -1
- package/out/sdk/redistricting.d.ts +1 -2
- package/out/sdk/redistricting.d.ts.map +1 -1
- package/out/sdk/redistricting.js +3 -4
- package/out/sdk/redistricting.js.map +1 -1
- package/out/sdk/schema.d.ts +12 -12
- package/out/sdk/schema.js +9 -9
- package/out/sdk/state/block-operations.d.ts +1 -2
- package/out/sdk/state/block-operations.d.ts.map +1 -1
- package/out/sdk/state/block-operations.js +1 -2
- package/out/sdk/state/block-operations.js.map +1 -1
- package/out/state.d.ts +10 -12
- package/out/state.d.ts.map +1 -1
- package/out/state.js +8 -10
- package/out/state.js.map +1 -1
- package/out/tabulation-block.d.ts +2 -2
- package/out/tabulation-block.d.ts.map +1 -1
- package/out/tabulation-block.js.map +1 -1
- package/out/tract.d.ts +2 -2
- package/out/tract.d.ts.map +1 -1
- package/out/tract.js.map +1 -1
- package/out/tsconfig.tsbuildinfo +1 -1
- package/package.json +18 -18
- package/sdk/fetch.ts +21 -8
- package/sdk/redistricting.ts +14 -4
- package/sdk/schema.ts +12 -12
- package/sdk/state/block-operations.ts +1 -2
- package/state.ts +11 -12
- package/tabulation-block.ts +3 -2
- package/tract.ts +3 -2
package/block-group.ts
CHANGED
|
@@ -37,12 +37,12 @@ export interface TIGERBlockGroup {
|
|
|
37
37
|
COUSUBFP: string
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
|
-
* @see {@link https://www.usgs.gov/us-board-on-geographic-names/domestic-names | USGS: Domestic Names}
|
|
41
40
|
* @title County Subdivision GNIS Code
|
|
42
41
|
*
|
|
43
42
|
* @minLength 8
|
|
44
43
|
* @maxLength 8
|
|
45
44
|
* @pattern ^\d{8}$
|
|
45
|
+
* @see {@link https://www.usgs.gov/us-board-on-geographic-names/domestic-names | USGS: Domestic Names}
|
|
46
46
|
*/
|
|
47
47
|
COUSUBNS: string
|
|
48
48
|
|
|
@@ -66,8 +66,7 @@ export interface TIGERBlockGroup {
|
|
|
66
66
|
GEOIDFQ: string
|
|
67
67
|
|
|
68
68
|
/**
|
|
69
|
-
* Current name and the translated legal/statistical area description code for county
|
|
70
|
-
* sub-division.
|
|
69
|
+
* Current name and the translated legal/statistical area description code for county sub-division.
|
|
71
70
|
*
|
|
72
71
|
* @title Name/Legal Statistical Area Description
|
|
73
72
|
* @minLength 1
|