triage-types 1.0.36 → 1.0.37
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.
|
@@ -6,7 +6,6 @@ export class NCStatePermit {
|
|
|
6
6
|
state_facility_id;
|
|
7
7
|
issue_date;
|
|
8
8
|
expiration_date;
|
|
9
|
-
url;
|
|
10
9
|
status;
|
|
11
10
|
type_id;
|
|
12
11
|
subtype_id;
|
|
@@ -23,8 +22,8 @@ export class NCStatePermit {
|
|
|
23
22
|
this.state_facility_id = state_permit.state_facility_id;
|
|
24
23
|
this.issue_date = state_permit.issue_date;
|
|
25
24
|
this.expiration_date = state_permit.expiration_date;
|
|
26
|
-
this.url = state_permit.url;
|
|
27
25
|
this.status = state_permit.status;
|
|
26
|
+
this.type_id = state_permit.type_id;
|
|
28
27
|
this.subtype_id = state_permit.subtype_id;
|
|
29
28
|
this.s3_filename = state_permit.s3_filename;
|
|
30
29
|
this.s3_text_filename = state_permit.s3_text_filename;
|
|
@@ -38,8 +37,8 @@ export class NCStatePermit {
|
|
|
38
37
|
typeof state_permit.state_facility_id === "string" &&
|
|
39
38
|
(state_permit.issue_date === undefined || typeof state_permit.issue_date === "string") &&
|
|
40
39
|
(state_permit.expiration_date === undefined || typeof state_permit.expiration_date === "string") &&
|
|
41
|
-
state_permit.url === "string" &&
|
|
42
40
|
(state_permit.status === undefined || typeof state_permit.status === "string") &&
|
|
41
|
+
(state_permit.type_id === undefined || typeof state_permit.type_id === "string") &&
|
|
43
42
|
(state_permit.subtype_id === undefined || typeof state_permit.subtype_id === "string") &&
|
|
44
43
|
(state_permit.s3_filename === undefined || typeof state_permit.s3_filename === "string") &&
|
|
45
44
|
(state_permit.s3_text_filename === undefined || typeof state_permit.s3_text_filename === "string") &&
|
package/package.json
CHANGED
|
@@ -8,7 +8,6 @@ export class NCStatePermit {
|
|
|
8
8
|
readonly state_facility_id : string
|
|
9
9
|
readonly issue_date? : string
|
|
10
10
|
readonly expiration_date? : string
|
|
11
|
-
readonly url? : string
|
|
12
11
|
readonly status? : string
|
|
13
12
|
readonly type_id? : string
|
|
14
13
|
readonly subtype_id? : string
|
|
@@ -27,8 +26,8 @@ export class NCStatePermit {
|
|
|
27
26
|
this.state_facility_id = state_permit.state_facility_id
|
|
28
27
|
this.issue_date = state_permit.issue_date
|
|
29
28
|
this.expiration_date = state_permit.expiration_date
|
|
30
|
-
this.url = state_permit.url
|
|
31
29
|
this.status = state_permit.status
|
|
30
|
+
this.type_id = state_permit.type_id
|
|
32
31
|
this.subtype_id = state_permit.subtype_id
|
|
33
32
|
this.s3_filename = state_permit.s3_filename
|
|
34
33
|
this.s3_text_filename = state_permit.s3_text_filename
|
|
@@ -44,8 +43,8 @@ export class NCStatePermit {
|
|
|
44
43
|
typeof state_permit.state_facility_id === "string" &&
|
|
45
44
|
(state_permit.issue_date === undefined || typeof state_permit.issue_date === "string") &&
|
|
46
45
|
(state_permit.expiration_date === undefined || typeof state_permit.expiration_date === "string") &&
|
|
47
|
-
state_permit.url === "string" &&
|
|
48
46
|
(state_permit.status === undefined || typeof state_permit.status === "string") &&
|
|
47
|
+
(state_permit.type_id === undefined || typeof state_permit.type_id === "string") &&
|
|
49
48
|
(state_permit.subtype_id === undefined || typeof state_permit.subtype_id === "string") &&
|
|
50
49
|
(state_permit.s3_filename === undefined || typeof state_permit.s3_filename === "string") &&
|
|
51
50
|
(state_permit.s3_text_filename === undefined || typeof state_permit.s3_text_filename === "string") &&
|