@ricsam/isolate-daemon 0.1.9 → 0.1.10

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.
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@ricsam/isolate-daemon",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "type": "commonjs"
5
5
  }
@@ -504,7 +504,7 @@ async function handleCreateRuntime(message, connection, state) {
504
504
  console: playwrightCallbacks.console,
505
505
  onEvent: (event) => {
506
506
  if (event.type === "browserConsoleLog" && playwrightCallbacks.onBrowserConsoleLogCallbackId) {
507
- const promise = invokeClientCallback(connection, playwrightCallbacks.onBrowserConsoleLogCallbackId, [{ level: event.level, args: event.args, timestamp: event.timestamp }]).catch(() => {});
507
+ const promise = invokeClientCallback(connection, playwrightCallbacks.onBrowserConsoleLogCallbackId, [{ level: event.level, stdout: event.stdout, timestamp: event.timestamp }]).catch(() => {});
508
508
  pendingCallbacks.push(promise);
509
509
  } else if (event.type === "networkRequest" && playwrightCallbacks.onNetworkRequestCallbackId) {
510
510
  const promise = invokeClientCallback(connection, playwrightCallbacks.onNetworkRequestCallbackId, [event]).catch(() => {});
@@ -1785,4 +1785,4 @@ export {
1785
1785
  handleConnection
1786
1786
  };
1787
1787
 
1788
- //# debugId=9E949C5B88C72B2F64756E2164756E21
1788
+ //# debugId=2A1E0650E9CDD7A964756E2164756E21