test(mobile): mount screens, declared device stores and declared OS state in the RPC recorder (#20884)

* test(mobile): mount screens, declared device stores and declared OS state in the RPC recorder

Three recorder capabilities, each with a test, plus four holdout sites recorded against main's
product code to prove them. No product source changes.

- JSX compiles through the automatic runtime, which is what product sources use; the classic
  `React.createElement` emit threw `React is not defined` on the first render of every screen.
- An unlisted package answers `__esModule` as undefined, so a default import loads and the refusal
  defers to the first real member read instead of killing the module at load.
- The substitutes table gains the inert view packages a screen needs, split into
  `screen-native-substitutes.ts` behind the same rule: only what a screen reads is listed.
- A scenario may declare `deviceStore` and `deviceState.notificationTray`. Reads resolve the
  declaration or null and never a write; writes are recorded as effects. Undeclared is unchanged.
- `screenMount` mounts a component with a crash boundary, so a reply partition that takes a screen
  down is a recording rather than a suite failure.

Every pre-existing golden re-records byte-identical except `recorderSha256`, recorded from a
detached worktree at the pinned baseline.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): declare the crash boundary's state type instead of asserting it

The changed-code casting gate counts `null as string | null` as a type assertion. Re-records every
golden from the pinned baseline, because the edit moves `recorderSha256`.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): refuse an unlisted native package by the member a mount reads

Both emitted interop helpers short-circuit on `__esModule`, so answering `true`
hands the refusing trap back unwrapped to `__importDefault` and `__importStar`.
All three import forms now load the importer and throw the named refusal at the
first member read, instead of a namespace import silently yielding `undefined`
and failing later at the call.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): run a task deferred past interactions instead of dropping it

An inert `runAfterInteractions` swallows whatever send the screen deferred, and
the recording then claims the screen sends nothing. It runs the task on a
microtask and returns the RN-shaped handle, so a cancel before the task runs
still prevents it. `Alert.alert` stays inert.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): re-record every golden for the two recorder engine changes

Only `recorderSha256` moves, from c58067de to a59b30e7. Recorded from a detached
worktree at the pinned baseline c6a7216984 with this branch's recorder and
scenario file overlaid, so no golden body is a claim about migrated source.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): stop exporting three recorder symbols with no importer

`projectScreenTree`, `DeviceEffect` and `DeclaredNotification` are only used by
the file that declares them.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): re-record every golden for the dropped exports

Only `recorderSha256` moves, from a59b30e7 to 4df43aef. Recorded from a detached
worktree at the pinned baseline c6a7216984 with this branch's recorder and
scenario file overlaid.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): list only the native members a recording is known to read

Instrumenting `partialNativeModule` across all 522 recordings found 68 declared
members and 23 read. The unread ones are gone: the whole react-native-svg,
react-native-reanimated and react-native-gesture-handler entries, two expo-router
hooks, and twelve react-native members including `InteractionManager` and
`Alert`. A member listed before a recording reads it turns a refusal that would
have forced a decision into a silent stand-in, which is how an inert scheduler
swallows a deferred send. Wave 3 re-adds each one with the recording that reads
it.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): order each effect against the sends with a send count

Sender and effects are two independent lists, so a send reordered ahead of a
device write moved neither. Scheduling the codex journal write on a timer instead
of awaiting it left all 520 goldens byte-identical; with `sent` it moves two.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): report a boundary crash through the effect sink

A hook mount projects the hook's own value and never a crash, so an adapter that
never reads `crash()` recorded a screen that quietly stopped rendering. The
boundary now reports to the effect sink as well, which forces a cleanup
checkpoint and puts the crash in the golden with no adapter cooperation. Two
reply-matrix goldens gain the effect. Also folds the two near-identical tree
walkers into one `walk(tree, visit)`.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): state the __esModule interop rule once

It was restated at four sites with four different answers. The canonical
paragraph is in `native-module-traps.ts`; the loader and the declared tray point
at it in a line. The loader comment also said the refusal names the member the
product read, which for a default import is `.default` instead.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): re-record for the send ordinal, the crash effect and the pruned table

`recorderSha256` moves on all 520. Of the 509 pre-existing goldens, 260 are
header-only and 249 gain `sent` on their effects and nothing else; two of this
branch's own reply-matrix goldens also gain a `screen.crash` effect. Recorded
from a detached worktree at the pinned baseline c6a7216984.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* fix(lint): drop Reflect.get from the native traps

main adopted anti-slop's `no-reflect-get` in #20874 and fixed the copy that lived
in `native-mounting-substitutes.ts`. This branch moved both traps into
`native-module-traps.ts`, so the rule lands here instead and the static-analysis
gate is red without the same narrowing.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): re-record for the Reflect.get narrowing

`recorderSha256` only, 8ca81bc6 to 0ddc0dc4. No golden body moves, which is the
claim the narrowing makes: the trap reads the same member it always did.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb

* test(mobile): re-record every golden at main's new baseline pin

One record from a detached worktree at `e7206f62a8` — main's pin since #20895 —
with this branch's `rpc-recording/`, `pilot-scenarios.json` and
`scripts/rpc-recording.mts` laid over it, so the goldens are recorded against
main's product tree rather than a branch that edits the engine.

All 520 goldens now share one `recorderSha256`
(`0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4`) and one
`baseline`. Against main, 262 move on the header alone and 247 also gain the
`sent` ordinal on an effect, which is the whole of the body change; the nine
goldens #20895 re-digested carry a byte-identical body, and the six the new
worktree catalog adapter (#20873) recorded keep main's observation.

Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
This commit is contained in:
Jinwoo Hong
2026-09-15 18:52:47 -04:00
committed by GitHub
parent 005616171d
commit 2fccacadbe
545 changed files with 61406 additions and 48417 deletions
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "0431ac82cbb8c60b16f4432fd0da7cff665485d668e512b20fc1168ec63db3fe",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "e97c6db772a70ee1912419ac67835b6074aaf9a341d4360389a11465f08092c5",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "10011c7c75e74d9c2e880c5458c9156264ae07e91956a80946ede1d4e684952a",
"platform": "darwin",
+1 -1
View File
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
"scenarioSha256": "23ffc912a432dcd3ff70be1903a8d518cf85634f27a2be6d21585963e338e7e3",
"platform": "darwin",
+16 -13
View File
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "b31992be2f91bd61fbe1b8a5400da3b7a56753564b0b0b2b38bc5d549812d693",
"platform": "darwin",
@@ -13,6 +13,11 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"02839f22d2db": {
"name": "projectMutating",
"value": false,
"sent": 1
},
"0c4dced3e005": {
"error": "",
"mutating": true,
@@ -41,10 +46,6 @@
"itemType": "ISSUE"
}
},
"2cd14f7121a5": {
"name": "projectMutating",
"value": false
},
"52a7a7239fbb": {
"name": "github.project.updateIssueBySlug#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"addLabels\":[\"recorded\"]}}}"
@@ -88,17 +89,19 @@
}
}
},
"7b2465eedefe": {
"name": "projectMutating",
"value": true,
"sent": 0
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"c2a271fc5d97": {
"name": "projectMutating",
"value": true
},
"d330309fabb3": {
"a7b76954b136": {
"name": "projectRowDetailError",
"value": "Cannot read properties of null (reading 'ok')"
"value": "Cannot read properties of null (reading 'ok')",
"sent": 1
},
"e5673036d45e": {
"name": "github.project.updateIssueBySlug#1",
@@ -153,7 +156,7 @@
"submit": "9270aeb7d9c6"
},
"state": "0c4dced3e005",
"effects": ["c2a271fc5d97"]
"effects": ["7b2465eedefe"]
}
},
{
@@ -166,7 +169,7 @@
"submit": "eb79a9b3682a"
},
"state": "204a5c5728c2",
"effects": ["c2a271fc5d97", "d330309fabb3", "2cd14f7121a5"]
"effects": ["7b2465eedefe", "a7b76954b136", "02839f22d2db"]
}
}
]
+28 -23
View File
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "130e493fcd7765e037405f59e6cc78a0cc1793b1ae092cad933ff9d5a9df8b7a",
"platform": "darwin",
@@ -48,13 +48,10 @@
}
}
},
"1696f2f90218": {
"0e0abca05602": {
"name": "detailError",
"value": "comments transport error"
},
"3b01c25bcd45": {
"name": "detailError",
"value": ""
"value": "comments transport error",
"sent": 2
},
"3cb9a384ce0e": {
"name": "linear.issueComments#1",
@@ -121,6 +118,11 @@
}
}
},
"56d172ecd2fe": {
"name": "detailLoading",
"value": true,
"sent": 0
},
"780aaf1d97be": {
"error": "",
"loading": true,
@@ -128,19 +130,17 @@
"$rpc": "null"
}
},
"7d21147e56c1": {
"name": "detailLoading",
"value": true
},
"7d341b2cb946": {
"9bd1de5d9753": {
"name": "detailPayload",
"value": {
"$rpc": "null"
}
},
"sent": 0
},
"91a1c8142e23": {
"name": "detailLoading",
"value": false
"9d6ce9f28401": {
"name": "detailError",
"value": "",
"sent": 0
},
"bb215a1eb59b": {
"name": "linear.getIssue#1",
@@ -158,6 +158,11 @@
"$rpc": "undefined"
}
},
"ee0c4638d266": {
"name": "detailLoading",
"value": false,
"sent": 2
},
"fc4ce176400a": {
"name": "linear.getIssue#1",
"args": [
@@ -197,7 +202,7 @@
"mount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -209,7 +214,7 @@
"mount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -222,11 +227,11 @@
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
}
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "95f377bc4d8bf1248cafed26b2e9f425ad37e8d3c99e354bd6a8c67eb9bd9b1b",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "5071188ee492a4ced5be793b2dab32baa9750ee6535128635f274fd79198e2f1",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "eb2294c30af70ebc2bac092dc5105249ae8cf1941f750406622f7ff6dd70cc1b",
"platform": "darwin",
@@ -21,6 +21,13 @@
"name": "browser.keyboardInsertText#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keyboardInsertText\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"text\":\"hello\"}}"
},
"5fe64ef6c1f3": {
"name": "toast",
"value": {
"message": "Sent"
},
"sent": 1
},
"770254847b6a": {
"name": "browser.keyboardInsertText#1",
"args": [
@@ -67,12 +74,6 @@
"keyboardValue": "",
"pointerModifiers": []
},
"c20546e0857f": {
"name": "toast",
"value": {
"message": "Sent"
}
},
"c532c7fdcc69": {
"name": "browser.keypress#1",
"args": [
@@ -131,7 +132,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
}
]
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "73faa87b359a11959543542016295bb6b36a10934dd99ad5c1a77a4290a608cd",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "20779e28880cf62340bc34cef8f40a49311e11262ac069df909743da9b5500ff",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "e1bc21248ccff45ff217e385a51618b6f5724c037bfbefa03bb76a48dd4d793b",
"platform": "darwin",
@@ -0,0 +1,288 @@
{
"operation": "accounts.codex-reset-credit",
"family": "components.codex-reset-credit",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e",
"scenarioSha256": "00260be9809576607ac91bfacd9fa6cc4f8a190c6b88804c977ea07d36d7162e",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"0a07efb53f1e": {
"settled": {
"$rpc": "null"
}
},
"60304d1e19bb": {
"settled": {
"attemptJournalRetained": false,
"outcome": "reset"
}
},
"90f55bfe00c2": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"95625d997965": {
"name": "accounts.consumeCodexResetCredit#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.consumeCodexResetCredit\",\"params\":{\"idempotencyKey\":\"00000000-0000-4000-8000-000000000001\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"}}}"
},
"ab755576c214": {
"name": "device-store.setItem",
"value": {
"key": "orca:codex-reset-credit-attempt:v1:0832055c2fa90e8e145c588ad4db656a2fc2840ed2e851a28494eae769db9b3e",
"value": "{\"v\":1,\"hostId\":\"host-1\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"},\"idempotencyKey\":\"00000000-0000-4000-8000-000000000001\"}"
},
"sent": 0
},
"c4a98628ea44": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"outcome": "reset",
"scope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"snapshot": {
"claude": {
"accounts": [],
"activeAccountId": {
"$rpc": "null"
}
},
"codex": {
"accounts": [
{
"email": "codex@example.test",
"id": "codex-1",
"updatedAt": 1700000000000
}
],
"activeAccountId": "codex-1",
"activeAccountIdsByRuntime": {
"host": "codex-1",
"wsl": {}
}
},
"rateLimits": {
"claude": {
"$rpc": "null"
},
"codex": {
"error": {
"$rpc": "null"
},
"provider": "codex",
"rateLimitResetCredits": {
"availableCount": 1
},
"session": {
"$rpc": "null"
},
"status": "ok",
"updatedAt": 1700000000000,
"weekly": {
"$rpc": "null"
}
},
"inactiveClaudeAccounts": [],
"inactiveCodexAccounts": []
}
}
}
}
}
},
"fed9e1669a83": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"attemptJournalRetained": false,
"outcome": "reset",
"scope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"snapshot": {
"claude": {
"accounts": [],
"activeAccountId": {
"$rpc": "null"
}
},
"codex": {
"accounts": [
{
"email": "codex@example.test",
"id": "codex-1",
"updatedAt": 1700000000000
}
],
"activeAccountId": "codex-1",
"activeAccountIdsByRuntime": {
"host": "codex-1",
"wsl": {}
}
},
"rateLimits": {
"claude": {
"$rpc": "null"
},
"claudeTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"codex": {
"error": {
"$rpc": "null"
},
"provider": "codex",
"rateLimitResetCredits": {
"availableCount": 1
},
"session": {
"$rpc": "null"
},
"status": "ok",
"updatedAt": 1700000000000,
"weekly": {
"$rpc": "null"
}
},
"codexTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"inactiveClaudeAccounts": [],
"inactiveCodexAccounts": []
}
}
}
}
},
"recording": {
"scenario": "codex-reset-credit-consumed",
"checkpoints": [
{
"id": "requested",
"observation": {
"sender": ["90f55bfe00c2"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "9270aeb7d9c6"
},
"state": "0a07efb53f1e",
"effects": ["ab755576c214"]
}
},
{
"id": "consumed",
"observation": {
"sender": ["c4a98628ea44"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "fed9e1669a83"
},
"state": "60304d1e19bb",
"effects": ["ab755576c214"]
}
}
]
}
}
@@ -0,0 +1,287 @@
{
"operation": "accounts.codex-reset-credit",
"family": "components.codex-reset-credit",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e",
"scenarioSha256": "d85a4031b701e563941afcdd7375cf78a1ee1487a0dab722f8516c2bc8d3dcee",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"074c5080c062": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"attemptJournalRetained": false,
"outcome": "alreadyRedeemed",
"scope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"snapshot": {
"claude": {
"accounts": [],
"activeAccountId": {
"$rpc": "null"
}
},
"codex": {
"accounts": [
{
"email": "codex@example.test",
"id": "codex-1",
"updatedAt": 1700000000000
}
],
"activeAccountId": "codex-1",
"activeAccountIdsByRuntime": {
"host": "codex-1",
"wsl": {}
}
},
"rateLimits": {
"claude": {
"$rpc": "null"
},
"claudeTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"codex": {
"error": {
"$rpc": "null"
},
"provider": "codex",
"rateLimitResetCredits": {
"availableCount": 1
},
"session": {
"$rpc": "null"
},
"status": "ok",
"updatedAt": 1700000000000,
"weekly": {
"$rpc": "null"
}
},
"codexTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"inactiveClaudeAccounts": [],
"inactiveCodexAccounts": []
}
}
}
},
"0a07efb53f1e": {
"settled": {
"$rpc": "null"
}
},
"0e5764df4bfd": {
"settled": {
"attemptJournalRetained": false,
"outcome": "alreadyRedeemed"
}
},
"1c9f0c57c36d": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "11111111-1111-4111-8111-111111111111"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"outcome": "alreadyRedeemed",
"scope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"snapshot": {
"claude": {
"accounts": [],
"activeAccountId": {
"$rpc": "null"
}
},
"codex": {
"accounts": [
{
"email": "codex@example.test",
"id": "codex-1",
"updatedAt": 1700000000000
}
],
"activeAccountId": "codex-1",
"activeAccountIdsByRuntime": {
"host": "codex-1",
"wsl": {}
}
},
"rateLimits": {
"claude": {
"$rpc": "null"
},
"codex": {
"error": {
"$rpc": "null"
},
"provider": "codex",
"rateLimitResetCredits": {
"availableCount": 1
},
"session": {
"$rpc": "null"
},
"status": "ok",
"updatedAt": 1700000000000,
"weekly": {
"$rpc": "null"
}
},
"inactiveClaudeAccounts": [],
"inactiveCodexAccounts": []
}
}
}
}
}
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"b9cf7ce248dc": {
"name": "accounts.consumeCodexResetCredit#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.consumeCodexResetCredit\",\"params\":{\"idempotencyKey\":\"11111111-1111-4111-8111-111111111111\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"}}}"
},
"c19953b572ef": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "11111111-1111-4111-8111-111111111111"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"c55ed0a410f8": {
"name": "device-store.removeItem",
"value": {
"key": "orca:codex-reset-credit-attempt:v1:0832055c2fa90e8e145c588ad4db656a2fc2840ed2e851a28494eae769db9b3e"
},
"sent": 1
}
},
"recording": {
"scenario": "codex-reset-credit-resumed",
"checkpoints": [
{
"id": "requested",
"observation": {
"sender": ["c19953b572ef"],
"payloads": ["b9cf7ce248dc"],
"settlements": {
"confirm": "9270aeb7d9c6"
},
"state": "0a07efb53f1e",
"effects": []
}
},
{
"id": "consumed",
"observation": {
"sender": ["1c9f0c57c36d"],
"payloads": ["b9cf7ce248dc"],
"settlements": {
"confirm": "074c5080c062"
},
"state": "0e5764df4bfd",
"effects": ["c55ed0a410f8"]
}
}
]
}
}
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "88570b9d2376863c7f88d7ed8c745a5fb771deddbc7409f8944fa861dd4bdce9",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "d4052f119c7ed68dc922c8beeb0074701f1532b10e48e284fb71aa165a17e437",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "2e0d3021621698b63117e250dd5e9762b5bfb3dc1911e27c510e9539bd2ee6c9",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "82b891c7a7a2f255e2d22a372ee6112c9cc1f650259244e87f2e8c1356e97e5f",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "b7579013e65f0f5fe503c10cf2294cb9d4ac1938108275de001db6e02cf2cc21",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "6c71b0f217a464dffbc6f5736605b840edac74ebaf0664edc0ab85984bb64328",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "3e7fa054f77587b9ac24b6732a9926273b0f2ff35a266e633d0ccd1dada932cc",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "d1b04fe2945a2799ac8465d8fd9e45ab790ae29b401a0cf4fef68ebc5fa3cc76",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "fa0a81462196458fdded5b7c00aa4e73975c2111afdd8dac115871490a481da2",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "182f37fbe6ae7c0694b50d603ecd4a03bc9a8c7c9738ebb775b47eb5f3b9660f",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
"scenarioSha256": "538b68485a2268d311fcc7e13ff1a3e446ba4aa010bc18633af8e938a6688257",
"platform": "darwin",
@@ -0,0 +1,201 @@
{
"operation": "files.explorer-screen",
"family": "files.explorer-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07",
"scenarioSha256": "ec02d3f76085619fad35231e12654ec6e926e423c6799fd0df53708743000612",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"195987bc4ef2": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"1a3946e517d4": {
"name": "files.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:wt-files\"}}"
},
"30859af566b0": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "method_not_found",
"message": "Unknown method"
},
"id": "frame-1",
"ok": false
}
}
},
"80bd28a48dda": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"files": [
{
"basename": "README.md",
"kind": "text",
"relativePath": "README.md"
},
{
"basename": "app.ts",
"kind": "text",
"relativePath": "src/app.ts"
}
],
"totalCount": 2,
"truncated": true
}
}
}
},
"b5b1bc83b44d": {
"name": "files.readDir#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}"
},
"b85511fb8929": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"FlatList": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 3
},
"labels": ["Back to session"],
"rows": ["dir:src", "file:README.md"],
"text": ["Files", "orca-files", " - Showing first 5000"]
},
"e91880eefe86": {
"crash": {
"$rpc": "null"
},
"elements": {
"ActivityIndicator": 1,
"ChevronLeft": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files"]
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
}
},
"recording": {
"scenario": "files-explorer-legacy-fallback",
"checkpoints": [
{
"id": "loading",
"observation": {
"sender": ["195987bc4ef2"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "e91880eefe86",
"effects": []
}
},
{
"id": "legacy-listed",
"observation": {
"sender": ["30859af566b0", "80bd28a48dda"],
"payloads": ["b5b1bc83b44d", "1a3946e517d4"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "b85511fb8929",
"effects": []
}
}
]
}
}
@@ -0,0 +1,157 @@
{
"operation": "files.explorer-screen",
"family": "files.explorer-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07",
"scenarioSha256": "0b87a230cf1c4219e415c840a088502c8bda7cd2fb525bde1a83a5903d6fd96b",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"195987bc4ef2": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"1fac8f3b8f44": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"FlatList": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 3
},
"labels": ["Back to session"],
"rows": ["dir:src", "file:README.md"],
"text": ["Files", "orca-files"]
},
"23a7ef6123a7": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": [
{
"isDirectory": true,
"name": "src"
},
{
"isDirectory": false,
"name": "README.md"
}
]
}
}
},
"b5b1bc83b44d": {
"name": "files.readDir#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}"
},
"e91880eefe86": {
"crash": {
"$rpc": "null"
},
"elements": {
"ActivityIndicator": 1,
"ChevronLeft": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files"]
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
}
},
"recording": {
"scenario": "files-explorer-readdir",
"checkpoints": [
{
"id": "loading",
"observation": {
"sender": ["195987bc4ef2"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "e91880eefe86",
"effects": []
}
},
{
"id": "listed",
"observation": {
"sender": ["23a7ef6123a7"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "1fac8f3b8f44",
"effects": []
}
}
]
}
}
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "8d24f52eb4194c3bc5d9f0dcabade6d7a09c066f79f911657647ed21dbecb3b1",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "4cd0be3a1c338b4b68211c717fd10738653c553fdb3b072db6706ff8175a8bd1",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "dd8b7a0916a84c7d763a163759c02210ae99f8fbccfccaa98796b8610c5da97c",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "d15c1f4e0f95b5c49a8f889d2d37458225293d7306c8439690d972d2df4c29c0",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "055f3b45442c1736f10ee98c493e2ece1885fdb68d925ee627e2ba20853537e0",
"platform": "darwin",
@@ -140,6 +140,19 @@
}
}
},
"63abc54b3e87": {
"name": "artifact-source-refreshed",
"value": {
"absolutePath": "/logs/run.txt",
"cwd": "/logs",
"grantId": "grant-2",
"pathText": "run.txt",
"source": "terminalArtifact",
"terminalHandle": "terminal-1",
"worktreeId": "workspace-1"
},
"sent": 2
},
"645c5754be42": {
"preview": "unloaded"
},
@@ -152,18 +165,6 @@
"truncated": false
}
},
"813fe48569a6": {
"name": "artifact-source-refreshed",
"value": {
"absolutePath": "/logs/run.txt",
"cwd": "/logs",
"grantId": "grant-2",
"pathText": "run.txt",
"source": "terminalArtifact",
"terminalHandle": "terminal-1",
"worktreeId": "workspace-1"
}
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
@@ -232,7 +233,7 @@
"load": "500d95d47092"
},
"state": "784ea351e5b2",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
}
]
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "0ffaffb472b663e08a42317d799a2a000211dda5b127fb21cc64f04f73800130",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "bcba4a7d9d929078c5ed80fc7e1acd45859d0b4c559767a919b0396dc6a70a3e",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "8b5c3e87d989966d7b252f19a537040cd5078ba9355a824e7e49af3424390a3e",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "6e124d16173074d851d58593b20b25889ed13a3d8021c08fbed53b85a7d3196e",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "b636221f719dae19a3af6772b687b0bcb300c9910645d23e98c309578ec1c5c5",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b",
"scenarioSha256": "bd5f4e5f24a29d96c4c98950691c6571918332f71ebb1f29ee97a9abc857ac29",
"platform": "darwin",
@@ -13,15 +13,6 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"0632d58191fb": {
"name": "stats",
"value": {
"host-1": {
"activeWorktrees": 1,
"totalWorktrees": 3
}
}
},
"0ebcc6f6a4cb": {
"name": "stats.summary#1",
"args": [
@@ -57,6 +48,16 @@
}
},
"44136fa355b3": {},
"7836888bb6c0": {
"name": "stats",
"value": {
"host-1": {
"activeWorktrees": 1,
"totalWorktrees": 3
}
},
"sent": 1
},
"7bf81b1e94c5": {
"name": "stats.summary#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"stats.summary\"}"
@@ -125,7 +126,7 @@
"load": "eb79a9b3682a"
},
"state": "9a84a7559023",
"effects": ["0632d58191fb"]
"effects": ["7836888bb6c0"]
}
}
]
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b",
"scenarioSha256": "1ee6031227fa3efd5b36841afa60f7b2264eacdd9c6126e5851d5acb39ffaadd",
"platform": "darwin",
@@ -13,18 +13,15 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"1207e1b06040": {
"name": "workspaceStatuses",
"value": [],
"sent": 1
},
"292b632037a0": {
"name": "ui.set#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"sortBy\":\"name\"}}"
},
"3059ce80d86a": {
"name": "collapsedGroups",
"value": []
},
"34925f64c9a6": {
"name": "sortMode",
"value": "name"
},
"5907841fc56d": {
"name": "ui.get#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}"
@@ -54,6 +51,11 @@
"startedAt": 0
}
},
"6816213c2ede": {
"name": "collapsedGroups",
"value": [],
"sent": 1
},
"78f2fbcd0185": {
"name": "ui.set#1",
"args": [
@@ -87,23 +89,10 @@
}
}
},
"7eaddd04bcdd": {
"name": "workspaceStatuses",
"value": []
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"9527461faeb1": {
"name": "filters",
"value": {
"alwaysShowDefaultBranch": true,
"filterRepoIds": [],
"hideDefaultBranch": false,
"hideSleeping": true
}
},
"a424515cabc9": {
"name": "ui.get#1",
"args": [
@@ -141,6 +130,11 @@
}
}
},
"a8115697f295": {
"name": "sortMode",
"value": "name",
"sent": 1
},
"ba2035345a68": {
"collapsed": [],
"filters": {
@@ -165,9 +159,20 @@
"sortMode": "recent",
"statuses": []
},
"e9a3acf203c6": {
"d88f3b1774b1": {
"name": "filters",
"value": {
"alwaysShowDefaultBranch": true,
"filterRepoIds": [],
"hideDefaultBranch": false,
"hideSleeping": true
},
"sent": 1
},
"e0a092c9ae88": {
"name": "groupMode",
"value": "repo"
"value": "repo",
"sent": 1
},
"eb79a9b3682a": {
"status": "fulfilled",
@@ -206,16 +211,16 @@
},
"state": "ba2035345a68",
"effects": [
"e9a3acf203c6",
"34925f64c9a6",
"7eaddd04bcdd",
"3059ce80d86a",
"9527461faeb1",
"e9a3acf203c6",
"34925f64c9a6",
"7eaddd04bcdd",
"3059ce80d86a",
"9527461faeb1"
"e0a092c9ae88",
"a8115697f295",
"1207e1b06040",
"6816213c2ede",
"d88f3b1774b1",
"e0a092c9ae88",
"a8115697f295",
"1207e1b06040",
"6816213c2ede",
"d88f3b1774b1"
]
}
}
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639",
"scenarioSha256": "720add498c79425ca8efc9764fd5d8307fe33bc891842604cfc899f770b79811",
"platform": "darwin",
@@ -48,9 +48,27 @@
}
}
},
"0ebfc1859f18": {
"name": "pinnedIds",
"value": ["wt-1"]
"088a989c038b": {
"name": "worktrees",
"value": [
{
"branch": "feature/pin",
"displayName": "marlin",
"hasAttachedPty": false,
"isPinned": true,
"linkedPR": {
"$rpc": "null"
},
"liveTerminalCount": 0,
"path": "/repos/marlin/wt-1",
"preview": "",
"repo": "marlin",
"repoId": "repo-1",
"unread": false,
"worktreeId": "wt-1"
}
],
"sent": 0
},
"2b635c2a4fbb": {
"name": "worktree.rm#1",
@@ -86,6 +104,28 @@
}
}
},
"3e27f9568029": {
"name": "lastKnownWorktrees",
"value": [
{
"branch": "feature/pin",
"displayName": "marlin",
"hasAttachedPty": false,
"isPinned": true,
"linkedPR": {
"$rpc": "null"
},
"liveTerminalCount": 0,
"path": "/repos/marlin/wt-1",
"preview": "",
"repo": "marlin",
"repoId": "repo-1",
"unread": false,
"worktreeId": "wt-1"
}
],
"sent": 0
},
"4caf7515e224": {
"name": "worktree.set#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:wt-1\",\"isPinned\":true}}"
@@ -124,35 +164,10 @@
}
}
},
"5c186d67b84c": {
"name": "lastKnownWorktrees",
"value": []
},
"69d698d4f352": {
"name": "worktree.rm#1",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}"
},
"6cfdae6737f2": {
"name": "lastKnownWorktrees",
"value": [
{
"branch": "feature/pin",
"displayName": "marlin",
"hasAttachedPty": false,
"isPinned": true,
"linkedPR": {
"$rpc": "null"
},
"liveTerminalCount": 0,
"path": "/repos/marlin/wt-1",
"preview": "",
"repo": "marlin",
"repoId": "repo-1",
"unread": false,
"worktreeId": "wt-1"
}
]
},
"6e959a9dd70e": {
"confirmRemoveHost": false,
"lastKnownWorktrees": [],
@@ -161,6 +176,16 @@
"routeActionState": {},
"worktrees": []
},
"71246d169f18": {
"name": "worktrees",
"value": [],
"sent": 2
},
"8839215bd1a5": {
"name": "lastKnownWorktrees",
"value": [],
"sent": 2
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
@@ -209,9 +234,15 @@
}
]
},
"b1509905fc66": {
"a970c9a870bb": {
"name": "pinnedIds",
"value": ["wt-1"],
"sent": 0
},
"bb44ad78848e": {
"name": "optimisticActiveWorktreeIdentity",
"value": "|wt-1"
"value": "|wt-1",
"sent": 1
},
"bf2b36bda2d2": {
"name": "worktree.set#1",
@@ -243,31 +274,6 @@
"name": "worktree.activate#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.activate\",\"params\":{\"worktree\":\"id:wt-1\",\"notifyClients\":false,\"navigation\":\"caller\"}}"
},
"cbf8280fdbe7": {
"name": "worktrees",
"value": [
{
"branch": "feature/pin",
"displayName": "marlin",
"hasAttachedPty": false,
"isPinned": true,
"linkedPR": {
"$rpc": "null"
},
"liveTerminalCount": 0,
"path": "/repos/marlin/wt-1",
"preview": "",
"repo": "marlin",
"repoId": "repo-1",
"unread": false,
"worktreeId": "wt-1"
}
]
},
"d440bd87d1ce": {
"name": "worktrees",
"value": []
},
"e3e3c397a66a": {
"name": "worktree.rm#1",
"args": [
@@ -316,7 +322,7 @@
"toggle-pin": "eb79a9b3682a"
},
"state": "9a9b0d6699b2",
"effects": ["cbf8280fdbe7", "6cfdae6737f2", "0ebfc1859f18"]
"effects": ["088a989c038b", "3e27f9568029", "a970c9a870bb"]
}
},
{
@@ -332,12 +338,12 @@
},
"state": "6e959a9dd70e",
"effects": [
"cbf8280fdbe7",
"6cfdae6737f2",
"0ebfc1859f18",
"b1509905fc66",
"d440bd87d1ce",
"5c186d67b84c"
"088a989c038b",
"3e27f9568029",
"a970c9a870bb",
"bb44ad78848e",
"71246d169f18",
"8839215bd1a5"
]
}
},
@@ -354,12 +360,12 @@
},
"state": "6e959a9dd70e",
"effects": [
"cbf8280fdbe7",
"6cfdae6737f2",
"0ebfc1859f18",
"b1509905fc66",
"d440bd87d1ce",
"5c186d67b84c"
"088a989c038b",
"3e27f9568029",
"a970c9a870bb",
"bb44ad78848e",
"71246d169f18",
"8839215bd1a5"
]
}
}
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639",
"scenarioSha256": "5dd5e7eabaabba1e471b13958f59891c3b28f553087c96315598c83a14ded7e7",
"platform": "darwin",
@@ -13,29 +13,7 @@
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"3fd02e693647": {
"name": "worktree.rm#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}"
},
"5c186d67b84c": {
"name": "lastKnownWorktrees",
"value": []
},
"8056533b940f": {
"confirmRemoveHost": false,
"lastKnownWorktrees": [],
"optimisticActiveWorktreeIdentity": {
"$rpc": "null"
},
"pinnedIds": [],
"routeActionState": {},
"worktrees": []
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"a7c564546e94": {
"3eaa2fc6fe33": {
"name": "worktrees",
"value": [
{
@@ -54,7 +32,58 @@
"unread": false,
"worktreeId": "wt-1"
}
]
],
"sent": 1
},
"3fd02e693647": {
"name": "worktree.rm#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}"
},
"4390dbd60885": {
"name": "lastKnownWorktrees",
"value": [],
"sent": 0
},
"77c8169fffce": {
"name": "worktrees",
"value": [],
"sent": 0
},
"8056533b940f": {
"confirmRemoveHost": false,
"lastKnownWorktrees": [],
"optimisticActiveWorktreeIdentity": {
"$rpc": "null"
},
"pinnedIds": [],
"routeActionState": {},
"worktrees": []
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"ad493faf0d61": {
"name": "lastKnownWorktrees",
"value": [
{
"branch": "feature/pin",
"displayName": "marlin",
"hasAttachedPty": false,
"isPinned": false,
"linkedPR": {
"$rpc": "null"
},
"liveTerminalCount": 0,
"path": "/repos/marlin/wt-1",
"preview": "",
"repo": "marlin",
"repoId": "repo-1",
"unread": false,
"worktreeId": "wt-1"
}
],
"sent": 1
},
"bcb66b345fcd": {
"confirmRemoveHost": false,
@@ -100,31 +129,6 @@
}
]
},
"c777b17081dd": {
"name": "lastKnownWorktrees",
"value": [
{
"branch": "feature/pin",
"displayName": "marlin",
"hasAttachedPty": false,
"isPinned": false,
"linkedPR": {
"$rpc": "null"
},
"liveTerminalCount": 0,
"path": "/repos/marlin/wt-1",
"preview": "",
"repo": "marlin",
"repoId": "repo-1",
"unread": false,
"worktreeId": "wt-1"
}
]
},
"d440bd87d1ce": {
"name": "worktrees",
"value": []
},
"e3e3c397a66a": {
"name": "worktree.rm#1",
"args": [
@@ -208,7 +212,7 @@
"delete": "9270aeb7d9c6"
},
"state": "8056533b940f",
"effects": ["d440bd87d1ce", "5c186d67b84c"]
"effects": ["77c8169fffce", "4390dbd60885"]
}
},
{
@@ -221,7 +225,7 @@
"delete": "eb79a9b3682a"
},
"state": "bcb66b345fcd",
"effects": ["d440bd87d1ce", "5c186d67b84c", "a7c564546e94", "c777b17081dd"]
"effects": ["77c8169fffce", "4390dbd60885", "3eaa2fc6fe33", "ad493faf0d61"]
}
}
]
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
"scenarioSha256": "d6c57a5153d915f0a0c0fd9e305cac70b41b7eb8be226fc865227ebf1821e5d1",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "2d5c6dea28aa1a7bb9e4aa14a4c8441527d9ad401ad30161f05ea1f8da836bb2",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
"scenarioSha256": "3471f5bcd6923c7b8ba3a737bb45b5239689deb78c00e85a828f38a6d6d68a05",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
"scenarioSha256": "73a468d5c7a51c2dbb7af2642f0050d05d861fce29295460c48d7c51f86bf57f",
"platform": "darwin",
+180 -158
View File
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "8be12d116865d27e8dfd37921d2c723d63da101ec1197b1f5b2d9510838e1943",
"platform": "darwin",
@@ -48,17 +48,19 @@
}
}
},
"1696f2f90218": {
"0e0abca05602": {
"name": "detailError",
"value": "comments transport error"
"value": "comments transport error",
"sent": 2
},
"2b9e0df88a93": {
"name": "linear.getIssue#2",
"json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}"
},
"3b01c25bcd45": {
"39ca42c97176": {
"name": "detailError",
"value": ""
"value": "",
"sent": 2
},
"3cb9a384ce0e": {
"name": "linear.issueComments#1",
@@ -125,6 +127,23 @@
}
}
},
"56d172ecd2fe": {
"name": "detailLoading",
"value": true,
"sent": 0
},
"5ca77e9853cb": {
"name": "detailPayload",
"value": {
"$rpc": "null"
},
"sent": 2
},
"73a4beace1f0": {
"name": "detailLoading",
"value": true,
"sent": 2
},
"780aaf1d97be": {
"error": "",
"loading": true,
@@ -132,16 +151,6 @@
"$rpc": "null"
}
},
"7d21147e56c1": {
"name": "detailLoading",
"value": true
},
"7d341b2cb946": {
"name": "detailPayload",
"value": {
"$rpc": "null"
}
},
"8b45b8e00ec0": {
"name": "linear.getIssue#2",
"args": [
@@ -168,9 +177,17 @@
"startedAt": 0
}
},
"91a1c8142e23": {
"name": "detailLoading",
"value": false
"9bd1de5d9753": {
"name": "detailPayload",
"value": {
"$rpc": "null"
},
"sent": 0
},
"9d6ce9f28401": {
"name": "detailError",
"value": "",
"sent": 0
},
"9ea1594bdfc8": {
"name": "linear.issueComments#2",
@@ -218,6 +235,11 @@
"$rpc": "undefined"
}
},
"ee0c4638d266": {
"name": "detailLoading",
"value": false,
"sent": 2
},
"fc4ce176400a": {
"name": "linear.getIssue#1",
"args": [
@@ -257,7 +279,7 @@
"mount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -269,7 +291,7 @@
"mount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -283,12 +305,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -303,12 +325,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -323,12 +345,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -343,12 +365,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -363,12 +385,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -383,12 +405,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -403,12 +425,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -423,12 +445,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -443,14 +465,14 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -465,14 +487,14 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -486,7 +508,7 @@
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -499,7 +521,7 @@
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -512,7 +534,7 @@
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -527,12 +549,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -546,7 +568,7 @@
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -559,7 +581,7 @@
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -572,7 +594,7 @@
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -587,12 +609,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -606,7 +628,7 @@
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -619,7 +641,7 @@
"lifecycle-unmount": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -634,12 +656,12 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -654,11 +676,11 @@
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
},
@@ -673,11 +695,11 @@
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
},
@@ -693,14 +715,14 @@
},
"state": "780aaf1d97be",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23",
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266",
"5ca77e9853cb",
"39ca42c97176",
"73a4beace1f0"
]
}
},
@@ -714,7 +736,7 @@
"lifecycle-blur": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -727,7 +749,7 @@
"lifecycle-blur": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -741,11 +763,11 @@
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
},
@@ -759,7 +781,7 @@
"lifecycle-blur": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -772,7 +794,7 @@
"lifecycle-blur": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -786,11 +808,11 @@
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
},
@@ -804,7 +826,7 @@
"lifecycle-blur": "eb79a9b3682a"
},
"state": "780aaf1d97be",
"effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"]
"effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"]
}
},
{
@@ -818,11 +840,11 @@
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
},
@@ -837,11 +859,11 @@
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
},
@@ -856,11 +878,11 @@
},
"state": "42903545f0f8",
"effects": [
"7d341b2cb946",
"3b01c25bcd45",
"7d21147e56c1",
"1696f2f90218",
"91a1c8142e23"
"9bd1de5d9753",
"9d6ce9f28401",
"56d172ecd2fe",
"0e0abca05602",
"ee0c4638d266"
]
}
}
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
"scenarioSha256": "46bbafcc57fe2e3aee41a14bc26a0375b7b56e58030705fe4c28841a272b2560",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "eb80283956c93849778f23cbabf1dbf83b72744197af4f6f50335b2fc1590d87",
"platform": "darwin",
File diff suppressed because it is too large Load Diff
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "136fb1d8d5925ad12ba22f4dd6c72573a9ad03b6a6ec8308668f0d9cd71aa36d",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "efb8d1cd2a2ff0ade4cdc48a1aacec565e33b405bbe95c100b86534cdde49740",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "a5698ca720dad08561a509c9c18f7586611fc68c58bd86791f4fcefc7915ab1f",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "9cae732e4227d4c2fe874a5fb2e104552c16cbc91b59523de8fd46454660cde8",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "fc3411f3f4cb58b6a1338ea943f59446fda7819931814e9ab002e35e2de42462",
"platform": "darwin",
@@ -93,6 +93,13 @@
"name": "browser.keyboardInsertText#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keyboardInsertText\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"text\":\"hello\"}}"
},
"5fe64ef6c1f3": {
"name": "toast",
"value": {
"message": "Sent"
},
"sent": 1
},
"7609d27b7093": {
"name": "browser.keyboardInsertText#1",
"args": [
@@ -322,12 +329,6 @@
}
}
},
"c20546e0857f": {
"name": "toast",
"value": {
"message": "Sent"
}
},
"c532c7fdcc69": {
"name": "browser.keypress#1",
"args": [
@@ -492,7 +493,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -506,7 +507,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -534,7 +535,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -548,7 +549,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -562,7 +563,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "c1df871e84d4399e9a447caaff244241933c0dfc7c3d5e114d022e54b0ed7ed4",
"platform": "darwin",
@@ -91,6 +91,13 @@
}
}
},
"5fe64ef6c1f3": {
"name": "toast",
"value": {
"message": "Sent"
},
"sent": 1
},
"72b0cf4a3571": {
"name": "browser.keypress#1",
"args": [
@@ -307,12 +314,6 @@
}
}
},
"c20546e0857f": {
"name": "toast",
"value": {
"message": "Sent"
}
},
"c2f31140b989": {
"name": "browser.keypress#1",
"args": [
@@ -481,7 +482,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -495,7 +496,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -509,7 +510,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -523,7 +524,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -537,7 +538,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -551,7 +552,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -565,7 +566,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -579,7 +580,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -593,7 +594,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -607,7 +608,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
},
{
@@ -621,7 +622,7 @@
"keypress": "eb79a9b3682a"
},
"state": "8160e8872519",
"effects": ["c20546e0857f"]
"effects": ["5fe64ef6c1f3"]
}
}
]
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "74adcaa668164bc7430e9984f100988bf72975dc8ebbe6b52fac34367cf31a4d",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "db84000f262c6812db55b5f735ab7fe32c914e9ab52b9a7ccc0c21386b782298",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "35ef15037791fa2e87456ee4585ddaaa00fbf5cde578d7c0b5df143cd40dd9a1",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "47868afdd6d593526ea6f0a0a1e19377ee8306ab70636f2dace0da9ef2454397",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "c1283bbfb340e968bbd4c86ac63489995d6191290751316228d27779dc6a2c55",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "092777c9ce457dcae95eafbe083c70510580569ac74e31c0d4224ac94b9fad76",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "06c2ad6d4b464f889a640be7a238f6d0ff7c54b0e93fb5ea22aaa856dadb0336",
"platform": "darwin",
@@ -0,0 +1,908 @@
{
"operation": "accounts.codex-reset-credit",
"family": "components.codex-reset-credit",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e",
"scenarioSha256": "cc6de73be00be072f9a3b7fd63459fd1a529c45d0916a67d5fe6d90dbee61e91",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"0a07efb53f1e": {
"settled": {
"$rpc": "null"
}
},
"1fe9cca0cfea": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true
}
}
},
"32a7c0ae7918": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "outer refused",
"isRpcDeliveryUnknown": false
}
},
"396ce6536d6c": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": "inner refused",
"ok": false
}
}
}
},
"3aec3f08d180": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": ""
},
"id": "frame-1",
"ok": false
}
}
},
"3e0977e026e9": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": {
"message": "inner refused"
},
"ok": false
}
}
}
},
"45c6bf0513f4": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": "outer refused"
},
"id": "frame-1",
"ok": false
}
}
},
"60304d1e19bb": {
"settled": {
"attemptJournalRetained": false,
"outcome": "reset"
}
},
"6e14949b9d4b": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "method_not_found",
"message": "Unknown method"
},
"id": "frame-1",
"ok": false
}
}
},
"90f55bfe00c2": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
},
"95625d997965": {
"name": "accounts.consumeCodexResetCredit#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.consumeCodexResetCredit\",\"params\":{\"idempotencyKey\":\"00000000-0000-4000-8000-000000000001\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"}}}"
},
"a7ee87932ad2": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "transport failure",
"isRpcDeliveryUnknown": true
}
}
},
"a947768bc0ed": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "transport failure",
"isRpcDeliveryUnknown": true
}
},
"ab755576c214": {
"name": "device-store.setItem",
"value": {
"key": "orca:codex-reset-credit-attempt:v1:0832055c2fa90e8e145c588ad4db656a2fc2840ed2e851a28494eae769db9b3e",
"value": "{\"v\":1,\"hostId\":\"host-1\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"},\"idempotencyKey\":\"00000000-0000-4000-8000-000000000001\"}"
},
"sent": 0
},
"b0762ae2d280": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "",
"isRpcDeliveryUnknown": true
}
}
},
"b948e8307e81": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Unknown method",
"isRpcDeliveryUnknown": false
}
},
"c4a98628ea44": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"outcome": "reset",
"scope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"snapshot": {
"claude": {
"accounts": [],
"activeAccountId": {
"$rpc": "null"
}
},
"codex": {
"accounts": [
{
"email": "codex@example.test",
"id": "codex-1",
"updatedAt": 1700000000000
}
],
"activeAccountId": "codex-1",
"activeAccountIdsByRuntime": {
"host": "codex-1",
"wsl": {}
}
},
"rateLimits": {
"claude": {
"$rpc": "null"
},
"codex": {
"error": {
"$rpc": "null"
},
"provider": "codex",
"rateLimitResetCredits": {
"availableCount": 1
},
"session": {
"$rpc": "null"
},
"status": "ok",
"updatedAt": 1700000000000,
"weekly": {
"$rpc": "null"
}
},
"inactiveClaudeAccounts": [],
"inactiveCodexAccounts": []
}
}
}
}
}
},
"c7584e82c72f": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "",
"isRpcDeliveryUnknown": true
}
},
"e1ee0a1ae721": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "Invalid reset response from host",
"isRpcDeliveryUnknown": false
}
},
"e418952ce431": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": "refused"
}
}
}
},
"ea4200bda9a6": {
"name": "accounts.consumeCodexResetCredit#1",
"args": [
{
"name": "method",
"value": "accounts.consumeCodexResetCredit"
},
{
"name": "params",
"value": {
"expectedScope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"idempotencyKey": "00000000-0000-4000-8000-000000000001"
}
},
{
"name": "options",
"value": {
"timeoutMs": 90000
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"$rpc": "null"
}
}
}
},
"f3b516f62081": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "",
"isRpcDeliveryUnknown": false
}
},
"fed9e1669a83": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"attemptJournalRetained": false,
"outcome": "reset",
"scope": {
"accountId": "codex-1",
"accountRevision": 1700000000000,
"offerRevision": "v1:[1,null,null,[],null,null,1700000000000]",
"target": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
}
},
"snapshot": {
"claude": {
"accounts": [],
"activeAccountId": {
"$rpc": "null"
}
},
"codex": {
"accounts": [
{
"email": "codex@example.test",
"id": "codex-1",
"updatedAt": 1700000000000
}
],
"activeAccountId": "codex-1",
"activeAccountIdsByRuntime": {
"host": "codex-1",
"wsl": {}
}
},
"rateLimits": {
"claude": {
"$rpc": "null"
},
"claudeTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"codex": {
"error": {
"$rpc": "null"
},
"provider": "codex",
"rateLimitResetCredits": {
"availableCount": 1
},
"session": {
"$rpc": "null"
},
"status": "ok",
"updatedAt": 1700000000000,
"weekly": {
"$rpc": "null"
}
},
"codexTarget": {
"runtime": "host",
"wslDistro": {
"$rpc": "null"
}
},
"inactiveClaudeAccounts": [],
"inactiveCodexAccounts": []
}
}
}
}
},
"recording": {
"scenario": "matrix-components.codex-reset-credit-accounts.consumecodexresetcredit-1",
"checkpoints": [
{
"id": "codex-reset-credit-consumed.prelude:requested",
"observation": {
"sender": ["90f55bfe00c2"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "9270aeb7d9c6"
},
"state": "0a07efb53f1e",
"effects": ["ab755576c214"]
}
},
{
"id": "codex-reset-credit-consumed.normal:consumed",
"observation": {
"sender": ["c4a98628ea44"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "fed9e1669a83"
},
"state": "60304d1e19bb",
"effects": ["ab755576c214"]
}
},
{
"id": "codex-reset-credit-consumed.result-absent:consumed",
"observation": {
"sender": ["1fe9cca0cfea"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "e1ee0a1ae721"
},
"state": "0a07efb53f1e",
"effects": ["ab755576c214"]
}
},
{
"id": "codex-reset-credit-consumed.result-null:consumed",
"observation": {
"sender": ["ea4200bda9a6"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "e1ee0a1ae721"
},
"state": "0a07efb53f1e",
"effects": ["ab755576c214"]
}
},
{
"id": "codex-reset-credit-consumed.inner-ok-missing:consumed",
"observation": {
"sender": ["e418952ce431"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "e1ee0a1ae721"
},
"state": "0a07efb53f1e",
"effects": ["ab755576c214"]
}
},
{
"id": "codex-reset-credit-consumed.inner-false-string-error:consumed",
"observation": {
"sender": ["396ce6536d6c"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "e1ee0a1ae721"
},
"state": "0a07efb53f1e",
"effects": ["ab755576c214"]
}
},
{
"id": "codex-reset-credit-consumed.inner-false-object-error:consumed",
"observation": {
"sender": ["3e0977e026e9"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "e1ee0a1ae721"
},
"state": "0a07efb53f1e",
"effects": ["ab755576c214"]
}
},
{
"id": "codex-reset-credit-consumed.outer-refused:consumed",
"observation": {
"sender": ["45c6bf0513f4"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "32a7c0ae7918"
},
"state": "0a07efb53f1e",
"effects": ["ab755576c214"]
}
},
{
"id": "codex-reset-credit-consumed.outer-refused-no-message:consumed",
"observation": {
"sender": ["3aec3f08d180"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "f3b516f62081"
},
"state": "0a07efb53f1e",
"effects": ["ab755576c214"]
}
},
{
"id": "codex-reset-credit-consumed.method-not-found:consumed",
"observation": {
"sender": ["6e14949b9d4b"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "b948e8307e81"
},
"state": "0a07efb53f1e",
"effects": ["ab755576c214"]
}
},
{
"id": "codex-reset-credit-consumed.transport-rejection:consumed",
"observation": {
"sender": ["a7ee87932ad2"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "a947768bc0ed"
},
"state": "0a07efb53f1e",
"effects": ["ab755576c214"]
}
},
{
"id": "codex-reset-credit-consumed.transport-rejection-no-message:consumed",
"observation": {
"sender": ["b0762ae2d280"],
"payloads": ["95625d997965"],
"settlements": {
"confirm": "c7584e82c72f"
},
"state": "0a07efb53f1e",
"effects": ["ab755576c214"]
}
}
]
}
}
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "f88ee2f5d19b19cc53dca5180a9b5936a13a00a82e8a4636a5e895262b669dec",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "79a49cddf66935007afb9be8a30593b778f02237894e5fd4d2898b526fc125df",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "8b8f7fe7227d44330e216e0bf5d366c41b54d9bf76acfb24df2c1770984b9f27",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "6832d23c6500e4fcb20abe7c53bc4f5abe72180dc0ad747a4907b82d99bc75d0",
"platform": "darwin",
@@ -0,0 +1,622 @@
{
"operation": "workspace.repositories",
"family": "components.new-workspace-repositories",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "64c1772f0f95a3c43fbb14398a8804b2b4784f7f18874e4fd79767ae634c7faa",
"scenarioSha256": "95f7dbb11bca7203d29bd13230d4a286f49ff20596535163094e1bff73e7f3cb",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"06b63e0d9986": {
"name": "repo.list#1",
"args": [
{
"name": "method",
"value": "repo.list"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": "refused"
}
}
}
},
"06fc8e7b85d5": {
"name": "repo.list#1",
"args": [
{
"name": "method",
"value": "repo.list"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": ""
},
"id": "frame-1",
"ok": false
}
}
},
"26accd69bc48": {
"name": "repo.list#1",
"args": [
{
"name": "method",
"value": "repo.list"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"288dd3529eaf": {
"name": "repo.list#1",
"args": [
{
"name": "method",
"value": "repo.list"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"repos": [
{
"displayName": "alpha",
"id": "repo-a",
"path": "/tmp/repo-a"
},
{
"displayName": "beta",
"id": "repo-b",
"path": "/tmp/repo-b"
}
]
}
}
}
},
"2ebe4d776f9b": {
"name": "repo.list#1",
"args": [
{
"name": "method",
"value": "repo.list"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true
}
}
},
"2f24355c470f": {
"crash": "Cannot read properties of undefined (reading 'length')",
"loading": false,
"repos": {
"$rpc": "undefined"
},
"selected": {
"$rpc": "null"
}
},
"38e790fd9e9c": {
"name": "repo.list#1",
"args": [
{
"name": "method",
"value": "repo.list"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"$rpc": "null"
}
}
}
},
"4e8b4e3e814f": {
"crash": {
"$rpc": "null"
},
"loading": true,
"repos": [],
"selected": {
"$rpc": "null"
}
},
"6a50de773e54": {
"crash": {
"$rpc": "null"
},
"loading": false,
"repos": [],
"selected": {
"$rpc": "null"
}
},
"6bdbf70bafa2": {
"name": "repo.list#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}"
},
"6e5c6593dad8": {
"name": "repo.list#1",
"args": [
{
"name": "method",
"value": "repo.list"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "transport failure",
"isRpcDeliveryUnknown": true
}
}
},
"9d3fa0db2665": {
"name": "repo.list#1",
"args": [
{
"name": "method",
"value": "repo.list"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": {
"message": "inner refused"
},
"ok": false
}
}
}
},
"b9f0f1e94cd9": {
"name": "repo.list#1",
"args": [
{
"name": "method",
"value": "repo.list"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": "outer refused"
},
"id": "frame-1",
"ok": false
}
}
},
"cc1facdf008c": {
"name": "repo.list#1",
"args": [
{
"name": "method",
"value": "repo.list"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "",
"isRpcDeliveryUnknown": true
}
}
},
"e341bd05e614": {
"name": "repo.list#1",
"args": [
{
"name": "method",
"value": "repo.list"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "method_not_found",
"message": "Unknown method"
},
"id": "frame-1",
"ok": false
}
}
},
"e3855d3cb5ae": {
"name": "screen.crash",
"value": {
"message": "Cannot read properties of undefined (reading 'length')"
},
"sent": 1
},
"eac6e56c2d2c": {
"crash": {
"$rpc": "null"
},
"loading": false,
"repos": ["repo-a", "repo-b"],
"selected": "repo-b"
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
},
"f96e83d33565": {
"name": "repo.list#1",
"args": [
{
"name": "method",
"value": "repo.list"
},
{
"name": "params",
"value": {
"$rpc": "absent"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": "inner refused",
"ok": false
}
}
}
}
},
"recording": {
"scenario": "matrix-components.new-workspace-repositories-repo.list-1",
"checkpoints": [
{
"id": "new-workspace-repositories-fulfilled.prelude:loading",
"observation": {
"sender": ["26accd69bc48"],
"payloads": ["6bdbf70bafa2"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "4e8b4e3e814f",
"effects": []
}
},
{
"id": "new-workspace-repositories-fulfilled.normal:selected",
"observation": {
"sender": ["288dd3529eaf"],
"payloads": ["6bdbf70bafa2"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "eac6e56c2d2c",
"effects": []
}
},
{
"id": "new-workspace-repositories-fulfilled.result-absent:selected",
"observation": {
"sender": ["2ebe4d776f9b"],
"payloads": ["6bdbf70bafa2"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "6a50de773e54",
"effects": []
}
},
{
"id": "new-workspace-repositories-fulfilled.result-null:selected",
"observation": {
"sender": ["38e790fd9e9c"],
"payloads": ["6bdbf70bafa2"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "6a50de773e54",
"effects": []
}
},
{
"id": "new-workspace-repositories-fulfilled.inner-ok-missing:selected",
"observation": {
"sender": ["06b63e0d9986"],
"payloads": ["6bdbf70bafa2"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "2f24355c470f",
"effects": ["e3855d3cb5ae"]
}
},
{
"id": "new-workspace-repositories-fulfilled.inner-false-string-error:selected",
"observation": {
"sender": ["f96e83d33565"],
"payloads": ["6bdbf70bafa2"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "2f24355c470f",
"effects": ["e3855d3cb5ae"]
}
},
{
"id": "new-workspace-repositories-fulfilled.inner-false-object-error:selected",
"observation": {
"sender": ["9d3fa0db2665"],
"payloads": ["6bdbf70bafa2"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "2f24355c470f",
"effects": ["e3855d3cb5ae"]
}
},
{
"id": "new-workspace-repositories-fulfilled.outer-refused:selected",
"observation": {
"sender": ["b9f0f1e94cd9"],
"payloads": ["6bdbf70bafa2"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "6a50de773e54",
"effects": []
}
},
{
"id": "new-workspace-repositories-fulfilled.outer-refused-no-message:selected",
"observation": {
"sender": ["06fc8e7b85d5"],
"payloads": ["6bdbf70bafa2"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "6a50de773e54",
"effects": []
}
},
{
"id": "new-workspace-repositories-fulfilled.method-not-found:selected",
"observation": {
"sender": ["e341bd05e614"],
"payloads": ["6bdbf70bafa2"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "6a50de773e54",
"effects": []
}
},
{
"id": "new-workspace-repositories-fulfilled.transport-rejection:selected",
"observation": {
"sender": ["6e5c6593dad8"],
"payloads": ["6bdbf70bafa2"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "6a50de773e54",
"effects": []
}
},
{
"id": "new-workspace-repositories-fulfilled.transport-rejection-no-message:selected",
"observation": {
"sender": ["cc1facdf008c"],
"payloads": ["6bdbf70bafa2"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "6a50de773e54",
"effects": []
}
}
]
}
}
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
"scenarioSha256": "a844134d7bad3c7c12107d60dbd298f5cfba778703fb9dd0f7ad454615d26b07",
"platform": "darwin",
@@ -0,0 +1,761 @@
{
"operation": "files.explorer-screen",
"family": "files.explorer-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07",
"scenarioSha256": "38b5590173c1f6791d1b35c0f036e2f844ed4b0e39c880e8e376c5f314adaade",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"13db9ec07bae": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 2,
"SafeAreaView": 1,
"Text": 4,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files", "outer refused", "Retry"]
},
"172ce972ddef": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"error": "inner refused",
"ok": false
}
}
}
},
"17ee98fb7a54": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 2,
"SafeAreaView": 1,
"Text": 4,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files", "Unknown method", "Retry"]
},
"195987bc4ef2": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"1a3946e517d4": {
"name": "files.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:wt-files\"}}"
},
"1ab1c4e91b2b": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "",
"isRpcDeliveryUnknown": true
}
}
},
"21c8265367a7": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "method_not_found",
"message": "Unknown method"
},
"id": "frame-2",
"ok": false
}
}
},
"30859af566b0": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "method_not_found",
"message": "Unknown method"
},
"id": "frame-1",
"ok": false
}
}
},
"345725f4b97d": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 2,
"SafeAreaView": 1,
"Text": 4,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files", "transport failure", "Retry"]
},
"4d91e2cd49e7": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "transport failure",
"isRpcDeliveryUnknown": true
}
}
},
"6d857847180e": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"error": {
"message": "inner refused"
},
"ok": false
}
}
}
},
"7331b73c2e67": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": "outer refused"
},
"id": "frame-2",
"ok": false
}
}
},
"80bd28a48dda": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"files": [
{
"basename": "README.md",
"kind": "text",
"relativePath": "README.md"
},
{
"basename": "app.ts",
"kind": "text",
"relativePath": "src/app.ts"
}
],
"totalCount": 2,
"truncated": true
}
}
}
},
"86cd436cbbb4": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": ""
},
"id": "frame-2",
"ok": false
}
}
},
"8966ebfaf515": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 2,
"SafeAreaView": 1,
"Text": 4,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": [
"Files",
"orca-files",
"Cannot read properties of undefined (reading 'files')",
"Retry"
]
},
"a0139a06ef98": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 3,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files", "No files found"]
},
"aa33782c6235": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 2,
"SafeAreaView": 1,
"Text": 4,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files", "Cannot read properties of null (reading 'files')", "Retry"]
},
"acc0ab029cee": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 2,
"SafeAreaView": 1,
"Text": 4,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files", "files is not iterable", "Retry"]
},
"b5b1bc83b44d": {
"name": "files.readDir#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}"
},
"b7a3bc68b28f": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true
}
}
},
"b85511fb8929": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"FlatList": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 3
},
"labels": ["Back to session"],
"rows": ["dir:src", "file:README.md"],
"text": ["Files", "orca-files", " - Showing first 5000"]
},
"e91880eefe86": {
"crash": {
"$rpc": "null"
},
"elements": {
"ActivityIndicator": 1,
"ChevronLeft": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files"]
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
},
"f08f593a8be1": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"error": "refused"
}
}
}
},
"f8568eb054ee": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"$rpc": "null"
}
}
}
}
},
"recording": {
"scenario": "matrix-files.explorer-screen-files.list-1",
"checkpoints": [
{
"id": "files-explorer-legacy-fallback.prelude:loading",
"observation": {
"sender": ["195987bc4ef2"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "e91880eefe86",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.normal:legacy-listed",
"observation": {
"sender": ["30859af566b0", "80bd28a48dda"],
"payloads": ["b5b1bc83b44d", "1a3946e517d4"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "b85511fb8929",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.result-absent:legacy-listed",
"observation": {
"sender": ["30859af566b0", "b7a3bc68b28f"],
"payloads": ["b5b1bc83b44d", "1a3946e517d4"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "8966ebfaf515",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.result-null:legacy-listed",
"observation": {
"sender": ["30859af566b0", "f8568eb054ee"],
"payloads": ["b5b1bc83b44d", "1a3946e517d4"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "aa33782c6235",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.inner-ok-missing:legacy-listed",
"observation": {
"sender": ["30859af566b0", "f08f593a8be1"],
"payloads": ["b5b1bc83b44d", "1a3946e517d4"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "acc0ab029cee",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.inner-false-string-error:legacy-listed",
"observation": {
"sender": ["30859af566b0", "172ce972ddef"],
"payloads": ["b5b1bc83b44d", "1a3946e517d4"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "acc0ab029cee",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.inner-false-object-error:legacy-listed",
"observation": {
"sender": ["30859af566b0", "6d857847180e"],
"payloads": ["b5b1bc83b44d", "1a3946e517d4"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "acc0ab029cee",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.outer-refused:legacy-listed",
"observation": {
"sender": ["30859af566b0", "7331b73c2e67"],
"payloads": ["b5b1bc83b44d", "1a3946e517d4"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "13db9ec07bae",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.outer-refused-no-message:legacy-listed",
"observation": {
"sender": ["30859af566b0", "86cd436cbbb4"],
"payloads": ["b5b1bc83b44d", "1a3946e517d4"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "17ee98fb7a54",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.method-not-found:legacy-listed",
"observation": {
"sender": ["30859af566b0", "21c8265367a7"],
"payloads": ["b5b1bc83b44d", "1a3946e517d4"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "17ee98fb7a54",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.transport-rejection:legacy-listed",
"observation": {
"sender": ["30859af566b0", "4d91e2cd49e7"],
"payloads": ["b5b1bc83b44d", "1a3946e517d4"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "345725f4b97d",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.transport-rejection-no-message:legacy-listed",
"observation": {
"sender": ["30859af566b0", "1ab1c4e91b2b"],
"payloads": ["b5b1bc83b44d", "1a3946e517d4"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "a0139a06ef98",
"effects": []
}
}
]
}
}
@@ -0,0 +1,757 @@
{
"operation": "files.explorer-screen",
"family": "files.explorer-screen",
"namedDeltas": [],
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07",
"scenarioSha256": "8c1fa604104c5551b8418af225c9420b1292f0c55b392f847985947c66749959",
"platform": "darwin",
"scenarioVersion": 1,
"projectionVersion": 2,
"goldenFormatVersion": 5,
"values": {
"13db9ec07bae": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 2,
"SafeAreaView": 1,
"Text": 4,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files", "outer refused", "Retry"]
},
"195987bc4ef2": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "pending",
"startedAt": 0
}
},
"1a3946e517d4": {
"name": "files.list#1",
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:wt-files\"}}"
},
"1fac8f3b8f44": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"FlatList": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 3
},
"labels": ["Back to session"],
"rows": ["dir:src", "file:README.md"],
"text": ["Files", "orca-files"]
},
"23a7ef6123a7": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": [
{
"isDirectory": true,
"name": "src"
},
{
"isDirectory": false,
"name": "README.md"
}
]
}
}
},
"2d716277e0b4": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"$rpc": "null"
}
}
}
},
"30859af566b0": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "method_not_found",
"message": "Unknown method"
},
"id": "frame-1",
"ok": false
}
}
},
"345725f4b97d": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 2,
"SafeAreaView": 1,
"Text": 4,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files", "transport failure", "Retry"]
},
"406c76bf7ebe": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 2,
"SafeAreaView": 1,
"Text": 4,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files", "Unable to load files", "Retry"]
},
"4f4a81c91e23": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": ""
},
"id": "frame-1",
"ok": false
}
}
},
"4f61e2e0cdf7": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "",
"isRpcDeliveryUnknown": true
}
}
},
"55062daf394e": {
"name": "screen.crash",
"value": {
"message": "entries.filter is not a function"
},
"sent": 1
},
"6660284d98a2": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"error": {
"code": "refused",
"message": "outer refused"
},
"id": "frame-1",
"ok": false
}
}
},
"7fd035a057b5": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": "refused"
}
}
}
},
"80bd28a48dda": {
"name": "files.list#1",
"args": [
{
"name": "method",
"value": "files.list"
},
{
"name": "params",
"value": {
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-2",
"ok": true,
"result": {
"files": [
{
"basename": "README.md",
"kind": "text",
"relativePath": "README.md"
},
{
"basename": "app.ts",
"kind": "text",
"relativePath": "src/app.ts"
}
],
"totalCount": 2,
"truncated": true
}
}
}
},
"91637dc6ae5b": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": {
"message": "inner refused"
},
"ok": false
}
}
}
},
"995efbb97b13": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true
}
}
},
"a0139a06ef98": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 3,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files", "No files found"]
},
"b3e7934618ec": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "rejected",
"startedAt": 0,
"settledAt": 0,
"error": {
"category": "Error",
"message": "transport failure",
"isRpcDeliveryUnknown": true
}
}
},
"b5b1bc83b44d": {
"name": "files.readDir#1",
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}"
},
"b85511fb8929": {
"crash": {
"$rpc": "null"
},
"elements": {
"ChevronLeft": 1,
"FlatList": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 3
},
"labels": ["Back to session"],
"rows": ["dir:src", "file:README.md"],
"text": ["Files", "orca-files", " - Showing first 5000"]
},
"ba58d31f3c54": {
"name": "files.readDir#1",
"args": [
{
"name": "method",
"value": "files.readDir"
},
{
"name": "params",
"value": {
"relativePath": "",
"worktree": "id:wt-files"
}
},
{
"name": "options",
"value": {
"$rpc": "absent"
}
}
],
"settlement": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"id": "frame-1",
"ok": true,
"result": {
"error": "inner refused",
"ok": false
}
}
}
},
"e91880eefe86": {
"crash": {
"$rpc": "null"
},
"elements": {
"ActivityIndicator": 1,
"ChevronLeft": 1,
"Pressable": 1,
"SafeAreaView": 1,
"Text": 2,
"View": 4
},
"labels": ["Back to session"],
"rows": [],
"text": ["Files", "orca-files"]
},
"ea2c96b08e6b": {
"crash": "entries.filter is not a function",
"elements": {},
"labels": [],
"rows": [],
"text": []
},
"eb79a9b3682a": {
"status": "fulfilled",
"startedAt": 0,
"settledAt": 0,
"value": {
"$rpc": "undefined"
}
}
},
"recording": {
"scenario": "matrix-files.explorer-screen-files.readdir-1",
"checkpoints": [
{
"id": "files-explorer-legacy-fallback.prelude:loading",
"observation": {
"sender": ["195987bc4ef2"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "e91880eefe86",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.normal:legacy-listed",
"observation": {
"sender": ["23a7ef6123a7"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "1fac8f3b8f44",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.result-absent:legacy-listed",
"observation": {
"sender": ["995efbb97b13"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "a0139a06ef98",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.result-null:legacy-listed",
"observation": {
"sender": ["2d716277e0b4"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "a0139a06ef98",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.inner-ok-missing:legacy-listed",
"observation": {
"sender": ["7fd035a057b5"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "ea2c96b08e6b",
"effects": ["55062daf394e"]
}
},
{
"id": "files-explorer-legacy-fallback.inner-false-string-error:legacy-listed",
"observation": {
"sender": ["ba58d31f3c54"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "ea2c96b08e6b",
"effects": ["55062daf394e"]
}
},
{
"id": "files-explorer-legacy-fallback.inner-false-object-error:legacy-listed",
"observation": {
"sender": ["91637dc6ae5b"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "ea2c96b08e6b",
"effects": ["55062daf394e"]
}
},
{
"id": "files-explorer-legacy-fallback.outer-refused:legacy-listed",
"observation": {
"sender": ["6660284d98a2"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "13db9ec07bae",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.outer-refused-no-message:legacy-listed",
"observation": {
"sender": ["4f4a81c91e23"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "406c76bf7ebe",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.method-not-found:legacy-listed",
"observation": {
"sender": ["30859af566b0", "80bd28a48dda"],
"payloads": ["b5b1bc83b44d", "1a3946e517d4"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "b85511fb8929",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.transport-rejection:legacy-listed",
"observation": {
"sender": ["b3e7934618ec"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "345725f4b97d",
"effects": []
}
},
{
"id": "files-explorer-legacy-fallback.transport-rejection-no-message:legacy-listed",
"observation": {
"sender": ["4f61e2e0cdf7"],
"payloads": ["b5b1bc83b44d"],
"settlements": {
"mount": "eb79a9b3682a"
},
"state": "a0139a06ef98",
"effects": []
}
}
]
}
}
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "5815450e8d07f463423ca0bd8237830791c220234201abffc6fa13e698913516",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "b9cfb187224a4b42efe8ccfcd96145833730d135c4fffa345716f95991a4700f",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "0bf3b17048bceb0bc8592405facd99cb8086274509206d9e55cd589a05d7415f",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "dbd20e271999641affbd4b52635c8864e25f08aa6db820a46d0773faa09770c6",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "c4a09003352ba4e97a17ec4109cc125298cf7123b317265cc5eca06e8dcc0615",
"platform": "darwin",
@@ -185,6 +185,19 @@
}
}
},
"63abc54b3e87": {
"name": "artifact-source-refreshed",
"value": {
"absolutePath": "/logs/run.txt",
"cwd": "/logs",
"grantId": "grant-2",
"pathText": "run.txt",
"source": "terminalArtifact",
"terminalHandle": "terminal-1",
"worktreeId": "workspace-1"
},
"sent": 2
},
"645c5754be42": {
"preview": "unloaded"
},
@@ -266,18 +279,6 @@
"truncated": false
}
},
"813fe48569a6": {
"name": "artifact-source-refreshed",
"value": {
"absolutePath": "/logs/run.txt",
"cwd": "/logs",
"grantId": "grant-2",
"pathText": "run.txt",
"source": "terminalArtifact",
"terminalHandle": "terminal-1",
"worktreeId": "workspace-1"
}
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
@@ -619,7 +620,7 @@
"load": "500d95d47092"
},
"state": "784ea351e5b2",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
},
{
@@ -631,7 +632,7 @@
"load": "15467bba2d60"
},
"state": "fba5e3c89244",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
},
{
@@ -643,7 +644,7 @@
"load": "15467bba2d60"
},
"state": "fba5e3c89244",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
},
{
@@ -655,7 +656,7 @@
"load": "15467bba2d60"
},
"state": "fba5e3c89244",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
},
{
@@ -667,7 +668,7 @@
"load": "15467bba2d60"
},
"state": "fba5e3c89244",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
},
{
@@ -679,7 +680,7 @@
"load": "15467bba2d60"
},
"state": "fba5e3c89244",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
},
{
@@ -691,7 +692,7 @@
"load": "15467bba2d60"
},
"state": "fba5e3c89244",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
},
{
@@ -703,7 +704,7 @@
"load": "15467bba2d60"
},
"state": "fba5e3c89244",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
},
{
@@ -715,7 +716,7 @@
"load": "15467bba2d60"
},
"state": "fba5e3c89244",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
},
{
@@ -727,7 +728,7 @@
"load": "a947768bc0ed"
},
"state": "645c5754be42",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
},
{
@@ -739,7 +740,7 @@
"load": "c7584e82c72f"
},
"state": "645c5754be42",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
}
]
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "ecdeff2713e454925158dde09782713d76f39455729bb25688a6ffcfff154f30",
"platform": "darwin",
@@ -220,6 +220,19 @@
}
}
},
"63abc54b3e87": {
"name": "artifact-source-refreshed",
"value": {
"absolutePath": "/logs/run.txt",
"cwd": "/logs",
"grantId": "grant-2",
"pathText": "run.txt",
"source": "terminalArtifact",
"terminalHandle": "terminal-1",
"worktreeId": "workspace-1"
},
"sent": 2
},
"645c5754be42": {
"preview": "unloaded"
},
@@ -266,18 +279,6 @@
}
}
},
"813fe48569a6": {
"name": "artifact-source-refreshed",
"value": {
"absolutePath": "/logs/run.txt",
"cwd": "/logs",
"grantId": "grant-2",
"pathText": "run.txt",
"source": "terminalArtifact",
"terminalHandle": "terminal-1",
"worktreeId": "workspace-1"
}
},
"8ce900375525": {
"name": "files.resolveTerminalPath#1",
"args": [
@@ -629,7 +630,7 @@
"load": "500d95d47092"
},
"state": "784ea351e5b2",
"effects": ["813fe48569a6"]
"effects": ["63abc54b3e87"]
}
},
{
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "1a4f7dff351be244712bedb8f495c83a531cfbfc5b5923267d1ed46bf2d6d11b",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "8d443bda91fe5a1fa74910d525bb2ec40f639109bc71afbd42bccd949b3d463f",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "65895c028637185238baf4fd4f1297c11f528a289fe8173a41c48dc5a0b37c26",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "2ceca0ecd901fd78838fcbdc789cbb6b96f04674b850a0994c7611f5db804915",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "c4db2424b8a35fd97b3fea00b4dd91a3c8d50c6fb73795811ef5402e3d14f8df",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b",
"scenarioSha256": "5605a2984d7692aa80e5e38f804bdfed4b1ce8ac2102def5dc728b1a79dc1acf",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b",
"scenarioSha256": "ed0e97ead1aad0b45bdfc48f5fe4e498810d0cfee88f07d3c6228db56fda1dd9",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b",
"scenarioSha256": "1db6919b94df3b8548838ff4c206fafa3a09ea096b17c04483f78f9321ccb1ba",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b",
"scenarioSha256": "22ea5279155ecf749aaab521ffd570221ac3169b177fc1daf85ef93a49d38260",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b",
"scenarioSha256": "86254ed87ad3427d6ee4631d7348075039ba2d4d7496d59f27f03f78580f35a1",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "5009c22df7e74a850bcea41fc110ea7d7eb4bdada623837279f32eaa5149a9b8",
"platform": "darwin",
@@ -187,10 +187,6 @@
}
}
},
"60421d882fd2": {
"name": "progress",
"value": "pushing"
},
"6c0349218dd0": {
"name": "git.push#1",
"args": [
@@ -255,6 +251,11 @@
}
}
},
"8c74af79c1cf": {
"name": "progress",
"value": "pushing",
"sent": 0
},
"9270aeb7d9c6": {
"status": "pending",
"startedAt": 0
@@ -519,7 +520,7 @@
"apply": "9270aeb7d9c6"
},
"state": "cf19981c2114",
"effects": ["60421d882fd2"]
"effects": ["8c74af79c1cf"]
}
},
{
@@ -531,7 +532,7 @@
"apply": "00e8a3bac22f"
},
"state": "0fe2eb2410a4",
"effects": ["60421d882fd2"]
"effects": ["8c74af79c1cf"]
}
},
{
@@ -543,7 +544,7 @@
"apply": "00e8a3bac22f"
},
"state": "0fe2eb2410a4",
"effects": ["60421d882fd2"]
"effects": ["8c74af79c1cf"]
}
},
{
@@ -555,7 +556,7 @@
"apply": "00e8a3bac22f"
},
"state": "0fe2eb2410a4",
"effects": ["60421d882fd2"]
"effects": ["8c74af79c1cf"]
}
},
{
@@ -567,7 +568,7 @@
"apply": "00e8a3bac22f"
},
"state": "0fe2eb2410a4",
"effects": ["60421d882fd2"]
"effects": ["8c74af79c1cf"]
}
},
{
@@ -579,7 +580,7 @@
"apply": "00e8a3bac22f"
},
"state": "0fe2eb2410a4",
"effects": ["60421d882fd2"]
"effects": ["8c74af79c1cf"]
}
},
{
@@ -591,7 +592,7 @@
"apply": "00e8a3bac22f"
},
"state": "0fe2eb2410a4",
"effects": ["60421d882fd2"]
"effects": ["8c74af79c1cf"]
}
},
{
@@ -603,7 +604,7 @@
"apply": "1b2778bf67a2"
},
"state": "aa8b30457cff",
"effects": ["60421d882fd2"]
"effects": ["8c74af79c1cf"]
}
},
{
@@ -615,7 +616,7 @@
"apply": "3e6cf1f04a9c"
},
"state": "34eee892be9b",
"effects": ["60421d882fd2"]
"effects": ["8c74af79c1cf"]
}
},
{
@@ -627,7 +628,7 @@
"apply": "fa93ca01f266"
},
"state": "e157741a28a1",
"effects": ["60421d882fd2"]
"effects": ["8c74af79c1cf"]
}
},
{
@@ -639,7 +640,7 @@
"apply": "a197c20578aa"
},
"state": "f4ca76ee9f22",
"effects": ["60421d882fd2"]
"effects": ["8c74af79c1cf"]
}
},
{
@@ -651,7 +652,7 @@
"apply": "fb4429083480"
},
"state": "3c6a5a164e8a",
"effects": ["60421d882fd2"]
"effects": ["8c74af79c1cf"]
}
}
]
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "485b2751006ee8fb4df28b228ea7adda85779feae83974eb0f7e795e31c500a1",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d",
"scenarioSha256": "0c8f09683408a919dd3ac2b7cd12197d8745882627134cde95ecee209575b027",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d",
"scenarioSha256": "4f2b61df5e59d2efe81d467214a78132654035cbcb4d929385410b53f735c9fe",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d",
"scenarioSha256": "04b2052cce6f24d9e208c992f204355639409ddc9793b3044b394c0e38d3c284",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d",
"scenarioSha256": "8f849437158296753a84a75dfdbaf69852bcdb6cdc6e8205496961ec16e4be21",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d",
"scenarioSha256": "77eba7deff3f15e64795cdcbefd009abfcf2379e7293eefb1f154ca1e99f4d5d",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d",
"scenarioSha256": "2235d05e0d2c6f1a9518cfdd76870e303cccd35289d6a44334147b6a5b6b675e",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d",
"scenarioSha256": "2cea87c339b35daf62c963092c01c6379db43f2ee4ca5cb2b5f817975b0caf65",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d",
"scenarioSha256": "78de11de556c91782590725819b22821732a12d3769f493d165c80bc7fcc1f53",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d",
"scenarioSha256": "ac7e91b4d35021eca63af8ce01f9a2c7959109e4cb824009881437cb94dbfe82",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d",
"scenarioSha256": "a85682e5009d634bf468b8dbe4f35a957988754ed9c2b07d57ad475c1590d1f6",
"platform": "darwin",
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
"recorderSha256": "e044443e01f282566a5e0eff110d0861d2a1047ca8d8696a2e7ff914f51957f3",
"recorderSha256": "0ddc0dc472e2efbe58004c6dfaf5360e368fed321e40dfe15c11a9ad1817dea4",
"adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d",
"scenarioSha256": "30f321fcbfaf09505bc6e18e64c09ca49c0dcdb7c5e12c4e27c2429b3e1066ca",
"platform": "darwin",

Some files were not shown because too many files have changed in this diff Show More