motoko 3.5.8 → 3.6.0

Sign up to get free protection for your applications and to get access to all the features.
package/lib/index.d.ts CHANGED
@@ -14,7 +14,7 @@ export declare type Diagnostic = {
14
14
  character: number;
15
15
  };
16
16
  };
17
- severity: string;
17
+ severity: number;
18
18
  code: string;
19
19
  category: string;
20
20
  message: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "motoko",
3
- "version": "3.5.8",
3
+ "version": "3.6.0",
4
4
  "description": "Compile and run Motoko smart contracts in Node.js or the browser.",
5
5
  "author": "Ryan Vandersmith (https://github.com/rvanasa)",
6
6
  "license": "Apache-2.0",
package/src/index.ts CHANGED
@@ -19,7 +19,7 @@ export type Diagnostic = {
19
19
  start: { line: number; character: number };
20
20
  end: { line: number; character: number };
21
21
  };
22
- severity: string;
22
+ severity: number;
23
23
  code: string;
24
24
  category: string;
25
25
  message: string;