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