@kusto/monaco-kusto 5.1.6 → 5.1.7

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kusto/monaco-kusto",
3
- "version": "5.1.6",
3
+ "version": "5.1.7",
4
4
  "description": "CSL, KQL plugin for the Monaco Editor",
5
5
  "author": {
6
6
  "name": "Microsoft"
@@ -55,7 +55,7 @@
55
55
  },
56
56
  "dependencies": {
57
57
  "@kusto/language-service": "0.0.36",
58
- "@kusto/language-service-next": "0.0.56"
58
+ "@kusto/language-service-next": "0.0.57"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "monaco-editor": "0.33.0"
@@ -8134,11 +8134,11 @@ define('vs/language/kusto/languageService/kustoLanguageService',["require", "exp
8134
8134
  };
8135
8135
  var createTableSymbol = function (tbl) {
8136
8136
  var columnSymbols = tbl.columns.map(function (col) { return KustoLanguageService.createColumnSymbol(col); });
8137
- var symbol = new sym.TableSymbol.$ctor3(tbl.name, columnSymbols);
8137
+ var symbol = new sym.TableSymbol.$ctor4(tbl.name, columnSymbols);
8138
8138
  symbol.Description = tbl.docstring;
8139
8139
  switch (tbl.entityType) {
8140
8140
  case 'MaterializedViewTable':
8141
- symbol = new sym.MaterializedViewSymbol(tbl.name, symbol.Columns, null, tbl.docstring);
8141
+ symbol = new sym.MaterializedViewSymbol.$ctor2(tbl.name, symbol.Columns, null, tbl.docstring);
8142
8142
  symbol = symbol.WithIsMaterializedView(true);
8143
8143
  break;
8144
8144
  case 'ExternalTable':
@@ -1490,11 +1490,11 @@ var KustoLanguageService = /** @class */ (function () {
1490
1490
  };
1491
1491
  var createTableSymbol = function (tbl) {
1492
1492
  var columnSymbols = tbl.columns.map(function (col) { return KustoLanguageService.createColumnSymbol(col); });
1493
- var symbol = new sym.TableSymbol.$ctor3(tbl.name, columnSymbols);
1493
+ var symbol = new sym.TableSymbol.$ctor4(tbl.name, columnSymbols);
1494
1494
  symbol.Description = tbl.docstring;
1495
1495
  switch (tbl.entityType) {
1496
1496
  case 'MaterializedViewTable':
1497
- symbol = new sym.MaterializedViewSymbol(tbl.name, symbol.Columns, null, tbl.docstring);
1497
+ symbol = new sym.MaterializedViewSymbol.$ctor2(tbl.name, symbol.Columns, null, tbl.docstring);
1498
1498
  symbol = symbol.WithIsMaterializedView(true);
1499
1499
  break;
1500
1500
  case 'ExternalTable':