pxt-core 10.2.30 → 10.2.32

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.
@@ -1,5 +1,8 @@
1
1
  namespace pxt.blocks {
2
2
  export interface EvaluationResult {
3
- result: boolean;
3
+ result?: boolean;
4
+ notes?: string;
5
+ executionSuccess: boolean;
6
+ executionErrorMsg?: string;
4
7
  }
5
- }
8
+ }
@@ -49,6 +49,8 @@ declare namespace pxt.blocks {
49
49
  export interface EvaluationResult {
50
50
  result?: boolean;
51
51
  notes?: string;
52
+ executionSuccess: boolean;
53
+ executionErrorMsg?: string;
52
54
  }
53
55
 
54
56
  export interface BlockFieldValueExistsCheck extends ValidatorCheckBase {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxt-core",
3
- "version": "10.2.30",
3
+ "version": "10.2.32",
4
4
  "description": "Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors",
5
5
  "keywords": [
6
6
  "TypeScript",
@@ -18,7 +18,7 @@
18
18
  <!-- <link rel="manifest" href="/teachertool-data/manifest.json" /> -->
19
19
  <title>MakeCode Code Evaluation</title>
20
20
  <script>var pxtConfig=null</script>
21
- <script defer="defer" src="/blb/teachertool/js/main.e778fc5c.js"></script><link href="/blb/teachertool/css/main.2113fa85.css" rel="stylesheet"></head>
21
+ <script defer="defer" src="/blb/teachertool/js/main.8693c6a3.js"></script><link href="/blb/teachertool/css/main.2113fa85.css" rel="stylesheet"></head>
22
22
  <body>
23
23
  <noscript>You need to enable JavaScript to run this app.</noscript>
24
24