triage-types 1.0.85 → 1.0.86
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,7 +10,6 @@ export declare class StatePermit {
|
|
|
10
10
|
readonly status?: string;
|
|
11
11
|
readonly permit_type_id?: string;
|
|
12
12
|
readonly permit_subtype_id?: string;
|
|
13
|
-
readonly subtype_id?: string;
|
|
14
13
|
readonly [x: string]: any;
|
|
15
14
|
constructor(state_permit: StatePermit);
|
|
16
15
|
static is(state_permit: any): state_permit is StatePermit;
|
|
@@ -10,7 +10,6 @@ export class StatePermit {
|
|
|
10
10
|
status;
|
|
11
11
|
permit_type_id;
|
|
12
12
|
permit_subtype_id;
|
|
13
|
-
subtype_id;
|
|
14
13
|
constructor(state_permit) {
|
|
15
14
|
if (!StatePermit.is(state_permit)) {
|
|
16
15
|
throw Error("Invalid input.");
|
|
@@ -23,7 +22,6 @@ export class StatePermit {
|
|
|
23
22
|
this.expiration_date = state_permit.expiration_date;
|
|
24
23
|
this.status = state_permit.status;
|
|
25
24
|
this.permit_type_id = state_permit.permit_type_id;
|
|
26
|
-
this.permit_subtype_id = state_permit.permit_subtype_id;
|
|
27
25
|
}
|
|
28
26
|
static is(state_permit) {
|
|
29
27
|
return (state_permit !== undefined &&
|
package/package.json
CHANGED
|
@@ -11,7 +11,6 @@ export class StatePermit {
|
|
|
11
11
|
readonly status? : string
|
|
12
12
|
readonly permit_type_id? : string
|
|
13
13
|
readonly permit_subtype_id? : string
|
|
14
|
-
readonly subtype_id? : string
|
|
15
14
|
readonly [x : string] : any
|
|
16
15
|
|
|
17
16
|
constructor(state_permit : StatePermit) {
|
|
@@ -26,7 +25,6 @@ export class StatePermit {
|
|
|
26
25
|
this.expiration_date = state_permit.expiration_date
|
|
27
26
|
this.status = state_permit.status
|
|
28
27
|
this.permit_type_id = state_permit.permit_type_id
|
|
29
|
-
this.permit_subtype_id = state_permit.permit_subtype_id
|
|
30
28
|
}
|
|
31
29
|
|
|
32
30
|
static is(state_permit : any) : state_permit is StatePermit {
|