triage-types 1.0.68 → 1.0.69

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.
@@ -13,6 +13,6 @@ export class TNStatePermitDocument extends StatePermitDocument {
13
13
  static is(state_permit) {
14
14
  return (StatePermitDocument.is(state_permit) &&
15
15
  state_permit.state_id === "TN" &&
16
- typeof state_permit.type === "string");
16
+ typeof state_permit.date === "string");
17
17
  }
18
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triage-types",
3
- "version": "1.0.68",
3
+ "version": "1.0.69",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "directories": {
@@ -19,7 +19,7 @@ export class TNStatePermitDocument extends StatePermitDocument {
19
19
  return (
20
20
  StatePermitDocument.is(state_permit) &&
21
21
  state_permit.state_id === "TN" &&
22
- typeof state_permit.type === "string"
22
+ typeof state_permit.date === "string"
23
23
  )
24
24
  }
25
25
  }