@theia/application-package 1.70.0-next.28 → 1.70.0-next.43

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/lib/api.d.ts CHANGED
@@ -3,4 +3,9 @@
3
3
  * The version should be in the format `x.y.z`.
4
4
  */
5
5
  export declare const DEFAULT_SUPPORTED_API_VERSION = "1.109.4";
6
+ /**
7
+ * The default supported monaco editor version the framework supports.
8
+ * The version should be in the format `x.y.z`.
9
+ */
10
+ export declare const DEFAULT_SUPPORTED_MONACO_VERSION = "1.108.201";
6
11
  //# sourceMappingURL=api.d.ts.map
package/lib/api.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAgBA;;;GAGG;AACH,eAAO,MAAM,6BAA6B,YAAY,CAAC"}
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAgBA;;;GAGG;AACH,eAAO,MAAM,6BAA6B,YAAY,CAAC;AAEvD;;;GAGG;AACH,eAAO,MAAM,gCAAgC,cAAc,CAAC"}
package/lib/api.js CHANGED
@@ -15,10 +15,15 @@
15
15
  // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
16
  // *****************************************************************************
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
- exports.DEFAULT_SUPPORTED_API_VERSION = void 0;
18
+ exports.DEFAULT_SUPPORTED_MONACO_VERSION = exports.DEFAULT_SUPPORTED_API_VERSION = void 0;
19
19
  /**
20
20
  * The default supported API version the framework supports.
21
21
  * The version should be in the format `x.y.z`.
22
22
  */
23
23
  exports.DEFAULT_SUPPORTED_API_VERSION = '1.109.4';
24
+ /**
25
+ * The default supported monaco editor version the framework supports.
26
+ * The version should be in the format `x.y.z`.
27
+ */
28
+ exports.DEFAULT_SUPPORTED_MONACO_VERSION = '1.108.201';
24
29
  //# sourceMappingURL=api.js.map
package/lib/api.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"api.js","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,0CAA0C;AAC1C,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;AAEhF;;;GAGG;AACU,QAAA,6BAA6B,GAAG,SAAS,CAAC"}
1
+ {"version":3,"file":"api.js","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,0CAA0C;AAC1C,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;AAEhF;;;GAGG;AACU,QAAA,6BAA6B,GAAG,SAAS,CAAC;AAEvD;;;GAGG;AACU,QAAA,gCAAgC,GAAG,WAAW,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/application-package",
3
- "version": "1.70.0-next.28+afae867a5",
3
+ "version": "1.70.0-next.43+8b83716cc",
4
4
  "description": "Theia application package API.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -29,7 +29,7 @@
29
29
  "watch": "theiaext watch"
30
30
  },
31
31
  "dependencies": {
32
- "@theia/request": "1.70.0-next.28+afae867a5",
32
+ "@theia/request": "1.70.0-next.43+8b83716cc",
33
33
  "@types/fs-extra": "^4.0.2",
34
34
  "@types/semver": "^7.5.0",
35
35
  "@types/write-json-file": "^2.2.1",
@@ -48,5 +48,5 @@
48
48
  "nyc": {
49
49
  "extends": "../../configs/nyc.json"
50
50
  },
51
- "gitHead": "afae867a5ffaa073d30c1c74296e595ea5e77d24"
51
+ "gitHead": "8b83716cc93de231a1d472d4ae4016711dbd31a3"
52
52
  }
package/src/api.ts CHANGED
@@ -19,3 +19,9 @@
19
19
  * The version should be in the format `x.y.z`.
20
20
  */
21
21
  export const DEFAULT_SUPPORTED_API_VERSION = '1.109.4';
22
+
23
+ /**
24
+ * The default supported monaco editor version the framework supports.
25
+ * The version should be in the format `x.y.z`.
26
+ */
27
+ export const DEFAULT_SUPPORTED_MONACO_VERSION = '1.108.201';