@dra2020/dra-types 1.8.12 → 1.8.13
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/dist/dra-types.d.ts +1 -1
- package/lib/dra-types.ts +1 -1
- package/package.json +1 -1
package/dist/dra-types.d.ts
CHANGED
|
@@ -21,4 +21,4 @@ export interface UserLikes {
|
|
|
21
21
|
id?: string;
|
|
22
22
|
[aid: string]: Like | string;
|
|
23
23
|
}
|
|
24
|
-
export declare type PlanType = 'congress' | 'upper' | 'lower' | 'county' | 'city' | 'other';
|
|
24
|
+
export declare type PlanType = 'congress' | 'upper' | 'lower' | 'county' | 'city' | 'coi' | 'other';
|
package/lib/dra-types.ts
CHANGED
|
@@ -41,4 +41,4 @@ export interface UserLikes
|
|
|
41
41
|
// Type of redistricting plan (Note: 'upper' is used when there is only 1 legislative map or body)
|
|
42
42
|
// congress, upper, lower and other => the plan is for entire state
|
|
43
43
|
// county and city => plan is for a single county or city within a state
|
|
44
|
-
export type PlanType = 'congress' | 'upper' | 'lower' | 'county' | 'city' | 'other';
|
|
44
|
+
export type PlanType = 'congress' | 'upper' | 'lower' | 'county' | 'city' | 'coi' | 'other';
|