opensteer 0.8.2 → 0.8.4

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/README.md CHANGED
@@ -304,8 +304,8 @@ Important subtrees:
304
304
  - `route({ urlPattern, resourceTypes?, times?, handler })`
305
305
  - `interceptScript({ urlPattern, handler, times? })`
306
306
  - `rawRequest({ transport?, pageRef?, url, method?, headers?, body?, followRedirects? })`
307
- - `inferRequestPlan({ recordId, key, version, lifecycle? })`
308
- - `writeRequestPlan({ key, version, payload, lifecycle?, tags?, provenance?, freshness? })`
307
+ - `inferRequestPlan({ recordId, key, version, transport? })`
308
+ - `writeRequestPlan({ key, version, payload, tags?, provenance?, freshness? })`
309
309
  - `getRequestPlan({ key, version? })`
310
310
  - `listRequestPlans({ key? })`
311
311
  - `writeRecipe({ key, version, payload, tags?, provenance? })`
@@ -332,8 +332,9 @@ structured status union (`available`, `unsupported_default_user_data_dir`, `open
332
332
  The reverse-engineering workflow is: perform a browser action, inspect traffic with
333
333
  `queryNetwork()`, optionally instrument with `addInitScript()`, `route()`, or
334
334
  `captureScripts()`, experiment with `rawRequest()`, promote a record with
335
- `inferRequestPlan()`, then replay with `request()`.
335
+ `inferRequestPlan()`, passing `transport` when you have already proven a portable
336
+ request path, then replay with `request()`.
336
337
 
337
- `route()` and `interceptScript()` are only available on owned local SDK sessions.
338
- They are not available on attached or cloud proxy sessions because they rely on a
339
- live in-process route handler.
338
+ `route()` and `interceptScript()` are available on owned local sessions and
339
+ cloud-managed sessions. They remain unavailable on attached sessions because
340
+ attached browsers do not provide an owned routing surface.