@btraut/browser-bridge 0.3.0 → 0.4.0

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.js CHANGED
@@ -142,6 +142,11 @@ var DiagnosticReportSchema = import_zod2.z.object({
142
142
  ok: import_zod2.z.boolean(),
143
143
  session_id: import_zod2.z.string().optional(),
144
144
  checks: import_zod2.z.array(DiagnosticCheckSchema).optional(),
145
+ sessions: import_zod2.z.object({
146
+ count: import_zod2.z.number().finite().optional(),
147
+ max_age_ms: import_zod2.z.number().finite().optional(),
148
+ max_idle_ms: import_zod2.z.number().finite().optional()
149
+ }).optional(),
145
150
  extension: import_zod2.z.object({
146
151
  connected: import_zod2.z.boolean().optional(),
147
152
  version: import_zod2.z.string().optional(),
@@ -2074,7 +2079,7 @@ var import_express2 = __toESM(require("express"));
2074
2079
  // packages/core/src/routes/session.ts
2075
2080
  var import_express = require("express");
2076
2081
 
2077
- // packages/core/src/inspect.ts
2082
+ // packages/core/src/inspect/service.ts
2078
2083
  var import_readability = require("@mozilla/readability");
2079
2084
  var import_jsdom = require("jsdom");
2080
2085
  var import_turndown = __toESM(require("turndown"));