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