triage-types 1.0.63 → 1.0.64

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.
@@ -2,7 +2,7 @@ import { StatePermit } from "../StatePermit.js";
2
2
  export declare class TNStatePermit extends StatePermit {
3
3
  readonly state_id: "TN";
4
4
  readonly effective_date?: string;
5
- readonly s3_raw_filenames?: string;
5
+ readonly s3_raw_filenames?: string[];
6
6
  readonly [x: string]: any;
7
7
  constructor(state_permit: TNStatePermit);
8
8
  static is(state_permit: any): state_permit is TNStatePermit;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triage-types",
3
- "version": "1.0.63",
3
+ "version": "1.0.64",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "directories": {
@@ -4,7 +4,7 @@ import { StatePermit } from "../StatePermit"
4
4
  export class TNStatePermit extends StatePermit {
5
5
  readonly state_id : "TN"
6
6
  readonly effective_date? : string
7
- readonly s3_raw_filenames? : string
7
+ readonly s3_raw_filenames? : string[]
8
8
  readonly [x : string] : any
9
9
 
10
10
  constructor(state_permit : TNStatePermit) {