triangle-types 1.0.189 → 1.0.190
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.
|
@@ -27,6 +27,7 @@ export declare class LALFileVoter {
|
|
|
27
27
|
readonly address_mail_city?: string;
|
|
28
28
|
readonly address_mail_state_id: string;
|
|
29
29
|
readonly address_mail_zip_id?: string;
|
|
30
|
+
readonly party_id: string;
|
|
30
31
|
readonly party_type_id: VoterPartyTypeID;
|
|
31
32
|
readonly lal_occupation_group_id?: string;
|
|
32
33
|
readonly lal_occupation_id?: string;
|
|
@@ -27,6 +27,7 @@ export class LALFileVoter {
|
|
|
27
27
|
address_mail_city;
|
|
28
28
|
address_mail_state_id;
|
|
29
29
|
address_mail_zip_id;
|
|
30
|
+
party_id;
|
|
30
31
|
party_type_id;
|
|
31
32
|
lal_occupation_group_id;
|
|
32
33
|
lal_occupation_id;
|
|
@@ -70,6 +71,7 @@ export class LALFileVoter {
|
|
|
70
71
|
this.address_mail_city = lal_file_voter.address_mail_city;
|
|
71
72
|
this.address_mail_state_id = lal_file_voter.address_mail_state_id;
|
|
72
73
|
this.address_mail_zip_id = lal_file_voter.address_mail_zip_id;
|
|
74
|
+
this.party_id = lal_file_voter.party_id;
|
|
73
75
|
this.party_type_id = lal_file_voter.party_type_id;
|
|
74
76
|
this.lal_occupation_group_id = lal_file_voter.lal_occupation_group_id;
|
|
75
77
|
this.lal_occupation_id = lal_file_voter.lal_occupation_id;
|
|
@@ -112,6 +114,7 @@ export class LALFileVoter {
|
|
|
112
114
|
(lal_file_voter.address_mail_city === undefined || typeof lal_file_voter.address_mail_city === "string") &&
|
|
113
115
|
typeof lal_file_voter.address_mail_state_id === "string" &&
|
|
114
116
|
(lal_file_voter.address_mail_zip_id === undefined || typeof lal_file_voter.address_mail_zip_id === "string") &&
|
|
117
|
+
typeof lal_file_voter.party_id === "string" &&
|
|
115
118
|
is_voter_party_type_id(lal_file_voter.party_type_id) &&
|
|
116
119
|
(lal_file_voter.lal_occupation_group_id === undefined || typeof lal_file_voter.lal_occupation_group_id === "string") &&
|
|
117
120
|
(lal_file_voter.lal_occupation_id === undefined || typeof lal_file_voter.lal_occupation_id === "string") &&
|
|
@@ -154,6 +157,7 @@ export class LALFileVoter {
|
|
|
154
157
|
"address_mail_city",
|
|
155
158
|
"address_mail_state_id",
|
|
156
159
|
"address_mail_zip_id",
|
|
160
|
+
"party_id",
|
|
157
161
|
"party_type_id",
|
|
158
162
|
"lal_occupation_group_id",
|
|
159
163
|
"lal_occupation_id",
|
package/package.json
CHANGED
|
@@ -28,6 +28,7 @@ export class LALFileVoter {
|
|
|
28
28
|
readonly address_mail_city? : string
|
|
29
29
|
readonly address_mail_state_id : string
|
|
30
30
|
readonly address_mail_zip_id? : string
|
|
31
|
+
readonly party_id : string
|
|
31
32
|
readonly party_type_id : VoterPartyTypeID
|
|
32
33
|
readonly lal_occupation_group_id? : string
|
|
33
34
|
readonly lal_occupation_id? : string
|
|
@@ -73,6 +74,7 @@ export class LALFileVoter {
|
|
|
73
74
|
this.address_mail_city = lal_file_voter.address_mail_city
|
|
74
75
|
this.address_mail_state_id = lal_file_voter.address_mail_state_id
|
|
75
76
|
this.address_mail_zip_id = lal_file_voter.address_mail_zip_id
|
|
77
|
+
this.party_id = lal_file_voter.party_id
|
|
76
78
|
this.party_type_id = lal_file_voter.party_type_id
|
|
77
79
|
this.lal_occupation_group_id = lal_file_voter.lal_occupation_group_id
|
|
78
80
|
this.lal_occupation_id = lal_file_voter.lal_occupation_id
|
|
@@ -117,6 +119,7 @@ export class LALFileVoter {
|
|
|
117
119
|
(lal_file_voter.address_mail_city === undefined || typeof lal_file_voter.address_mail_city === "string") &&
|
|
118
120
|
typeof lal_file_voter.address_mail_state_id === "string" &&
|
|
119
121
|
(lal_file_voter.address_mail_zip_id === undefined || typeof lal_file_voter.address_mail_zip_id === "string") &&
|
|
122
|
+
typeof lal_file_voter.party_id === "string" &&
|
|
120
123
|
is_voter_party_type_id(lal_file_voter.party_type_id) &&
|
|
121
124
|
(lal_file_voter.lal_occupation_group_id === undefined || typeof lal_file_voter.lal_occupation_group_id === "string") &&
|
|
122
125
|
(lal_file_voter.lal_occupation_id === undefined || typeof lal_file_voter.lal_occupation_id === "string") &&
|
|
@@ -161,6 +164,7 @@ export class LALFileVoter {
|
|
|
161
164
|
"address_mail_city",
|
|
162
165
|
"address_mail_state_id",
|
|
163
166
|
"address_mail_zip_id",
|
|
167
|
+
"party_id",
|
|
164
168
|
"party_type_id",
|
|
165
169
|
"lal_occupation_group_id",
|
|
166
170
|
"lal_occupation_id",
|