triangle-types 1.0.171 → 1.0.173

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.
@@ -53,6 +53,7 @@ export * from "./types/federal_rules/FederalRuleSection.js";
53
53
  export * from "./types/fragments/Fragment.js";
54
54
  export * from "./types/fragments/FragmentVector.js";
55
55
  export * from "./types/lal/LALFile.js";
56
+ export * from "./types/lal/LALFileVoter.js";
56
57
  export * from "./types/legistar/LegistarAgency.js";
57
58
  export * from "./types/legistar/LegistarDocument.js";
58
59
  export * from "./types/prism/Prism.js";
package/dist/src/index.js CHANGED
@@ -53,6 +53,7 @@ export * from "./types/federal_rules/FederalRuleSection.js";
53
53
  export * from "./types/fragments/Fragment.js";
54
54
  export * from "./types/fragments/FragmentVector.js";
55
55
  export * from "./types/lal/LALFile.js";
56
+ export * from "./types/lal/LALFileVoter.js";
56
57
  export * from "./types/legistar/LegistarAgency.js";
57
58
  export * from "./types/legistar/LegistarDocument.js";
58
59
  export * from "./types/prism/Prism.js";
@@ -3,4 +3,5 @@ export declare class FederalCensus {
3
3
  readonly is_decennial: boolean;
4
4
  constructor(federal_census: any);
5
5
  static is(federal_census: any): federal_census is FederalCensus;
6
+ static keys(): string[];
6
7
  }
@@ -13,4 +13,10 @@ export class FederalCensus {
13
13
  typeof federal_census.federal_census_id === "number" &&
14
14
  typeof federal_census.is_decennial === "boolean");
15
15
  }
16
+ static keys() {
17
+ return [
18
+ "federal_census_id",
19
+ "is_decennial"
20
+ ];
21
+ }
16
22
  }
@@ -0,0 +1,48 @@
1
+ import { VoterPartyTypeID } from "../prism/Voter.js";
2
+ import { StateID } from "../regions/State.js";
3
+ export declare class LALFileVoter {
4
+ readonly lal_file_voter_id: string;
5
+ readonly lal_file_id: string;
6
+ readonly lal_voter_id: string;
7
+ readonly state_id: StateID;
8
+ readonly voter_id: string;
9
+ readonly name_first: string;
10
+ readonly name_middle?: string;
11
+ readonly name_last: string;
12
+ readonly name_suffix?: string;
13
+ readonly name_last_first_middle_suffix: string;
14
+ readonly gender_id?: string;
15
+ readonly birth_date?: string;
16
+ readonly address_residence_1: string;
17
+ readonly address_residence_2?: string;
18
+ readonly address_residence_city?: string;
19
+ readonly address_residence_state_id: StateID;
20
+ readonly address_residence_zip?: string;
21
+ readonly address_residence_latitude: number;
22
+ readonly address_residence_longitude: number;
23
+ readonly address_residence_coordinates_type_id: string;
24
+ readonly address_residence_property_sqft?: number;
25
+ readonly address_residence_property_type_id: string;
26
+ readonly address_mail_1: string;
27
+ readonly address_mail_2?: string;
28
+ readonly address_mail_city?: string;
29
+ readonly address_mail_state_id: StateID;
30
+ readonly address_mail_zip?: string;
31
+ readonly party_type_id: VoterPartyTypeID;
32
+ readonly lal_occupation_group_id?: string;
33
+ readonly lal_occupation_id?: string;
34
+ readonly lal_ethnicity_group_id?: string;
35
+ readonly lal_ethnicity_id?: string;
36
+ readonly lal_religion_id?: string;
37
+ readonly lal_language_id?: string;
38
+ readonly lal_maritality_id?: string;
39
+ readonly lal_education_id?: string;
40
+ readonly lal_income?: string;
41
+ readonly lal_credit_range_id?: string;
42
+ readonly phone_home?: string;
43
+ readonly phone_mobile?: string;
44
+ readonly [x: string]: any;
45
+ constructor(lal_file_voter: any);
46
+ static is(lal_file_voter: any): lal_file_voter is LALFileVoter;
47
+ static keys(): string[];
48
+ }
@@ -0,0 +1,176 @@
1
+ import { is_voter_party_type_id } from "../prism/Voter.js";
2
+ import { is_state_id } from "../regions/State.js";
3
+ export class LALFileVoter {
4
+ lal_file_voter_id;
5
+ lal_file_id;
6
+ lal_voter_id;
7
+ state_id;
8
+ voter_id;
9
+ name_first;
10
+ name_middle;
11
+ name_last;
12
+ name_suffix;
13
+ name_last_first_middle_suffix;
14
+ gender_id;
15
+ birth_date;
16
+ address_residence_1;
17
+ address_residence_2;
18
+ address_residence_city;
19
+ address_residence_state_id;
20
+ address_residence_zip;
21
+ address_residence_latitude;
22
+ address_residence_longitude;
23
+ address_residence_coordinates_type_id;
24
+ address_residence_property_sqft;
25
+ address_residence_property_type_id;
26
+ address_mail_1;
27
+ address_mail_2;
28
+ address_mail_city;
29
+ address_mail_state_id;
30
+ address_mail_zip;
31
+ party_type_id;
32
+ lal_occupation_group_id;
33
+ lal_occupation_id;
34
+ lal_ethnicity_group_id;
35
+ lal_ethnicity_id;
36
+ lal_religion_id;
37
+ lal_language_id;
38
+ lal_maritality_id;
39
+ lal_education_id;
40
+ lal_income;
41
+ lal_credit_range_id;
42
+ phone_home;
43
+ phone_mobile;
44
+ constructor(lal_file_voter) {
45
+ if (!LALFileVoter.is(lal_file_voter)) {
46
+ throw Error("Invalid input.");
47
+ }
48
+ this.lal_file_voter_id = lal_file_voter.lal_file_voter_id;
49
+ this.lal_file_id = lal_file_voter.lal_file_id;
50
+ this.lal_voter_id = lal_file_voter.lal_voter_id;
51
+ this.state_id = lal_file_voter.state_id;
52
+ this.voter_id = lal_file_voter.voter_id;
53
+ this.name_first = lal_file_voter.name_first;
54
+ this.name_middle = lal_file_voter.name_middle;
55
+ this.name_last = lal_file_voter.name_last;
56
+ this.name_suffix = lal_file_voter.name_suffix;
57
+ this.name_last_first_middle_suffix = lal_file_voter.name_last_first_middle_suffix;
58
+ this.gender_id = lal_file_voter.gender_id;
59
+ this.birth_date = lal_file_voter.birth_date;
60
+ this.address_residence_1 = lal_file_voter.address_residence_1;
61
+ this.address_residence_2 = lal_file_voter.address_residence_2;
62
+ this.address_residence_city = lal_file_voter.address_residence_city;
63
+ this.address_residence_state_id = lal_file_voter.address_residence_state_id;
64
+ this.address_residence_zip = lal_file_voter.address_residence_zip;
65
+ this.address_residence_latitude = lal_file_voter.address_residence_latitude;
66
+ this.address_residence_longitude = lal_file_voter.address_residence_longitude;
67
+ this.address_residence_coordinates_type_id = lal_file_voter.address_residence_coordinates_type_id;
68
+ this.address_residence_property_sqft = lal_file_voter.address_residence_property_sqft;
69
+ this.address_residence_property_type_id = lal_file_voter.address_residence_property_type_id;
70
+ this.address_mail_1 = lal_file_voter.address_mail_1;
71
+ this.address_mail_2 = lal_file_voter.address_mail_2;
72
+ this.address_mail_city = lal_file_voter.address_mail_city;
73
+ this.address_mail_state_id = lal_file_voter.address_mail_state_id;
74
+ this.address_mail_zip = lal_file_voter.address_mail_zip;
75
+ this.party_type_id = lal_file_voter.party_type_id;
76
+ this.lal_occupation_group_id = lal_file_voter.lal_occupation_group_id;
77
+ this.lal_occupation_id = lal_file_voter.lal_occupation_id;
78
+ this.lal_ethnicity_group_id = lal_file_voter.lal_ethnicity_group_id;
79
+ this.lal_ethnicity_id = lal_file_voter.lal_ethnicity_id;
80
+ this.lal_religion_id = lal_file_voter.lal_religion_id;
81
+ this.lal_language_id = lal_file_voter.lal_language_id;
82
+ this.lal_maritality_id = lal_file_voter.lal_maritality_id;
83
+ this.lal_education_id = lal_file_voter.lal_education_id;
84
+ this.lal_income = lal_file_voter.lal_income;
85
+ this.lal_credit_range_id = lal_file_voter.lal_credit_range_id;
86
+ this.phone_home = lal_file_voter.phone_home;
87
+ this.phone_mobile = lal_file_voter.phone_mobile;
88
+ }
89
+ static is(lal_file_voter) {
90
+ return (lal_file_voter !== undefined &&
91
+ typeof lal_file_voter.lal_file_voter_id === "string" &&
92
+ typeof lal_file_voter.lal_file_id === "string" &&
93
+ typeof lal_file_voter.lal_voter_id === "string" &&
94
+ is_state_id(lal_file_voter.state_id) &&
95
+ typeof lal_file_voter.voter_id === "string" &&
96
+ typeof lal_file_voter.name_first === "string" &&
97
+ (lal_file_voter.name_middle === undefined || typeof lal_file_voter.name_middle === "string") &&
98
+ typeof lal_file_voter.name_last === "string" &&
99
+ (lal_file_voter.name_suffix === undefined || typeof lal_file_voter.name_suffix === "string") &&
100
+ typeof lal_file_voter.name_last_first_middle_suffix === "string" &&
101
+ (lal_file_voter.gender_id === undefined || typeof lal_file_voter.gender_id === "string") &&
102
+ (lal_file_voter.birth_date === undefined || typeof lal_file_voter.birth_date === "string") &&
103
+ typeof lal_file_voter.address_residence_1 === "string" &&
104
+ (lal_file_voter.address_residence_2 === undefined || typeof lal_file_voter.address_residence_2 === "string") &&
105
+ (lal_file_voter.address_residence_city === undefined || typeof lal_file_voter.address_residence_city === "string") &&
106
+ is_state_id(lal_file_voter.address_residence_state_id) &&
107
+ (lal_file_voter.address_residence_zip_id === undefined || typeof lal_file_voter.address_residence_zip_id === "string") &&
108
+ typeof lal_file_voter.address_residence_latitude === "number" &&
109
+ typeof lal_file_voter.address_residence_longitude === "number" &&
110
+ typeof lal_file_voter.address_residence_coordinates_type_id === "string" &&
111
+ (lal_file_voter.address_residence_property_sqft === undefined || typeof lal_file_voter.address_residence_property_sqft === "number") &&
112
+ (lal_file_voter.address_residence_property_type_id === undefined || typeof lal_file_voter.address_residence_property_type_id === "string") &&
113
+ typeof lal_file_voter.address_mail_1 === "string" &&
114
+ (lal_file_voter.address_mail_2 === undefined || typeof lal_file_voter.address_mail_2 === "string") &&
115
+ (lal_file_voter.address_mail_city === undefined || typeof lal_file_voter.address_mail_city === "string") &&
116
+ is_state_id(lal_file_voter.address_mail_state_id) &&
117
+ (lal_file_voter.address_mail_zip_id === undefined || typeof lal_file_voter.address_mail_zip_id === "string") &&
118
+ is_voter_party_type_id(lal_file_voter.party_type_id) &&
119
+ (lal_file_voter.lal_occupation_group_id === undefined || typeof lal_file_voter.lal_occupation_group_id === "string") &&
120
+ (lal_file_voter.lal_occupation_id === undefined || typeof lal_file_voter.lal_occupation_id === "string") &&
121
+ (lal_file_voter.lal_ethnicity_group_id === undefined || typeof lal_file_voter.lal_ethnicity_group_id === "string") &&
122
+ (lal_file_voter.lal_ethnicity_id === undefined || typeof lal_file_voter.lal_ethnicity_id === "string") &&
123
+ (lal_file_voter.lal_religion_id === undefined || typeof lal_file_voter.lal_religion_id === "string") &&
124
+ (lal_file_voter.lal_language_id === undefined || typeof lal_file_voter.lal_language_id === "string") &&
125
+ (lal_file_voter.lal_maritality_id === undefined || typeof lal_file_voter.lal_maritality_id === "string") &&
126
+ (lal_file_voter.lal_education_id === undefined || typeof lal_file_voter.lal_education_id === "string") &&
127
+ (lal_file_voter.lal_income === undefined || typeof lal_file_voter.lal_income === "string") &&
128
+ (lal_file_voter.lal_credit_range_id === undefined || typeof lal_file_voter.lal_credit_range_id === "string") &&
129
+ (lal_file_voter.phone_home === undefined || typeof lal_file_voter.phone_home === "string") &&
130
+ (lal_file_voter.phone_mobile === undefined || typeof lal_file_voter.phone_mobile === "string"));
131
+ }
132
+ static keys() {
133
+ return [
134
+ "lal_file_voter_id",
135
+ "lal_file_id",
136
+ "lal_voter_id",
137
+ "state_id",
138
+ "voter_id",
139
+ "name_first",
140
+ "name_middle",
141
+ "name_last",
142
+ "name_suffix",
143
+ "name_last_first_middle_suffix",
144
+ "gender_id",
145
+ "birth_date",
146
+ "address_residence_1",
147
+ "address_residence_2",
148
+ "address_residence_city",
149
+ "address_residence_state_id",
150
+ "address_residence_zip",
151
+ "address_residence_latitude",
152
+ "address_residence_longitude",
153
+ "address_residence_coordinates_type_id",
154
+ "address_residence_property_sqft",
155
+ "address_residence_property_type_id",
156
+ "address_mail_1",
157
+ "address_mail_2",
158
+ "address_mail_city",
159
+ "address_mail_state_id",
160
+ "address_mail_zip",
161
+ "party_type_id",
162
+ "lal_occupation_group_id",
163
+ "lal_occupation_id",
164
+ "lal_ethnicity_group_id",
165
+ "lal_ethnicity_id",
166
+ "lal_religion_id",
167
+ "lal_language_id",
168
+ "lal_maritality_id",
169
+ "lal_education_id",
170
+ "lal_income",
171
+ "lal_credit_range_id",
172
+ "phone_home",
173
+ "phone_mobile"
174
+ ];
175
+ }
176
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triangle-types",
3
- "version": "1.0.171",
3
+ "version": "1.0.173",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -64,6 +64,7 @@ export * from "./types/fragments/Fragment"
64
64
  export * from "./types/fragments/FragmentVector"
65
65
 
66
66
  export * from "./types/lal/LALFile"
67
+ export * from "./types/lal/LALFileVoter"
67
68
 
68
69
  export * from "./types/legistar/LegistarAgency"
69
70
  export * from "./types/legistar/LegistarDocument"
@@ -20,4 +20,11 @@ export class FederalCensus {
20
20
  )
21
21
  }
22
22
 
23
+ static keys() : string[] {
24
+ return [
25
+ "federal_census_id",
26
+ "is_decennial"
27
+ ]
28
+ }
29
+
23
30
  }
@@ -0,0 +1,183 @@
1
+ import { is_voter_party_type_id, VoterPartyTypeID } from "../prism/Voter"
2
+ import { is_state_id, StateID } from "../regions/State"
3
+
4
+ export class LALFileVoter {
5
+ readonly lal_file_voter_id : string
6
+ readonly lal_file_id : string
7
+ readonly lal_voter_id : string
8
+ readonly state_id : StateID
9
+ readonly voter_id : string
10
+ readonly name_first : string
11
+ readonly name_middle? : string
12
+ readonly name_last : string
13
+ readonly name_suffix? : string
14
+ readonly name_last_first_middle_suffix : string
15
+ readonly gender_id? : string
16
+ readonly birth_date? : string
17
+ readonly address_residence_1 : string
18
+ readonly address_residence_2? : string
19
+ readonly address_residence_city? : string
20
+ readonly address_residence_state_id : StateID
21
+ readonly address_residence_zip? : string
22
+ readonly address_residence_latitude : number
23
+ readonly address_residence_longitude : number
24
+ readonly address_residence_coordinates_type_id : string
25
+ readonly address_residence_property_sqft? : number
26
+ readonly address_residence_property_type_id : string
27
+ readonly address_mail_1 : string
28
+ readonly address_mail_2? : string
29
+ readonly address_mail_city? : string
30
+ readonly address_mail_state_id : StateID
31
+ readonly address_mail_zip? : string
32
+ readonly party_type_id : VoterPartyTypeID
33
+ readonly lal_occupation_group_id? : string
34
+ readonly lal_occupation_id? : string
35
+ readonly lal_ethnicity_group_id? : string
36
+ readonly lal_ethnicity_id? : string
37
+ readonly lal_religion_id? : string
38
+ readonly lal_language_id? : string
39
+ readonly lal_maritality_id? : string
40
+ readonly lal_education_id? : string
41
+ readonly lal_income? : string
42
+ readonly lal_credit_range_id? : string
43
+ readonly phone_home? : string
44
+ readonly phone_mobile? : string
45
+ readonly [x : string] : any
46
+
47
+ constructor(lal_file_voter : any) {
48
+ if (!LALFileVoter.is(lal_file_voter)) {
49
+ throw Error("Invalid input.")
50
+ }
51
+ this.lal_file_voter_id = lal_file_voter.lal_file_voter_id
52
+ this.lal_file_id = lal_file_voter.lal_file_id
53
+ this.lal_voter_id = lal_file_voter.lal_voter_id
54
+ this.state_id = lal_file_voter.state_id
55
+ this.voter_id = lal_file_voter.voter_id
56
+ this.name_first = lal_file_voter.name_first
57
+ this.name_middle = lal_file_voter.name_middle
58
+ this.name_last = lal_file_voter.name_last
59
+ this.name_suffix = lal_file_voter.name_suffix
60
+ this.name_last_first_middle_suffix = lal_file_voter.name_last_first_middle_suffix
61
+ this.gender_id = lal_file_voter.gender_id
62
+ this.birth_date = lal_file_voter.birth_date
63
+ this.address_residence_1 = lal_file_voter.address_residence_1
64
+ this.address_residence_2 = lal_file_voter.address_residence_2
65
+ this.address_residence_city = lal_file_voter.address_residence_city
66
+ this.address_residence_state_id = lal_file_voter.address_residence_state_id
67
+ this.address_residence_zip = lal_file_voter.address_residence_zip
68
+ this.address_residence_latitude = lal_file_voter.address_residence_latitude
69
+ this.address_residence_longitude = lal_file_voter.address_residence_longitude
70
+ this.address_residence_coordinates_type_id = lal_file_voter.address_residence_coordinates_type_id
71
+ this.address_residence_property_sqft = lal_file_voter.address_residence_property_sqft
72
+ this.address_residence_property_type_id = lal_file_voter.address_residence_property_type_id
73
+ this.address_mail_1 = lal_file_voter.address_mail_1
74
+ this.address_mail_2 = lal_file_voter.address_mail_2
75
+ this.address_mail_city = lal_file_voter.address_mail_city
76
+ this.address_mail_state_id = lal_file_voter.address_mail_state_id
77
+ this.address_mail_zip = lal_file_voter.address_mail_zip
78
+ this.party_type_id = lal_file_voter.party_type_id
79
+ this.lal_occupation_group_id = lal_file_voter.lal_occupation_group_id
80
+ this.lal_occupation_id = lal_file_voter.lal_occupation_id
81
+ this.lal_ethnicity_group_id = lal_file_voter.lal_ethnicity_group_id
82
+ this.lal_ethnicity_id = lal_file_voter.lal_ethnicity_id
83
+ this.lal_religion_id = lal_file_voter.lal_religion_id
84
+ this.lal_language_id = lal_file_voter.lal_language_id
85
+ this.lal_maritality_id = lal_file_voter.lal_maritality_id
86
+ this.lal_education_id = lal_file_voter.lal_education_id
87
+ this.lal_income = lal_file_voter.lal_income
88
+ this.lal_credit_range_id = lal_file_voter.lal_credit_range_id
89
+ this.phone_home = lal_file_voter.phone_home
90
+ this.phone_mobile = lal_file_voter.phone_mobile
91
+ }
92
+
93
+ static is(lal_file_voter : any) : lal_file_voter is LALFileVoter {
94
+ return (
95
+ lal_file_voter !== undefined &&
96
+ typeof lal_file_voter.lal_file_voter_id === "string" &&
97
+ typeof lal_file_voter.lal_file_id === "string" &&
98
+ typeof lal_file_voter.lal_voter_id === "string" &&
99
+ is_state_id(lal_file_voter.state_id) &&
100
+ typeof lal_file_voter.voter_id === "string" &&
101
+ typeof lal_file_voter.name_first === "string" &&
102
+ (lal_file_voter.name_middle === undefined || typeof lal_file_voter.name_middle === "string") &&
103
+ typeof lal_file_voter.name_last === "string" &&
104
+ (lal_file_voter.name_suffix === undefined || typeof lal_file_voter.name_suffix === "string") &&
105
+ typeof lal_file_voter.name_last_first_middle_suffix === "string" &&
106
+ (lal_file_voter.gender_id === undefined || typeof lal_file_voter.gender_id === "string") &&
107
+ (lal_file_voter.birth_date === undefined || typeof lal_file_voter.birth_date === "string") &&
108
+ typeof lal_file_voter.address_residence_1 === "string" &&
109
+ (lal_file_voter.address_residence_2 === undefined || typeof lal_file_voter.address_residence_2 === "string") &&
110
+ (lal_file_voter.address_residence_city === undefined || typeof lal_file_voter.address_residence_city === "string") &&
111
+ is_state_id(lal_file_voter.address_residence_state_id) &&
112
+ (lal_file_voter.address_residence_zip_id === undefined || typeof lal_file_voter.address_residence_zip_id === "string") &&
113
+ typeof lal_file_voter.address_residence_latitude === "number" &&
114
+ typeof lal_file_voter.address_residence_longitude === "number" &&
115
+ typeof lal_file_voter.address_residence_coordinates_type_id === "string" &&
116
+ (lal_file_voter.address_residence_property_sqft === undefined || typeof lal_file_voter.address_residence_property_sqft === "number") &&
117
+ (lal_file_voter.address_residence_property_type_id === undefined || typeof lal_file_voter.address_residence_property_type_id === "string") &&
118
+ typeof lal_file_voter.address_mail_1 === "string" &&
119
+ (lal_file_voter.address_mail_2 === undefined || typeof lal_file_voter.address_mail_2 === "string") &&
120
+ (lal_file_voter.address_mail_city === undefined || typeof lal_file_voter.address_mail_city === "string") &&
121
+ is_state_id(lal_file_voter.address_mail_state_id) &&
122
+ (lal_file_voter.address_mail_zip_id === undefined || typeof lal_file_voter.address_mail_zip_id === "string") &&
123
+ is_voter_party_type_id(lal_file_voter.party_type_id) &&
124
+ (lal_file_voter.lal_occupation_group_id === undefined || typeof lal_file_voter.lal_occupation_group_id === "string") &&
125
+ (lal_file_voter.lal_occupation_id === undefined || typeof lal_file_voter.lal_occupation_id === "string") &&
126
+ (lal_file_voter.lal_ethnicity_group_id === undefined || typeof lal_file_voter.lal_ethnicity_group_id === "string") &&
127
+ (lal_file_voter.lal_ethnicity_id === undefined || typeof lal_file_voter.lal_ethnicity_id === "string") &&
128
+ (lal_file_voter.lal_religion_id === undefined || typeof lal_file_voter.lal_religion_id === "string") &&
129
+ (lal_file_voter.lal_language_id === undefined || typeof lal_file_voter.lal_language_id === "string") &&
130
+ (lal_file_voter.lal_maritality_id === undefined || typeof lal_file_voter.lal_maritality_id === "string") &&
131
+ (lal_file_voter.lal_education_id === undefined || typeof lal_file_voter.lal_education_id === "string") &&
132
+ (lal_file_voter.lal_income === undefined || typeof lal_file_voter.lal_income === "string") &&
133
+ (lal_file_voter.lal_credit_range_id === undefined || typeof lal_file_voter.lal_credit_range_id === "string") &&
134
+ (lal_file_voter.phone_home === undefined || typeof lal_file_voter.phone_home === "string") &&
135
+ (lal_file_voter.phone_mobile === undefined || typeof lal_file_voter.phone_mobile === "string")
136
+ )
137
+ }
138
+
139
+ static keys() : string[] {
140
+ return [
141
+ "lal_file_voter_id",
142
+ "lal_file_id",
143
+ "lal_voter_id",
144
+ "state_id",
145
+ "voter_id",
146
+ "name_first",
147
+ "name_middle",
148
+ "name_last",
149
+ "name_suffix",
150
+ "name_last_first_middle_suffix",
151
+ "gender_id",
152
+ "birth_date",
153
+ "address_residence_1",
154
+ "address_residence_2",
155
+ "address_residence_city",
156
+ "address_residence_state_id",
157
+ "address_residence_zip",
158
+ "address_residence_latitude",
159
+ "address_residence_longitude",
160
+ "address_residence_coordinates_type_id",
161
+ "address_residence_property_sqft",
162
+ "address_residence_property_type_id",
163
+ "address_mail_1",
164
+ "address_mail_2",
165
+ "address_mail_city",
166
+ "address_mail_state_id",
167
+ "address_mail_zip",
168
+ "party_type_id",
169
+ "lal_occupation_group_id",
170
+ "lal_occupation_id",
171
+ "lal_ethnicity_group_id",
172
+ "lal_ethnicity_id",
173
+ "lal_religion_id",
174
+ "lal_language_id",
175
+ "lal_maritality_id",
176
+ "lal_education_id",
177
+ "lal_income",
178
+ "lal_credit_range_id",
179
+ "phone_home",
180
+ "phone_mobile"
181
+ ]
182
+ }
183
+ }
package/start.sh ADDED
@@ -0,0 +1 @@
1
+ aws rds-data execute-statement --resource-arn "arn:aws:rds:us-east-1:675045717295:cluster:triangle" --secret-arn "arn:aws:secretsmanager:us-east-1:675045717295:secret:rds!cluster-589d31ef-3299-424d-9e2e-e6c0944182fa-HsMrI1" --database "postgres" --sql "SELECT version();" --region us-east-1