triage-types 1.0.92 → 1.0.93

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.
@@ -17,7 +17,7 @@ export declare class StatePermitDocument {
17
17
  readonly name: string;
18
18
  readonly s3_filename?: string;
19
19
  readonly s3_text_filename?: string;
20
- readonly source_ids?: string;
20
+ readonly source_ids?: string[];
21
21
  readonly comments?: StatePermitComment[];
22
22
  readonly [x: string]: any;
23
23
  constructor(state_permit_document: StatePermitDocument);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triage-types",
3
- "version": "1.0.92",
3
+ "version": "1.0.93",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "directories": {
@@ -35,7 +35,7 @@ export class StatePermitDocument {
35
35
  readonly name : string
36
36
  readonly s3_filename? : string
37
37
  readonly s3_text_filename? : string
38
- readonly source_ids? : string
38
+ readonly source_ids? : string[]
39
39
  readonly comments? : StatePermitComment[]
40
40
  readonly [x : string] : any
41
41