triage-types 1.0.12 → 1.0.13

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.
@@ -14,7 +14,7 @@ export declare class ARStatePermitSource {
14
14
  readonly power_unit?: string;
15
15
  readonly power_kw?: number;
16
16
  readonly fuel?: string;
17
- readonly is_emergency?: boolean;
17
+ readonly is_emergency?: string;
18
18
  readonly [x: string]: any;
19
19
  constructor(state_permit_source: ARStatePermitSource);
20
20
  static is(state_permit_source: any): state_permit_source is ARStatePermitSource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triage-types",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "directories": {
@@ -15,7 +15,7 @@ export class ARStatePermitSource {
15
15
  readonly power_unit? : string
16
16
  readonly power_kw? : number
17
17
  readonly fuel? : string
18
- readonly is_emergency? : boolean
18
+ readonly is_emergency? : string
19
19
  readonly [x : string] : any
20
20
 
21
21
  constructor(state_permit_source : ARStatePermitSource) {