triangle-types 1.0.172 → 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.
|
@@ -10,6 +10,7 @@ export declare class LALFileVoter {
|
|
|
10
10
|
readonly name_middle?: string;
|
|
11
11
|
readonly name_last: string;
|
|
12
12
|
readonly name_suffix?: string;
|
|
13
|
+
readonly name_last_first_middle_suffix: string;
|
|
13
14
|
readonly gender_id?: string;
|
|
14
15
|
readonly birth_date?: string;
|
|
15
16
|
readonly address_residence_1: string;
|
|
@@ -10,6 +10,7 @@ export class LALFileVoter {
|
|
|
10
10
|
name_middle;
|
|
11
11
|
name_last;
|
|
12
12
|
name_suffix;
|
|
13
|
+
name_last_first_middle_suffix;
|
|
13
14
|
gender_id;
|
|
14
15
|
birth_date;
|
|
15
16
|
address_residence_1;
|
|
@@ -53,6 +54,7 @@ export class LALFileVoter {
|
|
|
53
54
|
this.name_middle = lal_file_voter.name_middle;
|
|
54
55
|
this.name_last = lal_file_voter.name_last;
|
|
55
56
|
this.name_suffix = lal_file_voter.name_suffix;
|
|
57
|
+
this.name_last_first_middle_suffix = lal_file_voter.name_last_first_middle_suffix;
|
|
56
58
|
this.gender_id = lal_file_voter.gender_id;
|
|
57
59
|
this.birth_date = lal_file_voter.birth_date;
|
|
58
60
|
this.address_residence_1 = lal_file_voter.address_residence_1;
|
|
@@ -95,6 +97,7 @@ export class LALFileVoter {
|
|
|
95
97
|
(lal_file_voter.name_middle === undefined || typeof lal_file_voter.name_middle === "string") &&
|
|
96
98
|
typeof lal_file_voter.name_last === "string" &&
|
|
97
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" &&
|
|
98
101
|
(lal_file_voter.gender_id === undefined || typeof lal_file_voter.gender_id === "string") &&
|
|
99
102
|
(lal_file_voter.birth_date === undefined || typeof lal_file_voter.birth_date === "string") &&
|
|
100
103
|
typeof lal_file_voter.address_residence_1 === "string" &&
|
|
@@ -137,6 +140,7 @@ export class LALFileVoter {
|
|
|
137
140
|
"name_middle",
|
|
138
141
|
"name_last",
|
|
139
142
|
"name_suffix",
|
|
143
|
+
"name_last_first_middle_suffix",
|
|
140
144
|
"gender_id",
|
|
141
145
|
"birth_date",
|
|
142
146
|
"address_residence_1",
|
package/package.json
CHANGED
|
@@ -11,6 +11,7 @@ export class LALFileVoter {
|
|
|
11
11
|
readonly name_middle? : string
|
|
12
12
|
readonly name_last : string
|
|
13
13
|
readonly name_suffix? : string
|
|
14
|
+
readonly name_last_first_middle_suffix : string
|
|
14
15
|
readonly gender_id? : string
|
|
15
16
|
readonly birth_date? : string
|
|
16
17
|
readonly address_residence_1 : string
|
|
@@ -56,6 +57,7 @@ export class LALFileVoter {
|
|
|
56
57
|
this.name_middle = lal_file_voter.name_middle
|
|
57
58
|
this.name_last = lal_file_voter.name_last
|
|
58
59
|
this.name_suffix = lal_file_voter.name_suffix
|
|
60
|
+
this.name_last_first_middle_suffix = lal_file_voter.name_last_first_middle_suffix
|
|
59
61
|
this.gender_id = lal_file_voter.gender_id
|
|
60
62
|
this.birth_date = lal_file_voter.birth_date
|
|
61
63
|
this.address_residence_1 = lal_file_voter.address_residence_1
|
|
@@ -100,6 +102,7 @@ export class LALFileVoter {
|
|
|
100
102
|
(lal_file_voter.name_middle === undefined || typeof lal_file_voter.name_middle === "string") &&
|
|
101
103
|
typeof lal_file_voter.name_last === "string" &&
|
|
102
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" &&
|
|
103
106
|
(lal_file_voter.gender_id === undefined || typeof lal_file_voter.gender_id === "string") &&
|
|
104
107
|
(lal_file_voter.birth_date === undefined || typeof lal_file_voter.birth_date === "string") &&
|
|
105
108
|
typeof lal_file_voter.address_residence_1 === "string" &&
|
|
@@ -144,6 +147,7 @@ export class LALFileVoter {
|
|
|
144
147
|
"name_middle",
|
|
145
148
|
"name_last",
|
|
146
149
|
"name_suffix",
|
|
150
|
+
"name_last_first_middle_suffix",
|
|
147
151
|
"gender_id",
|
|
148
152
|
"birth_date",
|
|
149
153
|
"address_residence_1",
|