@theia/core 1.70.0-next.56 → 1.70.0-next.61

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.
@@ -649,6 +649,12 @@
649
649
  ],
650
650
  "url": "https://raw.githubusercontent.com/Azure/Azure-Landing-Zones-Library/main/schemas/archetype_override.json"
651
651
  },
652
+ {
653
+ "name": "Barba-CV",
654
+ "description": "Deterministic CV / resume data format",
655
+ "fileMatch": ["barba-cv.json"],
656
+ "url": "https://raw.githubusercontent.com/Eurobotics-Association/barba-cv/main/schema/barba-cv.schema.json"
657
+ },
652
658
  {
653
659
  "name": "Biome Formatter Config",
654
660
  "description": "Configuration file for the Biome formatter",
@@ -4083,6 +4089,17 @@
4083
4089
  "fileMatch": [".mado.toml", "mado.toml"],
4084
4090
  "url": "https://raw.githubusercontent.com/akiomik/mado/refs/heads/main/pkg/json-schema/mado.json"
4085
4091
  },
4092
+ {
4093
+ "name": "Maestro Flow",
4094
+ "description": "Maestro mobile and web UI test flow (YAML)",
4095
+ "fileMatch": [
4096
+ "**/.maestro/**/*.yaml",
4097
+ "**/.maestro/**/*.yml",
4098
+ "**/*.flow.yaml",
4099
+ "**/*.flow.yml"
4100
+ ],
4101
+ "url": "https://www.schemastore.org/maestro-flow.json"
4102
+ },
4086
4103
  {
4087
4104
  "name": "MapEHR Mapping",
4088
4105
  "description": "Mapping for MapEHR.com",
@@ -9531,6 +9548,12 @@
9531
9548
  "**/text2confl.yml"
9532
9549
  ],
9533
9550
  "url": "https://raw.githubusercontent.com/zeldigas/text2confl/refs/heads/master/docs/config.schema.json"
9551
+ },
9552
+ {
9553
+ "name": "Cursor Agent Environment",
9554
+ "description": "Cursor cloud agent environment configuration",
9555
+ "fileMatch": ["**/.cursor/environment.json"],
9556
+ "url": "https://cursor.com/schemas/environment.schema.json"
9534
9557
  }
9535
9558
  ]
9536
9559
  }
@@ -1,6 +1,8 @@
1
1
  import { Endpoint } from '../../browser/endpoint';
2
2
  import { WebSocketConnectionSource } from '../../browser/messaging/ws-connection-source';
3
+ export declare const LOCAL_PORT_PARAM = "localPort";
3
4
  export declare function getLocalPort(): string | undefined;
5
+ export declare const CURRENT_PORT_PARAM = "port";
4
6
  export declare function getCurrentPort(): string | undefined;
5
7
  export declare class ElectronLocalWebSocketConnectionSource extends WebSocketConnectionSource {
6
8
  protected createEndpoint(path: string): Endpoint;
@@ -1 +1 @@
1
- {"version":3,"file":"electron-local-ws-connection-source.d.ts","sourceRoot":"","sources":["../../../src/electron-browser/messaging/electron-local-ws-connection-source.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,yBAAyB,EAAE,MAAM,8CAA8C,CAAC;AAEzF,wBAAgB,YAAY,IAAI,MAAM,GAAG,SAAS,CAGjD;AAED,wBAAgB,cAAc,IAAI,MAAM,GAAG,SAAS,CAGnD;AAED,qBACa,sCAAuC,SAAQ,yBAAyB;cAE9D,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,QAAQ;CAgB5D"}
1
+ {"version":3,"file":"electron-local-ws-connection-source.d.ts","sourceRoot":"","sources":["../../../src/electron-browser/messaging/electron-local-ws-connection-source.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,yBAAyB,EAAE,MAAM,8CAA8C,CAAC;AAEzF,eAAO,MAAM,gBAAgB,cAAc,CAAC;AAC5C,wBAAgB,YAAY,IAAI,MAAM,GAAG,SAAS,CAGjD;AAED,eAAO,MAAM,kBAAkB,SAAS,CAAC;AACzC,wBAAgB,cAAc,IAAI,MAAM,GAAG,SAAS,CAGnD;AAED,qBACa,sCAAuC,SAAQ,yBAAyB;cAE9D,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,QAAQ;CAgB5D"}
@@ -15,20 +15,22 @@
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.ElectronLocalWebSocketConnectionSource = void 0;
18
+ exports.ElectronLocalWebSocketConnectionSource = exports.CURRENT_PORT_PARAM = exports.LOCAL_PORT_PARAM = void 0;
19
19
  exports.getLocalPort = getLocalPort;
20
20
  exports.getCurrentPort = getCurrentPort;
21
21
  const tslib_1 = require("tslib");
22
22
  const inversify_1 = require("inversify");
23
23
  const endpoint_1 = require("../../browser/endpoint");
24
24
  const ws_connection_source_1 = require("../../browser/messaging/ws-connection-source");
25
+ exports.LOCAL_PORT_PARAM = 'localPort';
25
26
  function getLocalPort() {
26
27
  const params = new URLSearchParams(location.search);
27
- return params.get('localPort') ?? undefined;
28
+ return params.get(exports.LOCAL_PORT_PARAM) ?? undefined;
28
29
  }
30
+ exports.CURRENT_PORT_PARAM = 'port';
29
31
  function getCurrentPort() {
30
32
  const params = new URLSearchParams(location.search);
31
- return params.get('port') ?? undefined;
33
+ return params.get(exports.CURRENT_PORT_PARAM) ?? undefined;
32
34
  }
33
35
  let ElectronLocalWebSocketConnectionSource = class ElectronLocalWebSocketConnectionSource extends ws_connection_source_1.WebSocketConnectionSource {
34
36
  createEndpoint(path) {
@@ -1 +1 @@
1
- {"version":3,"file":"electron-local-ws-connection-source.js","sourceRoot":"","sources":["../../../src/electron-browser/messaging/electron-local-ws-connection-source.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,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;;;AAMhF,oCAGC;AAED,wCAGC;;AAZD,yCAAuC;AACvC,qDAAkD;AAClD,uFAAyF;AAEzF,SAAgB,YAAY;IACxB,MAAM,MAAM,GAAG,IAAI,eAAe,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;IACpD,OAAO,MAAM,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,SAAS,CAAC;AAChD,CAAC;AAED,SAAgB,cAAc;IAC1B,MAAM,MAAM,GAAG,IAAI,eAAe,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;IACpD,OAAO,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,SAAS,CAAC;AAC3C,CAAC;AAGM,IAAM,sCAAsC,GAA5C,MAAM,sCAAuC,SAAQ,gDAAyB;IAE9D,cAAc,CAAC,IAAY;QAC1C,MAAM,SAAS,GAAG,YAAY,EAAE,CAAC;QACjC,IAAI,CAAC,SAAS,EAAE,CAAC;YACb,MAAM,IAAI,KAAK,CAAC,qEAAqE,CAAC,CAAC;QAC3F,CAAC;QACD,MAAM,QAAQ,GAAG,IAAI,mBAAQ,CAAC;YAC1B,IAAI;SACP,EAAE;YACC,IAAI,EAAE,aAAa,SAAS,EAAE;YAC9B,QAAQ,EAAE,GAAG;YACb,QAAQ,EAAE,MAAM;YAChB,MAAM,EAAE,EAAE;SACb,CAAC,CAAC;QACH,OAAO,QAAQ,CAAC;IACpB,CAAC;CAEJ,CAAA;AAlBY,wFAAsC;iDAAtC,sCAAsC;IADlD,IAAA,sBAAU,GAAE;GACA,sCAAsC,CAkBlD"}
1
+ {"version":3,"file":"electron-local-ws-connection-source.js","sourceRoot":"","sources":["../../../src/electron-browser/messaging/electron-local-ws-connection-source.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,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;;;AAOhF,oCAGC;AAGD,wCAGC;;AAdD,yCAAuC;AACvC,qDAAkD;AAClD,uFAAyF;AAE5E,QAAA,gBAAgB,GAAG,WAAW,CAAC;AAC5C,SAAgB,YAAY;IACxB,MAAM,MAAM,GAAG,IAAI,eAAe,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;IACpD,OAAO,MAAM,CAAC,GAAG,CAAC,wBAAgB,CAAC,IAAI,SAAS,CAAC;AACrD,CAAC;AAEY,QAAA,kBAAkB,GAAG,MAAM,CAAC;AACzC,SAAgB,cAAc;IAC1B,MAAM,MAAM,GAAG,IAAI,eAAe,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;IACpD,OAAO,MAAM,CAAC,GAAG,CAAC,0BAAkB,CAAC,IAAI,SAAS,CAAC;AACvD,CAAC;AAGM,IAAM,sCAAsC,GAA5C,MAAM,sCAAuC,SAAQ,gDAAyB;IAE9D,cAAc,CAAC,IAAY;QAC1C,MAAM,SAAS,GAAG,YAAY,EAAE,CAAC;QACjC,IAAI,CAAC,SAAS,EAAE,CAAC;YACb,MAAM,IAAI,KAAK,CAAC,qEAAqE,CAAC,CAAC;QAC3F,CAAC;QACD,MAAM,QAAQ,GAAG,IAAI,mBAAQ,CAAC;YAC1B,IAAI;SACP,EAAE;YACC,IAAI,EAAE,aAAa,SAAS,EAAE;YAC9B,QAAQ,EAAE,GAAG;YACb,QAAQ,EAAE,MAAM;YAChB,MAAM,EAAE,EAAE;SACb,CAAC,CAAC;QACH,OAAO,QAAQ,CAAC;IACpB,CAAC;CAEJ,CAAA;AAlBY,wFAAsC;iDAAtC,sCAAsC;IADlD,IAAA,sBAAU,GAAE;GACA,sCAAsC,CAkBlD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/core",
3
- "version": "1.70.0-next.56+f3a676194",
3
+ "version": "1.70.0-next.61+d13baea89",
4
4
  "description": "Theia is a cloud & desktop IDE framework implemented in TypeScript.",
5
5
  "main": "lib/common/index.js",
6
6
  "typings": "lib/common/index.d.ts",
@@ -17,8 +17,8 @@
17
17
  "@lumino/virtualdom": "^2.0.4",
18
18
  "@lumino/widgets": "2.7.5",
19
19
  "@parcel/watcher": "^2.5.0",
20
- "@theia/application-package": "1.70.0-next.56+f3a676194",
21
- "@theia/request": "1.70.0-next.56+f3a676194",
20
+ "@theia/application-package": "1.70.0-next.61+d13baea89",
21
+ "@theia/request": "1.70.0-next.61+d13baea89",
22
22
  "@types/body-parser": "^1.16.4",
23
23
  "@types/express": "^4.17.21",
24
24
  "@types/fs-extra": "^4.0.2",
@@ -221,5 +221,5 @@
221
221
  "nyc": {
222
222
  "extends": "../../configs/nyc.json"
223
223
  },
224
- "gitHead": "f3a676194a00db388f416b808c6a37e277005528"
224
+ "gitHead": "d13baea893dbdfe4c1df677a9b00b11289e71fa7"
225
225
  }
@@ -18,14 +18,16 @@ import { injectable } from 'inversify';
18
18
  import { Endpoint } from '../../browser/endpoint';
19
19
  import { WebSocketConnectionSource } from '../../browser/messaging/ws-connection-source';
20
20
 
21
+ export const LOCAL_PORT_PARAM = 'localPort';
21
22
  export function getLocalPort(): string | undefined {
22
23
  const params = new URLSearchParams(location.search);
23
- return params.get('localPort') ?? undefined;
24
+ return params.get(LOCAL_PORT_PARAM) ?? undefined;
24
25
  }
25
26
 
27
+ export const CURRENT_PORT_PARAM = 'port';
26
28
  export function getCurrentPort(): string | undefined {
27
29
  const params = new URLSearchParams(location.search);
28
- return params.get('port') ?? undefined;
30
+ return params.get(CURRENT_PORT_PARAM) ?? undefined;
29
31
  }
30
32
 
31
33
  @injectable()