playwright-core 1.58.0-alpha-2025-12-14 → 1.58.0-alpha-2025-12-16
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/ThirdPartyNotices.txt +3 -3
- package/lib/client/events.js +1 -0
- package/lib/client/page.js +1 -0
- package/lib/mcpBundleImpl/index.js +37 -37
- package/lib/protocol/validator.js +13 -5
- package/lib/server/agent/agent.js +19 -5
- package/lib/server/agent/tools.js +1 -1
- package/lib/server/bidi/bidiExecutionContext.js +63 -9
- package/lib/server/bidi/bidiPage.js +1 -1
- package/lib/server/dispatchers/pageDispatcher.js +1 -0
- package/lib/server/page.js +1 -0
- package/lib/vite/traceViewer/assets/{codeMirrorModule-CPNe-I5g.js → codeMirrorModule-Dqdugjpa.js} +1 -1
- package/lib/vite/traceViewer/assets/{defaultSettingsView-V7hnXDpz.js → defaultSettingsView-DIraU59a.js} +55 -55
- package/lib/vite/traceViewer/{index.zFV_GQE-.js → index.D-mekvnz.js} +1 -1
- package/lib/vite/traceViewer/index.html +2 -2
- package/lib/vite/traceViewer/{uiMode.DiEbKRwa.js → uiMode.BL60hFRS.js} +1 -1
- package/lib/vite/traceViewer/uiMode.html +2 -2
- package/package.json +1 -1
- package/types/types.d.ts +126 -1
package/ThirdPartyNotices.txt
CHANGED
|
@@ -4,7 +4,7 @@ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
|
|
|
4
4
|
|
|
5
5
|
This project incorporates components from the projects listed below. The original copyright notices and the licenses under which Microsoft received such components are set forth below. Microsoft reserves all rights not expressly granted herein, whether by implication, estoppel or otherwise.
|
|
6
6
|
|
|
7
|
-
- @lowire/loop@0.0.
|
|
7
|
+
- @lowire/loop@0.0.11 (https://github.com/pavelfeldman/lowire)
|
|
8
8
|
- @modelcontextprotocol/sdk@1.24.2 (https://github.com/modelcontextprotocol/typescript-sdk)
|
|
9
9
|
- accepts@2.0.0 (https://github.com/jshttp/accepts)
|
|
10
10
|
- agent-base@7.1.4 (https://github.com/TooTallNate/proxy-agents)
|
|
@@ -135,7 +135,7 @@ This project incorporates components from the projects listed below. The origina
|
|
|
135
135
|
- zod-to-json-schema@3.25.0 (https://github.com/StefanTerdell/zod-to-json-schema)
|
|
136
136
|
- zod@3.25.76 (https://github.com/colinhacks/zod)
|
|
137
137
|
|
|
138
|
-
%% @lowire/loop@0.0.
|
|
138
|
+
%% @lowire/loop@0.0.11 NOTICES AND INFORMATION BEGIN HERE
|
|
139
139
|
=========================================
|
|
140
140
|
Apache License
|
|
141
141
|
Version 2.0, January 2004
|
|
@@ -339,7 +339,7 @@ Apache License
|
|
|
339
339
|
See the License for the specific language governing permissions and
|
|
340
340
|
limitations under the License.
|
|
341
341
|
=========================================
|
|
342
|
-
END OF @lowire/loop@0.0.
|
|
342
|
+
END OF @lowire/loop@0.0.11 AND INFORMATION
|
|
343
343
|
|
|
344
344
|
%% @modelcontextprotocol/sdk@1.24.2 NOTICES AND INFORMATION BEGIN HERE
|
|
345
345
|
=========================================
|
package/lib/client/events.js
CHANGED
package/lib/client/page.js
CHANGED
|
@@ -76,6 +76,7 @@ class Page extends import_channelOwner.ChannelOwner {
|
|
|
76
76
|
this._viewportSize = initializer.viewportSize;
|
|
77
77
|
this._closed = initializer.isClosed;
|
|
78
78
|
this._opener = Page.fromNullable(initializer.opener);
|
|
79
|
+
this._channel.on("agentTurn", (params) => this.emit(import_events.Events.Page.AgentTurn, params));
|
|
79
80
|
this._channel.on("bindingCall", ({ binding }) => this._onBinding(BindingCall.from(binding)));
|
|
80
81
|
this._channel.on("close", () => this._onClose());
|
|
81
82
|
this._channel.on("crash", () => this._onCrash());
|