@widget-js/core 24.1.1-beta.73 → 24.1.1-beta.75
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/dist/index.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2489,6 +2489,9 @@ var BrowserWindowApiEvent = /* @__PURE__ */ ((BrowserWindowApiEvent2) => {
|
|
|
2489
2489
|
return BrowserWindowApiEvent2;
|
|
2490
2490
|
})(BrowserWindowApiEvent || {});
|
|
2491
2491
|
var BrowserWindowApiImpl = class extends BaseApi {
|
|
2492
|
+
getProxy() {
|
|
2493
|
+
return this.invokeMethod("getProxy");
|
|
2494
|
+
}
|
|
2492
2495
|
setBackgroundThrottling(enabled) {
|
|
2493
2496
|
return this.invokeMethod("setBackgroundThrottling", enabled);
|
|
2494
2497
|
}
|
|
@@ -2980,6 +2983,9 @@ var ProcessApi = new ProcessApiImpl();
|
|
|
2980
2983
|
|
|
2981
2984
|
// src/api/AppApi.ts
|
|
2982
2985
|
var AppApiImpl = class extends BaseApi {
|
|
2986
|
+
openWidgetPackageManagerWindow() {
|
|
2987
|
+
return this.invokeMethod("openWidgetPackageManagerWindow");
|
|
2988
|
+
}
|
|
2983
2989
|
getRuntimeInfo() {
|
|
2984
2990
|
return this.invokeMethod("getRuntimeInfo");
|
|
2985
2991
|
}
|